{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/liH5iPGk78Whd24ePe7R/vdDri9FqpZI5BzSMZ6xf/m8DmzgDIM.js", "ssg:https://framerusercontent.com/modules/x9tqgiZd40CayyzBeQvb/VLvTJSdybXpSvuTo3HGp/na1rto2Jg.js", "ssg:https://framerusercontent.com/modules/3vJIbCeJIEEKDGs6EXyz/8VJA44leoftjqQcWBkkD/SJHXi_Y_I.js", "ssg:https://framerusercontent.com/modules/cO3UT6y3dVHQnvwebXP1/R581fW2My8054VEZbssv/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}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(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jc44uo0Zj\"];const serializationHash=\"framer-GiyLP\";const variantClassNames={jc44uo0Zj:\"framer-v-4caigw\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,image,image3,text,text2,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,CQ18Ejm5c:(_ref=image!==null&&image!==void 0?image:props.CQ18Ejm5c)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/BfsdheVQN188ErBynK5esNL5m5o.png\"},F2C65Uz3l:(_ref1=text2!==null&&text2!==void 0?text2:props.F2C65Uz3l)!==null&&_ref1!==void 0?_ref1:\"Lorem ipsum dolor sit amet consectetur. Ac magna vel elit risus nisi commodo neque mollis turpis. Ut habitant aliquet ultricies urna purus enim mollis. Aliquet nulla pharetra sed arcu aliquam risus amet pellentesque.\",KIr2Shkyv:(_ref2=text!==null&&text!==void 0?text:props.KIr2Shkyv)!==null&&_ref2!==void 0?_ref2:\"Founder and CEO od X Technology\",Qgz_OWTA_:(_ref3=title!==null&&title!==void 0?title:props.Qgz_OWTA_)!==null&&_ref3!==void 0?_ref3:\"Harmonie Granger\",SR5tUSblo:image3!==null&&image3!==void 0?image3:props.SR5tUSblo};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CQ18Ejm5c,Qgz_OWTA_,KIr2Shkyv,F2C65Uz3l,SR5tUSblo,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"jc44uo0Zj\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4caigw\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"jc44uo0Zj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 1px 15px 0px rgba(0, 0, 0, 0.06)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18w5u9m\",layoutDependency:layoutDependency,layoutId:\"Qu5MQnkL4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"calc((min(413px, 100vw) - 60px) * 0.4363)\",...toResponsiveImage(SR5tUSblo),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rs40ix\",layoutDependency:layoutDependency,layoutId:\"l7gUQDlBg\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Lorem ipsum dolor sit amet consectetur. Ac magna vel elit risus nisi commodo neque mollis turpis. Ut habitant aliquet ultricies urna purus enim mollis. Aliquet nulla pharetra sed arcu aliquam risus amet pellentesque.\"})}),className:\"framer-btvhh2\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"CYmz4bwgU\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},text:F2C65Uz3l,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-170vkuj\",layoutDependency:layoutDependency,layoutId:\"W6BOSMSJv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,sizes:\"50px\",...toResponsiveImage(CQ18Ejm5c)},className:\"framer-1qf1k2j\",layoutDependency:layoutDependency,layoutId:\"ofIEo0Jlw\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fwkn4n\",layoutDependency:layoutDependency,layoutId:\"XkzHyS0ro\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34)))\"},children:\"Harmonie Granger\"})}),className:\"framer-1ti30e5\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Q3HN6oGcv\",style:{\"--extracted-a0htzi\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Qgz_OWTA_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102)))\"},children:\"Founder and CEO od X Technology\"})}),className:\"framer-rrtt8v\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"um7ACE5hC\",style:{\"--extracted-r6o4lv\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KIr2Shkyv,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})});});const css=['.framer-GiyLP[data-border=\"true\"]::after, .framer-GiyLP [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GiyLP.framer-6uhzva, .framer-GiyLP .framer-6uhzva { display: block; }\",\".framer-GiyLP.framer-4caigw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 413px; }\",\".framer-GiyLP .framer-18w5u9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GiyLP .framer-rs40ix { flex: none; height: 32px; position: relative; width: 44%; }\",\".framer-GiyLP .framer-btvhh2, .framer-GiyLP .framer-1ti30e5, .framer-GiyLP .framer-rrtt8v { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GiyLP .framer-170vkuj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GiyLP .framer-1qf1k2j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GiyLP .framer-1fwkn4n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GiyLP.framer-4caigw, .framer-GiyLP .framer-18w5u9m, .framer-GiyLP .framer-170vkuj, .framer-GiyLP .framer-1fwkn4n { gap: 0px; } .framer-GiyLP.framer-4caigw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GiyLP.framer-4caigw > :first-child, .framer-GiyLP .framer-1fwkn4n > :first-child { margin-top: 0px; } .framer-GiyLP.framer-4caigw > :last-child, .framer-GiyLP .framer-1fwkn4n > :last-child { margin-bottom: 0px; } .framer-GiyLP .framer-18w5u9m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GiyLP .framer-18w5u9m > :first-child, .framer-GiyLP .framer-170vkuj > :first-child { margin-left: 0px; } .framer-GiyLP .framer-18w5u9m > :last-child, .framer-GiyLP .framer-170vkuj > :last-child { margin-right: 0px; } .framer-GiyLP .framer-170vkuj > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-GiyLP .framer-1fwkn4n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 302\n * @framerIntrinsicWidth 413\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CQ18Ejm5c\":\"image\",\"Qgz_OWTA_\":\"title\",\"KIr2Shkyv\":\"text\",\"F2C65Uz3l\":\"text2\",\"SR5tUSblo\":\"image3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framerm8DmzgDIM=withCSS(Component,css,\"framer-GiyLP\");export default Framerm8DmzgDIM;Framerm8DmzgDIM.displayName=\"testimonial\";Framerm8DmzgDIM.defaultProps={height:302,width:413};addPropertyControls(Framerm8DmzgDIM,{CQ18Ejm5c:{__defaultAssetReference:\"data:framer/asset-reference,BfsdheVQN188ErBynK5esNL5m5o.png?originalFilename=Ellipse+35.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Qgz_OWTA_:{defaultValue:\"Harmonie Granger\",displayTextArea:false,title:\"Title\",type:ControlType.String},KIr2Shkyv:{defaultValue:\"Founder and CEO od X Technology\",displayTextArea:false,title:\"Text\",type:ControlType.String},F2C65Uz3l:{defaultValue:\"Lorem ipsum dolor sit amet consectetur. Ac magna vel elit risus nisi commodo neque mollis turpis. Ut habitant aliquet ultricies urna purus enim mollis. Aliquet nulla pharetra sed arcu aliquam risus amet pellentesque.\",displayTextArea:false,title:\"Text 2\",type:ControlType.String},SR5tUSblo:{title:\"Image 3\",type:ControlType.ResponsiveImage}});addFonts(Framerm8DmzgDIM,[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm8DmzgDIM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"413\",\"framerIntrinsicHeight\":\"302\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"CQ18Ejm5c\\\":\\\"image\\\",\\\"Qgz_OWTA_\\\":\\\"title\\\",\\\"KIr2Shkyv\\\":\\\"text\\\",\\\"F2C65Uz3l\\\":\\\"text2\\\",\\\"SR5tUSblo\\\":\\\"image3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m8DmzgDIM.map", "// Generated by Framer (1cc6588)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={l5JaH2b2j:{hover:true}};const cycleOrder=[\"l5JaH2b2j\",\"UhgeXXetZ\"];const serializationHash=\"framer-Kvxv3\";const variantClassNames={l5JaH2b2j:\"framer-v-sn1og0\",UhgeXXetZ:\"framer-v-1izwn92\"};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 transitions={default:{delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"}};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 humanReadableVariantMap={\"Variant 1\":\"l5JaH2b2j\",\"Variant 2\":\"UhgeXXetZ\"};const getProps=({amount,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,BZ7D0oHjX:(_ref=amount!==null&&amount!==void 0?amount:props.BZ7D0oHjX)!==null&&_ref!==void 0?_ref:\"0\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"l5JaH2b2j\",w_ksqD4rr:(_ref2=title!==null&&title!==void 0?title:props.w_ksqD4rr)!==null&&_ref2!==void 0?_ref2:\"Project Completion\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,BZ7D0oHjX,w_ksqD4rr,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"l5JaH2b2j\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Kvxv3\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-sn1og0\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l5JaH2b2j\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(249, 250, 251)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"l5JaH2b2j-hover\":{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 2px 15px 0px rgba(0, 0, 0, 0.05)\"}},...addPropertyOverrides({\"l5JaH2b2j-hover\":{\"data-framer-name\":undefined},UhgeXXetZ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"0\"})}),className:\"framer-1aa3jx\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"ayGEm03cc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:BZ7D0oHjX,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UhgeXXetZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\"},children:\"200+\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Project Completion\"})}),className:\"framer-6a7awi\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"us3YVyk_o\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:w_ksqD4rr,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-Kvxv3 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kvxv3 .framer-9c4bgg { display: block; }\",\".framer-Kvxv3 .framer-sn1og0 { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 16px 16px 16px; position: relative; width: 315px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Kvxv3 .framer-1aa3jx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Kvxv3 .framer-6a7awi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kvxv3 .framer-sn1og0 { gap: 0px; } .framer-Kvxv3 .framer-sn1og0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Kvxv3 .framer-sn1og0 > :first-child { margin-top: 0px; } .framer-Kvxv3 .framer-sn1og0 > :last-child { margin-bottom: 0px; } }\",\".framer-Kvxv3.framer-v-1izwn92 .framer-sn1og0 { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 114\n * @framerIntrinsicWidth 315\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UhgeXXetZ\":{\"layout\":[\"fixed\",\"auto\"]},\"tMpIz1SXA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BZ7D0oHjX\":\"amount\",\"w_ksqD4rr\":\"title\"}\n * @framerImmutableVariables true\n */const Framerna1rto2Jg=withCSS(Component,css,\"framer-Kvxv3\");export default Framerna1rto2Jg;Framerna1rto2Jg.displayName=\"experience item\";Framerna1rto2Jg.defaultProps={height:114,width:315};addPropertyControls(Framerna1rto2Jg,{variant:{options:[\"l5JaH2b2j\",\"UhgeXXetZ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},BZ7D0oHjX:{defaultValue:\"0\",displayTextArea:false,title:\"Amount\",type:ControlType.String},w_ksqD4rr:{defaultValue:\"Project Completion\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerna1rto2Jg,[{family:\"Plus Jakarta Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerna1rto2Jg\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"114\",\"framerVariables\":\"{\\\"BZ7D0oHjX\\\":\\\"amount\\\",\\\"w_ksqD4rr\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"315\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UhgeXXetZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tMpIz1SXA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./na1rto2Jg.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={TFugqps_k:{hover:true},TN9qWTw9P:{hover:true}};const cycleOrder=[\"TN9qWTw9P\",\"TFugqps_k\"];const serializationHash=\"framer-LhqCE\";const variantClassNames={TFugqps_k:\"framer-v-1e57onf\",TN9qWTw9P:\"framer-v-6t67c2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,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 humanReadableVariantMap={\"Variant 1\":\"TN9qWTw9P\",\"Variant 2\":\"TFugqps_k\"};const getProps=({height,id,link2,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,DZ9Oipv9L:link2!==null&&link2!==void 0?link2:props.DZ9Oipv9L,izZSsUYro:(_ref=text!==null&&text!==void 0?text:props.izZSsUYro)!==null&&_ref!==void 0?_ref:\"Con Wasisco Marketing non pubblicit\\xe0 ma strategie di comunicazione\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"TN9qWTw9P\"};};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,izZSsUYro,DZ9Oipv9L,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TN9qWTw9P\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"TFugqps_k-hover\")return false;if(baseVariant===\"TFugqps_k\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"TFugqps_k-hover\")return true;if(baseVariant===\"TFugqps_k\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6t67c2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TN9qWTw9P\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 5px 0px rgba(0, 0, 0, 0.03)\",...style},...addPropertyOverrides({\"TFugqps_k-hover\":{\"data-framer-name\":undefined},\"TN9qWTw9P-hover\":{\"data-framer-name\":undefined},TFugqps_k:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1400,intrinsicWidth:1572,pixelHeight:310,pixelWidth:340,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aTLYCDEJ4uI6Uu4IQJwFXZcAVg.png\"},className:\"framer-1m0tn7r\",\"data-framer-name\":\"Asset_1_1\",layoutDependency:layoutDependency,layoutId:\"AY6mowQ7y\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1444,intrinsicWidth:1620,pixelHeight:1444,pixelWidth:1620,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png\",srcSet:\"https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png 1620w\"},className:\"framer-tdbate\",\"data-framer-name\":\"Asset_1_1\",layoutDependency:layoutDependency,layoutId:\"XEoAyQfdD\",...addPropertyOverrides({TFugqps_k:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1444,intrinsicWidth:1620,pixelHeight:1444,pixelWidth:1620,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png\",srcSet:\"https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mRZy94VP36zTEmj9Pa05xuGpyw.png 1620w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:9840,positionX:\"78.1%\",positionY:\"41.9%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,src:\"https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg\",srcSet:\"https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg 9840w\"},className:\"framer-1lg8ysh\",layoutDependency:layoutDependency,layoutId:\"zpC6F9Nkg\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({\"TFugqps_k-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1374,intrinsicWidth:2048,pixelHeight:1374,pixelWidth:2048,positionX:\"78.1%\",positionY:\"41.9%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`,src:\"https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png\",srcSet:\"https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png 2048w\"}},\"TN9qWTw9P-hover\":{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:9840,positionX:\"78.1%\",positionY:\"41.9%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`,src:\"https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg\",srcSet:\"https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/g5Kv2ITsku2ptvv8fQz8cbKxI.jpg 9840w\"}},TFugqps_k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1374,intrinsicWidth:2048,pixelHeight:1374,pixelWidth:2048,positionX:\"78.1%\",positionY:\"41.9%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,src:\"https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png\",srcSet:\"https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5G9XrF5Dw4UHb3IGholL6mGq8b8.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(62, 62, 62))\"},children:\"Wasisco Food & Beverage: Sapori unici, soluzioni personalizzate!\"})}),className:\"framer-17d9mkp\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"CJMblQ5XC\",style:{\"--extracted-1of0zx5\":\"rgb(62, 62, 62)\"},text:izZSsUYro,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:DZ9Oipv9L,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5psizc framer-1j3n5i4\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"gpcEwECsF\",style:{background:\"linear-gradient(257deg, #FBDFAD 0%, #FBDFAD 100%)\",backgroundColor:\"rgb(251, 223, 173)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"TFugqps_k-hover\":{background:\"linear-gradient(249deg, #9CC9E8 0%, #497BB8 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"TN9qWTw9P-hover\":{background:\"linear-gradient(257deg, #C8008D 0%, #650081 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Scopri di pi\\xf9\"})}),className:\"framer-r20w7a\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"mTOQlmlnO\",variants:{\"TFugqps_k-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},\"TN9qWTw9P-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TFugqps_k-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Scopri di pi\\xf9\"})})},\"TN9qWTw9P-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Scopri di pi\\xf9\"})})}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LhqCE.framer-1j3n5i4, .framer-LhqCE .framer-1j3n5i4 { display: block; }\",\".framer-LhqCE.framer-6t67c2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 18px 24px 18px; position: relative; width: 635px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LhqCE .framer-1m0tn7r, .framer-LhqCE .framer-tdbate { aspect-ratio: 1.1320754716981132 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); overflow: visible; position: relative; width: 120px; }\",\".framer-LhqCE .framer-1lg8ysh { flex: none; height: 313px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LhqCE .framer-17d9mkp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LhqCE .framer-5psizc { 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: 14px 30px 14px 30px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LhqCE .framer-r20w7a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LhqCE.framer-6t67c2, .framer-LhqCE .framer-5psizc { gap: 0px; } .framer-LhqCE.framer-6t67c2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LhqCE.framer-6t67c2 > :first-child { margin-top: 0px; } .framer-LhqCE.framer-6t67c2 > :last-child { margin-bottom: 0px; } .framer-LhqCE .framer-5psizc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LhqCE .framer-5psizc > :first-child { margin-left: 0px; } .framer-LhqCE .framer-5psizc > :last-child { margin-right: 0px; } }\",\".framer-LhqCE.framer-v-1e57onf .framer-tdbate { order: 0; }\",\".framer-LhqCE.framer-v-1e57onf .framer-1lg8ysh { order: 2; }\",\".framer-LhqCE.framer-v-1e57onf .framer-17d9mkp { order: 3; }\",\".framer-LhqCE.framer-v-1e57onf .framer-5psizc { order: 4; }\",\".framer-LhqCE.framer-v-6t67c2.hover.framer-6t67c2, .framer-LhqCE.framer-v-1e57onf.hover.framer-6t67c2 { padding: 24px 32px 24px 32px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 676\n * @framerIntrinsicWidth 635\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TFugqps_k\":{\"layout\":[\"fixed\",\"auto\"]},\"KP9PA8biR\":{\"layout\":[\"fixed\",\"auto\"]},\"l5B588tjS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"izZSsUYro\":\"text\",\"DZ9Oipv9L\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSJHXi_Y_I=withCSS(Component,css,\"framer-LhqCE\");export default FramerSJHXi_Y_I;FramerSJHXi_Y_I.displayName=\"Card component\";FramerSJHXi_Y_I.defaultProps={height:676,width:635};addPropertyControls(FramerSJHXi_Y_I,{variant:{options:[\"TN9qWTw9P\",\"TFugqps_k\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},izZSsUYro:{defaultValue:\"Con Wasisco Marketing non pubblicit\\xe0 ma strategie di comunicazione\",description:\"\",displayTextArea:false,title:\"Text\",type:ControlType.String},DZ9Oipv9L:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerSJHXi_Y_I,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSJHXi_Y_I\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"izZSsUYro\\\":\\\"text\\\",\\\"DZ9Oipv9L\\\":\\\"link2\\\"}\",\"framerIntrinsicWidth\":\"635\",\"framerIntrinsicHeight\":\"676\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TFugqps_k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KP9PA8biR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l5B588tjS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SJHXi_Y_I.map", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Navbar from\"#framer/local/canvasComponent/dZ9dDch84/dZ9dDch84.js\";import Footer from\"#framer/local/canvasComponent/KzEeoPvsu/KzEeoPvsu.js\";import Testimonial from\"#framer/local/canvasComponent/m8DmzgDIM/m8DmzgDIM.js\";import ExperienceItem from\"#framer/local/canvasComponent/na1rto2Jg/na1rto2Jg.js\";import Button from\"#framer/local/canvasComponent/QDZRsktbV/QDZRsktbV.js\";import SliderItem from\"#framer/local/canvasComponent/qMriQBbBi/qMriQBbBi.js\";import CardComponent from\"#framer/local/canvasComponent/SJHXi_Y_I/SJHXi_Y_I.js\";import*as sharedStyle from\"#framer/local/css/nV8BwPme4/nV8BwPme4.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const CardComponentFonts=getFonts(CardComponent);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const ExperienceItemFonts=getFonts(ExperienceItem);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const SliderItemFonts=getFonts(SliderItem);const CarouselFonts=getFonts(Carousel);const TestimonialFonts=getFonts(Testimonial);const FooterFonts=getFonts(Footer);const breakpoints={bnoNTTEJx:\"(min-width: 810px) and (max-width: 1439px)\",uP3HiX_iN:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s707Y\";const variantClassNames={bnoNTTEJx:\"framer-v-11xhyoq\",uP3HiX_iN:\"framer-v-17cvmeb\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:0,duration:1.1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.3,duration:2.3,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition5={delay:.2,duration:2.4,ease:[.5,0,.88,.77],type:\"tween\"};const transition6={delay:.2,duration:1.9,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:30,delay:0,mass:4,stiffness:400,type:\"spring\"};const transition8={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:-10};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:11,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:-11};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition9={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const transition10={damping:30,delay:0,mass:1,stiffness:174,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"uP3HiX_iN\",Tablet:\"bnoNTTEJx\"};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"jlnofqhey\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"ODxr8Q29Y\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"Q_HD391Vc\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uP3HiX_iN\")return true;return false;};const elementId3=useRouteElementId(\"wKFl03Le6\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"bnoNTTEJx\")return false;return true;};const elementId4=useRouteElementId(\"PujCVY8Pl\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"SGre5W2Hl\");const ref6=React.useRef(null);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: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwhmkp-container\",layoutScroll:true,nodeId:\"BfTCcCRYY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{variant:\"DOsKnyV0V\"},uP3HiX_iN:{variant:\"KpA8MxdIV\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"BfTCcCRYY\",layoutId:\"BfTCcCRYY\",style:{width:\"100%\"},variant:\"du1skJVZH\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-az2zxs\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10aefr2\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cgx71n\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16opv99\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(253, 197, 137)\"},children:\"Soluzioni su misura \"}),\"per il tuo percorso di crescita\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(253, 197, 137)\"},children:\"Soluzioni su misura \"}),\"per il tuo percorso di crescita\"]})}),className:\"framer-j4w2ej\",\"data-framer-appear-id\":\"j4w2ej\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"WASISCO \\xe8 un'azienda che fornisce a 360 gradi soluzioni personalizzate per guidare le aziende verso i loro obiettivi, creando legami significativi tra consulenza e conoscenze. Il nostro team di professionisti \\xe8 disponibile 7 giorni su 7 per aiutarti a raggiungere i tuoi obiettivi. Siamo specializzati in diversi ambiti, compreso il branding, il marketing digitale e le pubbliche relazioni.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"WASISCO \\xe8 un'azienda che fornisce a 360 gradi soluzioni personalizzate per guidare le aziende verso i loro obiettivi, creando legami significativi tra consulenza e conoscenze. Il nostro team di professionisti \\xe8 disponibile 7 giorni su 7 per aiutarti a raggiungere i tuoi obiettivi. Siamo specializzati in diversi ambiti, compreso il branding, il marketing digitale e le pubbliche relazioni.\"})}),className:\"framer-js8704\",\"data-framer-appear-id\":\"js8704\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1dmyj93-container\",\"data-framer-appear-id\":\"1dmyj93\",initial:animation1,nodeId:\"QlwLBTaGm\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{bcx20EJLN:\"Contact us\",height:\"100%\",id:\"QlwLBTaGm\",layoutId:\"QlwLBTaGm\",variant:\"UmIURLsa0\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bwhrur\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145bhdu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+271+0+0+0),pixelHeight:7008,pixelWidth:4675,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg 4675w\"}},uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+118+208.6+0+0+0),pixelHeight:7008,pixelWidth:4675,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg 4675w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:116,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+0+0+0),pixelHeight:7008,pixelWidth:4675,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/Hj9dN7m8oG3kELvBnX5HyQ6P5w.jpg 4675w\"},className:\"framer-r88sjq\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+271+0+0+0),pixelHeight:8192,pixelWidth:5464,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg\",srcSet:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg 5464w\"}},uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+118+208.6+0+0+0),pixelHeight:8192,pixelWidth:5464,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg\",srcSet:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg 5464w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:180,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:24,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+0+0+0),pixelHeight:8192,pixelWidth:5464,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg\",srcSet:\"https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/IqdQchTOGjuct4ayqBOwEp5U7t0.jpg 5464w\"},className:\"framer-l4vtdw\",id:\"l4vtdw\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+271+0+0+299),pixelHeight:1080,pixelWidth:1080,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png\",srcSet:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=512 512w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png 1080w\"}},uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+118+208.6+0+0+178),pixelHeight:1080,pixelWidth:1080,sizes:`max((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png\",srcSet:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=512 512w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+0+0+8),pixelHeight:1080,pixelWidth:1080,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 16px) / 2, 50px)`,src:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png\",srcSet:\"https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=512 512w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/79h9E4oBBUZGbgU8GNoNgSBegY.png 1080w\"},className:\"framer-13w5lnr\",style:{transformPerspective:1200}})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-er5wc6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ReI9v2bs8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{gap:20}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:60,overflow:false},gap:32,height:\"100%\",hoverFactor:.5,id:\"ReI9v2bs8\",layoutId:\"ReI9v2bs8\",padding:10,paddingBottom:32,paddingLeft:80,paddingPerSide:true,paddingRight:80,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:746,intrinsicWidth:1500,pixelHeight:746,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"106px\",src:\"https://framerusercontent.com/images/wAA9jM8Tkt2aWWTALndIuC5bUl8.png\",srcSet:\"https://framerusercontent.com/images/wAA9jM8Tkt2aWWTALndIuC5bUl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/wAA9jM8Tkt2aWWTALndIuC5bUl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wAA9jM8Tkt2aWWTALndIuC5bUl8.png 1500w\"},className:\"framer-1kwyz6i\",\"data-framer-name\":\"SM_Logo_Nero_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:595,intrinsicWidth:842,pixelHeight:595,pixelWidth:842,sizes:\"168px\",src:\"https://framerusercontent.com/images/zkL45d3VLEsRrpfar9V0WEV0.png\",srcSet:\"https://framerusercontent.com/images/zkL45d3VLEsRrpfar9V0WEV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zkL45d3VLEsRrpfar9V0WEV0.png 842w\"},className:\"framer-9o4ykx\",\"data-framer-name\":\"ANTICO_CAFFE_TORINO_LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1607,intrinsicWidth:1500,pixelHeight:1607,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"106px\",src:\"https://framerusercontent.com/images/k0ute8BP5H39hQvHqmk3D2pxaw.png\",srcSet:\"https://framerusercontent.com/images/k0ute8BP5H39hQvHqmk3D2pxaw.png?scale-down-to=1024 955w,https://framerusercontent.com/images/k0ute8BP5H39hQvHqmk3D2pxaw.png 1500w\"},className:\"framer-9e0tra\",\"data-framer-name\":\"CL_Logo_ColoreScuro_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:1080,pixelWidth:1080,sizes:\"150px\",src:\"https://framerusercontent.com/images/sqCVz34DL0fGUqfieoKwkZ8qL58.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sqCVz34DL0fGUqfieoKwkZ8qL58.png?scale-down-to=512 512w,https://framerusercontent.com/images/sqCVz34DL0fGUqfieoKwkZ8qL58.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sqCVz34DL0fGUqfieoKwkZ8qL58.png 1080w\"},className:\"framer-1pjxzdi\",\"data-framer-name\":\"$1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2548,intrinsicWidth:6034,pixelHeight:2548,pixelWidth:6034,sizes:\"161px\",src:\"https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png\",srcSet:\"https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/F3vmsKXChOQVyXmHcAFmwI4vw1k.png 6034w\"},className:\"framer-p09oi5\",\"data-framer-name\":\"CORONAS_CAFE_LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:300,intrinsicWidth:800,pixelHeight:600,pixelWidth:1600,sizes:\"128px\",src:\"https://framerusercontent.com/images/GJsIf1xoUbEDjD7e462GaY2NNs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GJsIf1xoUbEDjD7e462GaY2NNs.png?scale-down-to=512 512w,https://framerusercontent.com/images/GJsIf1xoUbEDjD7e462GaY2NNs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GJsIf1xoUbEDjD7e462GaY2NNs.png 1600w\"},className:\"framer-nupux0\",\"data-framer-name\":\"BMPS_logo_trasp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2382,intrinsicWidth:1684,pixelHeight:2382,pixelWidth:1684,sizes:\"118px\",src:\"https://framerusercontent.com/images/okkvNA3Fq8KBfTvZUhdnA0G0Kws.png\",srcSet:\"https://framerusercontent.com/images/okkvNA3Fq8KBfTvZUhdnA0G0Kws.png?scale-down-to=1024 723w,https://framerusercontent.com/images/okkvNA3Fq8KBfTvZUhdnA0G0Kws.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/okkvNA3Fq8KBfTvZUhdnA0G0Kws.png 1684w\"},className:\"framer-vitc7o\",\"data-framer-name\":\"DT_LogoScritta_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1282.5,intrinsicWidth:1282.5,pixelHeight:2565,pixelWidth:2565,sizes:\"96px\",src:\"https://framerusercontent.com/images/5QGn7SQyQ9R8hbKv6Hgdd5NW6g.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5QGn7SQyQ9R8hbKv6Hgdd5NW6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/5QGn7SQyQ9R8hbKv6Hgdd5NW6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5QGn7SQyQ9R8hbKv6Hgdd5NW6g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5QGn7SQyQ9R8hbKv6Hgdd5NW6g.png 2565w\"},className:\"framer-36y234\",\"data-framer-name\":\"Progetto_senza_titolo_10_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1012,intrinsicWidth:3e3,pixelHeight:1012,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"156px\",src:\"https://framerusercontent.com/images/Resx81jjU9867Ui2iPoTcjPqC5Y.png\",srcSet:\"https://framerusercontent.com/images/Resx81jjU9867Ui2iPoTcjPqC5Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Resx81jjU9867Ui2iPoTcjPqC5Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Resx81jjU9867Ui2iPoTcjPqC5Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Resx81jjU9867Ui2iPoTcjPqC5Y.png 3000w\"},className:\"framer-k41jdk\",\"data-framer-name\":\"LC_Logo_B_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:752,intrinsicWidth:4096,pixelHeight:752,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"170px\",src:\"https://framerusercontent.com/images/Z2WtnesRyyJ0RYHXTysr6zmZ8P8.png\",srcSet:\"https://framerusercontent.com/images/Z2WtnesRyyJ0RYHXTysr6zmZ8P8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z2WtnesRyyJ0RYHXTysr6zmZ8P8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z2WtnesRyyJ0RYHXTysr6zmZ8P8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z2WtnesRyyJ0RYHXTysr6zmZ8P8.png 4096w\"},className:\"framer-1ojpylv\",\"data-framer-name\":\"LOGO_CARTABIANCA_SITO_05_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:917,intrinsicWidth:1981,pixelHeight:917,pixelWidth:1981,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/BS9GTWfFj1cyFSuZHL8JffRmH1U.png\",srcSet:\"https://framerusercontent.com/images/BS9GTWfFj1cyFSuZHL8JffRmH1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/BS9GTWfFj1cyFSuZHL8JffRmH1U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BS9GTWfFj1cyFSuZHL8JffRmH1U.png 1981w\"},className:\"framer-12nubg2\",\"data-framer-name\":\"BOTTEGA_DEL_MARE_LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56,intrinsicWidth:106,pixelHeight:56,pixelWidth:106,sizes:\"185.5px\",src:\"https://framerusercontent.com/images/AcMYTGChgXagZqFQ0usl10O9NDo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AcMYTGChgXagZqFQ0usl10O9NDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AcMYTGChgXagZqFQ0usl10O9NDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AcMYTGChgXagZqFQ0usl10O9NDo.png 1717w\"},className:\"framer-pr94ds\",\"data-framer-name\":\"SM_Logo_Nero_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:564,intrinsicWidth:437,pixelHeight:564,pixelWidth:437,positionX:\"center\",positionY:\"center\",sizes:\"185.5px\",src:\"https://framerusercontent.com/images/ar2NvoKBJuibk4VvaUNiiNJ1Mk.png\",srcSet:\"https://framerusercontent.com/images/ar2NvoKBJuibk4VvaUNiiNJ1Mk.png 437w\"},className:\"framer-k7llf4\",\"data-framer-name\":\"SM_Logo_Nero_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:945,intrinsicWidth:945,pixelHeight:1890,pixelWidth:1890,sizes:\"168px\",src:\"https://framerusercontent.com/images/y7kECY9yA5DJI5P973aq6ocz0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/y7kECY9yA5DJI5P973aq6ocz0.png?scale-down-to=512 512w,https://framerusercontent.com/images/y7kECY9yA5DJI5P973aq6ocz0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y7kECY9yA5DJI5P973aq6ocz0.png 1890w\"},className:\"framer-4zzre6\",\"data-framer-name\":\"Progetto_senza_titolo_3_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1167,intrinsicWidth:3051.5,pixelHeight:2334,pixelWidth:6103,sizes:\"133.356px\",src:\"https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/QjKXLI2D3fOYeC6zTiZLyYnZy0c.png 6103w\"},className:\"framer-1dfi9ga\",\"data-framer-name\":\"$2e554Risorsa_4_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1610.5,intrinsicWidth:2477,pixelHeight:3221,pixelWidth:4954,sizes:\"98.434px\",src:\"https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/uDpzwHMUjhyB6vbHT9QeHo9M0CA.png 4954w\"},className:\"framer-1yuhm9r\",\"data-framer-name\":\"Risorsa_3_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:776,intrinsicWidth:1514,pixelHeight:776,pixelWidth:1514,positionX:\"center\",positionY:\"center\",sizes:\"117.3571px\",src:\"https://framerusercontent.com/images/qiWHVHH4lqBcdXrzsruWEZUdkrQ.png\",srcSet:\"https://framerusercontent.com/images/qiWHVHH4lqBcdXrzsruWEZUdkrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/qiWHVHH4lqBcdXrzsruWEZUdkrQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qiWHVHH4lqBcdXrzsruWEZUdkrQ.png 1514w\"},className:\"framer-1njaj9n\",\"data-framer-name\":\"SM_Logo_Nero_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1058.5,intrinsicWidth:3186.5,pixelHeight:2117,pixelWidth:6373,sizes:\"165px\",src:\"https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png?scale-down-to=512 512w,https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/LfCCuHoPaieb41e4xlgeT7osI.png 6373w\"},className:\"framer-bp609g\",\"data-framer-name\":\"$9Risorsa_3_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1119,intrinsicWidth:1e3,pixelHeight:2238,pixelWidth:2e3,sizes:\"68px\",src:\"https://framerusercontent.com/images/CgH2sMuQzbSspZlFWnSojjYg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CgH2sMuQzbSspZlFWnSojjYg.png?scale-down-to=1024 915w,https://framerusercontent.com/images/CgH2sMuQzbSspZlFWnSojjYg.png?scale-down-to=2048 1830w,https://framerusercontent.com/images/CgH2sMuQzbSspZlFWnSojjYg.png 2000w\"},className:\"framer-sio0z\",\"data-framer-name\":\"$9Risorsa_1_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:877.5,intrinsicWidth:877.5,pixelHeight:1755,pixelWidth:1755,sizes:\"102px\",src:\"https://framerusercontent.com/images/OHluQOMsoWxtcEcvppby0YuhVlk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OHluQOMsoWxtcEcvppby0YuhVlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/OHluQOMsoWxtcEcvppby0YuhVlk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OHluQOMsoWxtcEcvppby0YuhVlk.png 1755w\"},className:\"framer-1fgxzbg\",\"data-framer-name\":\"Progetto_senza_titolo_11_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:721.5,intrinsicWidth:1250,pixelHeight:1443,pixelWidth:2500,sizes:\"103px\",src:\"https://framerusercontent.com/images/CYDMAryfKFBfTN88uOQwneVktgU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CYDMAryfKFBfTN88uOQwneVktgU.png?scale-down-to=512 512w,https://framerusercontent.com/images/CYDMAryfKFBfTN88uOQwneVktgU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CYDMAryfKFBfTN88uOQwneVktgU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CYDMAryfKFBfTN88uOQwneVktgU.png 2500w\"},className:\"framer-1bn61lj\",\"data-framer-name\":\"$54324Risorsa_8_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:192.5,intrinsicWidth:699.5,pixelHeight:385,pixelWidth:1399,sizes:\"116.2805px\",src:\"https://framerusercontent.com/images/4UMKnLrT8Mgj0bKCsddT2QDxG7M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4UMKnLrT8Mgj0bKCsddT2QDxG7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/4UMKnLrT8Mgj0bKCsddT2QDxG7M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4UMKnLrT8Mgj0bKCsddT2QDxG7M.png 1399w\"},className:\"framer-1yhzmtc\",\"data-framer-name\":\"$12Risorsa_1_4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:147.5,intrinsicWidth:256,pixelHeight:295,pixelWidth:512,src:\"https://framerusercontent.com/images/79YqhgWEhoMkeGVKulZxKOEckYc.png\"},className:\"framer-13j91zl\",\"data-framer-name\":\"MaccheroniBroz_RGB_Original_2\"})],speed:100,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y38303\",\"data-framer-name\":\"News\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v7x2ny\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pr2dhd\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yu413g\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1153+80+0+0+0+0+0+0),pixelHeight:978,pixelWidth:1299,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1440px), 1px)`,src:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png\",srcSet:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png 1299w\"}},uP3HiX_iN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+848.6+32+0+0+0+0+0+0+0),pixelHeight:978,pixelWidth:1299,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png\",srcSet:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png 1299w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:116,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:2500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+332+32+0+0+0+0+0),pixelHeight:978,pixelWidth:1299,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 209px) / 1.5, 1px)`,src:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png\",srcSet:\"https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/noKaRgN2jBz2NtjquKIFGfBjOqg.png 1299w\"},className:\"framer-11zm5dc\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e6qyfy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oo75vm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-weight\":\"700\"},children:\"NEWS: FOOD CONSULTING\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Wasisco \\xe8 lieta di annunciare un nuovo capitolo nel mondo della consulenza food! Con l\u2019esperienza e la passione di professionisti che vantano oltre 20 anni nel settore e centinaia di progetti alle spalle, offriamo un pacchetto di servizi innovativi e su misura per chi vuole portare il proprio locale al livello successivo.\"]}),/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"Dal \",/*#__PURE__*/_jsx(\"em\",{children:\"food ID\"}),\" alla creazione di format ristorativi esclusivi, dalla progettazione di men\\xf9 alla riqualificazione di spazi esistenti, ci occupiamo di tutto. Non solo: coordiniamo le operazioni in cucina, prototipiamo ricette uniche, standardizziamo processi, e supportiamo nella scelta delle migliori attrezzature e packaging. Formiamo il personale sia nella preparazione dei piatti che nelle norme sanitarie, garantendo cos\\xec qualit\\xe0 e sicurezza in ogni dettaglio.\"]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},uP3HiX_iN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\"},children:\"NEWS: FOOD CONSULTING\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Wasisco \\xe8 lieta di annunciare un nuovo capitolo nel mondo della consulenza food! Con l\u2019esperienza e la passione di professionisti che vantano oltre 20 anni nel settore e centinaia di progetti alle spalle, offriamo un pacchetto di servizi innovativi e su misura per chi vuole portare il proprio locale al livello successivo.\"]}),/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"Dal \",/*#__PURE__*/_jsx(\"em\",{children:\"food ID\"}),\" alla creazione di format ristorativi esclusivi, dalla progettazione di men\\xf9 alla riqualificazione di spazi esistenti, ci occupiamo di tutto. Non solo: coordiniamo le operazioni in cucina, prototipiamo ricette uniche, standardizziamo processi, e supportiamo nella scelta delle migliori attrezzature e packaging. Formiamo il personale sia nella preparazione dei piatti che nelle norme sanitarie, garantendo cos\\xec qualit\\xe0 e sicurezza in ogni dettaglio.\"]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-weight\":\"700\"},children:\"NEWS: FOOD CONSULTING\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Wasisco \\xe8 lieta di annunciare un nuovo capitolo nel mondo della consulenza food! Con l\u2019esperienza e la passione di professionisti che vantano oltre 20 anni nel settore e centinaia di progetti alle spalle, offriamo un pacchetto di servizi innovativi e su misura per chi vuole portare il proprio locale al livello successivo.\"]}),/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"Dal \",/*#__PURE__*/_jsx(\"em\",{children:\"food ID\"}),\" alla creazione di format ristorativi esclusivi, dalla progettazione di men\\xf9 alla riqualificazione di spazi esistenti, ci occupiamo di tutto. Non solo: coordiniamo le operazioni in cucina, prototipiamo ricette uniche, standardizziamo processi, e supportiamo nella scelta delle migliori attrezzature e packaging. Formiamo il personale sia nella preparazione dei piatti che nelle norme sanitarie, garantendo cos\\xec qualit\\xe0 e sicurezza in ogni dettaglio.\"]}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1rwp9vf\",fonts:[\"FS;Montserrat-medium\",\"FS;Montserrat-medium italic\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f3p0sn\",\"data-framer-name\":\"Portal\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohf9kk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwx4sh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 195, 132)\"},children:\"SIAMO \"}),\"DIVISI IN DUE \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 195, 132)\"},children:\"SIAMO \"}),\"DIVISI IN DUE \"]})}),className:\"framer-1crmkng\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"Per accompagnare le aziende di ogni settore, dalla loro nascita fino all'innovazione\u2026\"})})},uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"Per accompagnare le aziende di ogni settore, dalla loro nascita fino all'innovazione\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"Per accompagnare le aziende di ogni settore, dalla loro nascita fino all'innovazione\u2026\"})}),className:\"framer-1h3ly9j\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sr5xwj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-136se27\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined},{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined},{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+1945.8+80+0+0+136.4+0+0+0},uP3HiX_iN:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 200px), 1440px)`,y:(componentViewport?.y||0)+0+1256.1+32+0+0+103.8+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:676,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+791+64+6+0+149+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:251,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1weka0r-container\",nodeId:\"bPsD58QUk\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{DZ9Oipv9L:resolvedLinks[1]},uP3HiX_iN:{DZ9Oipv9L:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CardComponent,{DZ9Oipv9L:resolvedLinks[0],height:\"100%\",id:\"bPsD58QUk\",izZSsUYro:\"Con Wasisco Marketing non pubblicit\\xe0 ma strategie di comunicazione\",layoutId:\"bPsD58QUk\",style:{width:\"100%\"},variant:\"TN9qWTw9P\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-31ios1\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined},{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined},{href:{webPageId:\"h3klPBpDn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+1945.8+80+0+0+136.4+0+692+0},uP3HiX_iN:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 200px), 1440px)`,y:(componentViewport?.y||0)+0+1256.1+32+0+0+103.8+0+692+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:676,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px)`,y:(componentViewport?.y||0)+0+791+64+6+0+149+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:251,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tzdrh4-container\",nodeId:\"KEMBiMbxK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{DZ9Oipv9L:resolvedLinks1[1]},uP3HiX_iN:{DZ9Oipv9L:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CardComponent,{DZ9Oipv9L:resolvedLinks1[0],height:\"100%\",id:\"KEMBiMbxK\",izZSsUYro:\"Wasisco Global Solution: Innovazione digitale su misura per te!\",layoutId:\"KEMBiMbxK\",style:{width:\"100%\"},variant:\"TFugqps_k\",width:\"100%\"})})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17afyha\",\"data-framer-name\":\"About\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11eg3t9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(171, 171, 171)\"},children:\"customers\"}),\" experience\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:270,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Our customers experience\"})}),className:\"framer-1sv5n10\",fonts:[\"GF;Plus Jakarta Sans-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:328,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qqapp8\",\"data-framer-name\":\"experinece wraper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hs6mha\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cme1qo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-67u2r-container\",nodeId:\"DA_xAr0va\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{BZ7D0oHjX:\"52+\",height:\"100%\",id:\"DA_xAr0va\",layoutId:\"DA_xAr0va\",style:{width:\"100%\"},variant:\"l5JaH2b2j\",w_ksqD4rr:\"Partner\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u80pbt-container\",nodeId:\"yPPandIFf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{BZ7D0oHjX:\"18\",height:\"100%\",id:\"yPPandIFf\",layoutId:\"yPPandIFf\",style:{width:\"100%\"},variant:\"l5JaH2b2j\",w_ksqD4rr:\"Progetti Ristrutturati\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzjznb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kbaxaj-container\",nodeId:\"phREM6h1Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{BZ7D0oHjX:\"809+\",height:\"100%\",id:\"phREM6h1Q\",layoutId:\"phREM6h1Q\",style:{width:\"100%\"},variant:\"l5JaH2b2j\",w_ksqD4rr:\"Progetti Realizzati\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ibmu8-container\",nodeId:\"dNRUvAAsw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{BZ7D0oHjX:\"2\",height:\"100%\",id:\"dNRUvAAsw\",layoutId:\"dNRUvAAsw\",style:{width:\"100%\"},variant:\"l5JaH2b2j\",w_ksqD4rr:\"Format Esteri\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vi7fim\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"La Tua visione diventa la nostra missione,  lavoriamo con determinazione per tradurla in realt\\xe0.\"})})},uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"La Tua visione diventa la nostra missione,  lavoriamo con determinazione per tradurla in realt\\xe0.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:\"La Tua visione diventa la nostra missione,  lavoriamo con determinazione per tradurla in realt\\xe0.\"})}),className:\"framer-eq3dxg\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:65,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:289,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8u4a9w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oVeBXu4n6\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"oVeBXu4n6\",isMixedBorderRadius:false,isRed:false,layoutId:\"oVeBXu4n6\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/6G_YOtabrzI\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qehtva hidden-72rtr7 hidden-11xhyoq\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2pwbk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqpsn2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+0+0+0),pixelHeight:3e3,pixelWidth:2e3,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg\",srcSet:\"https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:2e3,pixelHeight:3e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg\",srcSet:\"https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/q67jdGVE3kNLT6DDvNMh0IcRd8.jpg 2000w\"},className:\"framer-28oexs\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wct5y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Marketing\"})}),className:\"framer-1s41ev1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Analisi  del Settore di Mercato\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Ricerca e Analisi del Pubblico Target\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Analisi della Concorrenza\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:\"Elaborazione di un Piano di Marketing Strategico\"})})]})}),className:\"framer-1wpbbii\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lei8g2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+0+0+0),pixelHeight:2e3,pixelWidth:3e3,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg\",srcSet:\"https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg\",srcSet:\"https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/c296pp69xZkPunCpHHci0hY9rCg.jpg 3000w\"},className:\"framer-p63pu4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zdmevz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Adv & Management\"})}),className:\"framer-1w0gvzj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"\u2022 Instagram Management\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Facebook Management\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Google Management\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 TikTok Management\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Linkeind Management\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Adv multipiattaforma\"]})}),className:\"framer-5k43lo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1np5h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2999,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+0+0+0),pixelHeight:2999,pixelWidth:2e3,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg\",srcSet:\"https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2999,intrinsicWidth:2e3,pixelHeight:2999,pixelWidth:2e3,src:\"https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg\",srcSet:\"https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/w2yB5TiOnX2pbuLagna4ZeTNtQ.jpg 2000w\"},className:\"framer-18zlcz9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4pgmbm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Graphics\"})}),className:\"framer-17fyc0u\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"\u2022 Creazione Logo\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Brand Identity\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Brand Book\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Illustrazioni Professionali\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Grafiche Cartacee\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022 Grafiche Digitali\"]})}),className:\"framer-1l0pnhn\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11b2j4g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4117,intrinsicWidth:2744,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+475.6+0+0),pixelHeight:4117,pixelWidth:2744,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg\",srcSet:\"https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg 2744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4117,intrinsicWidth:2744,pixelHeight:4117,pixelWidth:2744,src:\"https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg\",srcSet:\"https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WtHy5haeGJ2WHdif2ATtzTuI4.jpg 2744w\"},className:\"framer-1dvruvg\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xowwob\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Photo & Video\"})}),className:\"framer-9kozfw\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"\u2022    Photo Shooting\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Still Life Prodotti \",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Photo editing \",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Video Shooting\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022.   Video Presentazioni\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Video Reels\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022.   Video Tik Tok\"]})}),className:\"framer-wptp7e\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88bd3z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4896,intrinsicWidth:8736,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+475.6+0+0),pixelHeight:4896,pixelWidth:8736,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg\",srcSet:\"https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg 8736w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4896,intrinsicWidth:8736,pixelHeight:4896,pixelWidth:8736,src:\"https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg\",srcSet:\"https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/9NAGwGtFykDGR8ep0Gwf8Adj8M.jpg 8736w\"},className:\"framer-5q6sjn\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mugkgz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Sviluppo Web, App \"})}),className:\"framer-19e75sx\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"\u2022.   UI/UX\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Sito Web\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    E-commerce\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Landing Page\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022.   Email Business\"]})}),className:\"framer-122pfef\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8rxigc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5376,intrinsicWidth:3072,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2791.9+32+0+0+625.8+0+-411.5+0+475.6+0+0),pixelHeight:5376,pixelWidth:3072,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) * 1.0112, 0px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg\",srcSet:\"https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=1024 585w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=2048 1170w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=4096 2340w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg 3072w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5376,intrinsicWidth:3072,pixelHeight:5376,pixelWidth:3072,src:\"https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg\",srcSet:\"https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=1024 585w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=2048 1170w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg?scale-down-to=4096 2340w,https://framerusercontent.com/images/4WaauNxc1J8lc9GwSOz2Cu6Vw.jpg 3072w\"},className:\"framer-cxqhi0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1k7wi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Automation\"})}),className:\"framer-1bxlbt1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"\u2022    Email Automation\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Whatsapp Automation\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022    Broadcast Automation\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022.   SMS Automation\"]})}),className:\"framer-u0swt0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1et000j\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb9s84\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Creiamo il tuo piano personalizzato\"})})},uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Creiamo il tuo piano personalizzato\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Creiamo il tuo piano personalizzato\"})}),className:\"framer-zyws0j\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15jbaak\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(\"button\",{className:\"framer-10m4sc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/393408037358\",motionChild:true,nodeId:\"NXreOZDbp\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-tuepzk\",\"data-styles-preset\":\"nV8BwPme4\",children:\"Contattaci Ora!\"})})})}),className:\"framer-1kjuysp\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10slui0\",\"data-framer-name\":\"Map\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzgkmc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c2chb8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Siamo un team \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 195, 131)\"},children:\"internazionale\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Siamo un team \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 196, 131)\"},children:\"internazionale\"})]})}),className:\"framer-dgmb7v\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"L\u2019esperienza internazionale dei fondatori e del team, comprensiva di presenza di distaccamenti in diversi reparti all'estero,  permette di espandere efficacemente i progetti a livello globale attraverso la collaborazione con\",/*#__PURE__*/_jsx(\"br\",{}),\"investitori esteri e l'implementazione di piani di crescita strategici\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"22px\"},children:\"L\u2019esperienza internazionale dei fondatori e del team, comprensiva di presenza di distaccamenti in diversi reparti all'estero, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"22px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"22px\"},children:\"permette di espandere efficacemente i progetti a livello globale attraverso la collaborazione con\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"22px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"22px\"},children:\"investitori esteri e l'implementazione di piani di crescita strategici\"})]})}),className:\"framer-xlufrj\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2540,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4799.8+80+0+0+171),pixelHeight:2540,pixelWidth:5184,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`,src:\"https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg\",srcSet:\"https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg 5184w\"}},uP3HiX_iN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2540,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1),pixelHeight:2540,pixelWidth:5184,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`,src:\"https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg\",srcSet:\"https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kyL1miVoCA85VUhdlIJ37LSlcM.jpg 5184w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2540,intrinsicWidth:5184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171),pixelHeight:2540,pixelWidth:5184,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 160px)`,src:\"https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg\",srcSet:\"https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/AiXDHu0bES2VeY2tJqe7JrpcM.jpg 5184w\"},className:\"framer-oky77y\",\"data-framer-name\":\"Map_GlobalSolutions_01_1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+266),pixelHeight:254,pixelWidth:508,src:\"https://framerusercontent.com/images/KFsBLFkS4jFWH2VDKlmCfWuKtoI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+266),pixelHeight:254,pixelWidth:508,src:\"https://framerusercontent.com/images/KFsBLFkS4jFWH2VDKlmCfWuKtoI.png\"},className:\"framer-wkt6j4 hidden-11xhyoq\",\"data-framer-name\":\"Group_7\",style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:524,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+107),pixelHeight:236,pixelWidth:524,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) - 1102px)`,src:\"https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png\",srcSet:\"https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png 524w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:524,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+107),pixelHeight:236,pixelWidth:524,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 1262px)`,src:\"https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png\",srcSet:\"https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YIlZ0UWYWBAeZuhfGzg7JpGEFE.png 524w\"},className:\"framer-t576gn hidden-11xhyoq\",\"data-framer-name\":\"Group_9\",style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+175),pixelHeight:189,pixelWidth:381,src:\"https://framerusercontent.com/images/CMnvqFmXrr0fzBPvozH9g17oDE.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+175),pixelHeight:189,pixelWidth:381,src:\"https://framerusercontent.com/images/CMnvqFmXrr0fzBPvozH9g17oDE.png\"},className:\"framer-e1quwn hidden-11xhyoq\",\"data-framer-name\":\"Group_8\",style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:252,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+117),pixelHeight:177,pixelWidth:525,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px) - 1069px)`,src:\"https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png\",srcSet:\"https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png 525w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:252,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+117),pixelHeight:177,pixelWidth:525,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 1229px)`,src:\"https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png\",srcSet:\"https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/bUXjQKpVAjByWhibSyAJ0TjIqjE.png 525w\"},className:\"framer-s3m23d hidden-11xhyoq\",\"data-framer-name\":\"Group_7\",style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:252,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+332),pixelHeight:177,pixelWidth:378,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zIKubXmtNF4gDogopst0YFH5ytA.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:252,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+332),pixelHeight:177,pixelWidth:378,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zIKubXmtNF4gDogopst0YFH5ytA.png\"},className:\"framer-shi9qk hidden-11xhyoq\",\"data-framer-name\":\"Group_7\",style:{transformPerspective:1200}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3726.7+32+0+0+152.1+40),pixelHeight:191,pixelWidth:381,src:\"https://framerusercontent.com/images/wvdWfYPFZUk1xNjYHSzHQXbjUlU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation5,__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:254,intrinsicWidth:508,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+64+0+171+40),pixelHeight:191,pixelWidth:381,src:\"https://framerusercontent.com/images/wvdWfYPFZUk1xNjYHSzHQXbjUlU.png\"},className:\"framer-59l5nd hidden-11xhyoq\",\"data-framer-name\":\"Group_8\",style:{transformPerspective:1200}})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:true,__framer__offset:60,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5unhio\",\"data-framer-name\":\"Team\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19czcig\",\"data-framer-name\":\"Title wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 195, 131)\"},children:\"Un'affidabilit\\xe0\"}),\" dimostrata nel tempo\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 195, 128)\"},children:\"Un'affidabilit\\xe0\"}),\" dimostrata nel Tempo\"]})}),className:\"framer-1u8z6ek\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uP3HiX_iN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"Il nostro team lavora fianco a fianco con i clienti, comprendendo le loro esigenze e progettando \",/*#__PURE__*/_jsx(\"br\",{}),\"soluzioni su misura per il raggiungimento degli obiettivi di crescita.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(62, 62, 62)\"},children:[\"Il nostro team lavora fianco a fianco con i clienti, comprendendo le loro esigenze e progettando \",/*#__PURE__*/_jsx(\"br\",{}),\"soluzioni su misura per il raggiungimento degli obiettivi di crescita.\"]})}),className:\"framer-8yxbxf\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vwca0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ygjW4v7Cl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{padding:0,paddingPerSide:false},uP3HiX_iN:{paddingPerSide:false,sizingObject:{heightInset:290,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.24)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:0},gap:10,height:\"100%\",id:\"ygjW4v7Cl\",layoutId:\"ygjW4v7Cl\",padding:10,paddingBottom:10,paddingLeft:80,paddingPerSide:true,paddingRight:80,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14un2ew-container\",\"data-framer-name\":\"Mattia\",inComponentSlot:true,name:\"Mattia\",nodeId:\"CIepWsSiQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"CIepWsSiQ\",layoutId:\"CIepWsSiQ\",name:\"Mattia\",PTERxo8u3:addImageAlt({positionX:\"49.6%\",positionY:\"9.5%\",src:\"https://framerusercontent.com/images/BQS5jsn7EI7DQnfHxvIBKTBz5DI.png\",srcSet:\"https://framerusercontent.com/images/BQS5jsn7EI7DQnfHxvIBKTBz5DI.png?scale-down-to=1024 682w,https://framerusercontent.com/images/BQS5jsn7EI7DQnfHxvIBKTBz5DI.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/BQS5jsn7EI7DQnfHxvIBKTBz5DI.png 2000w\"},\"\"),R1B76ws0a:\"Mattia \",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"CEO/Founder\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gng7t4-container\",\"data-framer-name\":\"Sandro\",inComponentSlot:true,name:\"Sandro\",nodeId:\"FEZvO20em\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"FEZvO20em\",layoutId:\"FEZvO20em\",name:\"Sandro\",PTERxo8u3:addImageAlt({positionX:\"48.7%\",positionY:\"4.5%\",src:\"https://framerusercontent.com/images/gzelZvmCXNIjUsAtIJFXlWwLOvY.png\",srcSet:\"https://framerusercontent.com/images/gzelZvmCXNIjUsAtIJFXlWwLOvY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/gzelZvmCXNIjUsAtIJFXlWwLOvY.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/gzelZvmCXNIjUsAtIJFXlWwLOvY.png 2000w\"},\"\"),R1B76ws0a:\"Sandro \",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"MD/Co-Founder\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eiq29v-container\",\"data-framer-name\":\"Matteo\",inComponentSlot:true,name:\"Matteo\",nodeId:\"TvoVwkwK7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"TvoVwkwK7\",layoutId:\"TvoVwkwK7\",name:\"Matteo\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/36pAhYjwl279oa8v9R0Ge7umkjc.png\",srcSet:\"https://framerusercontent.com/images/36pAhYjwl279oa8v9R0Ge7umkjc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/36pAhYjwl279oa8v9R0Ge7umkjc.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/36pAhYjwl279oa8v9R0Ge7umkjc.png 2000w\"},\"\"),R1B76ws0a:\"Matteo \",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Art Director\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ks8moa-container\",\"data-framer-name\":\"Alessia\",inComponentSlot:true,name:\"Alessia\",nodeId:\"kQ9YrPXA4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"kQ9YrPXA4\",layoutId:\"kQ9YrPXA4\",name:\"Alessia\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/uoHy8ml5xD64cH5fGrF5hXxk.png\",srcSet:\"https://framerusercontent.com/images/uoHy8ml5xD64cH5fGrF5hXxk.png?scale-down-to=1024 682w,https://framerusercontent.com/images/uoHy8ml5xD64cH5fGrF5hXxk.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/uoHy8ml5xD64cH5fGrF5hXxk.png 2000w\"},\"\"),R1B76ws0a:\"Alessia\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"SMM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4pqgo-container\",\"data-framer-name\":\"Stefano\",inComponentSlot:true,name:\"Stefano\",nodeId:\"g6fr0phSw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"g6fr0phSw\",layoutId:\"g6fr0phSw\",name:\"Stefano\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/YqBVg3G9rAJZWqrgCMpWG6tNsWU.png\",srcSet:\"https://framerusercontent.com/images/YqBVg3G9rAJZWqrgCMpWG6tNsWU.png?scale-down-to=1024 682w,https://framerusercontent.com/images/YqBVg3G9rAJZWqrgCMpWG6tNsWU.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/YqBVg3G9rAJZWqrgCMpWG6tNsWU.png 2000w\"},\"\"),R1B76ws0a:\"Stefano\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Graphic Designer\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8cqy0l-container\",\"data-framer-name\":\"Vittorio\",inComponentSlot:true,name:\"Vittorio\",nodeId:\"erandyFET\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"erandyFET\",layoutId:\"erandyFET\",name:\"Vittorio\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/3AB5Z2y5AK55qBrmGIckgYvbKsg.png\",srcSet:\"https://framerusercontent.com/images/3AB5Z2y5AK55qBrmGIckgYvbKsg.png?scale-down-to=1024 682w,https://framerusercontent.com/images/3AB5Z2y5AK55qBrmGIckgYvbKsg.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/3AB5Z2y5AK55qBrmGIckgYvbKsg.png 2000w\"},\"\"),R1B76ws0a:\"Vittorio\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Data Analyst\\xa0/\\xa0ADV\\xa0Manager\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgmon9-container\",\"data-framer-name\":\"Nick\",inComponentSlot:true,name:\"Nick\",nodeId:\"Wtgcxf5IQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"Wtgcxf5IQ\",layoutId:\"Wtgcxf5IQ\",name:\"Nick\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/yQXKzJ5kHYYpDW107mal4K9SwM.png\",srcSet:\"https://framerusercontent.com/images/yQXKzJ5kHYYpDW107mal4K9SwM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/yQXKzJ5kHYYpDW107mal4K9SwM.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/yQXKzJ5kHYYpDW107mal4K9SwM.png 2000w\"},\"\"),R1B76ws0a:\"Nick \",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Videomaker\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gknaim-container\",\"data-framer-name\":\"Carola\",inComponentSlot:true,name:\"Carola\",nodeId:\"LBN_cUL0J\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"LBN_cUL0J\",layoutId:\"LBN_cUL0J\",name:\"Carola\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/ZPDqz4anEZk3wPjafIZGwt7VY8.jpg\",srcSet:\"https://framerusercontent.com/images/ZPDqz4anEZk3wPjafIZGwt7VY8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ZPDqz4anEZk3wPjafIZGwt7VY8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/ZPDqz4anEZk3wPjafIZGwt7VY8.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/ZPDqz4anEZk3wPjafIZGwt7VY8.jpg 3802w\"},\"\"),R1B76ws0a:\"Carola\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Photograper\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kuin5j-container\",\"data-framer-name\":\"Giorgio\",inComponentSlot:true,name:\"Giorgio\",nodeId:\"X3XYa8aO5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"X3XYa8aO5\",layoutId:\"X3XYa8aO5\",name:\"Giorgio\",PTERxo8u3:addImageAlt({positionX:\"46.1%\",positionY:\"12.9%\",src:\"https://framerusercontent.com/images/P5Nw13ZiUq4fuxtFH1fzmZaNaCA.png\",srcSet:\"https://framerusercontent.com/images/P5Nw13ZiUq4fuxtFH1fzmZaNaCA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/P5Nw13ZiUq4fuxtFH1fzmZaNaCA.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/P5Nw13ZiUq4fuxtFH1fzmZaNaCA.png 2000w\"},\"\"),R1B76ws0a:\"Giorgio\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Video Maker \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4nihd-container\",\"data-framer-name\":\"Shashimal\",inComponentSlot:true,name:\"Shashimal\",nodeId:\"sUqSNgb7o\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"sUqSNgb7o\",layoutId:\"sUqSNgb7o\",name:\"Shashimal\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/Q2BptxZF5o4ulSo7qv4viDhoLpI.png\",srcSet:\"https://framerusercontent.com/images/Q2BptxZF5o4ulSo7qv4viDhoLpI.png?scale-down-to=1024 682w,https://framerusercontent.com/images/Q2BptxZF5o4ulSo7qv4viDhoLpI.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/Q2BptxZF5o4ulSo7qv4viDhoLpI.png 2000w\"},\"\"),R1B76ws0a:\"Shashimal\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Director Wasisco Global\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r2oeis-container\",\"data-framer-name\":\"Kusal\",inComponentSlot:true,name:\"Kusal\",nodeId:\"xzddPxNrY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"xzddPxNrY\",layoutId:\"xzddPxNrY\",name:\"Kusal\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/7f0hfgLRL0uI6elstrGDu31fI.png\",srcSet:\"https://framerusercontent.com/images/7f0hfgLRL0uI6elstrGDu31fI.png?scale-down-to=1024 682w,https://framerusercontent.com/images/7f0hfgLRL0uI6elstrGDu31fI.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/7f0hfgLRL0uI6elstrGDu31fI.png 2000w\"},\"\"),R1B76ws0a:\"Kusal\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"UI UX Designer\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t2iadm-container\",\"data-framer-name\":\"Savindu\",inComponentSlot:true,name:\"Savindu\",nodeId:\"BjQqBj3HG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"BjQqBj3HG\",layoutId:\"BjQqBj3HG\",name:\"Savindu\",PTERxo8u3:addImageAlt({positionX:\"50.4%\",positionY:\"22%\",src:\"https://framerusercontent.com/images/DhzLae8MBNwNq2PH1ZJsAIziPoY.png\",srcSet:\"https://framerusercontent.com/images/DhzLae8MBNwNq2PH1ZJsAIziPoY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/DhzLae8MBNwNq2PH1ZJsAIziPoY.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/DhzLae8MBNwNq2PH1ZJsAIziPoY.png 2000w\"},\"\"),R1B76ws0a:\"Savindu\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Project Manager\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4yfoo-container\",\"data-framer-name\":\"Alice\",inComponentSlot:true,name:\"Alice\",nodeId:\"fXMJqGMnX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"fXMJqGMnX\",layoutId:\"fXMJqGMnX\",name:\"Alice\",PTERxo8u3:addImageAlt({src:\"https://framerusercontent.com/images/WXgTO5QR9bYYCtu3sgYuiF3aY.png\",srcSet:\"https://framerusercontent.com/images/WXgTO5QR9bYYCtu3sgYuiF3aY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/WXgTO5QR9bYYCtu3sgYuiF3aY.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/WXgTO5QR9bYYCtu3sgYuiF3aY.png 2000w\"},\"\"),R1B76ws0a:\"Alice\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Grafica\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wclpez-container\",\"data-framer-name\":\"Diego\",inComponentSlot:true,name:\"Diego\",nodeId:\"OE7d9PROF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"OE7d9PROF\",layoutId:\"OE7d9PROF\",name:\"Diego\",PTERxo8u3:addImageAlt({positionX:\"49.3%\",positionY:\"2.4%\",src:\"https://framerusercontent.com/images/PcdRhZudGJseheswVcsmjK1it3Q.png\",srcSet:\"https://framerusercontent.com/images/PcdRhZudGJseheswVcsmjK1it3Q.png?scale-down-to=1024 682w,https://framerusercontent.com/images/PcdRhZudGJseheswVcsmjK1it3Q.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/PcdRhZudGJseheswVcsmjK1it3Q.png 2500w\"},\"\"),R1B76ws0a:\"Diego\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Food Consultant\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gdyl6m-container\",\"data-framer-name\":\"Claudio\",inComponentSlot:true,name:\"Claudio\",nodeId:\"O6RG6Su8m\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"O6RG6Su8m\",layoutId:\"O6RG6Su8m\",name:\"Claudio\",PTERxo8u3:addImageAlt({positionX:\"50%\",positionY:\"5.2%\",src:\"https://framerusercontent.com/images/7IWc7UIkLTL3eLEOdCmUmhvwRA.png\",srcSet:\"https://framerusercontent.com/images/7IWc7UIkLTL3eLEOdCmUmhvwRA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/7IWc7UIkLTL3eLEOdCmUmhvwRA.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/7IWc7UIkLTL3eLEOdCmUmhvwRA.png 2500w\"},\"\"),R1B76ws0a:\"Claudio\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Food Consultant\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nudsj7-container\",\"data-framer-name\":\"Pr.1\",inComponentSlot:true,name:\"Pr.1\",nodeId:\"QHb55I5yc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"QHb55I5yc\",layoutId:\"QHb55I5yc\",name:\"Pr.1\",PTERxo8u3:addImageAlt({positionX:\"47.9%\",positionY:\"2.3%\",src:\"https://framerusercontent.com/images/I3va6xQzpmkqowjgYEAKktSUh2g.png\",srcSet:\"https://framerusercontent.com/images/I3va6xQzpmkqowjgYEAKktSUh2g.png?scale-down-to=1024 682w,https://framerusercontent.com/images/I3va6xQzpmkqowjgYEAKktSUh2g.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/I3va6xQzpmkqowjgYEAKktSUh2g.png 2000w\"},\"\"),R1B76ws0a:\"Nipuna\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Software Engineer\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vnpfl4-container\",\"data-framer-name\":\"Jorio\",inComponentSlot:true,name:\"Jorio\",nodeId:\"UKcHHDHl4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"UKcHHDHl4\",layoutId:\"UKcHHDHl4\",name:\"Jorio\",PTERxo8u3:addImageAlt({positionX:\"47.6%\",positionY:\"7.7%\",src:\"https://framerusercontent.com/images/xDvkUtNAXoSyIhry2JokOxJOQ5U.png\",srcSet:\"https://framerusercontent.com/images/xDvkUtNAXoSyIhry2JokOxJOQ5U.png?scale-down-to=1024 682w,https://framerusercontent.com/images/xDvkUtNAXoSyIhry2JokOxJOQ5U.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/xDvkUtNAXoSyIhry2JokOxJOQ5U.png 2000w\"},\"\"),R1B76ws0a:\"Jorio\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Designer\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xzrwt-container\",\"data-framer-name\":\"Pr.2\",inComponentSlot:true,name:\"Pr.2\",nodeId:\"q1Ny2Y6mr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"q1Ny2Y6mr\",layoutId:\"q1Ny2Y6mr\",name:\"Pr.2\",PTERxo8u3:addImageAlt({positionX:\"52.6%\",positionY:\"6.9%\",src:\"https://framerusercontent.com/images/Zm4ey5enHlY49NS0S2IIEdAFPY.png\",srcSet:\"https://framerusercontent.com/images/Zm4ey5enHlY49NS0S2IIEdAFPY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/Zm4ey5enHlY49NS0S2IIEdAFPY.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/Zm4ey5enHlY49NS0S2IIEdAFPY.png 2000w\"},\"\"),R1B76ws0a:\"Hashen\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"UI/UX Developer\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qpndsw-container\",\"data-framer-name\":\"Pr.3\",inComponentSlot:true,name:\"Pr.3\",nodeId:\"fvvWD_lm9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"fvvWD_lm9\",layoutId:\"fvvWD_lm9\",name:\"Pr.3\",PTERxo8u3:addImageAlt({positionX:\"50.9%\",positionY:\"7.4%\",src:\"https://framerusercontent.com/images/xiasRxOaaT9EsKFc0AmEgUlkjmE.png\",srcSet:\"https://framerusercontent.com/images/xiasRxOaaT9EsKFc0AmEgUlkjmE.png?scale-down-to=1024 682w,https://framerusercontent.com/images/xiasRxOaaT9EsKFc0AmEgUlkjmE.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/xiasRxOaaT9EsKFc0AmEgUlkjmE.png 2000w\"},\"\"),R1B76ws0a:\"Yasas\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Tech Lead\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwnkdi-container\",\"data-framer-name\":\"Pr.4\",inComponentSlot:true,name:\"Pr.4\",nodeId:\"qYlRyRW5a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderItem,{height:\"100%\",id:\"qYlRyRW5a\",layoutId:\"qYlRyRW5a\",name:\"Pr.4\",PTERxo8u3:addImageAlt({positionX:\"48.4%\",positionY:\"2.4%\",src:\"https://framerusercontent.com/images/GiLr2YVBxrZXQWCyJp8QZRTS8.png\",srcSet:\"https://framerusercontent.com/images/GiLr2YVBxrZXQWCyJp8QZRTS8.png?scale-down-to=1024 682w,https://framerusercontent.com/images/GiLr2YVBxrZXQWCyJp8QZRTS8.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/GiLr2YVBxrZXQWCyJp8QZRTS8.png 2000w\"},\"\"),R1B76ws0a:\"Pasindu\",style:{height:\"100%\",width:\"100%\"},Vg7yr6_VE:\"Software Engineer\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9nu8c0\",\"data-framer-name\":\"Testimonials\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3aspdy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OmZ7gb7k_\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:4,fadeTransition:{damping:60,delay:0,mass:1,stiffness:308,type:\"spring\"},fadeWidth:15},gap:16,height:\"100%\",id:\"OmZ7gb7k_\",layoutId:\"OmZ7gb7k_\",padding:48,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:16,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"rgb(89, 89, 89)\",dotsGap:10,dotsInset:0,dotSize:9,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i616qp-container\",inComponentSlot:true,nodeId:\"pG3PFWylb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{F2C65Uz3l:\"Trusted, hard working and so passionate about what they do. My partner and I can only have positive words, we had never found people who were always available and with whom to collaborate so serenely and in harmony.\",height:\"100%\",id:\"pG3PFWylb\",KIr2Shkyv:\"\",layoutId:\"pG3PFWylb\",Qgz_OWTA_:\"Rossella Sergio\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gumps2-container\",inComponentSlot:true,nodeId:\"sm9CMYBwQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/4VCnelaMPZhEUPlGLYmDSbH5Y.jpg\",srcSet:\"https://framerusercontent.com/images/4VCnelaMPZhEUPlGLYmDSbH5Y.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/4VCnelaMPZhEUPlGLYmDSbH5Y.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/4VCnelaMPZhEUPlGLYmDSbH5Y.jpg?scale-down-to=4096 2925w,https://framerusercontent.com/images/4VCnelaMPZhEUPlGLYmDSbH5Y.jpg 3837w\"},\"\"),F2C65Uz3l:\"Completely different from the agencies we had in the past! I immediately perceived that when we talked about food they knew what we were talking about, they are not the usual ones who come to tell stories (as I have found several times in the past).  We have done a great teamwork to expand, which before them was only in our ideas and dreams.  My experience is really positive and I hope that the results obtained up to now in our restaurant can also be of help to other companies that need real communication.  I am really satisfied\",height:\"100%\",id:\"sm9CMYBwQ\",KIr2Shkyv:\"\",layoutId:\"sm9CMYBwQ\",Qgz_OWTA_:\"Cotto Servito\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rmqqnu-container\",inComponentSlot:true,nodeId:\"BDSCdnI73\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg\",srcSet:\"https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cgmszVstw2zlh28XUo5CRTjMw.jpg 6000w\"},\"\"),F2C65Uz3l:\"We are really getting along very well ... It is not just a web agency but it is more a consultancy and trusted team. They have been building with us since before the project started, a path to create the right foundation of where we are now.  The big difference, in addition to the fact that they have always been present (7 days a week), is that they really understand Food & Beverage, with people inside who have a past in the sector.  Well done and highly recommended\",height:\"100%\",id:\"BDSCdnI73\",KIr2Shkyv:\"\",layoutId:\"BDSCdnI73\",Qgz_OWTA_:\"Bottega del mare Castiglione\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19yucup-container\",inComponentSlot:true,nodeId:\"rhQAXCeyT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg\",srcSet:\"https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/xE2CLDAgbkgj9jTROc9w6zEHsDQ.jpg 6174w\"},\"\"),F2C65Uz3l:\"Presence and professional service, very important for our company. They brought results, this is what we were looking for.\",height:\"100%\",id:\"rhQAXCeyT\",KIr2Shkyv:\"\",layoutId:\"rhQAXCeyT\",Qgz_OWTA_:\"Massimo Morandi\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxmto9-container\",inComponentSlot:true,nodeId:\"CoqqIaYbQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/IQlNdE7wPJ71XXY4fnHjLzR8Zw.jpg\",srcSet:\"https://framerusercontent.com/images/IQlNdE7wPJ71XXY4fnHjLzR8Zw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/IQlNdE7wPJ71XXY4fnHjLzR8Zw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/IQlNdE7wPJ71XXY4fnHjLzR8Zw.jpg 2000w\"},\"\"),F2C65Uz3l:\"Ci stiamo trovando davvero molto bene \u2026Non \\xe8 solo un\u2019agenzia web ma \\xe8 pi\\xf9 un team di consulenza e di fiducia. Hanno costruito insieme a noi da prima che il progetto si avviasse, un percorso per creare le giuste basi di dove ci troviamo adesso.  La grande differenza, oltre al fatto che sono stati sempre (7 giorni a settimana) presenti, \\xe8 che si intendono di Food &Beverage sul serio, con persone all\u2019interno che hanno un passato nel settore.  Bravi e super consigliati\",height:\"100%\",id:\"CoqqIaYbQ\",KIr2Shkyv:\"\",layoutId:\"CoqqIaYbQ\",Qgz_OWTA_:\"Bottega del mare Castiglione\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2i2y1-container\",inComponentSlot:true,nodeId:\"Z7skvVuxs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/ZxOmZGLUadcUWXb3gmC6maiZkU.jpg\",srcSet:\"https://framerusercontent.com/images/ZxOmZGLUadcUWXb3gmC6maiZkU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ZxOmZGLUadcUWXb3gmC6maiZkU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/ZxOmZGLUadcUWXb3gmC6maiZkU.jpg 2000w\"},\"\"),F2C65Uz3l:\"Non ero sicuro di cosa aspettarmi, ma Wasisco Marketing ha superato ogni mia aspettativa. Il loro approccio diretto e onesto nel comunicare ci\\xf2 che funziona e ci\\xf2 che non funziona \\xe8 stato molto apprezzato. Hanno davvero contribuito alla crescita della mia azienda.\",height:\"100%\",id:\"Z7skvVuxs\",KIr2Shkyv:\"\",layoutId:\"Z7skvVuxs\",Qgz_OWTA_:\"Caff\\xe8 Libert\\xe0\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2rx94-container\",inComponentSlot:true,nodeId:\"jeGBHYfJv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{CQ18Ejm5c:addImageAlt({src:\"https://framerusercontent.com/images/UnLvKKdInkG6WfIF7yZ0KpDPE.jpg\",srcSet:\"https://framerusercontent.com/images/UnLvKKdInkG6WfIF7yZ0KpDPE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/UnLvKKdInkG6WfIF7yZ0KpDPE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/UnLvKKdInkG6WfIF7yZ0KpDPE.jpg 2000w\"},\"\"),F2C65Uz3l:\"Apprezziamo molto il lavoro svolto da Wasisco Marketing. Hanno ascoltato attentamente le nostre esigenze e hanno elaborato una strategia che ha dato risultati concreti. Un team professionale e competente\",height:\"100%\",id:\"jeGBHYfJv\",KIr2Shkyv:\"\",layoutId:\"jeGBHYfJv\",Qgz_OWTA_:\"Coronas Caf\\xe8\",SR5tUSblo:addImageAlt({src:\"https://framerusercontent.com/images/oIvrtLsiAQErT29ZzHyv5mPB68.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{y:(componentViewport?.y||0)+0+6946.6},uP3HiX_iN:{y:(componentViewport?.y||0)+0+5705.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:361,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3586.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e7vhw9-container\",nodeId:\"W53gTrhUr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bnoNTTEJx:{variant:\"f_mh9mLYj\"},uP3HiX_iN:{variant:\"BBspK2WH6\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"W53gTrhUr\",layoutId:\"W53gTrhUr\",style:{width:\"100%\"},variant:\"D9QHCwQpx\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s707Y.framer-lux5qc, .framer-s707Y .framer-lux5qc { display: block; }\",\".framer-s707Y.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-s707Y .framer-xwhmkp-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-s707Y .framer-az2zxs { 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: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-10aefr2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 128px 80px 64px 80px; position: relative; width: 100%; }\",\".framer-s707Y .framer-cgx71n, .framer-s707Y .framer-1bwhrur, .framer-s707Y .framer-vi7fim { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s707Y .framer-16opv99 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-s707Y .framer-j4w2ej { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 488px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-s707Y .framer-js8704 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-s707Y .framer-1dmyj93-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-s707Y .framer-145bhdu { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s707Y .framer-r88sjq { align-self: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; grid-row: auto / span 2; height: 580px; justify-self: center; position: relative; width: 100%; }\",\".framer-s707Y .framer-l4vtdw, .framer-s707Y .framer-13w5lnr { align-self: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 100%; justify-self: center; position: relative; width: 100%; }\",\".framer-s707Y .framer-er5wc6-container { flex: none; height: 130px; max-width: 1440px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1kwyz6i { aspect-ratio: 1.8928571428571428 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 106px; }\",\".framer-s707Y .framer-9o4ykx { aspect-ratio: 1.7142857142857142 / 1; height: var(--framer-aspect-ratio-supported, 98px); overflow: visible; position: relative; width: 168px; }\",\".framer-s707Y .framer-9e0tra { aspect-ratio: 1.4722222222222223 / 1; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 106px; }\",\".framer-s707Y .framer-1pjxzdi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 150px; }\",\".framer-s707Y .framer-p09oi5 { aspect-ratio: 2.236111111111111 / 1; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 161px; }\",\".framer-s707Y .framer-nupux0 { aspect-ratio: 2.6666666666666665 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 127px; }\",\".framer-s707Y .framer-vitc7o { aspect-ratio: 1.7878787878787878 / 1; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 118px; }\",\".framer-s707Y .framer-36y234 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 96px); overflow: visible; position: relative; width: 96px; }\",\".framer-s707Y .framer-k41jdk { aspect-ratio: 3.25 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 156px; }\",\".framer-s707Y .framer-1ojpylv { aspect-ratio: 2.65625 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 170px; }\",\".framer-s707Y .framer-12nubg2 { aspect-ratio: 2.5 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 125px; }\",\".framer-s707Y .framer-pr94ds, .framer-s707Y .framer-k7llf4 { aspect-ratio: 1.8928571428571428 / 1; height: var(--framer-aspect-ratio-supported, 98px); overflow: visible; position: relative; width: 186px; }\",\".framer-s707Y .framer-4zzre6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 168px); overflow: visible; position: relative; width: 168px; }\",\".framer-s707Y .framer-1dfi9ga { aspect-ratio: 2.6148243359040273 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 132px; }\",\".framer-s707Y .framer-1yuhm9r { aspect-ratio: 1.5380316671841043 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 98px; }\",\".framer-s707Y .framer-1njaj9n { aspect-ratio: 1.8928571428571428 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 117px; }\",\".framer-s707Y .framer-bp609g { aspect-ratio: 3.010392064241852 / 1; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 165px; }\",\".framer-s707Y .framer-sio0z { aspect-ratio: 0.8936550491510277 / 1; height: var(--framer-aspect-ratio-supported, 76px); overflow: visible; position: relative; width: 68px; }\",\".framer-s707Y .framer-1fgxzbg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 102px); overflow: visible; position: relative; width: 102px; }\",\".framer-s707Y .framer-1bn61lj { aspect-ratio: 1.7325017325017324 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 103px; }\",\".framer-s707Y .framer-1yhzmtc { aspect-ratio: 3.633766233766234 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 116px; }\",\".framer-s707Y .framer-13j91zl { aspect-ratio: 1.735593220338983 / 1; height: var(--framer-aspect-ratio-supported, 59px); overflow: visible; position: relative; width: 102px; }\",\".framer-s707Y .framer-y38303 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-v7x2ny { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-s707Y .framer-pr2dhd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1yu413g { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s707Y .framer-11zm5dc { aspect-ratio: 1.6050632911392404 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 511px); position: relative; width: 1px; }\",\".framer-s707Y .framer-e6qyfy { align-self: stretch; background-color: #000000; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-s707Y .framer-oo75vm { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s707Y .framer-1rwp9vf, .framer-s707Y .framer-1wpbbii, .framer-s707Y .framer-5k43lo, .framer-s707Y .framer-1l0pnhn, .framer-s707Y .framer-wptp7e, .framer-s707Y .framer-122pfef, .framer-s707Y .framer-u0swt0, .framer-s707Y .framer-xlufrj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s707Y .framer-f3p0sn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 965px; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1ohf9kk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-s707Y .framer-qwx4sh { 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: 0px 0px 38px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1crmkng, .framer-s707Y .framer-1u8z6ek { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-s707Y .framer-1h3ly9j, .framer-s707Y .framer-8yxbxf { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-s707Y .framer-sr5xwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-136se27, .framer-s707Y .framer-31ios1 { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s707Y .framer-1weka0r-container, .framer-s707Y .framer-1tzdrh4-container, .framer-s707Y .framer-67u2r-container, .framer-s707Y .framer-u80pbt-container, .framer-s707Y .framer-kbaxaj-container, .framer-s707Y .framer-3ibmu8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-s707Y .framer-17afyha { align-content: center; align-items: center; background-color: #f9fafb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-11eg3t9, .framer-s707Y .framer-dzgkmc { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-s707Y .framer-1sv5n10, .framer-s707Y .framer-1s41ev1, .framer-s707Y .framer-1w0gvzj, .framer-s707Y .framer-17fyc0u, .framer-s707Y .framer-9kozfw, .framer-s707Y .framer-19e75sx, .framer-s707Y .framer-1bxlbt1, .framer-s707Y .framer-zyws0j, .framer-s707Y .framer-dgmb7v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s707Y .framer-1qqapp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1hs6mha { 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-s707Y .framer-1cme1qo, .framer-s707Y .framer-nzjznb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-eq3dxg { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-s707Y .framer-8u4a9w-container { flex: none; height: 650px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1qehtva { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101%; }\",\".framer-s707Y .framer-1l2pwbk { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 0px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-xqpsn2, .framer-s707Y .framer-1lei8g2, .framer-s707Y .framer-e1np5h, .framer-s707Y .framer-11b2j4g, .framer-s707Y .framer-88bd3z, .framer-s707Y .framer-8rxigc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-28oexs, .framer-s707Y .framer-p63pu4, .framer-s707Y .framer-18zlcz9, .framer-s707Y .framer-1dvruvg, .framer-s707Y .framer-5q6sjn, .framer-s707Y .framer-cxqhi0 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s707Y .framer-5wct5y, .framer-s707Y .framer-zdmevz, .framer-s707Y .framer-4pgmbm, .framer-s707Y .framer-xowwob, .framer-s707Y .framer-mugkgz, .framer-s707Y .framer-i1k7wi { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1et000j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-s707Y .framer-sb9s84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-s707Y .framer-15jbaak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s707Y .framer-10m4sc { align-content: center; align-items: center; background-color: #fbdfad; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-s707Y .framer-1kjuysp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s707Y .framer-10slui0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-1c2chb8 { 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: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-oky77y { aspect-ratio: 2.040944881889764 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 627px); overflow: visible; position: relative; width: 100%; }\",\".framer-s707Y .framer-wkt6j4 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 812px; overflow: visible; position: absolute; right: 308px; top: 266px; }\",\".framer-s707Y .framer-t576gn { aspect-ratio: 2.2203389830508473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 675px; overflow: visible; position: absolute; right: 427px; top: 107px; }\",\".framer-s707Y .framer-e1quwn { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 513px; overflow: visible; position: absolute; right: 607px; top: 175px; }\",\".framer-s707Y .framer-s3m23d { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); left: 312px; overflow: visible; position: absolute; right: 757px; top: 117px; }\",\".framer-s707Y .framer-shi9qk { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); left: 377px; overflow: visible; position: absolute; right: 752px; top: 332px; }\",\".framer-s707Y .framer-59l5nd { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 489px; overflow: visible; position: absolute; right: 631px; top: 40px; }\",\".framer-s707Y .framer-5unhio { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-s707Y .framer-19czcig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 64px 80px; position: relative; width: 100%; }\",\".framer-s707Y .framer-16vwca0-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-s707Y .framer-14un2ew-container, .framer-s707Y .framer-1gng7t4-container, .framer-s707Y .framer-1eiq29v-container, .framer-s707Y .framer-1ks8moa-container, .framer-s707Y .framer-1v4pqgo-container, .framer-s707Y .framer-8cqy0l-container, .framer-s707Y .framer-fgmon9-container, .framer-s707Y .framer-gknaim-container, .framer-s707Y .framer-kuin5j-container, .framer-s707Y .framer-1j4nihd-container, .framer-s707Y .framer-r2oeis-container, .framer-s707Y .framer-1t2iadm-container, .framer-s707Y .framer-l4yfoo-container, .framer-s707Y .framer-1wclpez-container, .framer-s707Y .framer-gdyl6m-container, .framer-s707Y .framer-nudsj7-container, .framer-s707Y .framer-vnpfl4-container, .framer-s707Y .framer-14xzrwt-container, .framer-s707Y .framer-1qpndsw-container, .framer-s707Y .framer-1pwnkdi-container { height: 414px; position: relative; width: 312px; }\",\".framer-s707Y .framer-9nu8c0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 56px 80px 56px 80px; position: relative; width: 100%; }\",\".framer-s707Y .framer-3aspdy-container { flex: none; height: 558px; position: relative; width: 100%; }\",\".framer-s707Y .framer-i616qp-container, .framer-s707Y .framer-1rmqqnu-container, .framer-s707Y .framer-19yucup-container, .framer-s707Y .framer-1jxmto9-container, .framer-s707Y .framer-2i2y1-container, .framer-s707Y .framer-a2rx94-container { height: 475px; position: relative; width: 413px; }\",\".framer-s707Y .framer-gumps2-container { height: 475px; position: relative; width: 415px; }\",\".framer-s707Y .framer-1e7vhw9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s707Y.framer-72rtr7, .framer-s707Y .framer-az2zxs, .framer-s707Y .framer-10aefr2, .framer-s707Y .framer-cgx71n, .framer-s707Y .framer-16opv99, .framer-s707Y .framer-1bwhrur, .framer-s707Y .framer-y38303, .framer-s707Y .framer-v7x2ny, .framer-s707Y .framer-pr2dhd, .framer-s707Y .framer-1yu413g, .framer-s707Y .framer-f3p0sn, .framer-s707Y .framer-1ohf9kk, .framer-s707Y .framer-qwx4sh, .framer-s707Y .framer-sr5xwj, .framer-s707Y .framer-136se27, .framer-s707Y .framer-31ios1, .framer-s707Y .framer-17afyha, .framer-s707Y .framer-11eg3t9, .framer-s707Y .framer-1qqapp8, .framer-s707Y .framer-1hs6mha, .framer-s707Y .framer-1cme1qo, .framer-s707Y .framer-nzjznb, .framer-s707Y .framer-vi7fim, .framer-s707Y .framer-1qehtva, .framer-s707Y .framer-xqpsn2, .framer-s707Y .framer-28oexs, .framer-s707Y .framer-5wct5y, .framer-s707Y .framer-1lei8g2, .framer-s707Y .framer-p63pu4, .framer-s707Y .framer-zdmevz, .framer-s707Y .framer-e1np5h, .framer-s707Y .framer-18zlcz9, .framer-s707Y .framer-4pgmbm, .framer-s707Y .framer-11b2j4g, .framer-s707Y .framer-1dvruvg, .framer-s707Y .framer-xowwob, .framer-s707Y .framer-88bd3z, .framer-s707Y .framer-5q6sjn, .framer-s707Y .framer-mugkgz, .framer-s707Y .framer-8rxigc, .framer-s707Y .framer-cxqhi0, .framer-s707Y .framer-i1k7wi, .framer-s707Y .framer-1et000j, .framer-s707Y .framer-sb9s84, .framer-s707Y .framer-15jbaak, .framer-s707Y .framer-10m4sc, .framer-s707Y .framer-10slui0, .framer-s707Y .framer-dzgkmc, .framer-s707Y .framer-1c2chb8, .framer-s707Y .framer-5unhio, .framer-s707Y .framer-19czcig, .framer-s707Y .framer-9nu8c0 { gap: 0px; } .framer-s707Y.framer-72rtr7 > *, .framer-s707Y .framer-y38303 > *, .framer-s707Y .framer-f3p0sn > *, .framer-s707Y .framer-1qehtva > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s707Y.framer-72rtr7 > :first-child, .framer-s707Y .framer-az2zxs > :first-child, .framer-s707Y .framer-16opv99 > :first-child, .framer-s707Y .framer-y38303 > :first-child, .framer-s707Y .framer-v7x2ny > :first-child, .framer-s707Y .framer-f3p0sn > :first-child, .framer-s707Y .framer-1ohf9kk > :first-child, .framer-s707Y .framer-qwx4sh > :first-child, .framer-s707Y .framer-11eg3t9 > :first-child, .framer-s707Y .framer-1hs6mha > :first-child, .framer-s707Y .framer-1qehtva > :first-child, .framer-s707Y .framer-xqpsn2 > :first-child, .framer-s707Y .framer-28oexs > :first-child, .framer-s707Y .framer-5wct5y > :first-child, .framer-s707Y .framer-1lei8g2 > :first-child, .framer-s707Y .framer-p63pu4 > :first-child, .framer-s707Y .framer-zdmevz > :first-child, .framer-s707Y .framer-e1np5h > :first-child, .framer-s707Y .framer-18zlcz9 > :first-child, .framer-s707Y .framer-4pgmbm > :first-child, .framer-s707Y .framer-11b2j4g > :first-child, .framer-s707Y .framer-1dvruvg > :first-child, .framer-s707Y .framer-xowwob > :first-child, .framer-s707Y .framer-88bd3z > :first-child, .framer-s707Y .framer-5q6sjn > :first-child, .framer-s707Y .framer-mugkgz > :first-child, .framer-s707Y .framer-8rxigc > :first-child, .framer-s707Y .framer-cxqhi0 > :first-child, .framer-s707Y .framer-i1k7wi > :first-child, .framer-s707Y .framer-sb9s84 > :first-child, .framer-s707Y .framer-dzgkmc > :first-child, .framer-s707Y .framer-1c2chb8 > :first-child, .framer-s707Y .framer-5unhio > :first-child, .framer-s707Y .framer-19czcig > :first-child, .framer-s707Y .framer-9nu8c0 > :first-child { margin-top: 0px; } .framer-s707Y.framer-72rtr7 > :last-child, .framer-s707Y .framer-az2zxs > :last-child, .framer-s707Y .framer-16opv99 > :last-child, .framer-s707Y .framer-y38303 > :last-child, .framer-s707Y .framer-v7x2ny > :last-child, .framer-s707Y .framer-f3p0sn > :last-child, .framer-s707Y .framer-1ohf9kk > :last-child, .framer-s707Y .framer-qwx4sh > :last-child, .framer-s707Y .framer-11eg3t9 > :last-child, .framer-s707Y .framer-1hs6mha > :last-child, .framer-s707Y .framer-1qehtva > :last-child, .framer-s707Y .framer-xqpsn2 > :last-child, .framer-s707Y .framer-28oexs > :last-child, .framer-s707Y .framer-5wct5y > :last-child, .framer-s707Y .framer-1lei8g2 > :last-child, .framer-s707Y .framer-p63pu4 > :last-child, .framer-s707Y .framer-zdmevz > :last-child, .framer-s707Y .framer-e1np5h > :last-child, .framer-s707Y .framer-18zlcz9 > :last-child, .framer-s707Y .framer-4pgmbm > :last-child, .framer-s707Y .framer-11b2j4g > :last-child, .framer-s707Y .framer-1dvruvg > :last-child, .framer-s707Y .framer-xowwob > :last-child, .framer-s707Y .framer-88bd3z > :last-child, .framer-s707Y .framer-5q6sjn > :last-child, .framer-s707Y .framer-mugkgz > :last-child, .framer-s707Y .framer-8rxigc > :last-child, .framer-s707Y .framer-cxqhi0 > :last-child, .framer-s707Y .framer-i1k7wi > :last-child, .framer-s707Y .framer-sb9s84 > :last-child, .framer-s707Y .framer-dzgkmc > :last-child, .framer-s707Y .framer-1c2chb8 > :last-child, .framer-s707Y .framer-5unhio > :last-child, .framer-s707Y .framer-19czcig > :last-child, .framer-s707Y .framer-9nu8c0 > :last-child { margin-bottom: 0px; } .framer-s707Y .framer-az2zxs > *, .framer-s707Y .framer-v7x2ny > *, .framer-s707Y .framer-1ohf9kk > *, .framer-s707Y .framer-qwx4sh > *, .framer-s707Y .framer-11eg3t9 > *, .framer-s707Y .framer-1hs6mha > *, .framer-s707Y .framer-5wct5y > *, .framer-s707Y .framer-zdmevz > *, .framer-s707Y .framer-4pgmbm > *, .framer-s707Y .framer-xowwob > *, .framer-s707Y .framer-mugkgz > *, .framer-s707Y .framer-i1k7wi > *, .framer-s707Y .framer-dzgkmc > *, .framer-s707Y .framer-1c2chb8 > *, .framer-s707Y .framer-5unhio > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s707Y .framer-10aefr2 > *, .framer-s707Y .framer-17afyha > *, .framer-s707Y .framer-1et000j > *, .framer-s707Y .framer-10slui0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s707Y .framer-10aefr2 > :first-child, .framer-s707Y .framer-cgx71n > :first-child, .framer-s707Y .framer-1bwhrur > :first-child, .framer-s707Y .framer-pr2dhd > :first-child, .framer-s707Y .framer-1yu413g > :first-child, .framer-s707Y .framer-sr5xwj > :first-child, .framer-s707Y .framer-136se27 > :first-child, .framer-s707Y .framer-31ios1 > :first-child, .framer-s707Y .framer-17afyha > :first-child, .framer-s707Y .framer-1qqapp8 > :first-child, .framer-s707Y .framer-1cme1qo > :first-child, .framer-s707Y .framer-nzjznb > :first-child, .framer-s707Y .framer-vi7fim > :first-child, .framer-s707Y .framer-1et000j > :first-child, .framer-s707Y .framer-15jbaak > :first-child, .framer-s707Y .framer-10m4sc > :first-child, .framer-s707Y .framer-10slui0 > :first-child { margin-left: 0px; } .framer-s707Y .framer-10aefr2 > :last-child, .framer-s707Y .framer-cgx71n > :last-child, .framer-s707Y .framer-1bwhrur > :last-child, .framer-s707Y .framer-pr2dhd > :last-child, .framer-s707Y .framer-1yu413g > :last-child, .framer-s707Y .framer-sr5xwj > :last-child, .framer-s707Y .framer-136se27 > :last-child, .framer-s707Y .framer-31ios1 > :last-child, .framer-s707Y .framer-17afyha > :last-child, .framer-s707Y .framer-1qqapp8 > :last-child, .framer-s707Y .framer-1cme1qo > :last-child, .framer-s707Y .framer-nzjznb > :last-child, .framer-s707Y .framer-vi7fim > :last-child, .framer-s707Y .framer-1et000j > :last-child, .framer-s707Y .framer-15jbaak > :last-child, .framer-s707Y .framer-10m4sc > :last-child, .framer-s707Y .framer-10slui0 > :last-child { margin-right: 0px; } .framer-s707Y .framer-cgx71n > *, .framer-s707Y .framer-1bwhrur > *, .framer-s707Y .framer-1yu413g > *, .framer-s707Y .framer-136se27 > *, .framer-s707Y .framer-31ios1 > *, .framer-s707Y .framer-vi7fim > *, .framer-s707Y .framer-10m4sc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-s707Y .framer-16opv99 > *, .framer-s707Y .framer-9nu8c0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s707Y .framer-pr2dhd > *, .framer-s707Y .framer-1qqapp8 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-s707Y .framer-sr5xwj > *, .framer-s707Y .framer-1cme1qo > *, .framer-s707Y .framer-nzjznb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-s707Y .framer-xqpsn2 > *, .framer-s707Y .framer-1lei8g2 > *, .framer-s707Y .framer-e1np5h > *, .framer-s707Y .framer-11b2j4g > *, .framer-s707Y .framer-88bd3z > *, .framer-s707Y .framer-8rxigc > *, .framer-s707Y .framer-sb9s84 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s707Y .framer-28oexs > *, .framer-s707Y .framer-p63pu4 > *, .framer-s707Y .framer-18zlcz9 > *, .framer-s707Y .framer-1dvruvg > *, .framer-s707Y .framer-5q6sjn > *, .framer-s707Y .framer-cxqhi0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s707Y .framer-15jbaak > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-s707Y .framer-19czcig > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-s707Y.framer-72rtr7 { width: 810px; } .framer-s707Y .framer-xwhmkp-container, .framer-s707Y .framer-1weka0r-container, .framer-s707Y .framer-1tzdrh4-container, .framer-s707Y .framer-1sv5n10, .framer-s707Y .framer-67u2r-container, .framer-s707Y .framer-1c2chb8 { order: 0; } .framer-s707Y .framer-az2zxs, .framer-s707Y .framer-1qqapp8, .framer-s707Y .framer-u80pbt-container { order: 1; } .framer-s707Y .framer-10aefr2 { flex-direction: column; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-cgx71n { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-s707Y .framer-16opv99 { order: 0; padding: 40px 40px 40px 0px; } .framer-s707Y .framer-1bwhrur { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; width: 100%; } .framer-s707Y .framer-145bhdu { height: 582px; } .framer-s707Y .framer-y38303 { order: 2; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-v7x2ny, .framer-s707Y .framer-1ohf9kk { padding: 0px; } .framer-s707Y .framer-pr2dhd, .framer-s707Y .framer-sr5xwj { flex-direction: column; } .framer-s707Y .framer-1yu413g, .framer-s707Y .framer-136se27, .framer-s707Y .framer-31ios1 { flex: none; width: 100%; } .framer-s707Y .framer-11zm5dc { aspect-ratio: unset; height: 483px; } .framer-s707Y .framer-e6qyfy { align-self: unset; height: 1px; width: 100%; } .framer-s707Y .framer-oo75vm { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-s707Y .framer-f3p0sn { height: min-content; order: 3; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-17afyha { flex-direction: column; order: 4; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-11eg3t9, .framer-s707Y .framer-dzgkmc { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-s707Y .framer-vi7fim { align-content: flex-start; align-items: flex-start; align-self: unset; height: min-content; } .framer-s707Y .framer-eq3dxg { align-self: stretch; height: auto; } .framer-s707Y .framer-8u4a9w-container { height: 370px; order: 2; } .framer-s707Y .framer-1et000j { order: 5; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-10slui0 { flex-direction: column; order: 6; padding: 80px 40px 80px 40px; } .framer-s707Y .framer-oky77y { height: var(--framer-aspect-ratio-supported, 358px); order: 1; } .framer-s707Y .framer-5unhio { order: 7; padding: 64px 16px 30px 16px; } .framer-s707Y .framer-8yxbxf { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-s707Y .framer-9nu8c0 { order: 8; padding: 80px; } .framer-s707Y .framer-1e7vhw9-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s707Y .framer-10aefr2, .framer-s707Y .framer-pr2dhd, .framer-s707Y .framer-oo75vm, .framer-s707Y .framer-sr5xwj, .framer-s707Y .framer-17afyha, .framer-s707Y .framer-10slui0 { gap: 0px; } .framer-s707Y .framer-10aefr2 > *, .framer-s707Y .framer-oo75vm > *, .framer-s707Y .framer-17afyha > *, .framer-s707Y .framer-10slui0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s707Y .framer-10aefr2 > :first-child, .framer-s707Y .framer-pr2dhd > :first-child, .framer-s707Y .framer-oo75vm > :first-child, .framer-s707Y .framer-sr5xwj > :first-child, .framer-s707Y .framer-17afyha > :first-child, .framer-s707Y .framer-10slui0 > :first-child { margin-top: 0px; } .framer-s707Y .framer-10aefr2 > :last-child, .framer-s707Y .framer-pr2dhd > :last-child, .framer-s707Y .framer-oo75vm > :last-child, .framer-s707Y .framer-sr5xwj > :last-child, .framer-s707Y .framer-17afyha > :last-child, .framer-s707Y .framer-10slui0 > :last-child { margin-bottom: 0px; } .framer-s707Y .framer-pr2dhd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s707Y .framer-sr5xwj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-s707Y.framer-72rtr7 { width: 390px; } .framer-s707Y .framer-xwhmkp-container, .framer-s707Y .framer-1rwp9vf, .framer-s707Y .framer-1sv5n10, .framer-s707Y .framer-67u2r-container, .framer-s707Y .framer-1l2pwbk { order: 0; } .framer-s707Y .framer-az2zxs, .framer-s707Y .framer-u80pbt-container { order: 1; } .framer-s707Y .framer-10aefr2 { flex-direction: column; order: 0; padding: 118px 16px 32px 16px; } .framer-s707Y .framer-cgx71n { align-self: unset; flex: none; height: min-content; order: 0; width: 100%; } .framer-s707Y .framer-16opv99 { padding: 0px 0px 40px 0px; } .framer-s707Y .framer-j4w2ej { width: 100%; } .framer-s707Y .framer-1bwhrur { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-s707Y .framer-145bhdu { height: 340px; } .framer-s707Y .framer-r88sjq { height: 339px; } .framer-s707Y .framer-er5wc6-container { height: 140px; order: 1; } .framer-s707Y .framer-y38303 { order: 2; padding: 32px 16px 32px 16px; } .framer-s707Y .framer-v7x2ny { max-width: unset; order: 0; padding: 0px; } .framer-s707Y .framer-pr2dhd, .framer-s707Y .framer-sr5xwj { flex-direction: column; } .framer-s707Y .framer-1yu413g, .framer-s707Y .framer-136se27, .framer-s707Y .framer-31ios1 { flex: none; flex-direction: column; width: 100%; } .framer-s707Y .framer-11zm5dc { aspect-ratio: unset; flex: none; height: 239px; width: 100%; } .framer-s707Y .framer-e6qyfy { align-self: unset; height: 1px; width: 100%; } .framer-s707Y .framer-oo75vm { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-s707Y .framer-f3p0sn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; order: 3; padding: 32px 16px 32px 16px; } .framer-s707Y .framer-1ohf9kk { align-self: start; height: 100%; justify-self: start; order: 0; padding: 0px; } .framer-s707Y .framer-qwx4sh { padding: 0px 0px 8px 0px; } .framer-s707Y .framer-1crmkng { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-s707Y .framer-1h3ly9j { height: 45px; white-space: pre-wrap; width: 625px; word-break: break-word; word-wrap: break-word; } .framer-s707Y .framer-1weka0r-container, .framer-s707Y .framer-1hs6mha { flex: none; width: 100%; } .framer-s707Y .framer-1tzdrh4-container { flex: none; order: 0; width: 100%; } .framer-s707Y .framer-17afyha { flex-direction: column; order: 4; padding: 32px 16px 32px 16px; } .framer-s707Y .framer-11eg3t9, .framer-s707Y .framer-dzgkmc { align-self: unset; flex: none; height: min-content; order: 0; padding: 0px; width: 100%; } .framer-s707Y .framer-1qqapp8 { flex-direction: column; gap: 42px; order: 1; padding: 32px 0px 53px 0px; } .framer-s707Y .framer-vi7fim { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; width: 100%; } .framer-s707Y .framer-eq3dxg { align-self: stretch; height: auto; } .framer-s707Y .framer-8u4a9w-container { height: 186px; order: 2; } .framer-s707Y .framer-1qehtva { order: 3; } .framer-s707Y .framer-1et000j { flex-direction: column; order: 5; padding: 60px 20px 60px 20px; } .framer-s707Y .framer-sb9s84 { gap: 40px; order: 0; } .framer-s707Y .framer-10slui0 { flex-direction: column; order: 6; padding: 32px 16px 32px 16px; } .framer-s707Y .framer-oky77y { height: var(--framer-aspect-ratio-supported, 98px); } .framer-s707Y .framer-5unhio { order: 7; padding: 20px 16px 20px 16px; } .framer-s707Y .framer-19czcig { gap: 6px; padding: 0px 80px 12px 80px; } .framer-s707Y .framer-1u8z6ek { height: 94px; order: 0; white-space: pre-wrap; width: 312px; word-break: break-word; word-wrap: break-word; } .framer-s707Y .framer-8yxbxf { height: 130px; order: 1; white-space: pre-wrap; width: 334px; word-break: break-word; word-wrap: break-word; } .framer-s707Y .framer-9nu8c0 { order: 8; padding: 30px 20px 56px 20px; } .framer-s707Y .framer-1e7vhw9-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s707Y .framer-10aefr2, .framer-s707Y .framer-pr2dhd, .framer-s707Y .framer-1yu413g, .framer-s707Y .framer-f3p0sn, .framer-s707Y .framer-sr5xwj, .framer-s707Y .framer-136se27, .framer-s707Y .framer-31ios1, .framer-s707Y .framer-17afyha, .framer-s707Y .framer-1qqapp8, .framer-s707Y .framer-1et000j, .framer-s707Y .framer-sb9s84, .framer-s707Y .framer-10slui0, .framer-s707Y .framer-19czcig { gap: 0px; } .framer-s707Y .framer-10aefr2 > *, .framer-s707Y .framer-17afyha > *, .framer-s707Y .framer-1et000j > *, .framer-s707Y .framer-10slui0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s707Y .framer-10aefr2 > :first-child, .framer-s707Y .framer-pr2dhd > :first-child, .framer-s707Y .framer-1yu413g > :first-child, .framer-s707Y .framer-sr5xwj > :first-child, .framer-s707Y .framer-136se27 > :first-child, .framer-s707Y .framer-31ios1 > :first-child, .framer-s707Y .framer-17afyha > :first-child, .framer-s707Y .framer-1qqapp8 > :first-child, .framer-s707Y .framer-1et000j > :first-child, .framer-s707Y .framer-sb9s84 > :first-child, .framer-s707Y .framer-10slui0 > :first-child, .framer-s707Y .framer-19czcig > :first-child { margin-top: 0px; } .framer-s707Y .framer-10aefr2 > :last-child, .framer-s707Y .framer-pr2dhd > :last-child, .framer-s707Y .framer-1yu413g > :last-child, .framer-s707Y .framer-sr5xwj > :last-child, .framer-s707Y .framer-136se27 > :last-child, .framer-s707Y .framer-31ios1 > :last-child, .framer-s707Y .framer-17afyha > :last-child, .framer-s707Y .framer-1qqapp8 > :last-child, .framer-s707Y .framer-1et000j > :last-child, .framer-s707Y .framer-sb9s84 > :last-child, .framer-s707Y .framer-10slui0 > :last-child, .framer-s707Y .framer-19czcig > :last-child { margin-bottom: 0px; } .framer-s707Y .framer-pr2dhd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s707Y .framer-1yu413g > *, .framer-s707Y .framer-136se27 > *, .framer-s707Y .framer-31ios1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s707Y .framer-f3p0sn > *, .framer-s707Y .framer-f3p0sn > :first-child, .framer-s707Y .framer-f3p0sn > :last-child { margin: 0px; } .framer-s707Y .framer-sr5xwj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-s707Y .framer-1qqapp8 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-s707Y .framer-sb9s84 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s707Y .framer-19czcig > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6974\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bnoNTTEJx\":{\"layout\":[\"fixed\",\"auto\"]},\"uP3HiX_iN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jlnofqhey\":{\"pattern\":\":jlnofqhey\",\"name\":\"portal\"},\"ODxr8Q29Y\":{\"pattern\":\":ODxr8Q29Y\",\"name\":\"portal\"},\"Q_HD391Vc\":{\"pattern\":\":Q_HD391Vc\",\"name\":\"about\"},\"wKFl03Le6\":{\"pattern\":\":wKFl03Le6\",\"name\":\"locations\"},\"PujCVY8Pl\":{\"pattern\":\":PujCVY8Pl\",\"name\":\"team\"},\"SGre5W2Hl\":{\"pattern\":\":SGre5W2Hl\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-s707Y\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6974,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WPZYV4DKXXGBZ3ZQTWYRVOQPYBIT2AN7/QRQ5OKEEZRQ525K55RLKSI4H3LRN5OP7/YJ3ABP6H4VTWOW6FDQ3W5ZIIGLTU346F.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavbarFonts,...ButtonFonts,...TickerFonts,...CardComponentFonts,...ExperienceItemFonts,...YouTubeFonts,...SliderItemFonts,...CarouselFonts,...TestimonialFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6974\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"jlnofqhey\\\":{\\\"pattern\\\":\\\":jlnofqhey\\\",\\\"name\\\":\\\"portal\\\"},\\\"ODxr8Q29Y\\\":{\\\"pattern\\\":\\\":ODxr8Q29Y\\\",\\\"name\\\":\\\"portal\\\"},\\\"Q_HD391Vc\\\":{\\\"pattern\\\":\\\":Q_HD391Vc\\\",\\\"name\\\":\\\"about\\\"},\\\"wKFl03Le6\\\":{\\\"pattern\\\":\\\":wKFl03Le6\\\",\\\"name\\\":\\\"locations\\\"},\\\"PujCVY8Pl\\\":{\\\"pattern\\\":\\\":PujCVY8Pl\\\",\\\"name\\\":\\\"team\\\"},\\\"SGre5W2Hl\\\":{\\\"pattern\\\":\\\":SGre5W2Hl\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bnoNTTEJx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uP3HiX_iN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "image3", "text", "text2", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "CQ18Ejm5c", "Qgz_OWTA_", "KIr2Shkyv", "F2C65Uz3l", "SR5tUSblo", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "serializationHash", "Image2", "RichText2", "x", "css", "Framerm8DmzgDIM", "withCSS", "m8DmzgDIM_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "amount", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "BZ7D0oHjX", "w_ksqD4rr", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "Framerna1rto2Jg", "withCSS", "na1rto2Jg_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link2", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "izZSsUYro", "DZ9Oipv9L", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "Link", "css", "FramerSJHXi_Y_I", "withCSS", "SJHXi_Y_I_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "dZ9dDch84_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "QDZRsktbV_default", "ContainerWithOptimizedAppearEffect", "Container", "ImageWithFX", "withFX", "Image2", "TickerFonts", "Ticker", "CardComponentFonts", "SJHXi_Y_I_default", "ContainerWithFX", "RichTextWithFX", "ExperienceItemFonts", "na1rto2Jg_default", "MotionDivWithFX", "motion", "YouTubeFonts", "Youtube", "SliderItemFonts", "qMriQBbBi_default", "CarouselFonts", "Carousel", "TestimonialFonts", "m8DmzgDIM_default", "FooterFonts", "KzEeoPvsu_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "transition6", "animation5", "transition7", "transition8", "animation6", "animation7", "animation8", "addImageAlt", "image", "alt", "animation9", "transition9", "transition10", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "isDisplayed", "elementId3", "ref4", "isDisplayed1", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
