{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/fpEL9ZlfaemEWk0xJgWA/OId4b1gcVOil6tFdBfTF/DyNwNCX6S.js", "ssg:https://framerusercontent.com/modules/UuE2VQgy29Yo6zURt0dH/ur5j2whi0DBn3MqcwrD7/augiA20Il.js", "ssg:https://framerusercontent.com/modules/9vJ1qMoU269He359hCtd/pbdsdrumxdErVlh4sDIY/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Cardo-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cardo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQU82JHaTBX.woff2\",weight:\"700\"}]}];export const css=['.framer-6OFKA .framer-styles-preset-1thlxz2:not(.rich-text-wrapper), .framer-6OFKA .framer-styles-preset-1thlxz2.rich-text-wrapper h4 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 52px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-6OFKA .framer-styles-preset-1thlxz2:not(.rich-text-wrapper), .framer-6OFKA .framer-styles-preset-1thlxz2.rich-text-wrapper h4 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 44px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-6OFKA .framer-styles-preset-1thlxz2:not(.rich-text-wrapper), .framer-6OFKA .framer-styles-preset-1thlxz2.rich-text-wrapper h4 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-6OFKA .framer-styles-preset-1thlxz2:not(.rich-text-wrapper), .framer-6OFKA .framer-styles-preset-1thlxz2.rich-text-wrapper h4 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-6OFKA\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={pBXnCDDy7:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\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/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import NavigationBar2 from\"#framer/local/canvasComponent/HzDlCV9U7/HzDlCV9U7.js\";import Button from\"#framer/local/canvasComponent/ICtaDue3V/ICtaDue3V.js\";import Footer1 from\"#framer/local/canvasComponent/jfj0gdz8K/jfj0gdz8K.js\";import ContactForm from\"#framer/local/canvasComponent/uENeH6KQr/uENeH6KQr.js\";import*as sharedStyle2 from\"#framer/local/css/DyNwNCX6S/DyNwNCX6S.js\";import*as sharedStyle3 from\"#framer/local/css/eAx4YTRHn/eAx4YTRHn.js\";import*as sharedStyle from\"#framer/local/css/l2oQbN2p1/l2oQbN2p1.js\";import*as sharedStyle4 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle1 from\"#framer/local/css/XJQ2dDn7c/XJQ2dDn7c.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const NavigationBar2Fonts=getFonts(NavigationBar2);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const ContactFormFonts=getFonts(ContactForm);const Footer1Fonts=getFonts(Footer1);const breakpoints={Dm36GiKdw:\"(min-width: 1920px)\",Kj9PSfug2:\"(min-width: 1200px) and (max-width: 1439px)\",umG7KXCKX:\"(max-width: 809px)\",WCzquG8Cd:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-u1zHx\";const variantClassNames={Dm36GiKdw:\"framer-v-1di6r4m\",Kj9PSfug2:\"framer-v-g16tu8\",umG7KXCKX:\"framer-v-1vvsvfs\",WCzquG8Cd:\"framer-v-15zvg8l\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const transition3={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition4={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const transition5={damping:30,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:100};const transition6={damping:30,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:100};const transition7={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"2XLarge\":\"Dm36GiKdw\",Desktop:\"Kj9PSfug2\",Phone:\"umG7KXCKX\",Tablet:\"WCzquG8Cd\",XLarge:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"HVCGutRaR\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"ubySn3qYU\");const ref2=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: var(--token-da785a49-5269-41ed-b4f8-e27c5e59f58b, rgb(253, 253, 253)); }\"}),/*#__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-jvt926-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IONThkDpC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IONThkDpC\",intensity:11,layoutId:\"IONThkDpC\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-cgtahl\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+0),pixelHeight:1334,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PQBMgCf1FQrpATVQhWG9eI92mQA.png\",srcSet:\"https://framerusercontent.com/images/PQBMgCf1FQrpATVQhWG9eI92mQA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PQBMgCf1FQrpATVQhWG9eI92mQA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PQBMgCf1FQrpATVQhWG9eI92mQA.png 2000w\"},className:\"framer-10qlzr3\",\"data-framer-appear-id\":\"10qlzr3\",\"data-framer-name\":\"image\",initial:animation1,optimized:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cdkzbq\",\"data-framer-name\":\"image container\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+359.5+-129.5),pixelHeight:444,pixelWidth:497,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Cv8JRG8B2t59ItWsFA8Nc71DX5k.png\"},className:\"framer-1uycz6g\",\"data-framer-name\":\"logo\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-wmg93k-container\",\"data-framer-appear-id\":\"wmg93k\",initial:animation3,layoutScroll:true,nodeId:\"iDRZjUTNn\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{variant:\"I27cl3qOj\"},WCzquG8Cd:{variant:\"ZAFsj62bp\"}},children:/*#__PURE__*/_jsx(NavigationBar2,{height:\"100%\",id:\"iDRZjUTNn\",layoutId:\"iDRZjUTNn\",style:{width:\"100%\"},variant:\"O5K37POqk\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lifry0\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jmu6uf\",\"data-framer-name\":\"Media left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0u8a4\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abfqzl\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Chi siamo\"})}),className:\"framer-1idbh7e\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Siamo una nuovissima realt\\xe0 familiare nel cuore della Riviera di Ulisse, circondati dal verde, ma a due passi dalle spiagge di Sperlonga, Fondi, Gaeta tra le pi\\xf9 belle d\u2019Italia.\",/*#__PURE__*/_jsx(\"br\",{}),\"Le nostre parole chiave sono: sostenibilit\\xe0, natura, benessere.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lavoriamo nel rispetto dell\u2019ambiente per preservare e valorizzare il territorio e per rendere la nostra realt\\xe0 un piccolo angolo di paradiso.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Siamo una nuovissima realt\\xe0 familiare nel cuore della Riviera di Ulisse, circondati dal verde, ma a due passi dalle spiagge di Sperlonga, Fondi, Gaeta tra le pi\\xf9 belle d\u2019Italia.\",/*#__PURE__*/_jsx(\"br\",{}),\"Le nostre parole chiave sono: sostenibilit\\xe0, natura, benessere.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lavoriamo nel rispetto dell\u2019ambiente per preservare e valorizzare il territorio e per rendere la nostra realt\\xe0 un piccolo angolo di paradiso.\"]})}),className:\"framer-a7x6af\",\"data-framer-name\":\"I am a Product Designer, and Framer developer based in Milano, Italy. I had the chance to contribute at the design of nice companies such as World Food Programme, and Essilor Luxottica.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+1200+0+0+0+0+40+324},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1200+0+0+0+0+80+324}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+1200+0+0+0+120+324,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xe7y03-container\",nodeId:\"l6w4N6TnA\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{ekKquc1go:getLocalizedValue(\"v3\",activeLocale)??\"Prenota ora\",height:\"100%\",id:\"l6w4N6TnA\",layoutId:\"l6w4N6TnA\",rZyu75CN0:\"https://booking.slope.it/e13a45c4-63a9-4fb5-9e0b-f03ab0a55a41\",variant:\"cd40LZXYr\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fo1hhg\",\"data-framer-name\":\"Media left\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qc4em9\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1emulz8\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"La struttura\"})}),className:\"framer-1v6vwyj\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:[\"L\u2019intera struttura \\xe8 circondata da un grande giardino con parcheggio gratuito e un\u2019 area barbecue.\",/*#__PURE__*/_jsx(\"br\",{}),\"I nostri appartamenti sono tutti pensati per poter offrire un\u2019esperienza di totale tranquillit\\xe0 e indipendenza. Hanno un proprio spazio riservato all\u2019aperto che consente di immergersi completamente nella quiete della natura.\"]})}),className:\"framer-19fxhfn\",\"data-framer-name\":\"paragraph\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ag2ngm\",\"data-framer-name\":\"buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+1200+0+468+40+580+0+324+0+0},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1200+0+548+120+600+0+324+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+1200+0+628+196+0+324+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eyi47i-container\",nodeId:\"kVs4eZFpl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Dm36GiKdw:{rZyu75CN0:resolvedLinks[3]},Kj9PSfug2:{rZyu75CN0:resolvedLinks[1]},umG7KXCKX:{rZyu75CN0:resolvedLinks[2],style:{width:\"100%\"}},WCzquG8Cd:{rZyu75CN0:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(Button,{ekKquc1go:getLocalizedValue(\"v6\",activeLocale)??\"Vedi gli appartamenti\",height:\"100%\",id:\"kVs4eZFpl\",layoutId:\"kVs4eZFpl\",rZyu75CN0:resolvedLinks[0],variant:\"X1UCAWgQi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+1200+0+468+40+580+0+324+0+84},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1200+0+548+120+600+0+324+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+1200+0+628+196+0+324+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7engzw-container\",nodeId:\"KIfuW7M2F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{ekKquc1go:getLocalizedValue(\"v3\",activeLocale)??\"Prenota ora\",height:\"100%\",id:\"KIfuW7M2F\",layoutId:\"KIfuW7M2F\",rZyu75CN0:\"https://booking.slope.it/e13a45c4-63a9-4fb5-9e0b-f03ab0a55a41\",variant:\"cd40LZXYr\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-95n0ku\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hBAz_2M3d\"},motionChild:true,nodeId:\"PuRT9IdX9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+468+40+0+0),pixelHeight:949,pixelWidth:980,sizes:\"343px\",src:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp\",srcSet:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp 980w\"}},WCzquG8Cd:{background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+548+120+0+0),pixelHeight:949,pixelWidth:980,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 144px, 1200px), 1px)`,src:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp\",srcSet:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp 980w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+628+120+0),pixelHeight:949,pixelWidth:980,sizes:\"480px\",src:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp\",srcSet:\"https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F0J1UR9R2vAEHDbY2T3BRjA5zPI.webp 980w\"},className:\"framer-1pn64m8 framer-lux5qc\",\"data-framer-name\":\"Case study image\",whileHover:animation7})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11lfbd1\",\"data-framer-name\":\"servizi\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"I nostri servizi\"})}),className:\"framer-yt9xep\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxvfai\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g94j8k\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8qbauw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"E9WetW2k7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v9\",activeLocale)??\"House\",iconSelection:\"Coffee\",id:\"E9WetW2k7\",layoutId:\"E9WetW2k7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vjayl7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Colazione\"})}),className:\"framer-13h79y2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Su richiesta prepariamo ottime e sane colazioni che\\xa0 possiamo servire\\xa0direttamente nel tuo appartamento\"})}),className:\"framer-1aegbkv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pikv9e\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q1gb47-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bf4Yb7UIw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WifiHigh\",id:\"bf4Yb7UIw\",layoutId:\"bf4Yb7UIw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gysbca\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wifi\"})}),className:\"framer-rwytk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Un'area wifi \\xe8 predisposta nella zona relax del nostro giardino\"})}),className:\"framer-ysrquh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zpiha6\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ocqlm7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hHb5gBSbD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PottedPlant\",id:\"hHb5gBSbD\",layoutId:\"hHb5gBSbD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqql3f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Garden\"})}),className:\"framer-1oaejnw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"L'intera struttura \\xe8 circondata da un ampio giardino con diversi alberi che producono parte del cibo che offriamo\"})}),className:\"framer-1emee5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ehx49w\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cn9jh2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QZ3dX2LnH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Car\",id:\"QZ3dX2LnH\",layoutId:\"QZ3dX2LnH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x4w14p\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Parking\"})}),className:\"framer-h9f781\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Disponiamo di un parcheggio interno gratuito per i nostri ospiti\"})}),className:\"framer-ag5k7k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i1ipq1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ipm9b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hLMClvFYu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CoatHanger\",id:\"hLMClvFYu\",layoutId:\"hLMClvFYu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqtroo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lavanderia\"})}),className:\"framer-1mnsb88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Offriamo un cambio biancheria ogni settimana. Per chi avesse\\xa0 necessit\\xe0, c'\\xe8 anche un locale\\xa0lavanderia\"})}),className:\"framer-1b9ihkr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e22q3c\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dukkbs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FJpEpGf3W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ForkKnife\",id:\"FJpEpGf3W\",layoutId:\"FJpEpGf3W\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194h2e8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Barbecue\"})}),className:\"framer-1amx7db\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Godetevi una pausa all'aperto per grigliare in compagnia\"})}),className:\"framer-1tstezj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jg5gnb\",\"data-framer-name\":\"Media left\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12k2owq\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hBAz_2M3d\"},motionChild:true,nodeId:\"uAtqW0Ne2\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+4236+40+0+0),pixelHeight:1334,pixelWidth:2e3,sizes:\"343px\",src:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg\",srcSet:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg 2000w\"}},WCzquG8Cd:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+3316+120+0+0),pixelHeight:1334,pixelWidth:2e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 144px, 1200px), 1px)`,src:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg\",srcSet:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Gli appartamenti di Zefiro\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+2536+224+0),pixelHeight:1334,pixelWidth:2e3,sizes:\"480px\",src:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg\",srcSet:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg 2000w\"},className:\"framer-izyygn framer-lux5qc\",\"data-framer-name\":\"Case study image\",whileHover:animation7})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x0gbxy\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-159xlbk\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"Non la solita vacanza\"})}),className:\"framer-1tnrcyx\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"left\"},children:\"Un luogo ideale per chi vuole concedersi una pausa detossinante dalla routine urbana.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Qui la quiete \\xe8 di casa, ma avrai a portata di mano numerose attivit\\xe0 culturali, enogastronomiche e sportive (immersioni, sci nautico, arrampicata).\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Potrai ripercorrere una delle tappe del viaggio di Ulisse nella dimora della maga Circe, visitare templi romani, e tante altre attivit\\xe0 che il territorio offre.\"]})]}),className:\"framer-prfoa9\",\"data-framer-name\":\"paragraph\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16339rs\",\"data-framer-name\":\"buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined},{href:{webPageId:\"hBAz_2M3d\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+1200+0+4236+40+580+0+684+0+0},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1200+0+3316+120+600+0+684+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+1200+0+2536+120+0+684+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mn241b-container\",nodeId:\"lfyQvMvrZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Dm36GiKdw:{rZyu75CN0:resolvedLinks1[3]},Kj9PSfug2:{rZyu75CN0:resolvedLinks1[1]},umG7KXCKX:{rZyu75CN0:resolvedLinks1[2],style:{width:\"100%\"}},WCzquG8Cd:{rZyu75CN0:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(Button,{ekKquc1go:getLocalizedValue(\"v6\",activeLocale)??\"Vedi gli appartamenti\",height:\"100%\",id:\"lfyQvMvrZ\",layoutId:\"lfyQvMvrZ\",rZyu75CN0:resolvedLinks1[0],variant:\"X1UCAWgQi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+1200+0+4236+40+580+0+684+0+84},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1200+0+3316+120+600+0+684+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+1200+0+2536+120+0+684+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vkjdyt-container\",nodeId:\"nQhVQ2G9k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{ekKquc1go:getLocalizedValue(\"v3\",activeLocale)??\"Prenota ora\",height:\"100%\",id:\"nQhVQ2G9k\",layoutId:\"nQhVQ2G9k\",rZyu75CN0:\"https://booking.slope.it/e13a45c4-63a9-4fb5-9e0b-f03ab0a55a41\",variant:\"cd40LZXYr\",width:\"100%\"})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnk7hs\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p68rpv\",\"data-framer-name\":\"cose da fare\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Attivit\\xe0 nei dintorni\"})}),className:\"framer-1otymj9\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a49sq9\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wsh5y7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tmy1ro-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J8al7swgi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"Cricket\",id:\"J8al7swgi\",layoutId:\"J8al7swgi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdcjoo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Attivit\\xe0 sportive\"})}),className:\"framer-5gjudd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Da noi puoi rilassarti, ma l'adrenalina non manca nei dintorni (immersioni, sci nautico, arrampicata). Chiedici informazioni sulle attivit\\xe0 nei dintorni.\"})}),className:\"framer-cdcp9i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xt3hjt\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11p49s8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lIFdRHRFk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"Island\",id:\"lIFdRHRFk\",layoutId:\"lIFdRHRFk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nr4yz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Relax in spiaggia\"})}),className:\"framer-vvjsse\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Al tuo relax ci pensiamo noi. Chiedici dei nostri lidi partner e goditi uno dei mari pi\\xf9 azzurri d'Italia.\"})}),className:\"framer-1dr6c3a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r3l9gh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n5vigx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BNSvkfNqH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"CastleTurret\",id:\"BNSvkfNqH\",layoutId:\"BNSvkfNqH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pr77os\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Siti archeologici\"})}),className:\"framer-i0mlls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Potrai ripercorrere una delle tappe del viaggio di Ulisse nella dimora della maga Circe, o visitare i templi e i siti dell'Impero Romano.\"})}),className:\"framer-xt7kbh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mvc88\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bapsc9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Kc12NmUgq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"Sailboat\",id:\"Kc12NmUgq\",layoutId:\"Kc12NmUgq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-le8gms\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Esplora le isole\"})}),className:\"framer-1s0cg4a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Visita in barca Ponza e Ventotene, due perle del mar Mediterraneo.\"})}),className:\"framer-f5ejv4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7u2mow\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11l4f6q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QtlmHRK48\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"Park\",id:\"QtlmHRK48\",layoutId:\"QtlmHRK48\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4x4fv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Parchi naturali\"})}),className:\"framer-vp2jz4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:\"Siamo vicini alla natura incontaminata del\\xa0Parco Naturale del Circeo e il Parco Nazionale dei monti Aurunci.\"})}),className:\"framer-1go0a5m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-k95mea\",\"data-framer-name\":\"Gallery\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pkebhk-container\",isModuleExternal:true,nodeId:\"igWKcRTRp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}},WCzquG8Cd:{sizingOptions:{heightType:false,widthType:true},style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:20,height:\"100%\",hoverFactor:0,id:\"igWKcRTRp\",layoutId:\"igWKcRTRp\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Uno scorcio di Sperlonga\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1110,pixelWidth:888,sizes:\"400px\",src:\"https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg\",srcSet:\"https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg 888w\"},className:\"framer-psf1yq\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2981,pixelWidth:2980,sizes:\"400px\",src:\"https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg\",srcSet:\"https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg?scale-down-to=2048 2047w,https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg 2980w\"},className:\"framer-19zx7ls\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"I dolci fatti in casa per le colazioni di Zefiro\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:3024,pixelWidth:3024,sizes:\"400px\",src:\"https://framerusercontent.com/images/YYA3SCsPgWKajBkIsotxPxUqM.jpg\",srcSet:\"https://framerusercontent.com/images/YYA3SCsPgWKajBkIsotxPxUqM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YYA3SCsPgWKajBkIsotxPxUqM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YYA3SCsPgWKajBkIsotxPxUqM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YYA3SCsPgWKajBkIsotxPxUqM.jpg 3024w\"},className:\"framer-nwx12k\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1792,pixelWidth:828,sizes:\"400px\",src:\"https://framerusercontent.com/images/3VKGaokBTOpWlqpxVF2ntEKIg.jpg\",srcSet:\"https://framerusercontent.com/images/3VKGaokBTOpWlqpxVF2ntEKIg.jpg 828w\"},className:\"framer-7rk137\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2688,pixelWidth:2687,sizes:\"400px\",src:\"https://framerusercontent.com/images/PPcfy2599VcgJa5JF9b7Zp7w.jpg\",srcSet:\"https://framerusercontent.com/images/PPcfy2599VcgJa5JF9b7Zp7w.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/PPcfy2599VcgJa5JF9b7Zp7w.jpg?scale-down-to=2048 2047w,https://framerusercontent.com/images/PPcfy2599VcgJa5JF9b7Zp7w.jpg 2687w\"},className:\"framer-do6ggb\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Il giardino di Zefiro\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2944,pixelWidth:2944,sizes:\"400px\",src:\"https://framerusercontent.com/images/WfgMCFUOPV91VjAqbaSy6rOZk.jpg\",srcSet:\"https://framerusercontent.com/images/WfgMCFUOPV91VjAqbaSy6rOZk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WfgMCFUOPV91VjAqbaSy6rOZk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WfgMCFUOPV91VjAqbaSy6rOZk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WfgMCFUOPV91VjAqbaSy6rOZk.jpg 2944w\"},className:\"framer-tbwy5b\",\"data-framer-name\":\"Photo Copy\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t7l9kh-container\",isModuleExternal:true,nodeId:\"z55XLn20B\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}},WCzquG8Cd:{sizingOptions:{heightType:false,widthType:true},style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:20,height:\"100%\",hoverFactor:0,id:\"z55XLn20B\",layoutId:\"z55XLn20B\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2785,pixelWidth:2785,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/deo1ATaK6etv09GZVk4E5gCBiPg.jpg\",srcSet:\"https://framerusercontent.com/images/deo1ATaK6etv09GZVk4E5gCBiPg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/deo1ATaK6etv09GZVk4E5gCBiPg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/deo1ATaK6etv09GZVk4E5gCBiPg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/deo1ATaK6etv09GZVk4E5gCBiPg.jpg 2785w\"},className:\"framer-ur79qj\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1536,pixelWidth:1536,sizes:\"400px\",src:\"https://framerusercontent.com/images/6h1LHJLISZvxWgYYAApQoLNlak.jpg\",srcSet:\"https://framerusercontent.com/images/6h1LHJLISZvxWgYYAApQoLNlak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6h1LHJLISZvxWgYYAApQoLNlak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6h1LHJLISZvxWgYYAApQoLNlak.jpg 1536w\"},className:\"framer-1g3t3qx\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v37\",activeLocale)??\"Le fragole fresche di Zefiro\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:4032,pixelWidth:3024,sizes:\"400px\",src:\"https://framerusercontent.com/images/cjzkQyVJdarTdYmmpu1jTj5l3Eo.jpg\",srcSet:\"https://framerusercontent.com/images/cjzkQyVJdarTdYmmpu1jTj5l3Eo.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/cjzkQyVJdarTdYmmpu1jTj5l3Eo.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/cjzkQyVJdarTdYmmpu1jTj5l3Eo.jpg 3024w\"},className:\"framer-1q1dh5g\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:3973,pixelWidth:2980,sizes:\"400px\",src:\"https://framerusercontent.com/images/qEy9Rcsz1iuNLoP4ktluw7zIMhI.jpg\",srcSet:\"https://framerusercontent.com/images/qEy9Rcsz1iuNLoP4ktluw7zIMhI.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/qEy9Rcsz1iuNLoP4ktluw7zIMhI.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/qEy9Rcsz1iuNLoP4ktluw7zIMhI.jpg 2980w\"},className:\"framer-hqsf9f\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:4032,pixelWidth:3024,sizes:\"400px\",src:\"https://framerusercontent.com/images/QiajCne2DkdabNoyah1IFRb30.jpg\",srcSet:\"https://framerusercontent.com/images/QiajCne2DkdabNoyah1IFRb30.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/QiajCne2DkdabNoyah1IFRb30.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/QiajCne2DkdabNoyah1IFRb30.jpg 3024w\"},className:\"framer-1r26uo9\",\"data-framer-name\":\"Photo Copy\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tso0el-container\",isModuleExternal:true,nodeId:\"d0heTPnNh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}},WCzquG8Cd:{sizingOptions:{heightType:false,widthType:true},style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:20,height:\"100%\",hoverFactor:0,id:\"d0heTPnNh\",layoutId:\"d0heTPnNh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1334,pixelWidth:2e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg\",srcSet:\"https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f2MRz4uF2zjDLlQf0djbJ49Y.jpg 2000w\"},className:\"framer-d4oqcg\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"I dolci fatti in casa per le colazioni di Zefiro\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2869,pixelWidth:1323,sizes:\"400px\",src:\"https://framerusercontent.com/images/c9uCHwvcXwG4woqY56szkofNefY.jpg\",srcSet:\"https://framerusercontent.com/images/c9uCHwvcXwG4woqY56szkofNefY.jpg?scale-down-to=2048 944w,https://framerusercontent.com/images/c9uCHwvcXwG4woqY56szkofNefY.jpg 1323w\"},className:\"framer-1kk1jon\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v36\",activeLocale)??\"Il giardino di Zefiro\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1334,pixelWidth:2e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/AVBPnXMOhjQCxQ5djjSFzdKGT0Q.jpg\",srcSet:\"https://framerusercontent.com/images/AVBPnXMOhjQCxQ5djjSFzdKGT0Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AVBPnXMOhjQCxQ5djjSFzdKGT0Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVBPnXMOhjQCxQ5djjSFzdKGT0Q.jpg 2000w\"},className:\"framer-vcxje7\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v34\",activeLocale)??\"Uno scorcio di Sperlonga\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1110,pixelWidth:888,sizes:\"400px\",src:\"https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg\",srcSet:\"https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/GKJskgvVGywLDb9NZcxv9ZQV0.jpg 888w\"},className:\"framer-1rm0q4k\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:3780,pixelWidth:3024,sizes:\"400px\",src:\"https://framerusercontent.com/images/3IcyERgiiguAkKvk1QcoXE95NFg.jpg\",srcSet:\"https://framerusercontent.com/images/3IcyERgiiguAkKvk1QcoXE95NFg.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/3IcyERgiiguAkKvk1QcoXE95NFg.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/3IcyERgiiguAkKvk1QcoXE95NFg.jpg 3024w\"},className:\"framer-1dnnwpy\",\"data-framer-name\":\"Photo Copy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:2981,pixelWidth:2980,sizes:\"400px\",src:\"https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg\",srcSet:\"https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg?scale-down-to=2048 2047w,https://framerusercontent.com/images/EnrJAxJ4BEw23oRQzY1FhCxOCs.jpg 2980w\"},className:\"framer-1svkvm4\",\"data-framer-name\":\"Photo Copy\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1cxph\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uaejvf\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w1d6v7\",\"data-framer-name\":\"display text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dicono di noi\"})}),className:\"framer-1hldiuv\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155w7gu\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qlsfpq\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gc9bir\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9872+0+0+40+124+0+0+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/6FKSUvjCoxSNfhy3CBVQCmybk.png\"}},WCzquG8Cd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8604+0+0+80+124+0+0+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/6FKSUvjCoxSNfhy3CBVQCmybk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7212+0+0+0+124+0+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/6FKSUvjCoxSNfhy3CBVQCmybk.png\"},className:\"framer-syy2db\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7x5b6m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:\"Giulia\"})}),className:\"framer-14n1hxk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hrkdsp\",\"data-styles-preset\":\"eAx4YTRHn\",style:{\"--framer-text-color\":\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\"},children:\"\\xc8 stata la nostra prima gita con nostra figlia di dieci mesi ed \\xe8 andato tutto bene, pur dovendoci adattare un po' con gli spazi avendo usato il lettino fornito dalla struttura. Luca \\xe8 stato estremamente gentile e mi ha aiutato con la richiesta di una piccola sorpresa per il compleanno di mio marito. Il posto \\xe8 molto tranquillo e sufficientemente vicino sia al mare, alla citt\\xe0 di Sperlonga, sia anche ai servizi principali. Anche il personale si \\xe8 dimostrato davvero cortese. Siamo molto soddisfatti.\"})}),className:\"framer-avs153\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-95opg9\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d097oe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9872+0+0+40+124+0+332+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/HoTO0Kki2bnezhoXVF5UsYXIuN8.png\"}},WCzquG8Cd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8604+0+0+80+124+0+292+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/HoTO0Kki2bnezhoXVF5UsYXIuN8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7212+0+0+0+124+0+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/HoTO0Kki2bnezhoXVF5UsYXIuN8.png\"},className:\"framer-1r2emau\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug3o09\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:\"Marina\"})}),className:\"framer-6tc183\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hrkdsp\",\"data-styles-preset\":\"eAx4YTRHn\",style:{\"--framer-text-color\":\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\"},children:\"\\xabStruttura molto bella, immersa nel verde. Appartamento confortevole, molto tranquillo e silenzioso. Posizione buona per raggiungere le spiagge, a pochi minuti di auto. Lo staff ottimo, molto gentile, sempre a disposizione\\xbb\"})}),className:\"framer-1gg98a2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y3yiyb\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fqf5tv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9872+0+0+40+124+0+674+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/GvUQZOlxVGGuj0mqOpn1Q3gXOM.png\"}},WCzquG8Cd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8604+0+0+80+124+0+594+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/GvUQZOlxVGGuj0mqOpn1Q3gXOM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7212+0+0+0+124+0+30+0+6),pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/GvUQZOlxVGGuj0mqOpn1Q3gXOM.png\"},className:\"framer-vv7l4x\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-93nnk2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:\"Judit\"})}),className:\"framer-jw4tab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hrkdsp\",\"data-styles-preset\":\"eAx4YTRHn\",style:{\"--framer-text-color\":\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\"},children:\"Ci \\xe8 piaciuta tantissimo la tranquillit\\xe0 del posto, aria fresca,personale disponibilissima. Viviamo in citt\\xe0, a Budapest, per noi sembrava un'oasi verde \uD83D\uDE0A dopo la pioggia e la sera il profumo del basilico e i vari alberi e fiori che si trovano nel giardino con il canto dei grilli ci rimarr\\xe0 un ricordo bellissimo. Grazie\"})}),className:\"framer-1v811ss\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vx47bh\",\"data-framer-name\":\"contatti\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1do7hjy\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oly883\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rl9wk2\",\"data-framer-name\":\"display text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contattaci\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contattaci\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Contattaci\"})}),className:\"framer-wekt22\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stxlmm\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sas2ps\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jtq2y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CPBnv7MjQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"Phone\",id:\"CPBnv7MjQ\",layoutId:\"CPBnv7MjQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wp5qa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+393280857312\",motionChild:true,nodeId:\"zeFmmzeQs\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"+39 328 08 57 312\"})})})})},WCzquG8Cd:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+393280857312\",motionChild:true,nodeId:\"zeFmmzeQs\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"+39 328 08 57 312\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:/*#__PURE__*/_jsx(Link,{href:\"tel:+393280857312\",motionChild:true,nodeId:\"zeFmmzeQs\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"+39 328 08 57 312\"})})})}),className:\"framer-l1abti\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sy7kae\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dgr44k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"I_YSmfxEb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(36, 36, 36))\",height:\"100%\",iconSearch:getLocalizedValue(\"v23\",activeLocale)??\"House\",iconSelection:\"MapPinLine\",id:\"I_YSmfxEb\",layoutId:\"I_YSmfxEb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b27fyq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/Ay7YGTASFqw6UDEc8\",motionChild:true,nodeId:\"Ik3oW_fEm\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Via Fondi Sperlonga 5832, 04022 Fondi (LT)\"})})})})},WCzquG8Cd:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/Ay7YGTASFqw6UDEc8\",motionChild:true,nodeId:\"Ik3oW_fEm\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Via Fondi Sperlonga 5832, 04022 Fondi (LT)\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/Ay7YGTASFqw6UDEc8\",motionChild:true,nodeId:\"Ik3oW_fEm\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Via Fondi Sperlonga 5832, 04022 Fondi (LT)\"})})})}),className:\"framer-160y1yp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+11042+0+0+40+712},WCzquG8Cd:{width:`min(${componentViewport?.width||\"100vw\"} - 144px, 1200px)`,y:(componentViewport?.y||0)+0+9734+0+0+80+712}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1200px) * 0.65 - 80px, 1px)`,y:(componentViewport?.y||0)+0+7718+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i8rt53-container\",nodeId:\"uFJHLMnhz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContactForm,{height:\"100%\",id:\"uFJHLMnhz\",layoutId:\"uFJHLMnhz\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+12342},WCzquG8Cd:{y:(componentViewport?.y||0)+0+11114}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8502,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dyg9fk-container\",nodeId:\"gvxrFDzU4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{variant:\"aQR7DtXqS\"},WCzquG8Cd:{variant:\"pGs7fpTDr\"}},children:/*#__PURE__*/_jsx(Footer1,{height:\"100%\",id:\"gvxrFDzU4\",layoutId:\"gvxrFDzU4\",style:{width:\"100%\"},variant:\"sZMslfmTh\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u1zHx.framer-lux5qc, .framer-u1zHx .framer-lux5qc { display: block; }\",\".framer-u1zHx.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-da785a49-5269-41ed-b4f8-e27c5e59f58b, #fdfdfd); 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-u1zHx .framer-jvt926-container, .framer-u1zHx .framer-xe7y03-container, .framer-u1zHx .framer-eyi47i-container, .framer-u1zHx .framer-7engzw-container, .framer-u1zHx .framer-1mn241b-container, .framer-u1zHx .framer-vkjdyt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-u1zHx .framer-cgtahl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-10qlzr3 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-u1zHx .framer-cdkzbq { align-content: center; align-items: center; aspect-ratio: 0.8888888888888888 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 281px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-u1zHx .framer-1uycz6g { aspect-ratio: 0.8888888888888888 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 281px); position: relative; width: 1px; }\",\".framer-u1zHx .framer-wmg93k-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-u1zHx .framer-1lifry0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-jmu6uf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-q0u8a4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-1abfqzl, .framer-u1zHx .framer-1emulz8, .framer-u1zHx .framer-159xlbk, .framer-u1zHx .framer-1w1d6v7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1idbh7e, .framer-u1zHx .framer-1v6vwyj, .framer-u1zHx .framer-1tnrcyx, .framer-u1zHx .framer-1hldiuv, .framer-u1zHx .framer-wekt22 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-u1zHx .framer-a7x6af, .framer-u1zHx .framer-19fxhfn, .framer-u1zHx .framer-yt9xep, .framer-u1zHx .framer-prfoa9, .framer-u1zHx .framer-1otymj9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-qc4em9, .framer-u1zHx .framer-x0gbxy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-ag2ngm, .framer-u1zHx .framer-16339rs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-95n0ku, .framer-u1zHx .framer-12k2owq { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-u1zHx .framer-1pn64m8, .framer-u1zHx .framer-izyygn { aspect-ratio: 0.8888888888888888 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 540px); position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-u1zHx .framer-11lfbd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1kxvfai, .framer-u1zHx .framer-a49sq9 { display: grid; flex: none; gap: 80px; 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1g94j8k, .framer-u1zHx .framer-1pikv9e, .framer-u1zHx .framer-zpiha6, .framer-u1zHx .framer-ehx49w, .framer-u1zHx .framer-i1ipq1, .framer-u1zHx .framer-1e22q3c, .framer-u1zHx .framer-1wsh5y7, .framer-u1zHx .framer-1xt3hjt, .framer-u1zHx .framer-1r3l9gh, .framer-u1zHx .framer-mvc88, .framer-u1zHx .framer-7u2mow { 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-u1zHx .framer-8qbauw-container, .framer-u1zHx .framer-1q1gb47-container, .framer-u1zHx .framer-1ocqlm7-container, .framer-u1zHx .framer-1cn9jh2-container, .framer-u1zHx .framer-13ipm9b-container, .framer-u1zHx .framer-1dukkbs-container, .framer-u1zHx .framer-1tmy1ro-container, .framer-u1zHx .framer-11p49s8-container, .framer-u1zHx .framer-n5vigx-container, .framer-u1zHx .framer-bapsc9-container, .framer-u1zHx .framer-11l4f6q-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-u1zHx .framer-1vjayl7, .framer-u1zHx .framer-1gysbca, .framer-u1zHx .framer-oqql3f, .framer-u1zHx .framer-1x4w14p, .framer-u1zHx .framer-1qqtroo, .framer-u1zHx .framer-194h2e8 { 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-u1zHx .framer-13h79y2, .framer-u1zHx .framer-rwytk, .framer-u1zHx .framer-1oaejnw, .framer-u1zHx .framer-h9f781, .framer-u1zHx .framer-1mnsb88, .framer-u1zHx .framer-1amx7db, .framer-u1zHx .framer-5gjudd, .framer-u1zHx .framer-vvjsse, .framer-u1zHx .framer-i0mlls, .framer-u1zHx .framer-1s0cg4a, .framer-u1zHx .framer-vp2jz4, .framer-u1zHx .framer-14n1hxk, .framer-u1zHx .framer-6tc183, .framer-u1zHx .framer-jw4tab { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-u1zHx .framer-1aegbkv, .framer-u1zHx .framer-ysrquh, .framer-u1zHx .framer-1emee5f, .framer-u1zHx .framer-ag5k7k, .framer-u1zHx .framer-1b9ihkr, .framer-u1zHx .framer-1tstezj, .framer-u1zHx .framer-cdcp9i, .framer-u1zHx .framer-1dr6c3a, .framer-u1zHx .framer-xt7kbh, .framer-u1zHx .framer-f5ejv4, .framer-u1zHx .framer-1go0a5m, .framer-u1zHx .framer-1gg98a2, .framer-u1zHx .framer-1v811ss, .framer-u1zHx .framer-l1abti, .framer-u1zHx .framer-160y1yp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-u1zHx .framer-pnk7hs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1p68rpv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-1xdcjoo, .framer-u1zHx .framer-2nr4yz, .framer-u1zHx .framer-1pr77os, .framer-u1zHx .framer-le8gms, .framer-u1zHx .framer-1d4x4fv { align-content: center; align-items: center; 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-u1zHx .framer-k95mea { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-pkebhk-container, .framer-u1zHx .framer-1t7l9kh-container, .framer-u1zHx .framer-1tso0el-container { aspect-ratio: 3.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); position: relative; width: 100%; }\",\".framer-u1zHx .framer-psf1yq, .framer-u1zHx .framer-19zx7ls, .framer-u1zHx .framer-nwx12k, .framer-u1zHx .framer-7rk137, .framer-u1zHx .framer-do6ggb, .framer-u1zHx .framer-tbwy5b, .framer-u1zHx .framer-ur79qj, .framer-u1zHx .framer-1g3t3qx, .framer-u1zHx .framer-1q1dh5g, .framer-u1zHx .framer-hqsf9f, .framer-u1zHx .framer-1r26uo9, .framer-u1zHx .framer-d4oqcg, .framer-u1zHx .framer-1kk1jon, .framer-u1zHx .framer-vcxje7, .framer-u1zHx .framer-1rm0q4k, .framer-u1zHx .framer-1dnnwpy, .framer-u1zHx .framer-1svkvm4 { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 400px; }\",\".framer-u1zHx .framer-1x1cxph { 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 120px 0px 120px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-uaejvf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-155w7gu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1qlsfpq, .framer-u1zHx .framer-y3yiyb { align-content: center; align-items: center; background-color: var(--token-da785a49-5269-41ed-b4f8-e27c5e59f58b, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 30px 0px rgba(36, 36, 36, 0.11); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-gc9bir, .framer-u1zHx .framer-d097oe, .framer-u1zHx .framer-1fqf5tv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-syy2db, .framer-u1zHx .framer-1r2emau, .framer-u1zHx .framer-vv7l4x { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-u1zHx .framer-7x5b6m, .framer-u1zHx .framer-ug3o09, .framer-u1zHx .framer-93nnk2 { 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; position: relative; width: 1px; }\",\".framer-u1zHx .framer-avs153 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 1px 30px rgba(36, 36, 36, 0.11); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-u1zHx .framer-95opg9 { align-content: center; align-items: center; background-color: var(--token-da785a49-5269-41ed-b4f8-e27c5e59f58b, #fdfdfd); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 30px 0px rgba(36, 36, 36, 0.11); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-vx47bh { align-content: center; align-items: center; background-color: #f2f2f2; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1do7hjy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-u1zHx .framer-1oly883 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 35%; }\",\".framer-u1zHx .framer-rl9wk2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1stxlmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-sy7kae { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-u1zHx .framer-jtq2y-container, .framer-u1zHx .framer-dgr44k-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-u1zHx .framer-4wp5qa, .framer-u1zHx .framer-b27fyq { 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-u1zHx .framer-i8rt53-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-u1zHx .framer-dyg9fk-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1zHx.framer-72rtr7, .framer-u1zHx .framer-cgtahl, .framer-u1zHx .framer-10qlzr3, .framer-u1zHx .framer-cdkzbq, .framer-u1zHx .framer-1lifry0, .framer-u1zHx .framer-jmu6uf, .framer-u1zHx .framer-q0u8a4, .framer-u1zHx .framer-1abfqzl, .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-qc4em9, .framer-u1zHx .framer-1emulz8, .framer-u1zHx .framer-ag2ngm, .framer-u1zHx .framer-95n0ku, .framer-u1zHx .framer-11lfbd1, .framer-u1zHx .framer-1g94j8k, .framer-u1zHx .framer-1vjayl7, .framer-u1zHx .framer-1pikv9e, .framer-u1zHx .framer-1gysbca, .framer-u1zHx .framer-zpiha6, .framer-u1zHx .framer-oqql3f, .framer-u1zHx .framer-ehx49w, .framer-u1zHx .framer-1x4w14p, .framer-u1zHx .framer-i1ipq1, .framer-u1zHx .framer-1qqtroo, .framer-u1zHx .framer-1e22q3c, .framer-u1zHx .framer-194h2e8, .framer-u1zHx .framer-jg5gnb, .framer-u1zHx .framer-12k2owq, .framer-u1zHx .framer-x0gbxy, .framer-u1zHx .framer-159xlbk, .framer-u1zHx .framer-16339rs, .framer-u1zHx .framer-pnk7hs, .framer-u1zHx .framer-1p68rpv, .framer-u1zHx .framer-1wsh5y7, .framer-u1zHx .framer-1xdcjoo, .framer-u1zHx .framer-1xt3hjt, .framer-u1zHx .framer-2nr4yz, .framer-u1zHx .framer-1r3l9gh, .framer-u1zHx .framer-1pr77os, .framer-u1zHx .framer-mvc88, .framer-u1zHx .framer-le8gms, .framer-u1zHx .framer-7u2mow, .framer-u1zHx .framer-1d4x4fv, .framer-u1zHx .framer-k95mea, .framer-u1zHx .framer-1x1cxph, .framer-u1zHx .framer-uaejvf, .framer-u1zHx .framer-1w1d6v7, .framer-u1zHx .framer-155w7gu, .framer-u1zHx .framer-1qlsfpq, .framer-u1zHx .framer-gc9bir, .framer-u1zHx .framer-7x5b6m, .framer-u1zHx .framer-95opg9, .framer-u1zHx .framer-d097oe, .framer-u1zHx .framer-ug3o09, .framer-u1zHx .framer-y3yiyb, .framer-u1zHx .framer-1fqf5tv, .framer-u1zHx .framer-93nnk2, .framer-u1zHx .framer-vx47bh, .framer-u1zHx .framer-1do7hjy, .framer-u1zHx .framer-1oly883, .framer-u1zHx .framer-rl9wk2, .framer-u1zHx .framer-1stxlmm, .framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-4wp5qa, .framer-u1zHx .framer-sy7kae, .framer-u1zHx .framer-b27fyq { gap: 0px; } .framer-u1zHx.framer-72rtr7 > *, .framer-u1zHx .framer-1lifry0 > *, .framer-u1zHx .framer-7x5b6m > *, .framer-u1zHx .framer-ug3o09 > *, .framer-u1zHx .framer-93nnk2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-u1zHx.framer-72rtr7 > :first-child, .framer-u1zHx .framer-1lifry0 > :first-child, .framer-u1zHx .framer-q0u8a4 > :first-child, .framer-u1zHx .framer-qc4em9 > :first-child, .framer-u1zHx .framer-11lfbd1 > :first-child, .framer-u1zHx .framer-1g94j8k > :first-child, .framer-u1zHx .framer-1vjayl7 > :first-child, .framer-u1zHx .framer-1pikv9e > :first-child, .framer-u1zHx .framer-1gysbca > :first-child, .framer-u1zHx .framer-zpiha6 > :first-child, .framer-u1zHx .framer-oqql3f > :first-child, .framer-u1zHx .framer-ehx49w > :first-child, .framer-u1zHx .framer-1x4w14p > :first-child, .framer-u1zHx .framer-i1ipq1 > :first-child, .framer-u1zHx .framer-1qqtroo > :first-child, .framer-u1zHx .framer-1e22q3c > :first-child, .framer-u1zHx .framer-194h2e8 > :first-child, .framer-u1zHx .framer-x0gbxy > :first-child, .framer-u1zHx .framer-1p68rpv > :first-child, .framer-u1zHx .framer-1wsh5y7 > :first-child, .framer-u1zHx .framer-1xdcjoo > :first-child, .framer-u1zHx .framer-1xt3hjt > :first-child, .framer-u1zHx .framer-2nr4yz > :first-child, .framer-u1zHx .framer-1r3l9gh > :first-child, .framer-u1zHx .framer-1pr77os > :first-child, .framer-u1zHx .framer-mvc88 > :first-child, .framer-u1zHx .framer-le8gms > :first-child, .framer-u1zHx .framer-7u2mow > :first-child, .framer-u1zHx .framer-1d4x4fv > :first-child, .framer-u1zHx .framer-k95mea > :first-child, .framer-u1zHx .framer-1x1cxph > :first-child, .framer-u1zHx .framer-uaejvf > :first-child, .framer-u1zHx .framer-1qlsfpq > :first-child, .framer-u1zHx .framer-7x5b6m > :first-child, .framer-u1zHx .framer-95opg9 > :first-child, .framer-u1zHx .framer-ug3o09 > :first-child, .framer-u1zHx .framer-y3yiyb > :first-child, .framer-u1zHx .framer-93nnk2 > :first-child, .framer-u1zHx .framer-1oly883 > :first-child, .framer-u1zHx .framer-1stxlmm > :first-child, .framer-u1zHx .framer-4wp5qa > :first-child, .framer-u1zHx .framer-b27fyq > :first-child { margin-top: 0px; } .framer-u1zHx.framer-72rtr7 > :last-child, .framer-u1zHx .framer-1lifry0 > :last-child, .framer-u1zHx .framer-q0u8a4 > :last-child, .framer-u1zHx .framer-qc4em9 > :last-child, .framer-u1zHx .framer-11lfbd1 > :last-child, .framer-u1zHx .framer-1g94j8k > :last-child, .framer-u1zHx .framer-1vjayl7 > :last-child, .framer-u1zHx .framer-1pikv9e > :last-child, .framer-u1zHx .framer-1gysbca > :last-child, .framer-u1zHx .framer-zpiha6 > :last-child, .framer-u1zHx .framer-oqql3f > :last-child, .framer-u1zHx .framer-ehx49w > :last-child, .framer-u1zHx .framer-1x4w14p > :last-child, .framer-u1zHx .framer-i1ipq1 > :last-child, .framer-u1zHx .framer-1qqtroo > :last-child, .framer-u1zHx .framer-1e22q3c > :last-child, .framer-u1zHx .framer-194h2e8 > :last-child, .framer-u1zHx .framer-x0gbxy > :last-child, .framer-u1zHx .framer-1p68rpv > :last-child, .framer-u1zHx .framer-1wsh5y7 > :last-child, .framer-u1zHx .framer-1xdcjoo > :last-child, .framer-u1zHx .framer-1xt3hjt > :last-child, .framer-u1zHx .framer-2nr4yz > :last-child, .framer-u1zHx .framer-1r3l9gh > :last-child, .framer-u1zHx .framer-1pr77os > :last-child, .framer-u1zHx .framer-mvc88 > :last-child, .framer-u1zHx .framer-le8gms > :last-child, .framer-u1zHx .framer-7u2mow > :last-child, .framer-u1zHx .framer-1d4x4fv > :last-child, .framer-u1zHx .framer-k95mea > :last-child, .framer-u1zHx .framer-1x1cxph > :last-child, .framer-u1zHx .framer-uaejvf > :last-child, .framer-u1zHx .framer-1qlsfpq > :last-child, .framer-u1zHx .framer-7x5b6m > :last-child, .framer-u1zHx .framer-95opg9 > :last-child, .framer-u1zHx .framer-ug3o09 > :last-child, .framer-u1zHx .framer-y3yiyb > :last-child, .framer-u1zHx .framer-93nnk2 > :last-child, .framer-u1zHx .framer-1oly883 > :last-child, .framer-u1zHx .framer-1stxlmm > :last-child, .framer-u1zHx .framer-4wp5qa > :last-child, .framer-u1zHx .framer-b27fyq > :last-child { margin-bottom: 0px; } .framer-u1zHx .framer-cgtahl > *, .framer-u1zHx .framer-10qlzr3 > *, .framer-u1zHx .framer-1fo1hhg > *, .framer-u1zHx .framer-jg5gnb > *, .framer-u1zHx .framer-155w7gu > *, .framer-u1zHx .framer-vx47bh > *, .framer-u1zHx .framer-1do7hjy > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-u1zHx .framer-cgtahl > :first-child, .framer-u1zHx .framer-10qlzr3 > :first-child, .framer-u1zHx .framer-cdkzbq > :first-child, .framer-u1zHx .framer-jmu6uf > :first-child, .framer-u1zHx .framer-1abfqzl > :first-child, .framer-u1zHx .framer-1fo1hhg > :first-child, .framer-u1zHx .framer-1emulz8 > :first-child, .framer-u1zHx .framer-ag2ngm > :first-child, .framer-u1zHx .framer-95n0ku > :first-child, .framer-u1zHx .framer-jg5gnb > :first-child, .framer-u1zHx .framer-12k2owq > :first-child, .framer-u1zHx .framer-159xlbk > :first-child, .framer-u1zHx .framer-16339rs > :first-child, .framer-u1zHx .framer-pnk7hs > :first-child, .framer-u1zHx .framer-1w1d6v7 > :first-child, .framer-u1zHx .framer-155w7gu > :first-child, .framer-u1zHx .framer-gc9bir > :first-child, .framer-u1zHx .framer-d097oe > :first-child, .framer-u1zHx .framer-1fqf5tv > :first-child, .framer-u1zHx .framer-vx47bh > :first-child, .framer-u1zHx .framer-1do7hjy > :first-child, .framer-u1zHx .framer-rl9wk2 > :first-child, .framer-u1zHx .framer-1sas2ps > :first-child, .framer-u1zHx .framer-sy7kae > :first-child { margin-left: 0px; } .framer-u1zHx .framer-cgtahl > :last-child, .framer-u1zHx .framer-10qlzr3 > :last-child, .framer-u1zHx .framer-cdkzbq > :last-child, .framer-u1zHx .framer-jmu6uf > :last-child, .framer-u1zHx .framer-1abfqzl > :last-child, .framer-u1zHx .framer-1fo1hhg > :last-child, .framer-u1zHx .framer-1emulz8 > :last-child, .framer-u1zHx .framer-ag2ngm > :last-child, .framer-u1zHx .framer-95n0ku > :last-child, .framer-u1zHx .framer-jg5gnb > :last-child, .framer-u1zHx .framer-12k2owq > :last-child, .framer-u1zHx .framer-159xlbk > :last-child, .framer-u1zHx .framer-16339rs > :last-child, .framer-u1zHx .framer-pnk7hs > :last-child, .framer-u1zHx .framer-1w1d6v7 > :last-child, .framer-u1zHx .framer-155w7gu > :last-child, .framer-u1zHx .framer-gc9bir > :last-child, .framer-u1zHx .framer-d097oe > :last-child, .framer-u1zHx .framer-1fqf5tv > :last-child, .framer-u1zHx .framer-vx47bh > :last-child, .framer-u1zHx .framer-1do7hjy > :last-child, .framer-u1zHx .framer-rl9wk2 > :last-child, .framer-u1zHx .framer-1sas2ps > :last-child, .framer-u1zHx .framer-sy7kae > :last-child { margin-right: 0px; } .framer-u1zHx .framer-cdkzbq > *, .framer-u1zHx .framer-95n0ku > *, .framer-u1zHx .framer-12k2owq > *, .framer-u1zHx .framer-pnk7hs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-u1zHx .framer-jmu6uf > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-u1zHx .framer-q0u8a4 > *, .framer-u1zHx .framer-qc4em9 > *, .framer-u1zHx .framer-x0gbxy > *, .framer-u1zHx .framer-1stxlmm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-u1zHx .framer-1abfqzl > *, .framer-u1zHx .framer-1emulz8 > *, .framer-u1zHx .framer-159xlbk > *, .framer-u1zHx .framer-1w1d6v7 > *, .framer-u1zHx .framer-rl9wk2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-u1zHx .framer-ag2ngm > *, .framer-u1zHx .framer-16339rs > *, .framer-u1zHx .framer-gc9bir > *, .framer-u1zHx .framer-d097oe > *, .framer-u1zHx .framer-1fqf5tv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-u1zHx .framer-11lfbd1 > *, .framer-u1zHx .framer-1p68rpv > *, .framer-u1zHx .framer-1oly883 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-u1zHx .framer-1g94j8k > *, .framer-u1zHx .framer-1pikv9e > *, .framer-u1zHx .framer-zpiha6 > *, .framer-u1zHx .framer-ehx49w > *, .framer-u1zHx .framer-i1ipq1 > *, .framer-u1zHx .framer-1e22q3c > *, .framer-u1zHx .framer-1wsh5y7 > *, .framer-u1zHx .framer-1xt3hjt > *, .framer-u1zHx .framer-1r3l9gh > *, .framer-u1zHx .framer-mvc88 > *, .framer-u1zHx .framer-7u2mow > *, .framer-u1zHx .framer-95opg9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-u1zHx .framer-1vjayl7 > *, .framer-u1zHx .framer-1gysbca > *, .framer-u1zHx .framer-oqql3f > *, .framer-u1zHx .framer-1x4w14p > *, .framer-u1zHx .framer-1qqtroo > *, .framer-u1zHx .framer-194h2e8 > *, .framer-u1zHx .framer-1xdcjoo > *, .framer-u1zHx .framer-2nr4yz > *, .framer-u1zHx .framer-1pr77os > *, .framer-u1zHx .framer-le8gms > *, .framer-u1zHx .framer-1d4x4fv > *, .framer-u1zHx .framer-1x1cxph > *, .framer-u1zHx .framer-4wp5qa > *, .framer-u1zHx .framer-b27fyq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-u1zHx .framer-k95mea > *, .framer-u1zHx .framer-1qlsfpq > *, .framer-u1zHx .framer-y3yiyb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-u1zHx .framer-uaejvf > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-u1zHx .framer-1sas2ps > *, .framer-u1zHx .framer-sy7kae > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-u1zHx.framer-72rtr7 { width: 1200px; } .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb { gap: 60px; } .framer-u1zHx .framer-pkebhk-container, .framer-u1zHx .framer-1tso0el-container { height: var(--framer-aspect-ratio-supported, 334px); } .framer-u1zHx .framer-1t7l9kh-container { height: var(--framer-aspect-ratio-supported, 333px); } .framer-u1zHx .framer-155w7gu { gap: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb, .framer-u1zHx .framer-155w7gu { gap: 0px; } .framer-u1zHx .framer-1fo1hhg > *, .framer-u1zHx .framer-jg5gnb > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-u1zHx .framer-1fo1hhg > :first-child, .framer-u1zHx .framer-jg5gnb > :first-child, .framer-u1zHx .framer-155w7gu > :first-child { margin-left: 0px; } .framer-u1zHx .framer-1fo1hhg > :last-child, .framer-u1zHx .framer-jg5gnb > :last-child, .framer-u1zHx .framer-155w7gu > :last-child { margin-right: 0px; } .framer-u1zHx .framer-155w7gu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-u1zHx.framer-72rtr7 { width: 390px; } .framer-u1zHx .framer-1lifry0, .framer-u1zHx .framer-pnk7hs, .framer-u1zHx .framer-1x1cxph { padding: 0px 24px 0px 24px; } .framer-u1zHx .framer-jmu6uf { flex-direction: column; gap: 40px; } .framer-u1zHx .framer-q0u8a4 { flex: none; order: 0; padding: 40px 0px 40px 0px; width: 100%; } .framer-u1zHx .framer-xe7y03-container, .framer-u1zHx .framer-eyi47i-container, .framer-u1zHx .framer-7engzw-container, .framer-u1zHx .framer-1mn241b-container, .framer-u1zHx .framer-vkjdyt-container { width: 100%; } .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb { flex-direction: column; gap: 40px; padding: 40px 0px 40px 0px; } .framer-u1zHx .framer-qc4em9, .framer-u1zHx .framer-x0gbxy { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-u1zHx .framer-ag2ngm, .framer-u1zHx .framer-16339rs, .framer-u1zHx .framer-155w7gu, .framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-sy7kae { flex-direction: column; } .framer-u1zHx .framer-95n0ku, .framer-u1zHx .framer-12k2owq { order: 0; width: 100%; } .framer-u1zHx .framer-1pn64m8, .framer-u1zHx .framer-izyygn { flex: none; height: var(--framer-aspect-ratio-supported, 386px); width: 343px; } .framer-u1zHx .framer-11lfbd1 { gap: 60px; padding: 60px 0px 60px 0px; } .framer-u1zHx .framer-1kxvfai, .framer-u1zHx .framer-a49sq9 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-u1zHx .framer-1p68rpv { gap: 60px; } .framer-u1zHx .framer-k95mea { padding: 40px 0px 40px 0px; } .framer-u1zHx .framer-pkebhk-container, .framer-u1zHx .framer-1t7l9kh-container, .framer-u1zHx .framer-1tso0el-container { height: var(--framer-aspect-ratio-supported, 200px); max-height: 200px; width: 720px; } .framer-u1zHx .framer-uaejvf { padding: 40px 0px 80px 0px; } .framer-u1zHx .framer-1qlsfpq, .framer-u1zHx .framer-95opg9, .framer-u1zHx .framer-y3yiyb, .framer-u1zHx .framer-4wp5qa, .framer-u1zHx .framer-b27fyq, .framer-u1zHx .framer-i8rt53-container { flex: none; width: 100%; } .framer-u1zHx .framer-vx47bh { flex-direction: column; gap: 0px; padding: 0px 24px 0px 24px; } .framer-u1zHx .framer-1do7hjy { align-content: center; align-items: center; flex: none; flex-direction: column; order: 0; padding: 40px 0px 40px 0px; width: 100%; } .framer-u1zHx .framer-1oly883 { gap: 40px; justify-content: center; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1zHx .framer-jmu6uf, .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-ag2ngm, .framer-u1zHx .framer-11lfbd1, .framer-u1zHx .framer-jg5gnb, .framer-u1zHx .framer-16339rs, .framer-u1zHx .framer-1p68rpv, .framer-u1zHx .framer-155w7gu, .framer-u1zHx .framer-vx47bh, .framer-u1zHx .framer-1do7hjy, .framer-u1zHx .framer-1oly883, .framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-sy7kae { gap: 0px; } .framer-u1zHx .framer-jmu6uf > *, .framer-u1zHx .framer-1fo1hhg > *, .framer-u1zHx .framer-jg5gnb > *, .framer-u1zHx .framer-1oly883 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-u1zHx .framer-jmu6uf > :first-child, .framer-u1zHx .framer-1fo1hhg > :first-child, .framer-u1zHx .framer-ag2ngm > :first-child, .framer-u1zHx .framer-11lfbd1 > :first-child, .framer-u1zHx .framer-jg5gnb > :first-child, .framer-u1zHx .framer-16339rs > :first-child, .framer-u1zHx .framer-1p68rpv > :first-child, .framer-u1zHx .framer-155w7gu > :first-child, .framer-u1zHx .framer-vx47bh > :first-child, .framer-u1zHx .framer-1do7hjy > :first-child, .framer-u1zHx .framer-1oly883 > :first-child, .framer-u1zHx .framer-1sas2ps > :first-child, .framer-u1zHx .framer-sy7kae > :first-child { margin-top: 0px; } .framer-u1zHx .framer-jmu6uf > :last-child, .framer-u1zHx .framer-1fo1hhg > :last-child, .framer-u1zHx .framer-ag2ngm > :last-child, .framer-u1zHx .framer-11lfbd1 > :last-child, .framer-u1zHx .framer-jg5gnb > :last-child, .framer-u1zHx .framer-16339rs > :last-child, .framer-u1zHx .framer-1p68rpv > :last-child, .framer-u1zHx .framer-155w7gu > :last-child, .framer-u1zHx .framer-vx47bh > :last-child, .framer-u1zHx .framer-1do7hjy > :last-child, .framer-u1zHx .framer-1oly883 > :last-child, .framer-u1zHx .framer-1sas2ps > :last-child, .framer-u1zHx .framer-sy7kae > :last-child { margin-bottom: 0px; } .framer-u1zHx .framer-ag2ngm > *, .framer-u1zHx .framer-16339rs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-u1zHx .framer-11lfbd1 > *, .framer-u1zHx .framer-1p68rpv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-u1zHx .framer-155w7gu > *, .framer-u1zHx .framer-1do7hjy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-u1zHx .framer-vx47bh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-u1zHx .framer-1sas2ps > *, .framer-u1zHx .framer-sy7kae > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 1920px) { .framer-u1zHx.framer-72rtr7 { width: 1920px; } .framer-u1zHx .framer-pkebhk-container, .framer-u1zHx .framer-1tso0el-container { height: var(--framer-aspect-ratio-supported, 534px); } .framer-u1zHx .framer-1t7l9kh-container { height: var(--framer-aspect-ratio-supported, 533px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-u1zHx.framer-72rtr7 { width: 810px; } .framer-u1zHx .framer-1lifry0, .framer-u1zHx .framer-pnk7hs, .framer-u1zHx .framer-1x1cxph { padding: 0px 72px 0px 72px; } .framer-u1zHx .framer-jmu6uf { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 60px; } .framer-u1zHx .framer-q0u8a4 { flex: none; order: 0; padding: 80px 0px 80px 0px; width: 100%; } .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; } .framer-u1zHx .framer-qc4em9, .framer-u1zHx .framer-x0gbxy { flex: none; order: 1; width: 100%; } .framer-u1zHx .framer-95n0ku, .framer-u1zHx .framer-12k2owq { order: 0; width: 100%; } .framer-u1zHx .framer-1pn64m8, .framer-u1zHx .framer-izyygn { height: var(--framer-aspect-ratio-supported, 750px); } .framer-u1zHx .framer-1kxvfai, .framer-u1zHx .framer-a49sq9 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-u1zHx .framer-k95mea { padding: 40px 0px 40px 0px; } .framer-u1zHx .framer-pkebhk-container, .framer-u1zHx .framer-1t7l9kh-container, .framer-u1zHx .framer-1tso0el-container { height: var(--framer-aspect-ratio-supported, 320px); max-height: 320px; width: 1152px; } .framer-u1zHx .framer-uaejvf { padding: 80px 0px 80px 0px; } .framer-u1zHx .framer-155w7gu { flex-direction: column; gap: 40px; } .framer-u1zHx .framer-1qlsfpq, .framer-u1zHx .framer-95opg9, .framer-u1zHx .framer-y3yiyb, .framer-u1zHx .framer-4wp5qa, .framer-u1zHx .framer-b27fyq, .framer-u1zHx .framer-i8rt53-container { flex: none; width: 100%; } .framer-u1zHx .framer-vx47bh { flex-direction: column; gap: 0px; padding: 0px 72px 0px 72px; } .framer-u1zHx .framer-1do7hjy { align-content: center; align-items: center; flex: none; flex-direction: column; order: 0; padding: 80px 0px 80px 0px; width: 100%; } .framer-u1zHx .framer-1oly883 { align-content: center; align-items: center; gap: 40px; justify-content: center; width: 100%; } .framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-sy7kae { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1zHx .framer-jmu6uf, .framer-u1zHx .framer-1fo1hhg, .framer-u1zHx .framer-jg5gnb, .framer-u1zHx .framer-155w7gu, .framer-u1zHx .framer-vx47bh, .framer-u1zHx .framer-1do7hjy, .framer-u1zHx .framer-1oly883, .framer-u1zHx .framer-1sas2ps, .framer-u1zHx .framer-sy7kae { gap: 0px; } .framer-u1zHx .framer-jmu6uf > *, .framer-u1zHx .framer-1fo1hhg > *, .framer-u1zHx .framer-jg5gnb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-u1zHx .framer-jmu6uf > :first-child, .framer-u1zHx .framer-1fo1hhg > :first-child, .framer-u1zHx .framer-jg5gnb > :first-child, .framer-u1zHx .framer-155w7gu > :first-child, .framer-u1zHx .framer-vx47bh > :first-child, .framer-u1zHx .framer-1do7hjy > :first-child, .framer-u1zHx .framer-1oly883 > :first-child, .framer-u1zHx .framer-1sas2ps > :first-child, .framer-u1zHx .framer-sy7kae > :first-child { margin-top: 0px; } .framer-u1zHx .framer-jmu6uf > :last-child, .framer-u1zHx .framer-1fo1hhg > :last-child, .framer-u1zHx .framer-jg5gnb > :last-child, .framer-u1zHx .framer-155w7gu > :last-child, .framer-u1zHx .framer-vx47bh > :last-child, .framer-u1zHx .framer-1do7hjy > :last-child, .framer-u1zHx .framer-1oly883 > :last-child, .framer-u1zHx .framer-1sas2ps > :last-child, .framer-u1zHx .framer-sy7kae > :last-child { margin-bottom: 0px; } .framer-u1zHx .framer-155w7gu > *, .framer-u1zHx .framer-1oly883 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-u1zHx .framer-vx47bh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-u1zHx .framer-1do7hjy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-u1zHx .framer-1sas2ps > *, .framer-u1zHx .framer-sy7kae > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8484\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Kj9PSfug2\":{\"layout\":[\"fixed\",\"auto\"]},\"umG7KXCKX\":{\"layout\":[\"fixed\",\"auto\"]},\"Dm36GiKdw\":{\"layout\":[\"fixed\",\"auto\"]},\"WCzquG8Cd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HVCGutRaR\":{\"pattern\":\":HVCGutRaR\",\"name\":\"gallery\"},\"ubySn3qYU\":{\"pattern\":\":ubySn3qYU\",\"name\":\"contatti\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-u1zHx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8484,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavigationBar2Fonts,...ButtonFonts,...PhosphorFonts,...TickerFonts,...ContactFormFonts,...Footer1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"8484\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kj9PSfug2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"umG7KXCKX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dm36GiKdw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WCzquG8Cd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"HVCGutRaR\\\":{\\\"pattern\\\":\\\":HVCGutRaR\\\",\\\"name\\\":\\\"gallery\\\"},\\\"ubySn3qYU\\\":{\\\"pattern\\\":\\\":ubySn3qYU\\\",\\\"name\\\":\\\"contatti\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "NavigationBar2Fonts", "HzDlCV9U7_default", "ContainerWithOptimizedAppearEffect", "Container", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "ICtaDue3V_default", "ContainerWithFX", "MotionDivWithFX", "motion", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "ContactFormFonts", "uENeH6KQr_default", "Footer1Fonts", "jfj0gdz8K_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "transition4", "animation8", "transition5", "animation9", "transition6", "animation10", "transition7", "animation11", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "Image2", "ImageWithOptimizedAppearEffect", "getLoadingLazyAtYPosition", "ContainerWithOptimizedAppearEffect", "PropertyOverrides2", "HzDlCV9U7_default", "RichText2", "getLocalizedValue", "x", "RichTextWithFX", "ContainerWithFX", "ICtaDue3V_default", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "Link", "Icon", "resolvedLinks1", "Ticker", "uENeH6KQr_default", "jfj0gdz8K_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SmoothScrollFonts", "NavigationBar2Fonts", "ButtonFonts", "PhosphorFonts", "TickerFonts", "ContactFormFonts", "Footer1Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
