{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/4EGJl2tUCibSa46WgzzZ/wMGDtKPEL9MmWZvWdGGD/bWOoPBccE.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/kt1ThNr61IBqJxxvkwBZ/4b0CjeFdbVZjttrYWDUr/EAyEFYcPw.js", "ssg:https://framerusercontent.com/modules/4ifYx4o4EioE8xOTmSk2/iIEeL2UU1eSAIEj7Gch3/BDQre2uYt.js", "ssg:https://framerusercontent.com/modules/gqOGUejM23mHcbjommzY/XzrNULD6uNQvzpA72xGp/augiA20Il.js", "ssg:https://framerusercontent.com/modules/r44dbSzBkOH6S9Kd61Mw/mt0GdTFNuAw3H00EpJA9/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dlbdp95UQEPN3ku8Jd5E/Q0LOLtvWqbuPD4CYiTWy/xvINEJH2k.js\";import ButtonsButtonPrimary from\"https://framerusercontent.com/modules/z3rQ4FkZuRE3BFvDEC6b/QaPUUW6lbJlTejiznzV2/Kv1WChb7T.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonsButtonPrimaryFonts=getFonts(ButtonsButtonPrimary);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const SlideshowFonts=getFonts(Slideshow);const ButtonsButtonPrimaryControls=getPropertyControls(ButtonsButtonPrimary);const cycleOrder=[\"FICtxF9tk\",\"QNKLMo28O\",\"Z8p89sqD8\"];const serializationHash=\"framer-jOtAR\";const variantClassNames={FICtxF9tk:\"framer-v-4uh4nf\",QNKLMo28O:\"framer-v-1rfq0xb\",Z8p89sqD8:\"framer-v-8xe8qt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"Saunalautta, Kelluva keidas, Saaristo ja rento meiniki\";case\"utfTOYn72\":return\"Saunaboat, Floating Oasis, Archipelago and Relaxation\";default:return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const transition3={delay:0,duration:.45,ease:[.8,.34,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition4={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"Talven Tarjonta\";case\"utfTOYn72\":return\"Winter Activities\";default:return\"\";}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"default\":return\"Talvi 24-25 ollaan saunottu upeissa Puotilan maisemissa. Kaksi saunaa, kaksi avantoa, l\\xe4mmitetyt pukuhuoneet ja rento meininki takaavat sen, ett\\xe4 porukka viihtyy.  +90 viiden t\\xe4hden arvostelua:)\";case\"utfTOYn72\":return\"Winter 24\u201325 we\u2019ve been enjoying the sauna in the beautiful surroundings of Puotila. Two saunas, two ice holes, heated changing rooms, and a relaxed atmosphere ensure that everyone has a great time. Over 90 five-star reviews! :)\";default:return\"\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Phone Bright\":\"dJyB_SKCi\",\"Phone Outlined\":\"OBr_k0TAC\",\"Phone Sand\":\"q39zusDjo\",Bright:\"WaF_q6B7h\",Outlined:\"FTlOUBNhs\",Sand:\"Wo9pJTctn\"};const humanReadableVariantMap={Desktop:\"FICtxF9tk\",Phone:\"Z8p89sqD8\",Tablet:\"QNKLMo28O\"};const getProps=({buttonVariant,gap,headingFontSize,height,id,width,...props})=>{return{...props,FrcVzeS95:headingFontSize??props.FrcVzeS95??30,N4DUgSstW:gap??props.N4DUgSstW??50,variant:humanReadableVariantMap[props.variant]??props.variant??\"FICtxF9tk\",Wxo8XPemn:humanReadableEnumMap[buttonVariant]??buttonVariant??props.Wxo8XPemn??\"Wo9pJTctn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,FrcVzeS95,N4DUgSstW,Wxo8XPemn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FICtxF9tk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=toString(convertFromEnum(activeLocale?.id,activeLocale));const router=useRouter();const textContent1=toString(convertFromEnum1(activeLocale?.id,activeLocale));const textContent2=toString(convertFromEnum2(activeLocale?.id,activeLocale));return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4uh4nf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"FICtxF9tk\",ref:refBinding,style:{...style},...addPropertyOverrides({QNKLMo28O:{\"data-framer-name\":\"Tablet\"},Z8p89sqD8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lmisr3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FT5ekmll9-container\",nodeId:\"FT5ekmll9\",rendersWithMotion:true,scopeId:\"bWOoPBccE\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:100,leftArrow:\"https://framerusercontent.com/images/CTxUgbkqQksh1gUxltit4IlV4.svg\",rightArrow:\"https://framerusercontent.com/images/xGtxw2yj0sGUtyvw8r6cIYawY.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"FT5ekmll9\",intervalControl:10,itemAmount:1,layoutId:\"FT5ekmll9\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9jujxq\",\"data-framer-name\":\"Slider Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"mqoZIbqaS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1em189r\",layoutDependency:layoutDependency,layoutId:\"x3S8T74wK\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Saunalauttaristeily Helsingiss\\xe4\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1920,pixelHeight:805,pixelWidth:1280,src:\"https://framerusercontent.com/images/b5WWs5C0iWxGmfux5lnjY1bJpVY.jpeg?scale-down-to=1024\"},className:\"framer-1mp5kn9\",\"data-framer-name\":\"Hero\",layoutDependency:layoutDependency,layoutId:\"DdpsixOzi\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15wdu3z\",\"data-framer-name\":\"Banner Wrapper\",layoutDependency:layoutDependency,layoutId:\"CbRqqlbLO\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g6qcbv\",\"data-framer-name\":\"Base Container\",layoutDependency:layoutDependency,layoutId:\"x97aAyQUr\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-13ubvht\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"qKLQkRUy2\",style:{\"--1cuwgvg\":numberToPixelString(N4DUgSstW)},children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1wk58tw\",\"data-framer-appear-id\":\"1wk58tw\",\"data-framer-name\":\"Text Wrapper\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"H7mSdyrnH\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-FrcVzeS95-bWOoPBccE) * 1px)\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Saunalautta, Kelluva keidas, Saaristo ja rento meiniki\"})}),className:\"framer-2u5mho\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],layoutDependency:layoutDependency,layoutId:\"JB48RGNF1\",style:{\"--extracted-gdpscs\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-FrcVzeS95-bWOoPBccE\":FrcVzeS95},tabIndex:1,text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Merellist\\xe4 sauna- ja m\\xf6kkitunnelmaa Saunalautalla Helsingiss\\xe4! Kasuaalista hauskanpidosta ja saunavuoroista polttareihin, syntt\\xe4reihin ja tyky-p\\xe4iviin. Kahdeksan vuoden kokemuksella. Tervetuloa nauttimaan !:) Kes\\xe4 on aivan pian t\\xe4\\xe4ll\\xe4\u2764\uFE0F\"})}),className:\"framer-1gnumqn\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WYd0qqqW4\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",whileHover:animation3,withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-oovk4u-container\",\"data-framer-appear-id\":\"oovk4u\",inComponentSlot:true,initial:animation5,layoutDependency:layoutDependency,layoutId:\"bkNMQc45l-container\",nodeId:\"bkNMQc45l\",optimized:true,rendersWithMotion:true,scopeId:\"bWOoPBccE\",children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{dz9YsghVk:\"Tutustu lauttoihin!\",H1yzB_PXq:resolvedLinks[0],height:\"100%\",id:\"bkNMQc45l\",layoutId:\"bkNMQc45l\",variant:Wxo8XPemn,width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g5d5cs\",\"data-framer-name\":\"Slider Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"vUf28Fl4V\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation6},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Sauna ja avanto talvella\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1920,pixelHeight:599,pixelWidth:1126,src:\"https://framerusercontent.com/images/UpdOhPfWyijSs1Wsp1Z4b9bLNVI.jpeg?scale-down-to=1024\"},className:\"framer-1ttc1x0\",\"data-framer-name\":\"Banner Image\",layoutDependency:layoutDependency,layoutId:\"kqjNSfrDX\",style:{filter:\"brightness(0.6)\",WebkitFilter:\"brightness(0.6)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eypbb5\",\"data-framer-name\":\"Banner Wrapper\",layoutDependency:layoutDependency,layoutId:\"LANxsZfef\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ut7jj9\",\"data-framer-name\":\"Base Container\",layoutDependency:layoutDependency,layoutId:\"Uo2qZvYKo\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fe79w8\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"dQh3Fcjky\",style:{\"--1cuwgvg\":numberToPixelString(N4DUgSstW)},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sx09jj\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"Jcm810Cjh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2m20l\",\"data-framer-name\":\"Hero Banner Title\",layoutDependency:layoutDependency,layoutId:\"z5yLCDBbY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-FrcVzeS95-bWOoPBccE) * 1px)\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Talven tarjonta\"})}),className:\"framer-2qf4bc\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],layoutDependency:layoutDependency,layoutId:\"KBgRAclzx\",style:{\"--extracted-1of0zx5\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-FrcVzeS95-bWOoPBccE\":FrcVzeS95},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Talvi 24-25 ollaan saunottu upeissa Puotilan maisemissa. Kaksi saunaa, kaksi avantoa, l\\xe4mmitetyt pukuhuoneet ja rento meininki takaavat sen, ett\\xe4 porukka viihtyy.  +90 viiden t\\xe4hden arvostelua:)\"})}),className:\"framer-1ey03v1\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tb3eUda22\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{OOeYd4o9r:\"talvikausi-25\"},unresolvedPathSlugs:{OOeYd4o9r:{collectionId:\"kJBmDiV_p\",collectionItemId:\"ppcAU0AjD\"}},webPageId:\"pwVLjEZGo\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j86vdi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Oun4MTZEH-container\",nodeId:\"Oun4MTZEH\",rendersWithMotion:true,scopeId:\"bWOoPBccE\",children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{dz9YsghVk:\"Avantoon\",H1yzB_PXq:resolvedLinks1[0],height:\"100%\",id:\"Oun4MTZEH\",layoutId:\"Oun4MTZEH\",variant:Wxo8XPemn,width:\"100%\"})})})})]})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({Z8p89sqD8:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:30,arrowPadding:20,arrowPaddingBottom:20,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:100,leftArrow:\"https://framerusercontent.com/images/CTxUgbkqQksh1gUxltit4IlV4.svg\",rightArrow:\"https://framerusercontent.com/images/xGtxw2yj0sGUtyvw8r6cIYawY.svg\",showMouseControls:true}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Round Bottom Background\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||200)-100),pixelHeight:200,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png\",srcSet:\"https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png 2560w\"},className:\"framer-1sbwgmg\",layoutDependency:layoutDependency,layoutId:\"Xnwl160m_\",...addPropertyOverrides({Z8p89sqD8:{background:{alt:\"Round Bottom Background\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||200)-48),pixelHeight:200,pixelWidth:2560,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png\",srcSet:\"https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4VVVOocwgxS103VwOygRfzi3AY.png 2560w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jOtAR.framer-csyb5z, .framer-jOtAR .framer-csyb5z { display: block; }\",\".framer-jOtAR.framer-4uh4nf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-jOtAR .framer-lmisr3-container { flex: 1 0 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); position: relative; width: 1px; }\",\".framer-jOtAR .framer-9jujxq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 1280px; }\",\".framer-jOtAR .framer-1em189r { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-jOtAR .framer-1mp5kn9 { flex: none; gap: 10px; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-jOtAR .framer-15wdu3z, .framer-jOtAR .framer-eypbb5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 130px 0px 130px 0px; position: relative; width: 1px; }\",\".framer-jOtAR .framer-g6qcbv, .framer-jOtAR .framer-1ut7jj9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; z-index: 1; }\",\".framer-jOtAR .framer-13ubvht, .framer-jOtAR .framer-1fe79w8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: var(--1cuwgvg); height: min-content; justify-content: center; max-width: 880px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jOtAR .framer-1wk58tw, .framer-jOtAR .framer-1sx09jj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jOtAR .framer-2u5mho { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jOtAR .framer-1gnumqn { flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-jOtAR .framer-oovk4u-container, .framer-jOtAR .framer-j86vdi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jOtAR .framer-g5d5cs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 1280px; z-index: 1; }\",\".framer-jOtAR .framer-1ttc1x0 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-jOtAR .framer-1i2m20l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 125px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jOtAR .framer-2qf4bc { flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jOtAR .framer-1ey03v1 { flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jOtAR .framer-1sbwgmg { bottom: 0px; flex: none; height: 100px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-jOtAR.framer-v-1rfq0xb.framer-4uh4nf { width: 992px; }\",\".framer-jOtAR.framer-v-8xe8qt.framer-4uh4nf { width: 375px; }\",\".framer-jOtAR.framer-v-8xe8qt .framer-lmisr3-container { height: calc(var(--framer-viewport-height, 100vh) * 0.92); }\",\".framer-jOtAR.framer-v-8xe8qt .framer-1sbwgmg { height: 48px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 916\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QNKLMo28O\":{\"layout\":[\"fixed\",\"auto\"]},\"Z8p89sqD8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FrcVzeS95\":\"headingFontSize\",\"N4DUgSstW\":\"gap\",\"Wxo8XPemn\":\"buttonVariant\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbWOoPBccE=withCSS(Component,css,\"framer-jOtAR\");export default FramerbWOoPBccE;FramerbWOoPBccE.displayName=\"Slider / Hero Banner Slideshow\";FramerbWOoPBccE.defaultProps={height:916,width:1280};addPropertyControls(FramerbWOoPBccE,{variant:{options:[\"FICtxF9tk\",\"QNKLMo28O\",\"Z8p89sqD8\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},FrcVzeS95:{defaultValue:30,title:\"Heading Font Size\",type:ControlType.Number},N4DUgSstW:{defaultValue:50,min:0,title:\"Gap\",type:ControlType.Number},Wxo8XPemn:ButtonsButtonPrimaryControls?.[\"variant\"]&&{...ButtonsButtonPrimaryControls[\"variant\"],defaultValue:\"Wo9pJTctn\",description:undefined,hidden:undefined,title:\"Button Variant\"}});addFonts(FramerbWOoPBccE,[{explicitInter:true,fonts:[{family:\"Corben\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMp9pQlEpVs3VQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...ButtonsButtonPrimaryFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbWOoPBccE\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"FrcVzeS95\\\":\\\"headingFontSize\\\",\\\"N4DUgSstW\\\":\\\"gap\\\",\\\"Wxo8XPemn\\\":\\\"buttonVariant\\\"}\",\"framerIntrinsicHeight\":\"916\",\"framerIntrinsicWidth\":\"1280\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QNKLMo28O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z8p89sqD8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bWOoPBccE.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-LQOqN\";const variantClassNames={y44koiiEd:\"framer-v-t6b838\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({gap,height,id,width,...props})=>{return{...props,N3DeH91h9:gap??props.N3DeH91h9??80};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,N3DeH91h9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"y44koiiEd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cHAsKqFfV\"},motionChild:true,nodeId:\"y44koiiEd\",scopeId:\"EAyEFYcPw\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-t6b838\",className,classNames)} framer-w8ygam`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"y44koiiEd\",ref:refBinding,style:{backgroundColor:\"var(--token-9fc83666-e56b-470c-b62b-66c213917d71, rgb(245, 155, 144))\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qnab9d-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ErU5NVi4A-container\",nodeId:\"ErU5NVi4A\",rendersWithMotion:true,scopeId:\"EAyEFYcPw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:N3DeH91h9,height:\"100%\",hoverFactor:.5,id:\"ErU5NVi4A\",layoutId:\"ErU5NVi4A\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9hrz3\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"KLvPUdltw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Valmiina unohtumattomalle saunalauttakokemukselle?\"})}),className:\"framer-17xr9oj\",\"data-framer-name\":\"Ticker Text\",fonts:[\"FS;Boska-medium italic\"],layoutDependency:layoutDependency,layoutId:\"bRg84hW9X\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9hR0b7POwycekLnsZH4NZbQCTWE.svg\"},className:\"framer-zcl9rr\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"JKtD41d9a\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eramp1\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"V4jCHS5Wk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Hyv\\xe4n Tuulen Sauna, niin talvella kuin kes\\xe4ll\\xe4\"})}),className:\"framer-1jp31qb\",\"data-framer-name\":\"Ticker Text\",fonts:[\"FS;Boska-medium italic\"],layoutDependency:layoutDependency,layoutId:\"jwr5KKRAh\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9hR0b7POwycekLnsZH4NZbQCTWE.svg\"},className:\"framer-15wlunn\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Ym1i3sQrV\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-125482i\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"hJvuevAXA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Stadin kuumin Saunalautta \"})}),className:\"framer-1pbwx42\",\"data-framer-name\":\"Ticker Text\",fonts:[\"FS;Boska-medium italic\"],layoutDependency:layoutDependency,layoutId:\"FskCsAiC9\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9hR0b7POwycekLnsZH4NZbQCTWE.svg\"},className:\"framer-u7e9bh\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"CpuccKFcw\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1skw6c2\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"sanYGgWSc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Seikkailuja saaristossa\"})}),className:\"framer-1shc9qk\",\"data-framer-name\":\"Ticker Text\",fonts:[\"FS;Boska-medium italic\"],layoutDependency:layoutDependency,layoutId:\"F769m2il8\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9hR0b7POwycekLnsZH4NZbQCTWE.svg\"},className:\"framer-tk9eer\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"CxTUgVwCs\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3t604q\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"Gsl0vJJOP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVtIGl0YWxpYw==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)))\"},children:\"Rentoudu\"})}),className:\"framer-zwyd74\",\"data-framer-name\":\"Ticker Text\",fonts:[\"FS;Boska-medium italic\"],layoutDependency:layoutDependency,layoutId:\"DtD2iaeom\",style:{\"--extracted-r6o4lv\":\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/9hR0b7POwycekLnsZH4NZbQCTWE.svg\"},className:\"framer-scefy4\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"sw2xNlgnQ\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LQOqN.framer-w8ygam, .framer-LQOqN .framer-w8ygam { display: block; }\",\".framer-LQOqN.framer-t6b838 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1000px; }\",\".framer-LQOqN .framer-1qnab9d-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-LQOqN .framer-9hrz3, .framer-LQOqN .framer-eramp1, .framer-LQOqN .framer-125482i, .framer-LQOqN .framer-1skw6c2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LQOqN .framer-17xr9oj, .framer-LQOqN .framer-1jp31qb, .framer-LQOqN .framer-1pbwx42, .framer-LQOqN .framer-1shc9qk, .framer-LQOqN .framer-zwyd74 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LQOqN .framer-zcl9rr, .framer-LQOqN .framer-15wlunn, .framer-LQOqN .framer-u7e9bh, .framer-LQOqN .framer-tk9eer, .framer-LQOqN .framer-scefy4 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LQOqN .framer-3t604q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"N3DeH91h9\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEAyEFYcPw=withCSS(Component,css,\"framer-LQOqN\");export default FramerEAyEFYcPw;FramerEAyEFYcPw.displayName=\"Company / Contact Us Ticker\";FramerEAyEFYcPw.defaultProps={height:48,width:1e3};addPropertyControls(FramerEAyEFYcPw,{N3DeH91h9:{defaultValue:80,title:\"Gap\",type:ControlType.Number}});addFonts(FramerEAyEFYcPw,[{explicitInter:true,fonts:[{family:\"Boska\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BQ7H6NLD2VQ7DH6MKXG4EKNOHS4ARVBW/WJSA3LVU7OIK54ZLW7BVBDUCWMC7XIEL/7CAW3NYJZQZXMCDUJFS4DWGYL4PJNT5C.woff2\",weight:\"500\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEAyEFYcPw\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerVariables\":\"{\\\"N3DeH91h9\\\":\\\"gap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EAyEFYcPw.map", "// Generated by Framer (3969033)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Boska-medium\",\"FS;Boska-bold\",\"FS;Boska-bold italic\",\"FS;Boska-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Boska\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CNIAHX5RKVK53N3YCRZR5R3L3S4OTBSU/DBNFGKYNM3IIQU3Q4SC6XOOFS6UMAW7D/DCZMHDUIIND3BTWZGHAVWGQPO6EB5M4I.woff2\",weight:\"500\"},{family:\"Boska\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XDSHNQOL6DH55YEQWSNM525DMPYUB5JR/GECNAC4UXYMIXSSO3FJ2FMV4QQ7E45P4/HKX3FF46MBT76S26FX57MMHX52HVGDK5.woff2\",weight:\"700\"},{family:\"Boska\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FOVWXOQZ7BLFYDLZRNSQ77YOMKH3VQ3Z/QLVQDC6JEMEBTL6WHQ2WB2GGK6NCRURV/IXMM5CYHRZWXGCBFQ5BG5JVOP2J2QR6Q.woff2\",weight:\"700\"},{family:\"Boska\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BQ7H6NLD2VQ7DH6MKXG4EKNOHS4ARVBW/WJSA3LVU7OIK54ZLW7BVBDUCWMC7XIEL/7CAW3NYJZQZXMCDUJFS4DWGYL4PJNT5C.woff2\",weight:\"500\"}]}];export const css=['.framer-vAO7b .framer-styles-preset-12hlhpt:not(.rich-text-wrapper), .framer-vAO7b .framer-styles-preset-12hlhpt.rich-text-wrapper h6 { --framer-font-family: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, #080808); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 991px) and (min-width: 768px) { .framer-vAO7b .framer-styles-preset-12hlhpt:not(.rich-text-wrapper), .framer-vAO7b .framer-styles-preset-12hlhpt.rich-text-wrapper h6 { --framer-font-family: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, #080808); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-vAO7b .framer-styles-preset-12hlhpt:not(.rich-text-wrapper), .framer-vAO7b .framer-styles-preset-12hlhpt.rich-text-wrapper h6 { --framer-font-family: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-bold-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-family-italic: \"Boska\", \"Boska Placeholder\", serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, #080808); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-vAO7b\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={utfTOYn72: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\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js\";import SliderHeroBannerSlideshow from\"#framer/local/canvasComponent/bWOoPBccE/bWOoPBccE.js\";import CompanyContactUsTicker from\"#framer/local/canvasComponent/EAyEFYcPw/EAyEFYcPw.js\";import NavigationHeaderWhite from\"#framer/local/canvasComponent/gblIf8rKY/gblIf8rKY.js\";import CTACTASectionWithImage from\"#framer/local/canvasComponent/hXpgdUW17/hXpgdUW17.js\";import ButtonsButtonPrimary from\"#framer/local/canvasComponent/Kv1WChb7T/Kv1WChb7T.js\";import ExperienceItem from\"#framer/local/canvasComponent/Mb_IoUdef/Mb_IoUdef.js\";import SliderSliderTestimonials from\"#framer/local/canvasComponent/o8cFF5Oqd/o8cFF5Oqd.js\";import TeamMemberColumn from\"#framer/local/canvasComponent/W5rIDXjBW/W5rIDXjBW.js\";import NavigationFooter from\"#framer/local/canvasComponent/Yexjj0g4z/Yexjj0g4z.js\";import*as sharedStyle2 from\"#framer/local/css/BDQre2uYt/BDQre2uYt.js\";import*as sharedStyle1 from\"#framer/local/css/DnKr2XTfx/DnKr2XTfx.js\";import*as sharedStyle from\"#framer/local/css/xvINEJH2k/xvINEJH2k.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationHeaderWhiteFonts=getFonts(NavigationHeaderWhite);const NavigationHeaderWhiteWithVariantAppearEffect=withVariantAppearEffect(NavigationHeaderWhite);const SliderHeroBannerSlideshowFonts=getFonts(SliderHeroBannerSlideshow);const EmbedFonts=getFonts(Embed);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonsButtonPrimaryFonts=getFonts(ButtonsButtonPrimary);const ContainerWithFX=withFX(Container);const YouTubeFonts=getFonts(YouTube);const ExperienceItemFonts=getFonts(ExperienceItem);const CompanyContactUsTickerFonts=getFonts(CompanyContactUsTicker);const TeamMemberColumnFonts=getFonts(TeamMemberColumn);const SliderSliderTestimonialsFonts=getFonts(SliderSliderTestimonials);const CTACTASectionWithImageFonts=getFonts(CTACTASectionWithImage);const NavigationFooterFonts=getFonts(NavigationFooter);const breakpoints={AYJ2p255g:\"(min-width: 992px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1280px)\",XNQZNwL3s:\"(max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lWeTh\";const variantClassNames={AYJ2p255g:\"framer-v-o90d2j\",WQLkyLRf1:\"framer-v-72rtr7\",XNQZNwL3s:\"framer-v-154d9xs\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"XNQZNwL3s\",Tablet:\"AYJ2p255g\"};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"WQhbSbcSc\");const elementId1=useRouteElementId(\"pO8xAUsFB\");const ref2=React.useRef(null);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XNQZNwL3s\")return false;return true;};const router=useRouter();const elementId2=useRouteElementId(\"Z7YKAo34A\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"szaTliSR4\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"iWZCYJfua\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XNQZNwL3s\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"AYJ2p255g\",\"XNQZNwL3s\"].includes(baseVariant))return false;return true;};const elementId5=useRouteElementId(\"VwMpLeH7Y\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"idvOZ23HE\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"jFJ4qFs0H\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"J0scymdIU\");const ref9=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-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zhcwf6-container\",layoutScroll:true,nodeId:\"v1KqrbKRd\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__targets:[{offset:-100,ref:ref1,target:\"JSI9O4AT4\"}],variant:\"kTyaGeYBg\"},XNQZNwL3s:{__framer__targets:[{offset:-100,ref:ref1,target:\"e29QZWN5K\"}],variant:\"AlmTzg4OI\"}},children:/*#__PURE__*/_jsx(NavigationHeaderWhiteWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-100,ref:ref1,target:\"m9M1e2sH4\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"v1KqrbKRd\",layoutId:\"v1KqrbKRd\",style:{width:\"100%\"},variant:\"HtXtlJYsD\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149ili0\",\"data-framer-name\":\"Hero Banner Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:916,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cxx1x9-container\",id:elementId,nodeId:\"WQhbSbcSc\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{FrcVzeS95:53,variant:\"QNKLMo28O\"},XNQZNwL3s:{FrcVzeS95:36,N4DUgSstW:30,variant:\"Z8p89sqD8\",Wxo8XPemn:\"q39zusDjo\"}},children:/*#__PURE__*/_jsx(SliderHeroBannerSlideshow,{FrcVzeS95:30,height:\"100%\",id:\"WQhbSbcSc\",layoutId:\"WQhbSbcSc\",N4DUgSstW:50,style:{width:\"100%\"},variant:\"FICtxF9tk\",width:\"100%\",Wxo8XPemn:\"Wo9pJTctn\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-107382y-container\",isModuleExternal:true,nodeId:\"QsBp8YaRp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{border:{color:\"rgba(200, 200, 200, 0.5)\",width:1},height:\"100%\",html:' <section class=\"bg-white py-2\">\\n        <div\\n          class=\"container max-w-7xl mx-auto flex items-center justify-center text-center\"\\n        >\\n          <div\\n            class=\"flex flex-col items-center text-center scrollMargin\"\\n            id=\"Saunalautta\"\\n          >\\n            <script\\n              src=\"https://static.elfsight.com/platform/platform.js\"\\n              async\\n            ></script>\\n            <div\\n              class=\"elfsight-app-b15a7bd7-9ee5-4438-bce2-e6df4eec510d\"\\n              data-elfsight-app-lazy\\n            ></div>\\n          </div>\\n        </div>\\n      </section>',id:\"QsBp8YaRp\",layoutId:\"QsBp8YaRp\",radius:0,style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-40fd5z\",\"data-framer-name\":\"Our Spa Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l8sjv7\",\"data-framer-name\":\"Base Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wnhh6q\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Wavy Circle\",fit:\"fill\",pixelHeight:314,pixelWidth:314,src:\"https://framerusercontent.com/images/7vNw5yw3LI0j0fdqFytIL9KUhk.svg\"},className:\"framer-4i8dhp\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Decorative Icon\",fit:\"fill\",pixelHeight:1740,pixelWidth:1740,sizes:\"68px\",src:\"https://framerusercontent.com/images/fcHBUcHbMcGm6UOiiwg3CIPSORo.png\",srcSet:\"https://framerusercontent.com/images/fcHBUcHbMcGm6UOiiwg3CIPSORo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fcHBUcHbMcGm6UOiiwg3CIPSORo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcHBUcHbMcGm6UOiiwg3CIPSORo.png 1740w\"},className:\"framer-1gbcyyb\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Nauti hetkest\\xe4 ja ota siit\\xe4 kaikki irti saunalautallamme\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Koe meri ja saaristo saunalautan lauteilta\"})}),className:\"framer-1g8apdh\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Rentoudu ja nauti ainutlaatuisesta saunael\\xe4myksest\\xe4 upeissa saaristomaisemissa! Saunalauttamme ovat seilanneet Helsingin Saaristossa jo vuodesta 2018. Upeita maisemia, l\\xe4mpim\\xe4t l\\xf6ylyt, kylm\\xe4t juomat, grilli, hyv\\xe4 seura ja rento meininki. Mit\\xe4 muuta voikaan kes\\xe4p\\xe4iv\\xe4lt\\xe4 toivoa?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Saunalauttamme tarjoavat upeita sauna- ja  saaristo kokemuksia ymp\\xe4ri vuoden! Tule kes\\xe4ll\\xe4 ja ihastu risteilyihin ja rentoihin tilaisuuksiin. Talvella p\\xe4\\xe4set virkistym\\xe4\\xe4n avantoon! Rentoa l\\xf6ylynheittoa, juhlia tai vauhtia ja vilskett\\xe4 upeissa Helsingin saaristomaisemissa.  Tervetuloa!\"})}),className:\"framer-1g18l7\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7vxrb\",\"data-framer-name\":\"Two Column Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y5p05b\",\"data-framer-name\":\"Left Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:[\"Saunalautat \",/*#__PURE__*/_jsx(\"br\",{}),\"Helsingin it\\xe4isess\\xe4 Saaristossa\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:[\"Saunalautat \",/*#__PURE__*/_jsx(\"br\",{}),\"Helsingin it\\xe4isess\\xe4 Saaristossa\"]})}),className:\"framer-1nm361l\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined,background:{alt:getLocalizedValue(\"v6\",activeLocale)??\"N\\xe4kym\\xe4t Saunalautalta saaristoon\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,positionX:\"22.9%\",positionY:\"69.6%\",src:\"https://framerusercontent.com/images/7jQ8yM5mxC0RuDVq8ypBWFJGZlA.jpeg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v6\",activeLocale)??\"N\\xe4kym\\xe4t Saunalautalta saaristoon\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/7jQ8yM5mxC0RuDVq8ypBWFJGZlA.jpeg?scale-down-to=1024\"},className:\"framer-17u117e\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o0nws2\",\"data-framer-name\":\"Right Block\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v7\",activeLocale)??\"Saunan Lauteet\",fit:\"fill\",pixelHeight:640,pixelWidth:480,src:\"https://framerusercontent.com/images/uhjKJyfudcjDIXqbHQP7Nsiqwpw.jpeg?scale-down-to=512\"},className:\"framer-tzxvpx hidden-154d9xs\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-60jmok\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ic38ie\",\"data-styles-preset\":\"DnKr2XTfx\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"T\\xe4\\xe4ll\\xe4 voit unohtaa arjen askareet ja rentoutua m\\xf6kkitunnelmassa, meren \\xe4\\xe4rell\\xe4.\"})})},XNQZNwL3s:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ic38ie\",\"data-styles-preset\":\"DnKr2XTfx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"T\\xe4\\xe4ll\\xe4 voit unohtaa arjen askareet ja rentoutua m\\xf6kkitunnelmassa.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ic38ie\",\"data-styles-preset\":\"DnKr2XTfx\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"T\\xe4\\xe4ll\\xe4 voit unohtaa arjen askareet ja rentoutua m\\xf6kkitunnelmassa.\"})}),className:\"framer-1loqwxq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"P\\xe4\\xe4set irti kaupungin vilskeest\\xe4 vain kivenheiton p\\xe4\\xe4h\\xe4n! Tutustu alta kes\\xe4n tarjontaan! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"P\\xe4\\xe4set irti kaupungin vilskeest\\xe4 vain kivenheiton p\\xe4\\xe4h\\xe4n! Tutustu alta kes\\xe4n tarjontaan! \"})}),className:\"framer-1bzk7i\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined},{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined},{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mulqqb-container\",nodeId:\"HXBboC_EN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{H1yzB_PXq:resolvedLinks[1]},XNQZNwL3s:{H1yzB_PXq:resolvedLinks[2],variant:\"dJyB_SKCi\"}},children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{dz9YsghVk:getLocalizedValue(\"v13\",activeLocale)??\"Saunalauttaristeilyt\",H1yzB_PXq:resolvedLinks[0],height:\"100%\",id:\"HXBboC_EN\",layoutId:\"HXBboC_EN\",variant:\"WaF_q6B7h\",width:\"100%\"})})})})})})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hb6eri-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FB2lLuZrq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:19,bottomLeftRadius:19,bottomRightRadius:19,height:\"100%\",id:\"FB2lLuZrq\",isMixedBorderRadius:false,isRed:true,layoutId:\"FB2lLuZrq\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:19,topRightRadius:19,url:\"https://www.youtube.com/watch?v=1QFKwHZOuXw\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5xz1s8\",\"data-framer-name\":\"Services Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"Saunalautan Grilli\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:720,pixelWidth:825,src:\"https://framerusercontent.com/images/vd6g6cYe11w0akJJHeYH9eBNGI.png\"},className:\"framer-1fl1ft1\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6agmwm\",\"data-framer-name\":\"Base Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-57zz70\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkts2d\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3tr7d\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Qm9za2EtcmVndWxhcg==\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Palvelumme\"})}),className:\"framer-dae9xv\",\"data-framer-name\":\"Label Text\",fonts:[\"FS;Boska-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Syntt\\xe4rit, polttarit, tykyp\\xe4iv\\xe4t, avanto ja julkinen sauna\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Syntt\\xe4rit, polttarit, tykyp\\xe4iv\\xe4t, avanto ja julkinen sauna\"})}),className:\"framer-1bpo2sa\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Meille on monenlaiset tapahtumat tuttuja. Oli kyseess\\xe4 sitten suurempi tapahtuma, tai vain yksitt\\xe4inen saunavuoro, se onnistuu meill\\xe4. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Jos tilaisuuteenne on tulossa -20henkil\\xf6\\xe4, ei h\\xe4t\\xe4\\xe4! Voimme yhdist\\xe4\\xe4 saunalautat, jolloin mukaan mahtuu isompikin porukka. T\\xe4ll\\xf6in k\\xe4yt\\xf6ss\\xe4 on kaksi saunaa, kaksi grilli\\xe4, ja tuplasti hauskaa!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Meille on monenlaiset tapahtumat tuttuja. Oli kyseess\\xe4 sitten suurempi tapahtuma, tai vain yksitt\\xe4inen saunavuoro, se onnistuu meill\\xe4. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Jos tilaisuuteenne on tulossa -20henkil\\xf6\\xe4, ei h\\xe4t\\xe4\\xe4! Voimme yhdist\\xe4\\xe4 saunalautat, jolloin mukaan mahtuu isompikin porukka. T\\xe4ll\\xf6in k\\xe4yt\\xf6ss\\xe4 on kaksi saunaa, kaksi grilli\\xe4, ja tuplasti hauskaa!\"})]}),className:\"framer-12idljk\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined},{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined},{href:{webPageId:\"ndhpSW0NY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2q5dqi-container\",nodeId:\"z7NTp4EoJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{H1yzB_PXq:resolvedLinks1[1]},XNQZNwL3s:{H1yzB_PXq:resolvedLinks1[2],variant:\"dJyB_SKCi\"}},children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{dz9YsghVk:getLocalizedValue(\"v20\",activeLocale)??\"Tutustu saunalattoihin\",H1yzB_PXq:resolvedLinks1[0],height:\"100%\",id:\"z7NTp4EoJ\",layoutId:\"z7NTp4EoJ\",variant:\"WaF_q6B7h\",width:\"100%\"})})})})})]})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1au5ubj\",\"data-framer-name\":\"Experiences Section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijvu9a\",\"data-framer-name\":\"Base Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Tekemist\\xe4 lautalla\"})}),className:\"framer-r5vrun\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qha1zi\",\"data-framer-name\":\"Experiences Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 130px) / 4, 1px)`},XNQZNwL3s:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:239,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 120px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ieimd-container\",nodeId:\"iLbv9PUri\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{CICkZ_hUl:getLocalizedValue(\"v23\",activeLocale)??\"Kaikki saunamme ovat Harvian puusaunoja. L\\xf6ylyt ovat aivan upeat, ja saunat ovat siistit ja tilavat.\",height:\"100%\",id:\"iLbv9PUri\",layoutId:\"iLbv9PUri\",MM1L7No13:\"0px 10px 0px 10px\",style:{width:\"100%\"},width:\"100%\",wwbbLyXad:getLocalizedValue(\"v22\",activeLocale)??\"Saunomista\",X4BS_lZyU:addImageAlt({pixelHeight:2663,pixelWidth:3024,src:\"https://framerusercontent.com/images/0IdspzvOfy6REJGZvluwbamjWs.jpg?scale-down-to=512\"},\"Massage\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 130px) / 4, 1px)`},XNQZNwL3s:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:239,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 120px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m4k2if-container\",nodeId:\"ct_dG3xH2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{CICkZ_hUl:getLocalizedValue(\"v25\",activeLocale)??\"Weberin Grillit Kuumana \uD83D\uDD25\uD83D\uDD25\uD83D\uDD25 Voit ottaa mukaan omat grillattavat, tai tilata catering palvelustamme maittavat annokset.\",height:\"100%\",id:\"ct_dG3xH2\",layoutId:\"ct_dG3xH2\",MM1L7No13:\"0px 10px 0px 10px\",style:{width:\"100%\"},width:\"100%\",wwbbLyXad:getLocalizedValue(\"v24\",activeLocale)??\"Ruokailua\",X4BS_lZyU:addImageAlt({pixelHeight:3916,pixelWidth:4e3,src:\"https://framerusercontent.com/images/P2yWIa5crEKpTviZXYWxxgrxxSs.jpg?scale-down-to=512\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 130px) / 4, 1px)`},XNQZNwL3s:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:239,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 120px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i746n7-container\",nodeId:\"rdRdrdfPq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{CICkZ_hUl:getLocalizedValue(\"v27\",activeLocale)??\"Lautalla voit saunasta nauttimisen lis\\xe4ksi my\\xf6s suppailla, polskia, ihailla maisemia ja sy\\xf6d\\xe4 hyvin! Musiikintoisto vehkeet sis\\xe4ltyv\\xe4t my\\xf6s pakettiin\",height:\"100%\",id:\"rdRdrdfPq\",layoutId:\"rdRdrdfPq\",MM1L7No13:\"0px 10px 0px 10px\",style:{width:\"100%\"},width:\"100%\",wwbbLyXad:getLocalizedValue(\"v26\",activeLocale)??\"Suppailua\",X4BS_lZyU:addImageAlt({pixelHeight:423,pixelWidth:480,src:\"https://framerusercontent.com/images/MFrDCxWZjpTb4v3sM51Cy1gg8U.jpeg\"},\"Feet Massage\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 130px) / 4, 1px)`},XNQZNwL3s:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:239,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 120px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j7ilwd-container\",nodeId:\"ca8ugRvub\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{CICkZ_hUl:getLocalizedValue(\"v29\",activeLocale)??\"Jos vauhdikkaampi meininki mieless\\xe4, ota messiin vesijetti\uD83C\uDF0A\uD83C\uDF0A\",height:\"100%\",id:\"ca8ugRvub\",layoutId:\"ca8ugRvub\",MM1L7No13:\"0px 10px 0px 10px\",style:{width:\"100%\"},width:\"100%\",wwbbLyXad:getLocalizedValue(\"v28\",activeLocale)??\"Jetteily\\xe4\",X4BS_lZyU:addImageAlt({pixelHeight:945,pixelWidth:1417,src:\"https://framerusercontent.com/images/jPAz5SGrYLnuPCPwnomT64JZEmM.jpeg?scale-down-to=512\"},\"Face Massage\")})})})})]})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-m9ejw7\",\"data-framer-name\":\"Membership Section\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{background:{alt:\"Wavy Line\",fit:\"fill\",pixelHeight:861,pixelWidth:586,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3004)`,src:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg\",srcSet:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg 586w\"}},XNQZNwL3s:{background:{alt:\"Wavy Line\",fit:\"fill\",pixelHeight:861,pixelWidth:586,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3013)`,src:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg\",srcSet:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg 586w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Wavy Line\",fit:\"fill\",pixelHeight:861,pixelWidth:586,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3008)`,src:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg\",srcSet:\"https://framerusercontent.com/images/C0yfbsOMB5KdTA9ccVtOF2usJA.svg 586w\"},className:\"framer-53yjfv\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oifaki\",\"data-framer-name\":\"Base Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dmilaz\",\"data-framer-name\":\"Images Wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v30\",activeLocale)??\"Ihmiset hypp\\xe4\\xe4m\\xe4ss\\xe4 mereen\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:500,pixelHeight:1944,pixelWidth:1944,src:\"https://framerusercontent.com/images/VsR71l8Fp0V3T3Pyba52co6lUas.jpg?scale-down-to=512\"},className:\"framer-1963tlu\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Ihmisi\\xe4 julkisella saunavuorolla\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:640,pixelHeight:1080,pixelWidth:1080,src:\"https://framerusercontent.com/images/Py1pXwIBtms3ZB2Kv5qp0fyt1E.jpg?scale-down-to=512\"},className:\"framer-519sm3\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vj65z4\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1aczp\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Edut saunaklubilaisille\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Q29yYmVuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Corben\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Edut saunaklubilaisille\"})}),className:\"framer-1qanxek\",\"data-framer-name\":\"Title\",fonts:[\"GF;Corben-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"right\"},children:\"Liittym\\xe4ll\\xe4 Hyv\\xe4n Tuulen Saunaklubiin p\\xe4\\xe4set nauttimaan ekslusiivisista tarjouksista upeilla saunalautoillamme. Talvella avanto- ja saunakokemuksia, kes\\xe4ll\\xe4 risteilyj\\xe4 ja saunavuoroja. Tutustu alta lis\\xe4\\xe4!\"})})},XNQZNwL3s:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\"},children:\"Liittym\\xe4ll\\xe4 hyv\\xe4n tuulen saunaklubiin p\\xe4\\xe4set nauttimaan ekslusiivisista tarjouksista upeilla saunalautoillamme. Talvella avanto- ja saunakokemuksia, kes\\xe4ll\\xe4 risteilyj\\xe4 ja saunavuoroja. Tutustu alta lis\\xe4\\xe4!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"right\"},children:\"Liittym\\xe4ll\\xe4 hyv\\xe4n tuulen saunaklubiin p\\xe4\\xe4set nauttimaan ekslusiivisista tarjouksista upeilla saunalautoillamme. Talvella avanto- ja saunakokemuksia, kes\\xe4ll\\xe4 risteilyj\\xe4 ja saunavuoroja. Tutustu alta lis\\xe4\\xe4!\"})}),className:\"framer-cblgpe\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JtYYwRsWj\"},implicitPathVariables:undefined},{href:{webPageId:\"JtYYwRsWj\"},implicitPathVariables:undefined},{href:{webPageId:\"JtYYwRsWj\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1pz9q-container\",nodeId:\"J6oxk8rny\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{H1yzB_PXq:resolvedLinks2[1]},XNQZNwL3s:{H1yzB_PXq:resolvedLinks2[2],variant:\"dJyB_SKCi\"}},children:/*#__PURE__*/_jsx(ButtonsButtonPrimary,{dz9YsghVk:getLocalizedValue(\"v37\",activeLocale)??\"Lue lis\\xe4\\xe4\",H1yzB_PXq:resolvedLinks2[0],height:\"100%\",id:\"J6oxk8rny\",layoutId:\"J6oxk8rny\",variant:\"WaF_q6B7h\",width:\"100%\"})})})})})]})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-own61 hidden-72rtr7 hidden-o90d2j\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVt\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"It\\xe4isen saariston helmet\"})}),className:\"framer-112xq3q\",\"data-framer-name\":\"Title\",fonts:[\"FS;Boska-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Lauttamme sijaitsee Puotilassa, johon aurinko porottaa koko p\\xe4iv\\xe4n. Ravintola Meripizza sijaitsee aivan naapurissa, sielt\\xe4 voit napata maukkaat pizzat matkaan risteilylle!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Risteilemme kes\\xe4n 2025 Ramsinsalmella ja Kallahdensel\\xe4ll\\xe4. Ramsinsalmi on rauhallinen ja suojaisa, Kallahdensel\\xe4ll\\xe4 taas aukeaa upeat ja aavat saaristomaisemat. Kolmen tunnin risteilyll\\xe4 ehdimme risteill\\xe4 hieman, mutta  nelj\\xe4n tunnin- ja pidemmill\\xe4kin risteilyill\\xe4 ehdimme n\\xe4hd\\xe4 saaristoa laajemmin. Tervetuloa nauttimaan saaristomme antimista hienoissa puitteissa!\"})]}),className:\"framer-x4ak9f\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1x95x7r\",\"data-framer-name\":\"Statistics Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aknmbz\",\"data-framer-name\":\"Base Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ihrq9w\",\"data-framer-name\":\"Statistics Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17svo76\",\"data-framer-name\":\"Statistics Column\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-12hlhpt\",\"data-styles-preset\":\"BDQre2uYt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"8\"})}),className:\"framer-12bjacy\",\"data-framer-name\":\"Number\",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-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Vuotta kokemusta\"})}),className:\"framer-9irzus\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lla8hc\",\"data-framer-name\":\"Statistics Column\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-12hlhpt\",\"data-styles-preset\":\"BDQre2uYt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"2\"})}),className:\"framer-oayb7v\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"saunalauttaa\"})}),className:\"framer-l270ll\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s4qpwc\",\"data-framer-name\":\"Statistics Column\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-12hlhpt\",\"data-styles-preset\":\"BDQre2uYt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"4000+\"})}),className:\"framer-94ghum\",\"data-framer-name\":\"Number\",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-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Iloista asiakasta\"})}),className:\"framer-x08ezq\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1uetoxt hidden-o90d2j hidden-154d9xs\",\"data-framer-name\":\"CTA Section\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Wavy Line\",fit:\"fill\",pixelHeight:861,pixelWidth:586,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.28)`,src:\"https://framerusercontent.com/images/Djgv5N00titWV4ntokEazrCx7w.svg\",srcSet:\"https://framerusercontent.com/images/Djgv5N00titWV4ntokEazrCx7w.svg 586w\"},className:\"framer-9h5o52\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8hn9jp\",\"data-framer-name\":\"Base Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a3srtt\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kz7ch1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rl5oin\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVt\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"It\\xe4isen saariston helmet\"})}),className:\"framer-1wqepi8\",\"data-framer-name\":\"Title\",fonts:[\"FS;Boska-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Lauttamme sijaitsee Aurinkolahdessa, johon aurinko porottaa koko p\\xe4iv\\xe4n. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19p8mg9\",\"data-styles-preset\":\"xvINEJH2k\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Risteilemme kes\\xe4n 2025 Aurinkolahden kauniissa maisemissa. Kolmen tunnin risteilyll\\xe4 k\\xe4ymme py\\xf6r\\xe4ht\\xe4m\\xe4ss\\xe4 l\\xe4hialueella, ja pidemmill\\xe4 risteilyill\\xe4 taas kerke\\xe4mme tietenkin py\\xf6r\\xe4ht\\xe4m\\xe4\\xe4n v\\xe4h\\xe4n pidemm\\xe4ll\\xe4! Maisemat ovat taatut, ja Uutelan sek\\xe4 Kallahdenniemen vuoksi keli on usein rauhallinen.\"})]}),className:\"framer-l9e4g8\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ji2vug\",\"data-framer-name\":\"CTA Ticker Section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63k1jh-container\",nodeId:\"DUhCgJYkz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{N3DeH91h9:60},XNQZNwL3s:{N3DeH91h9:40}},children:/*#__PURE__*/_jsx(CompanyContactUsTicker,{height:\"100%\",id:\"DUhCgJYkz\",layoutId:\"DUhCgJYkz\",N3DeH91h9:80,style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1uh27lw\",\"data-framer-name\":\"Team Section\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7yleed\",\"data-framer-name\":\"Base Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Qm9za2EtbWVkaXVt\",\"--framer-font-family\":'\"Boska\", \"Boska Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-94085f35-2e8a-4729-98ce-1df8beaa9430, rgb(8, 8, 8))\"},children:\"Tiimimme\"})}),className:\"framer-1dqvjap\",\"data-framer-name\":\"Title\",fonts:[\"FS;Boska-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1527npi\",\"data-framer-name\":\"Team Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 398px) / 2, 1px)`},XNQZNwL3s:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 70px) / 2, 50px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 388px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-25gs7i-container\",nodeId:\"ePg9G005s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TeamMemberColumn,{D7hcDJqA0:\" Kalle Valtokari\",height:\"100%\",id:\"ePg9G005s\",layoutId:\"ePg9G005s\",style:{width:\"100%\"},variant:\"S_P2kaOEw\",WDLA6tZ7C:getLocalizedValue(\"v46\",activeLocale)??\"Kippari Kalle, nimens\\xe4mukaisesti kapteeni, kahdeksan vuoden kokemuksella\",width:\"100%\",xnXTBagha:\"0px 0px 80px 0px\",YbK6UX6fu:addImageAlt({pixelHeight:737,pixelWidth:683,src:\"https://framerusercontent.com/images/DLbcFBaVOvhQIkwf5ob8MAeqo.jpeg\"},getLocalizedValue(\"v45\",activeLocale)??\"Saunalautan Kapteeni\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 70px) / 2, 50px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"298px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-97zxom-container\",nodeId:\"OKGfjX_Ey\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XNQZNwL3s:{xnXTBagha:\"0px 0px 0px 0px\"}},children:/*#__PURE__*/_jsx(TeamMemberColumn,{D7hcDJqA0:\"Ile Heikkinen\",height:\"100%\",id:\"OKGfjX_Ey\",layoutId:\"OKGfjX_Ey\",style:{width:\"100%\"},variant:\"S_P2kaOEw\",WDLA6tZ7C:getLocalizedValue(\"v48\",activeLocale)??\"Kippari sek\\xe4 logistiikan johtaja\",width:\"100%\",xnXTBagha:\"80px 0px 0px 0px\",YbK6UX6fu:addImageAlt({pixelHeight:342,pixelWidth:288,src:\"https://framerusercontent.com/images/jL49PeMiFs5LiQsdiUkOOXyA4.jpg\"},getLocalizedValue(\"v47\",activeLocale)??\"Team Member\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 398px) / 2, 1px)`},XNQZNwL3s:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 70px) / 2, 50px) * 2 + 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 388px) / 2, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w1ukdm-container\",nodeId:\"hxOynhqiI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TeamMemberColumn,{D7hcDJqA0:\"Onni Heikkinen\",height:\"100%\",id:\"hxOynhqiI\",layoutId:\"hxOynhqiI\",style:{width:\"100%\"},variant:\"S_P2kaOEw\",WDLA6tZ7C:getLocalizedValue(\"v50\",activeLocale)??\"Kippari, toinen puolikas kaksoisveljist\\xe4\",width:\"100%\",xnXTBagha:\"0px 0px 80px 0px\",YbK6UX6fu:addImageAlt({pixelHeight:466,pixelWidth:493,src:\"https://framerusercontent.com/images/dZzUBggju2UHTE8JAcyxOrZU4.jpg\"},getLocalizedValue(\"v49\",activeLocale)??\"Team Member\")})})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1vmf3qy\",\"data-framer-name\":\"Testimonials Section\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iiruxb\",\"data-framer-name\":\"Base Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px)`},XNQZNwL3s:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 30px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XNQZNwL3s:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pian11-container\",nodeId:\"GGA6Qcisf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{uefXG9QSj:\"0px 0px 0px 60px\"},XNQZNwL3s:{uefXG9QSj:\"0px 0px 0px 0px\",variant:\"V7kDPoY46\",XsJ9HCTL4:30}},children:/*#__PURE__*/_jsx(SliderSliderTestimonials,{height:\"100%\",id:\"GGA6Qcisf\",layoutId:\"GGA6Qcisf\",style:{width:\"100%\"},uefXG9QSj:\"0px 0px 0px 100px\",variant:\"u5motIl4O\",width:\"100%\",XsJ9HCTL4:50})})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:678,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t9zmis-container\",id:elementId8,nodeId:\"J0scymdIU\",ref:ref9,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{variant:\"S6uvF4qVh\"},XNQZNwL3s:{OX5XKrKV_:undefined,variant:\"OmhlLk4ri\"}},children:/*#__PURE__*/_jsx(CTACTASectionWithImage,{height:\"100%\",id:\"J0scymdIU\",layoutId:\"J0scymdIU\",OX5XKrKV_:ref9,pOObdfDzU:{borderColor:\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},style:{width:\"100%\"},uZBTiSZg4:\"var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, rgb(255, 255, 255))\",variant:\"cfcq1vGYi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5p1ojk\",\"data-framer-name\":\"Logo Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ac4m16\",\"data-framer-name\":\"Base Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xviycp\",\"data-framer-name\":\"Logo Wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:170,pixelHeight:1038,pixelWidth:2400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eVsmvX43as96yA6jXFuz3fmzIo.png?scale-down-to=512\"},className:\"framer-hiit04\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:170,pixelHeight:190,pixelWidth:608,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ihO6L8aLyPQZbKLN49MXb8AruAk.png?scale-down-to=512\"},className:\"framer-1zzzil\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:170,pixelHeight:185,pixelWidth:666,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xm4SS3FaaGCNJtMk3Dqee1Yno.png?scale-down-to=512\"},className:\"framer-ls858x\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:175,pixelHeight:533,pixelWidth:1200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9kw6nOwcaWhWTRCSepEG0EmzYYk.png?scale-down-to=512\"},className:\"framer-wlw0vo\",\"data-framer-name\":\"Logo\"})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1080,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5360gn-container\",nodeId:\"yuhV0zqe_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AYJ2p255g:{variant:\"bKhaQnIoX\"},XNQZNwL3s:{variant:\"ulb_szS3d\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"yuhV0zqe_\",layoutId:\"yuhV0zqe_\",style:{width:\"100%\"},variant:\"bV3wQwDT9\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lWeTh.framer-lux5qc, .framer-lWeTh .framer-lux5qc { display: block; }\",\".framer-lWeTh.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-95bfbd5f-b51b-4f5a-8cfb-345ae4a4e671, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-lWeTh .framer-zhcwf6-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-lWeTh .framer-149ili0 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1cxx1x9-container, .framer-lWeTh .framer-t9zmis-container, .framer-lWeTh .framer-5360gn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lWeTh .framer-107382y-container { flex: none; height: 475px; position: relative; width: 1276px; }\",\".framer-lWeTh .framer-40fd5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1l8sjv7, .framer-lWeTh .framer-7yleed { 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: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1wnhh6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 740px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-4i8dhp { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 97px; }\",\".framer-lWeTh .framer-1gbcyyb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: relative; width: 68px; }\",\".framer-lWeTh .framer-1g8apdh, .framer-lWeTh .framer-1g18l7, .framer-lWeTh .framer-1loqwxq, .framer-lWeTh .framer-1bzk7i, .framer-lWeTh .framer-12idljk, .framer-lWeTh .framer-r5vrun, .framer-lWeTh .framer-1qanxek, .framer-lWeTh .framer-cblgpe, .framer-lWeTh .framer-x4ak9f, .framer-lWeTh .framer-12bjacy, .framer-lWeTh .framer-9irzus, .framer-lWeTh .framer-oayb7v, .framer-lWeTh .framer-l270ll, .framer-lWeTh .framer-94ghum, .framer-lWeTh .framer-x08ezq, .framer-lWeTh .framer-l9e4g8, .framer-lWeTh .framer-1dqvjap { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lWeTh .framer-1j7vxrb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-y5p05b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1nm361l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 6px; position: absolute; top: -86px; white-space: pre-wrap; width: 112%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lWeTh .framer-17u117e { aspect-ratio: 0.8748114630467572 / 1; border-bottom-left-radius: 290px; border-bottom-right-radius: 290px; border-top-left-radius: 290px; border-top-right-radius: 290px; flex: none; height: var(--framer-aspect-ratio-supported, 663px); max-height: 760px; max-width: 665px; overflow: visible; position: relative; width: 90%; }\",\".framer-lWeTh .framer-1o0nws2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 33%; }\",\".framer-lWeTh .framer-tzxvpx { aspect-ratio: 1.4833333333333334 / 1; border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; flex: none; height: var(--framer-aspect-ratio-supported, 320px); overflow: hidden; position: relative; width: 123%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lWeTh .framer-60jmok { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-mulqqb-container, .framer-lWeTh .framer-2q5dqi-container, .framer-lWeTh .framer-1d1pz9q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lWeTh .framer-hb6eri-container { flex: none; height: 426px; position: relative; width: 866px; }\",\".framer-lWeTh .framer-5xz1s8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 118px 0px 118px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1fl1ft1 { border-bottom-left-radius: 300px; border-top-left-radius: 300px; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: 43%; }\",\".framer-lWeTh .framer-6agmwm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-57zz70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 51%; }\",\".framer-lWeTh .framer-qkts2d { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1y3tr7d { align-content: center; align-items: center; background-color: var(--token-03a5249b-d242-49c2-88c3-e65708711539, #ecd9c1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-lWeTh .framer-dae9xv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lWeTh .framer-1bpo2sa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 88%; word-break: break-word; word-wrap: break-word; }\",\".framer-lWeTh .framer-1au5ubj, .framer-lWeTh .framer-1vmf3qy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-ijvu9a { 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: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; z-index: 2; }\",\".framer-lWeTh .framer-1qha1zi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-3ieimd-container, .framer-lWeTh .framer-m4k2if-container, .framer-lWeTh .framer-1i746n7-container, .framer-lWeTh .framer-j7ilwd-container, .framer-lWeTh .framer-63k1jh-container, .framer-lWeTh .framer-25gs7i-container, .framer-lWeTh .framer-1w1ukdm-container, .framer-lWeTh .framer-pian11-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-lWeTh .framer-m9ejw7 { align-content: center; align-items: center; background-color: var(--token-bb5496c6-c1f1-47b5-8899-bb3dc938f54f, #f5f0ed); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-53yjfv { aspect-ratio: 0.6814159292035398 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 565px); left: 0px; overflow: hidden; position: absolute; top: -120px; width: 30%; z-index: 1; }\",\".framer-lWeTh .framer-1oifaki { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; z-index: 2; }\",\".framer-lWeTh .framer-1dmilaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-lWeTh .framer-1963tlu { aspect-ratio: 1 / 1; border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; flex: none; height: var(--framer-aspect-ratio-supported, 249px); left: 0px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 47%; z-index: 1; }\",\".framer-lWeTh .framer-519sm3 { aspect-ratio: 0.775 / 1; border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; flex: none; height: var(--framer-aspect-ratio-supported, 439px); max-height: 500px; overflow: visible; position: relative; width: 65%; }\",\".framer-lWeTh .framer-vj65z4 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1s1aczp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-own61 { 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: hidden; padding: 0px; position: relative; width: 312px; }\",\".framer-lWeTh .framer-112xq3q, .framer-lWeTh .framer-1wqepi8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lWeTh .framer-1x95x7r { align-content: center; align-items: center; background-color: var(--token-bb5496c6-c1f1-47b5-8899-bb3dc938f54f, #f5f0ed); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 130px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-aknmbz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; z-index: 1; }\",\".framer-lWeTh .framer-ihrq9w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-17svo76, .framer-lWeTh .framer-lla8hc, .framer-lWeTh .framer-1s4qpwc { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1uetoxt { align-content: center; align-items: center; background-color: var(--token-bb5496c6-c1f1-47b5-8899-bb3dc938f54f, #f5f0ed); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-9h5o52 { aspect-ratio: 0.6814159292035398 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 526px); overflow: hidden; position: absolute; right: 0px; top: -120px; width: 28%; z-index: 0; }\",\".framer-lWeTh .framer-8hn9jp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; z-index: 1; }\",\".framer-lWeTh .framer-1a3srtt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1kz7ch1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-rl5oin { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-1ji2vug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1uh27lw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 130px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-1527npi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-97zxom-container { flex: none; height: auto; position: relative; width: 298px; }\",\".framer-lWeTh .framer-iiruxb, .framer-lWeTh .framer-ac4m16 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-5p1ojk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 130px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-lWeTh .framer-xviycp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lWeTh .framer-hiit04, .framer-lWeTh .framer-1zzzil, .framer-lWeTh .framer-ls858x, .framer-lWeTh .framer-wlw0vo { flex: 1 0 0px; height: 50px; overflow: visible; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 992px) and (max-width: 1279px) { .framer-lWeTh.framer-72rtr7 { width: 992px; } .framer-lWeTh .framer-zhcwf6-container { order: 0; } .framer-lWeTh .framer-149ili0 { order: 1; } .framer-lWeTh .framer-107382y-container { height: 459px; width: 982px; } .framer-lWeTh .framer-40fd5z { order: 2; padding: 11px 0px 11px 0px; } .framer-lWeTh .framer-1l8sjv7, .framer-lWeTh .framer-ijvu9a, .framer-lWeTh .framer-1oifaki { gap: 60px; padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-1j7vxrb { gap: 100px; } .framer-lWeTh .framer-1nm361l { left: 0px; top: -67px; width: 107%; } .framer-lWeTh .framer-17u117e { aspect-ratio: 0.6918429003021148 / 1; height: var(--framer-aspect-ratio-supported, 662px); max-height: unset; max-width: unset; } .framer-lWeTh .framer-1o0nws2 { width: 36%; } .framer-lWeTh .framer-tzxvpx { height: var(--framer-aspect-ratio-supported, 285px); } .framer-lWeTh .framer-hb6eri-container { height: 491px; order: 3; width: 937px; } .framer-lWeTh .framer-5xz1s8 { order: 4; padding: 80px 0px 80px 0px; } .framer-lWeTh .framer-1fl1ft1 { width: 45%; } .framer-lWeTh .framer-6agmwm, .framer-lWeTh .framer-aknmbz, .framer-lWeTh .framer-iiruxb, .framer-lWeTh .framer-ac4m16 { padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-57zz70 { width: 50%; } .framer-lWeTh .framer-1au5ubj { order: 6; padding: 80px 0px 80px 0px; } .framer-lWeTh .framer-m9ejw7 { order: 5; padding: 80px 0px 0px 0px; } .framer-lWeTh .framer-53yjfv { height: var(--framer-aspect-ratio-supported, 438px); top: -60px; width: 30%; } .framer-lWeTh .framer-1dmilaz { width: 44%; } .framer-lWeTh .framer-1963tlu { height: var(--framer-aspect-ratio-supported, 199px); } .framer-lWeTh .framer-519sm3 { aspect-ratio: 0.5840909090909091 / 1; height: var(--framer-aspect-ratio-supported, 464px); } .framer-lWeTh .framer-1x95x7r { order: 8; padding: 80px 0px 30px 0px; } .framer-lWeTh .framer-1ji2vug { order: 10; } .framer-lWeTh .framer-1uh27lw { order: 11; padding: 80px 0px 0px 0px; } .framer-lWeTh .framer-7yleed { gap: 60px; order: 0; padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-1vmf3qy { order: 12; padding: 80px 0px 80px 0px; } .framer-lWeTh .framer-t9zmis-container { order: 13; } .framer-lWeTh .framer-5p1ojk { order: 14; padding: 80px 0px 80px 0px; } .framer-lWeTh .framer-5360gn-container { order: 15; }}\",\"@media (max-width: 991px) { .framer-lWeTh.framer-72rtr7 { width: 375px; } .framer-lWeTh .framer-1cxx1x9-container { order: 0; } .framer-lWeTh .framer-107382y-container { height: 568px; order: 1; width: 363px; } .framer-lWeTh .framer-40fd5z, .framer-lWeTh .framer-1vmf3qy, .framer-lWeTh .framer-5p1ojk { padding: 80px 0px 80px 0px; } .framer-lWeTh .framer-1l8sjv7, .framer-lWeTh .framer-ijvu9a, .framer-lWeTh .framer-7yleed { gap: 40px; padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-1wnhh6q { max-width: 560px; } .framer-lWeTh .framer-1j7vxrb { flex-direction: column; gap: 40px; } .framer-lWeTh .framer-y5p05b { flex: none; padding: 40px 0px 40px 0px; width: 100%; } .framer-lWeTh .framer-1nm361l { height: 92px; order: 0; top: -40px; width: 96%; } .framer-lWeTh .framer-17u117e { aspect-ratio: unset; height: 440px; max-height: unset; order: 1; width: 100%; } .framer-lWeTh .framer-1o0nws2, .framer-lWeTh .framer-57zz70 { align-content: center; align-items: center; gap: 30px; max-width: 560px; width: 100%; } .framer-lWeTh .framer-60jmok, .framer-lWeTh .framer-qkts2d { align-content: center; align-items: center; } .framer-lWeTh .framer-hb6eri-container { height: 210px; width: 341px; } .framer-lWeTh .framer-5xz1s8 { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 40px; padding: 0px 0px 80px 0px; } .framer-lWeTh .framer-1fl1ft1 { bottom: unset; height: 400px; position: relative; right: unset; top: unset; width: 95%; } .framer-lWeTh .framer-6agmwm { flex: none; justify-content: center; padding: 0px 20px 0px 20px; width: 100%; } .framer-lWeTh .framer-1au5ubj { padding: 0px 0px 80px 0px; } .framer-lWeTh .framer-1qha1zi { flex-wrap: wrap; gap: 40px; } .framer-lWeTh .framer-3ieimd-container, .framer-lWeTh .framer-m4k2if-container, .framer-lWeTh .framer-1i746n7-container, .framer-lWeTh .framer-j7ilwd-container { min-width: 280px; } .framer-lWeTh .framer-m9ejw7, .framer-lWeTh .framer-1x95x7r, .framer-lWeTh .framer-1uh27lw { padding: 80px 0px 0px 0px; } .framer-lWeTh .framer-53yjfv { height: var(--framer-aspect-ratio-supported, 166px); top: -30px; width: 30%; } .framer-lWeTh .framer-1oifaki { flex-direction: column; gap: 40px; padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-1dmilaz { width: 100%; } .framer-lWeTh .framer-1963tlu { height: var(--framer-aspect-ratio-supported, 150px); width: 45%; } .framer-lWeTh .framer-519sm3 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 203px); width: 60%; } .framer-lWeTh .framer-vj65z4 { align-content: center; align-items: center; flex: none; gap: 30px; max-width: 560px; width: 100%; } .framer-lWeTh .framer-1qanxek { order: 0; width: 101%; } .framer-lWeTh .framer-cblgpe { order: 1; } .framer-lWeTh .framer-aknmbz, .framer-lWeTh .framer-iiruxb, .framer-lWeTh .framer-ac4m16 { padding: 0px 20px 0px 20px; } .framer-lWeTh .framer-ihrq9w { gap: 30px; } .framer-lWeTh .framer-17svo76, .framer-lWeTh .framer-lla8hc, .framer-lWeTh .framer-1s4qpwc { gap: 20px; min-width: 150px; overflow: visible; } .framer-lWeTh .framer-12bjacy, .framer-lWeTh .framer-9irzus, .framer-lWeTh .framer-oayb7v, .framer-lWeTh .framer-l270ll { overflow: visible; } .framer-lWeTh .framer-1527npi { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-lWeTh .framer-25gs7i-container { align-self: start; flex: none; grid-column: span 2; justify-self: start; order: 0; width: 100%; } .framer-lWeTh .framer-97zxom-container { align-self: start; grid-column: span 2; justify-self: start; order: 2; width: 100%; } .framer-lWeTh .framer-1w1ukdm-container { align-self: start; flex: none; grid-column: span 2; justify-self: start; order: 1; width: 100%; } .framer-lWeTh .framer-xviycp { flex-wrap: wrap; gap: 30px; } .framer-lWeTh .framer-hiit04, .framer-lWeTh .framer-1zzzil, .framer-lWeTh .framer-ls858x, .framer-lWeTh .framer-wlw0vo { aspect-ratio: 2.68 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); max-height: 50px; max-width: 150px; width: 40%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8851\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AYJ2p255g\":{\"layout\":[\"fixed\",\"auto\"]},\"XNQZNwL3s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WQhbSbcSc\":{\"pattern\":\":WQhbSbcSc\",\"name\":\"hero-section\"},\"pO8xAUsFB\":{\"pattern\":\":pO8xAUsFB\",\"name\":\"spa\"},\"Z7YKAo34A\":{\"pattern\":\":Z7YKAo34A\",\"name\":\"services\"},\"szaTliSR4\":{\"pattern\":\":szaTliSR4\",\"name\":\"experiences\"},\"iWZCYJfua\":{\"pattern\":\":iWZCYJfua\",\"name\":\"membership\"},\"VwMpLeH7Y\":{\"pattern\":\":VwMpLeH7Y\",\"name\":\"cta\"},\"idvOZ23HE\":{\"pattern\":\":idvOZ23HE\",\"name\":\"team\"},\"jFJ4qFs0H\":{\"pattern\":\":jFJ4qFs0H\",\"name\":\"slider\"},\"J0scymdIU\":{\"pattern\":\":J0scymdIU\",\"name\":\"cta2\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-lWeTh\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8851,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Corben\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMp9pQlEpVs3VQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Boska\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XWA5B7QYO35APXAF3YE3ZGLUEKXM5AUE/OM4E67LNKOMULZHKAOYI4D5ITKBZEHPB/2WOBSOJLL4JK7IHX3NLDIY3DAIT52O4K.woff2\",weight:\"400\"},{family:\"Boska\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CNIAHX5RKVK53N3YCRZR5R3L3S4OTBSU/DBNFGKYNM3IIQU3Q4SC6XOOFS6UMAW7D/DCZMHDUIIND3BTWZGHAVWGQPO6EB5M4I.woff2\",weight:\"500\"}]},...NavigationHeaderWhiteFonts,...SliderHeroBannerSlideshowFonts,...EmbedFonts,...ButtonsButtonPrimaryFonts,...YouTubeFonts,...ExperienceItemFonts,...CompanyContactUsTickerFonts,...TeamMemberColumnFonts,...SliderSliderTestimonialsFonts,...CTACTASectionWithImageFonts,...NavigationFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"8851\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AYJ2p255g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XNQZNwL3s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"WQhbSbcSc\\\":{\\\"pattern\\\":\\\":WQhbSbcSc\\\",\\\"name\\\":\\\"hero-section\\\"},\\\"pO8xAUsFB\\\":{\\\"pattern\\\":\\\":pO8xAUsFB\\\",\\\"name\\\":\\\"spa\\\"},\\\"Z7YKAo34A\\\":{\\\"pattern\\\":\\\":Z7YKAo34A\\\",\\\"name\\\":\\\"services\\\"},\\\"szaTliSR4\\\":{\\\"pattern\\\":\\\":szaTliSR4\\\",\\\"name\\\":\\\"experiences\\\"},\\\"iWZCYJfua\\\":{\\\"pattern\\\":\\\":iWZCYJfua\\\",\\\"name\\\":\\\"membership\\\"},\\\"VwMpLeH7Y\\\":{\\\"pattern\\\":\\\":VwMpLeH7Y\\\",\\\"name\\\":\\\"cta\\\"},\\\"idvOZ23HE\\\":{\\\"pattern\\\":\\\":idvOZ23HE\\\",\\\"name\\\":\\\"team\\\"},\\\"jFJ4qFs0H\\\":{\\\"pattern\\\":\\\":jFJ4qFs0H\\\",\\\"name\\\":\\\"slider\\\"},\\\"J0scymdIU\\\":{\\\"pattern\\\":\\\":J0scymdIU\\\",\\\"name\\\":\\\"cta2\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ButtonsButtonPrimaryFonts", "getFonts", "Kv1WChb7T_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "SmartComponentScopedContainer", "MotionDivWithFX", "ImageWithFX", "Image2", "SlideshowFonts", "Slideshow", "ButtonsButtonPrimaryControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "animation", "transition2", "animation1", "animation2", "convertFromEnum", "activeLocale", "toString", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "convertFromEnum1", "convertFromEnum2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "buttonVariant", "gap", "headingFontSize", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FrcVzeS95", "N4DUgSstW", "Wxo8XPemn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "textContent", "router", "useRouter", "textContent1", "textContent2", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "css", "FramerbWOoPBccE", "withCSS", "bWOoPBccE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "gap", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "N3DeH91h9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "RichText2", "Image2", "css", "FramerEAyEFYcPw", "withCSS", "EAyEFYcPw_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationHeaderWhiteFonts", "getFonts", "gblIf8rKY_default", "NavigationHeaderWhiteWithVariantAppearEffect", "withVariantAppearEffect", "SliderHeroBannerSlideshowFonts", "bWOoPBccE_default", "EmbedFonts", "Embed", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "ButtonsButtonPrimaryFonts", "Kv1WChb7T_default", "ContainerWithFX", "Container", "YouTubeFonts", "Youtube", "ExperienceItemFonts", "Mb_IoUdef_default", "CompanyContactUsTickerFonts", "EAyEFYcPw_default", "TeamMemberColumnFonts", "W5rIDXjBW_default", "SliderSliderTestimonialsFonts", "o8cFF5Oqd_default", "CTACTASectionWithImageFonts", "hXpgdUW17_default", "NavigationFooterFonts", "Yexjj0g4z_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "transition2", "animation1", "addImageAlt", "image", "alt", "transformTemplate2", "animation2", "animation3", "animation4", "transition3", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "elementId1", "ref2", "usePreloadLocalizedValues", "isDisplayed", "router", "useRouter", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed1", "isDisplayed2", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
