{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/omo5LdjL4LRSZXvwvWOk/u3WxIJnBoahCGbEeALvk/O_XoZ3FcZ.js", "ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/5hCj5aqz259Cc22vd8sH/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/NKhTNNlM5cSORfp6otQ7/w3EmJaBJxPNBaJqjo3Hv/tUDSLfHGW.js", "ssg:https://framerusercontent.com/modules/tr4lUrPNL2dazPiCFU5i/WsMWsq819Kt2CZuul62h/V58UbAvyH.js", "ssg:https://framerusercontent.com/modules/tB1kJ4l1GiUb7eIuCfkA/iNNAgDigrWqzS3PtOsSn/augiA20Il.js"],
  "sourcesContent": ["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 (79ec8dc)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"G47S15YSn\",\"PX1MOnVXY\"];const serializationHash=\"framer-8EaGQ\";const variantClassNames={G47S15YSn:\"framer-v-1hbo82m\",PX1MOnVXY:\"framer-v-17k3l76\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Hidden:\"PX1MOnVXY\",Loading:\"G47S15YSn\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"G47S15YSn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G47S15YSn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"PX1MOnVXY\")return false;return true;};const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hbo82m\",className,classNames),\"data-framer-name\":\"Loading\",layoutDependency:layoutDependency,layoutId:\"G47S15YSn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qrc6yg\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"onOQ0YrdY\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jivlv8\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"rN6xsA2D3\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(153, 153, 153) 342deg)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7b4s7\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"KWLYXFUsw\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8EaGQ.framer-xuzmjz, .framer-8EaGQ .framer-xuzmjz { display: block; }\",\".framer-8EaGQ.framer-1hbo82m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 40px; }\",\".framer-8EaGQ .framer-1qrc6yg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-8EaGQ .framer-1jivlv8 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-8EaGQ .framer-m7b4s7 { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8EaGQ.framer-1hbo82m { gap: 0px; } .framer-8EaGQ.framer-1hbo82m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8EaGQ.framer-1hbo82m > :first-child { margin-left: 0px; } .framer-8EaGQ.framer-1hbo82m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PX1MOnVXY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO_XoZ3FcZ=withCSS(Component,css,\"framer-8EaGQ\");export default FramerO_XoZ3FcZ;FramerO_XoZ3FcZ.displayName=\"Spinner\";FramerO_XoZ3FcZ.defaultProps={height:40,width:40};addPropertyControls(FramerO_XoZ3FcZ,{variant:{options:[\"G47S15YSn\",\"PX1MOnVXY\"],optionTitles:[\"Loading\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO_XoZ3FcZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO_XoZ3FcZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PX1MOnVXY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O_XoZ3FcZ.map", "function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);// Fix the Anchor link\nuseEffect(()=>{const anchorLinks=[...document.querySelectorAll(\"a[href]\")];const handleClick=(e,href)=>{e.preventDefault();lenis.current.scrollTo(href);};anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.addEventListener(\"click\",e=>handleClick(e,href));});return()=>{anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{a.removeEventListener(\"click\",handleClick);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://framer.university?utm_source=component).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/odbNYy2T9msN90m0cOiF/50qADGSi7oXOnfEXe8xw/d0WA5d5b_.js\";const serializationHash=\"framer-upLGD\";const variantClassNames={AJeq1ylFI:\"framer-v-1o6spsf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"AJeq1ylFI\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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:\"tel:+79883443333\",motionChild:true,nodeId:\"AJeq1ylFI\",openInNewTab:false,scopeId:\"tUDSLfHGW\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1o6spsf\",className,classNames)} framer-1xsz806`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"AJeq1ylFI\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(214, 189, 141, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ngt35i\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"McdH89ycE\",style:{backgroundColor:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-170rqxr\",\"data-framer-name\":\"vuesax/linear/message-notif\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"wQj17FV4y\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22 10V13C22 17 20 19 16 19H15.5C15.19 19 14.89 19.15 14.7 19.4L13.2 21.4C12.54 22.28 11.46 22.28 10.8 21.4L9.3 19.4C9.14 19.18 8.77 19 8.5 19H8C4 19 2 18 2 13V8C2 4 4 2 8 2H14\" stroke=\"#F1F1F1\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M19.5 7C20.8807 7 22 5.88071 22 4.5C22 3.11929 20.8807 2 19.5 2C18.1193 2 17 3.11929 17 4.5C17 5.88071 18.1193 7 19.5 7Z\" stroke=\"#F1F1F1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M15.9965 11H16.0054\" stroke=\"#F1F1F1\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.9955 11H12.0045\" stroke=\"#F1F1F1\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.99451 11H8.00349\" stroke=\"#F1F1F1\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ibj4sz\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"m8rhA5iAQ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255)))\"},children:\"+7 (988) 344-33-33\"})}),className:\"framer-v0do3c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ijtco11k5\",style:{\"--extracted-r6o4lv\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-upLGD.framer-1xsz806, .framer-upLGD .framer-1xsz806 { display: block; }\",\".framer-upLGD.framer-1o6spsf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-upLGD .framer-1ngt35i { 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: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-upLGD .framer-170rqxr { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-upLGD .framer-1ibj4sz { 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: 0px 32px 0px 16px; position: relative; width: min-content; }\",\".framer-upLGD .framer-v0do3c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-upLGD .framer-1ngt35i, .framer-upLGD .framer-1ibj4sz { gap: 0px; } .framer-upLGD .framer-1ngt35i > *, .framer-upLGD .framer-1ibj4sz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-upLGD .framer-1ngt35i > :first-child, .framer-upLGD .framer-1ibj4sz > :first-child { margin-left: 0px; } .framer-upLGD .framer-1ngt35i > :last-child, .framer-upLGD .framer-1ibj4sz > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-upLGD[data-border=\"true\"]::after, .framer-upLGD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 253.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUDSLfHGW=withCSS(Component,css,\"framer-upLGD\");export default FramertUDSLfHGW;FramertUDSLfHGW.displayName=\"Phone\";FramertUDSLfHGW.defaultProps={height:52,width:253.5};addFonts(FramertUDSLfHGW,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUDSLfHGW\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"253.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7422eea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/odbNYy2T9msN90m0cOiF/50qADGSi7oXOnfEXe8xw/d0WA5d5b_.js\";const cycleOrder=[\"NB9ZPcfry\",\"bZt2xvUvD\"];const serializationHash=\"framer-upsi5\";const variantClassNames={bZt2xvUvD:\"framer-v-1knepqy\",NB9ZPcfry:\"framer-v-1jqm1il\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 humanReadableVariantMap={Default:\"NB9ZPcfry\",Hover:\"bZt2xvUvD\"};const getProps=({height,id,label,width,...props})=>{return{...props,uRy04MQBi:label??props.uRy04MQBi??\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NB9ZPcfry\"};};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,uRy04MQBi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NB9ZPcfry\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1xe5h7n=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"bZt2xvUvD\");});const onMouseLeavekr7e26=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"NB9ZPcfry\");});const sharedStyleClassNames=[sharedStyle.className];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:\"Gb1_jqHUW\"},motionChild:true,nodeId:\"NB9ZPcfry\",scopeId:\"V58UbAvyH\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1jqm1il\",className,classNames)} framer-4j9b8r`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NB9ZPcfry\",onMouseEnter:onMouseEnter1xe5h7n,ref:refBinding,style:{...style},...addPropertyOverrides({bZt2xvUvD:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeavekr7e26}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18vpdz7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"t3yoLjQ5O\",style:{scale:1},variants:{bZt2xvUvD:{scale:1.05}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10s9yde\",\"data-framer-name\":\"Content Filled\",layoutDependency:layoutDependency,layoutId:\"lD5N3jGq_\",style:{backgroundColor:\"var(--token-e6782f6a-b44b-4738-a3a9-849005d3c0f5, rgb(139, 107, 48))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255)))\"},children:\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\"})}),className:\"framer-18gyej7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uzp5zx83O\",style:{\"--extracted-r6o4lv\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uRy04MQBi,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n7ziu\",\"data-framer-name\":\"Content Outlined\",layoutDependency:layoutDependency,layoutId:\"nelwlEx5z\",style:{backgroundColor:\"var(--token-f2281524-6303-4e84-a900-a9a142ab836c, rgb(215, 190, 142))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,mask:\"linear-gradient(35deg, rgba(0,0,0,1) 5.577843468468469%, rgba(0,0,0,0) 5.974239864864872%) add\",WebkitMask:\"linear-gradient(35deg, rgba(0,0,0,1) 5.577843468468469%, rgba(0,0,0,0) 5.974239864864872%) add\"},variants:{bZt2xvUvD:{mask:\"linear-gradient(35deg, rgba(0,0,0,1) 95.62042511261262%, rgba(0,0,0,0) 95.84389076576576%) add\",WebkitMask:\"linear-gradient(35deg, rgba(0,0,0,1) 95.62042511261262%, rgba(0,0,0,0) 95.84389076576576%) add\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\"},children:\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\"})}),className:\"framer-1us4xk4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DCNSudVlC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uRy04MQBi,variants:{bZt2xvUvD:{\"--extracted-r6o4lv\":\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bZt2xvUvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30)))\"},children:\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\"})})}},baseVariant,gestureVariant)})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-upsi5.framer-4j9b8r, .framer-upsi5 .framer-4j9b8r { display: block; }\",\".framer-upsi5.framer-1jqm1il { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-upsi5 .framer-18vpdz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-upsi5 .framer-10s9yde { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-upsi5 .framer-18gyej7, .framer-upsi5 .framer-1us4xk4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-upsi5 .framer-1n7ziu { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 24px 0px 24px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 141\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"bZt2xvUvD\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"uRy04MQBi\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerV58UbAvyH=withCSS(Component,css,\"framer-upsi5\");export default FramerV58UbAvyH;FramerV58UbAvyH.displayName=\"Button 2\";FramerV58UbAvyH.defaultProps={height:52,width:141};addPropertyControls(FramerV58UbAvyH,{variant:{options:[\"NB9ZPcfry\",\"bZt2xvUvD\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},uRy04MQBi:{defaultValue:\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerV58UbAvyH,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV58UbAvyH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bZt2xvUvD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"uRy04MQBi\\\":\\\"label\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"141\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V58UbAvyH.map", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withInfiniteScroll,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Spinner from\"https://framerusercontent.com/modules/omo5LdjL4LRSZXvwvWOk/u3WxIJnBoahCGbEeALvk/O_XoZ3FcZ.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/5hCj5aqz259Cc22vd8sH/SmoothScroll_Prod.js\";import Contact from\"#framer/local/canvasComponent/FWWBUKNtC/FWWBUKNtC.js\";import Footer from\"#framer/local/canvasComponent/GgdFUtGAF/GgdFUtGAF.js\";import Nav from\"#framer/local/canvasComponent/ieuy8fRE2/ieuy8fRE2.js\";import Button from\"#framer/local/canvasComponent/iqKpwvLsS/iqKpwvLsS.js\";import RoomCard from\"#framer/local/canvasComponent/Mk0oz1D4m/Mk0oz1D4m.js\";import ButtonHero from\"#framer/local/canvasComponent/tFZa52ygl/tFZa52ygl.js\";import Phone from\"#framer/local/canvasComponent/tUDSLfHGW/tUDSLfHGW.js\";import ButtonWithIcon from\"#framer/local/canvasComponent/UBX3bnWf0/UBX3bnWf0.js\";import Button2 from\"#framer/local/canvasComponent/V58UbAvyH/V58UbAvyH.js\";import Accordion from\"#framer/local/canvasComponent/xkgf3NWgk/xkgf3NWgk.js\";import UserComponent from\"#framer/local/collection/Q66w_5ghx/Q66w_5ghx.js\";import UserComponent1 from\"#framer/local/collection/xU96LNnli/xU96LNnli.js\";import*as sharedStyle6 from\"#framer/local/css/A9rdXSvQ3/A9rdXSvQ3.js\";import*as sharedStyle1 from\"#framer/local/css/d0WA5d5b_/d0WA5d5b_.js\";import*as sharedStyle7 from\"#framer/local/css/FfbbwYOZg/FfbbwYOZg.js\";import*as sharedStyle2 from\"#framer/local/css/fntKOO_Y7/fntKOO_Y7.js\";import*as sharedStyle from\"#framer/local/css/H73t_W1ak/H73t_W1ak.js\";import*as sharedStyle5 from\"#framer/local/css/tittoIAe8/tittoIAe8.js\";import*as sharedStyle3 from\"#framer/local/css/wLSpZSMfh/wLSpZSMfh.js\";import*as sharedStyle4 from\"#framer/local/css/xJ2wgdMZ0/xJ2wgdMZ0.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ContactFonts=getFonts(Contact);const SmoothScrollFonts=getFonts(SmoothScroll);const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const ButtonHeroFonts=getFonts(ButtonHero);const MotionDivWithFX=withFX(motion.div);const PhoneFonts=getFonts(Phone);const ButtonWithIconFonts=getFonts(ButtonWithIcon);const Button2Fonts=getFonts(Button2);const ImageWithFX=withFX(Image);const ButtonFonts=getFonts(Button);const RoomCardFonts=getFonts(RoomCard);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const SpinnerFonts=getFonts(Spinner);const ContainerWithInfiniteScroll=withInfiniteScroll(Container);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={kZ6fwR6Vk:\"(max-width: 809px)\",UFSIcBAOo:\"(min-width: 810px) and (max-width: 1199px)\",uI6TuZ1UR:\"(min-width: 1200px) and (max-width: 1559px)\",WQLkyLRf1:\"(min-width: 1560px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2ojdF\";const variantClassNames={kZ6fwR6Vk:\"framer-v-16e3t2y\",UFSIcBAOo:\"framer-v-1mrfbca\",uI6TuZ1UR:\"framer-v-jj8utt\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition1={damping:50,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-50};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:50};const transition2={damping:50,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:50};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};const transition3={damping:50,delay:.1,mass:1,stiffness:100,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:100,y:0};const transition5={damping:50,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:150,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"OWGouzN2Y\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};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\",Laptop:\"uI6TuZ1UR\",Phone:\"kZ6fwR6Vk\",Tablet:\"UFSIcBAOo\"};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,TaWV0ODwBFzvHHs92g,IMNmiivHpFzvHHs92g,IoIiY6vC_FzvHHs92g,PuYurhAXKFzvHHs92g,RLliPhS6YFzvHHs92g,uRzhvgJIgFzvHHs92g,gAE7A_noyFzvHHs92g,u7yFNJuQaFzvHHs92g,idFzvHHs92g,dvuBR0QdqOWGouzN2Y,ld28WkA6lOWGouzN2Y,WZA1lF9kWOWGouzN2Y,zYmfAHQYOOWGouzN2Y,idOWGouzN2Y,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kZ6fwR6Vk\")return false;return true;};const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"vkxZc50A0\");const elementId1=useRouteElementId(\"S48s0AycK\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"lDVJy3kgu\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"kZ6fwR6Vk\")return true;return false;};const elementId3=useRouteElementId(\"vdmAf9Lp1\");const ref4=React.useRef(null);const dynamicRef=useDynamicRefs();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-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, rgb(249, 253, 254)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{y:920}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"64px\",y:872,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2x4lh-container\",layoutScroll:true,nodeId:\"n3h1niPKI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{variant:\"xFkxbBnej\"},UFSIcBAOo:{variant:\"nRmQTiile\"},uI6TuZ1UR:{variant:\"eWs6bP9dZ\"}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"n3h1niPKI\",layoutId:\"n3h1niPKI\",style:{height:\"100%\",width:\"100%\"},variant:\"W2YyfZQQs\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pnc1uf-container hidden-16e3t2y\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KkbzBHtEP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"KkbzBHtEP\",intensity:10,layoutId:\"KkbzBHtEP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:121,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9i1qns-container\",layoutScroll:true,nodeId:\"QTpQLz1_s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{__framer__targets:[{ref:ref1,target:\"VyM0ZEVGS\"}],variant:\"KDzwv72qe\"},UFSIcBAOo:{__framer__targets:[{ref:ref1,target:\"soOPiNIPi\"}],variant:\"qCccLIqny\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"QMlHCoKCI\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"QTpQLz1_s\",layoutId:\"QTpQLz1_s\",style:{width:\"100%\"},variant:\"AyocQ7FLW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c2xfq1\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48702u\",\"data-framer-name\":\"BG Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j58qap-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XpjzcQHZD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-f2281524-6303-4e84-a900-a9a142ab836c, rgb(215, 190, 142))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"XpjzcQHZD\",isMixedBorderRadius:false,layoutId:\"XpjzcQHZD\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/jYpegE2rqj3XKS7G9z0UIgP9g.mp4\",srcType:\"Upload\",srcUrl:\"https://apps.yappix.ru/images/priboy.webm\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvq64g\",\"data-framer-name\":\"Gradient\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bow1fw\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-773oe9\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qobf4s\",\"data-styles-preset\":\"H73t_W1ak\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Grand Hotel & SPA \u041F\u0440\u0438\u0431\u043E\u0439 4 \u0437\u0432\u0435\u0437\u0434\u044B\"})}),className:\"framer-o2v27o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Env_fDj8x\"},implicitPathVariables:undefined},{href:{webPageId:\"Env_fDj8x\"},implicitPathVariables:undefined},{href:{webPageId:\"Env_fDj8x\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kliotj-container hidden-16e3t2y\",nodeId:\"r4OsWcV_U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{UREL1yiPB:resolvedLinks[2],variant:\"vRDBBMUbk\"},uI6TuZ1UR:{UREL1yiPB:resolvedLinks[1],variant:\"vQJlSgTKa\"}},children:/*#__PURE__*/_jsx(ButtonHero,{height:\"100%\",id:\"r4OsWcV_U\",layoutId:\"r4OsWcV_U\",qlF82iuHs:true,UREL1yiPB:resolvedLinks[0],variant:\"wRV0aoe4O\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mizucj\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yyd6s9\",\"data-framer-name\":\"Line\"}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8l1033-container hidden-16e3t2y\",nodeId:\"LQKnZLVK0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phone,{height:\"100%\",id:\"LQKnZLVK0\",layoutId:\"LQKnZLVK0\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbtuql\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u041D\u0430\u0441\u043B\u0430\u0434\u0438\u0442\u0435\u0441\u044C \u0438\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u044B\u043C\u0438 \u043D\u043E\u043C\u0435\u0440\u0430\u043C\u0438, \u0443\u0434\u043E\u0431\u0441\u0442\u0432\u0430\u043C\u0438 \u043C\u0438\u0440\u043E\u0432\u043E\u0433\u043E \u043A\u043B\u0430\u0441\u0441\u0430 \u0438 \u0438\u043D\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u043C \u043E\u0431\u0441\u043B\u0443\u0436\u0438\u0432\u0430\u043D\u0438\u0435\u043C, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u043F\u0440\u0435\u0432\u0437\u043E\u0439\u0434\u0435\u0442 \u0432\u0430\u0448\u0438 \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u044F \u043F\u043E \u043F\u0440\u0438\u044F\u0442\u043D\u044B\u043C \u0446\u0435\u043D\u0430\u043C \u043D\u0430 \u0447\u0435\u0440\u043D\u043E\u043C\u043E\u0440\u0441\u043A\u043E\u043C \u043A\u0443\u0440\u043E\u0440\u0442\u0435.\"})}),className:\"framer-780s7t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj3vel\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sK3ccYiPU\"},implicitPathVariables:undefined},{href:{webPageId:\"sK3ccYiPU\"},implicitPathVariables:undefined},{href:{webPageId:\"PRFSzLHWF\"},implicitPathVariables:undefined},{href:{webPageId:\"sK3ccYiPU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1640px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ujvhsz-container\",nodeId:\"zMfFcugF1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{style:{width:\"100%\"},z7K7pxZPb:resolvedLinks1[3]},UFSIcBAOo:{B0eLCip3m:\"\u0426\u0435\u043D\u044B\",z7K7pxZPb:resolvedLinks1[2]},uI6TuZ1UR:{z7K7pxZPb:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"\u0426\u0435\u043D\u044B \u0438 \u0442\u0430\u0440\u0438\u0444\u044B\",GJPwsKfou:\"var(--token-f2281524-6303-4e84-a900-a9a142ab836c, rgb(215, 190, 142))\",height:\"100%\",id:\"zMfFcugF1\",Kd3ZunuEn:{borderColor:\"var(--token-f2281524-6303-4e84-a900-a9a142ab836c, rgb(215, 190, 142))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"zMfFcugF1\",variant:\"oiSXbUI2_\",width:\"100%\",z7K7pxZPb:resolvedLinks1[0]})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xk6x2v-container hidden-16e3t2y\",\"data-framer-name\":\"rooms\",name:\"rooms\",nodeId:\"I0KvXFvVj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uI6TuZ1UR:{B0eLCip3m:\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\"}},children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"\u041D\u0443\u0436\u043D\u0430 \u043A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\",GJPwsKfou:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",height:\"100%\",id:\"I0KvXFvVj\",Kd3ZunuEn:{borderColor:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"I0KvXFvVj\",name:\"rooms\",variant:\"RYvi8Kkyb\",width:\"100%\",z7K7pxZPb:\"https://t.me/priboyspa_bot\"})})})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m62g2e\",\"data-framer-name\":\"Body\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx0221\",\"data-framer-name\":\"Main\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aw0pws\",\"data-framer-name\":\"Scroll Anim Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uhiquf\",\"data-framer-name\":\"Sticky\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:1.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{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:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vk2h7z\",\"data-framer-name\":\"Text\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-xyzups\",\"data-styles-preset\":\"fntKOO_Y7\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u0413\u0440\u0430\u043D\u0434 \u041E\u0442\u0435\u043B\u044C & SPA \u041F\u0440\u0438\u0431\u043E\u0439 4\u2B50 | \u041E\u0442\u0434\u044B\u0445 \u043F\u0440\u0435\u043C\u0438\u0443\u043C-\u043A\u043B\u0430\u0441\u0441\u0430 \u043F\u043E \u0430\u0434\u0435\u043A\u0432\u0430\u0442\u043D\u044B\u043C \u0446\u0435\u043D\u0430\u043C \"})})}),className:\"framer-1o1wchv\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-028774f7-a554-4ce8-9085-53144f340ae2, rgba(105, 105, 105, 0.86))\"},children:[\"\u0414\u043E\u0431\u0440\u043E \u043F\u043E\u0436\u0430\u043B\u043E\u0432\u0430\u0442\u044C \u0432 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u0413\u0440\u0430\u043D\u0434 \u041E\u0442\u0435\u043B\u044C & SPA \\xab\u041F\u0440\u0438\u0431\u043E\u0439\\xbb\"}),\" \u2013 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SIB22xOzK\"},motionChild:true,nodeId:\"Bqigw0MPA\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u043B\u0443\u0447\u0448\u0438\u0439 4-\u0437\u0432\u0435\u0437\u0434\u043E\u0447\u043D\u044B\u0439 \u043E\u0442\u0435\u043B\u044C \u0441\u043E SPA \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u043C\"})})}),\", \u0433\u0434\u0435 \u043A\u043E\u043C\u0444\u043E\u0440\u0442, \u0437\u0430\u0431\u043E\u0442\u0430 \u043E \u0433\u043E\u0441\u0442\u044F\u0445 \u0438 \u043F\u0440\u0438\u0440\u043E\u0434\u043D\u0430\u044F \u043A\u0440\u0430\u0441\u043E\u0442\u0430 \u0441\u043E\u0447\u0435\u0442\u0430\u044E\u0442\u0441\u044F \u0432 \u0435\u0434\u0438\u043D\u043E\u0439 \u0433\u0430\u0440\u043C\u043E\u043D\u0438\u0438. \u0417\u0434\u0435\u0441\u044C \u043A\u0430\u0436\u0434\u044B\u0439 \u0433\u043E\u0441\u0442\u044C \u043D\u0430\u0445\u043E\u0434\u0438\u0442 \u0441\u0432\u043E\u0439 \u0438\u0434\u0435\u0430\u043B\u044C\u043D\u044B\u0439 \u043E\u0442\u0434\u044B\u0445 \u2013 \u0431\u0443\u0434\u044C \u0442\u043E \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u0440\u0435\u043B\u0430\u043A\u0441 \u0432 \u0440\u043E\u0441\u043A\u043E\u0448\u043D\u043E\u043C SPA\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u043A\u0443\u043F\u0430\u043D\u0438\u0435 \u0432 \u0431\u0430\u0441\u0441\u0435\u0439\u043D\u0430\u0445 \u0441 \u043F\u043E\u0434\u043E\u0433\u0440\u0435\u0432\u043E\u043C\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u0443\u044E\u0442\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430 \u0441 \u0432\u0438\u0434\u043E\u043C \u043D\u0430 \u043C\u043E\u0440\u0435\"}),\" \u0438\u043B\u0438 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u0432\u044B\u0441\u043E\u043A\u0438\u0439 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u0441\u0435\u0440\u0432\u0438\u0441\u0430\"}),\". \u041C\u044B \u0441\u043E\u0437\u0434\u0430\u0435\u043C \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0443, \u0433\u0434\u0435 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u043A\u0430\u0436\u0434\u0430\u044F \u0434\u0435\u0442\u0430\u043B\u044C \u043F\u0440\u043E\u0434\u0443\u043C\u0430\u043D\u0430 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u0430\"}),\": \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430, \u0438\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u0430\u044F \u043A\u0443\u0445\u043D\u044F, \u0434\u0435\u0442\u0441\u043A\u0438\u0435 \u0440\u0430\u0437\u0432\u043B\u0435\u0447\u0435\u043D\u0438\u044F \u0438 \u043F\u043E\u043B\u043D\u043E\u0446\u0435\u043D\u043D\u044B\u0439 \u0441\u043F\u0430-\u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441 \u0441 \u0431\u0430\u043D\u044F\u043C\u0438, \u0441\u0430\u0443\u043D\u0430\u043C\u0438 \u0438 \u0437\u043E\u043D\u0430\u043C\u0438 \u0440\u0435\u043B\u0430\u043A\u0441\u0430. \",/*#__PURE__*/_jsx(\"strong\",{children:\"\u0413\u0440\u0430\u043D\u0434 \u041E\u0442\u0435\u043B\u044C & SPA \\xab\u041F\u0440\u0438\u0431\u043E\u0439\\xbb \u2013 \u044D\u0442\u043E \u0431\u043E\u043B\u044C\u0448\u0435, \u0447\u0435\u043C \u043F\u0440\u043E\u0441\u0442\u043E \u043E\u0442\u0434\u044B\u0445. \u042D\u0442\u043E \u044D\u043C\u043E\u0446\u0438\u0438, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0445\u043E\u0447\u0435\u0442\u0441\u044F \u043F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C. \"}),\"\u041F\u0440\u0438\u0435\u0437\u0436\u0430\u0439\u0442\u0435 \u0438 \u043E\u0442\u043A\u0440\u043E\u0439\u0442\u0435 \u0434\u043B\u044F \u0441\u0435\u0431\u044F \u043D\u043E\u0432\u044B\u0439 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u0430 \u043D\u0430 \u043F\u043E\u0431\u0435\u0440\u0435\u0436\u044C\u0435 \u0427\u0435\u0440\u043D\u043E\u0433\u043E \u043C\u043E\u0440\u044F!\"]})}),className:\"framer-143j5pm\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8lgve-container hidden-16e3t2y\",nodeId:\"UeuV9nEtf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"UeuV9nEtf\",layoutId:\"UeuV9nEtf\",uRy04MQBi:\"\u0412\u0441\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\",variant:\"NB9ZPcfry\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7mjn8 hidden-16e3t2y\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-526,y:-100}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:1080,pixelWidth:1920,sizes:\"664px\",src:\"https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:449,y:357}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:1080,pixelWidth:1920,sizes:\"710px\",src:\"https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aPrE26dBYY89tFq1C3yFoUag.jpeg 1920w\"},className:\"framer-1w9tgpx\",\"data-framer-name\":\"Image 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:300,y:390}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"664px\",src:\"https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:500,y:105}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"710px\",src:\"https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3uzNBQbjf1tMRgJLmbwcmEemAo.jpg 4032w\"},className:\"framer-1xwc0xn\",\"data-framer-name\":\"Image 3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:1080,pixelWidth:1920,sizes:\"664px\",src:\"https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:496,y:-284}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:1080,pixelWidth:1920,sizes:\"710px\",src:\"https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTTBCt0F4sHqVG4xduGLi8Xu1YA.jpeg 1920w\"},className:\"framer-jyvf87\",\"data-framer-name\":\"Image 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"664px\",src:\"https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.35,skewX:0,skewY:0,x:239,y:-395}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"710px\",src:\"https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yuPh18wvEqOXpEI8WPezjKeSjzM.jpg 4032w\"},className:\"framer-155qxdi\",\"data-framer-name\":\"Image 5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-300,y:400}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:4032,pixelWidth:3024,sizes:\"664px\",src:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-300,y:355}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:4032,pixelWidth:3024,sizes:\"710px\",src:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg 3024w\"},className:\"framer-ug1bsa\",\"data-framer-name\":\"Image 6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:-396}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:371,pixelWidth:536,sizes:\"664px\",src:\"https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg 536w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-587,y:107}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:371,pixelWidth:536,sizes:\"710px\",src:\"https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nd6H6Bgyp57YIPoj9oAMyCft80.jpg 536w\"},className:\"framer-19wosc\",\"data-framer-name\":\"Image 7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:360}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"664px\",src:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,x:-554,y:-279}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:3024,pixelWidth:4032,sizes:\"710px\",src:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg 4032w\"},className:\"framer-1s6dzbm\",\"data-framer-name\":\"Image 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-330,y:-396}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:3024,pixelWidth:4032,sizes:\"664px\",src:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-364,y:-396}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,pixelHeight:3024,pixelWidth:4032,sizes:\"710px\",src:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg 4032w\"},className:\"framer-1elf8id\",\"data-framer-name\":\"Image 1\"})})]})]})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1b4tcg2 hidden-72rtr7 hidden-jj8utt hidden-1mrfbca\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oynz84\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Env_fDj8x\"},implicitPathVariables:undefined},{href:{webPageId:\"Env_fDj8x\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11738m5-container\",\"data-framer-name\":\"rooms\",name:\"rooms\",nodeId:\"ir5BHkPBp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{GJPwsKfou:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",Kd3ZunuEn:{borderColor:\"var(--token-e6782f6a-b44b-4738-a3a9-849005d3c0f5, rgb(139, 107, 48))\",borderStyle:\"solid\",borderWidth:1},variant:\"qggVOew1K\",z7K7pxZPb:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"\u0417\u0430\u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043D\u043E\u043C\u0435\u0440\",GJPwsKfou:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",height:\"100%\",id:\"ir5BHkPBp\",Kd3ZunuEn:{borderColor:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"ir5BHkPBp\",name:\"rooms\",style:{width:\"100%\"},variant:\"LUf_Q_vNY\",width:\"100%\",z7K7pxZPb:resolvedLinks2[0]})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{height:52,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-alsbmp-container hidden-72rtr7\",\"data-framer-name\":\"rooms\",name:\"rooms\",nodeId:\"fc8TXX6TR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{z7K7pxZPb:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u043E\u043C\u0435\u0440\u0430\",GJPwsKfou:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",height:\"100%\",id:\"fc8TXX6TR\",Kd3ZunuEn:{borderColor:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"fc8TXX6TR\",name:\"rooms\",style:{width:\"100%\"},variant:\"LUf_Q_vNY\",width:\"100%\",z7K7pxZPb:resolvedLinks3[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f943am\",\"data-framer-name\":\"Images Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xz96ww\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"\u041E\u0442\u0435\u043B\u044C \u041F\u0440\u0438\u0431\u043E\u0439 4 \u0434\u043D\u0435\u043C. \u0424\u0430\u0441\u0430\u0434\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 820px)`,src:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg\",srcSet:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\u041E\u0442\u0435\u043B\u044C \u041F\u0440\u0438\u0431\u043E\u0439 4 \u0434\u043D\u0435\u043C. \u0424\u0430\u0441\u0430\u0434\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg\",srcSet:\"https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/19uotgU3wWUVofOxgJVzjwJ78cE.jpeg 4032w\"},className:\"framer-19p3w75\",\"data-framer-name\":\"Image 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hnojyn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"\u041B\u0443\u0447\u0448\u0438\u0439 \u041E\u0442\u0435\u043B\u044C \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435 \u043D\u043E\u0447\u044C\u044E\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg\",srcSet:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\u041B\u0443\u0447\u0448\u0438\u0439 \u041E\u0442\u0435\u043B\u044C \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435 \u043D\u043E\u0447\u044C\u044E\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg\",srcSet:\"https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fqGCVWvjYxCq1mSWsyt6RNyHnIE.jpg 4032w\"},className:\"framer-9c5elz\",\"data-framer-name\":\"Image 2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wuugdk\",\"data-framer-name\":\"BG Shape\"})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ijomyy\",\"data-framer-name\":\"Rooms\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4yin8\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jm743c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:\"\u041D\u0430\u0448\u0438 \u043D\u043E\u043C\u0435\u0440\u0430\"})}),className:\"framer-f7ifg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b26ved-container hidden-16e3t2y\",nodeId:\"R7LH3ba0q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{PhjHhuR66:resolvedLinks4[2]},uI6TuZ1UR:{PhjHhuR66:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"R7LH3ba0q\",layoutId:\"R7LH3ba0q\",MQz7F6Pb7:\"\u041E\u0431\u0437\u043E\u0440 \u0432\u0441\u0435\u0445 \u043D\u043E\u043C\u0435\u0440\u043E\u0432\",PhjHhuR66:resolvedLinks4[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8pbie\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g926uk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlch0q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FzvHHs92g\",data:UserComponent,type:\"Collection\"},select:[{collection:\"FzvHHs92g\",name:\"TaWV0ODwB\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"IMNmiivHp\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"IoIiY6vC_\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"PuYurhAXK\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"RLliPhS6Y\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"uRzhvgJIg\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"gAE7A_noy\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"u7yFNJuQa\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"id\",type:\"Identifier\"}],where:{collection:\"FzvHHs92g\",name:\"s1K7LrOaW\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gAE7A_noy:gAE7A_noyFzvHHs92g,id:idFzvHHs92g,IMNmiivHp:IMNmiivHpFzvHHs92g,IoIiY6vC_:IoIiY6vC_FzvHHs92g,PuYurhAXK:PuYurhAXKFzvHHs92g,RLliPhS6Y:RLliPhS6YFzvHHs92g,TaWV0ODwB:TaWV0ODwBFzvHHs92g,u7yFNJuQa:u7yFNJuQaFzvHHs92g,uRzhvgJIg:uRzhvgJIgFzvHHs92g},index)=>{TaWV0ODwBFzvHHs92g??=\"\";IMNmiivHpFzvHHs92g??=\"\";IoIiY6vC_FzvHHs92g??=\"\";PuYurhAXKFzvHHs92g??=\"\";uRzhvgJIgFzvHHs92g??=\"\";gAE7A_noyFzvHHs92g??=\"\";u7yFNJuQaFzvHHs92g??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FzvHHs92g-${idFzvHHs92g}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PuYurhAXK:PuYurhAXKFzvHHs92g},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-apehq6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{height:343,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 50px)`},UFSIcBAOo:{height:400,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 50px)`},uI6TuZ1UR:{height:520}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nb2u63-container\",nodeId:\"ZN_w66DjL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{Oei04NzyO:resolvedLinks5[3],variant:\"jd_67jmQ7\"},UFSIcBAOo:{Oei04NzyO:resolvedLinks5[2],variant:\"jd_67jmQ7\"},uI6TuZ1UR:{Oei04NzyO:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(RoomCard,{GYAgdvY12:gAE7A_noyFzvHHs92g,height:\"100%\",id:\"ZN_w66DjL\",jLyxLIzp1:toResponsiveImage(RLliPhS6YFzvHHs92g),layoutId:\"ZN_w66DjL\",M2uvmrEBu:TaWV0ODwBFzvHHs92g,NbezKcrFd:uRzhvgJIgFzvHHs92g,Oei04NzyO:resolvedLinks5[0],ozeyHMXbu:IMNmiivHpFzvHHs92g,QCAWimT5l:u7yFNJuQaFzvHHs92g,style:{height:\"100%\",width:\"100%\"},variant:\"yfPlKloDM\",width:\"100%\",y3tGcpyZK:IoIiY6vC_FzvHHs92g})})})})})})})})},idFzvHHs92g);})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{height:58}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhld06-container hidden-72rtr7 hidden-jj8utt hidden-1mrfbca\",nodeId:\"Utm3z0GaM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{PhjHhuR66:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Utm3z0GaM\",layoutId:\"Utm3z0GaM\",MQz7F6Pb7:\"\u041E\u0431\u0437\u043E\u0440 \u0432\u0441\u0435\u0445 \u043D\u043E\u043C\u0435\u0440\u043E\u0432\",PhjHhuR66:resolvedLinks6[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14v2hg7\",\"data-framer-name\":\"Services \",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fkp8kb\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16mk285\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\"},children:\"\u0423\u0434\u043E\u0431\u0441\u0442\u0432\u0430 \u0438 \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\"},children:\"\u0443\u0441\u043B\u0443\u0433\u0438 \u0432 \u043E\u0442\u0435\u043B\u0435\"})]})}),className:\"framer-qmmonf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sz3wdw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-028774f7-a554-4ce8-9085-53144f340ae2, rgba(105, 105, 105, 0.86))\"},children:[\"\u041E\u0442\u043A\u0440\u043E\u0439\u0442\u0435 \u0434\u043B\u044F \u0441\u0435\u0431\u044F \u043C\u0435\u0441\u0442\u043E, \u0433\u0434\u0435 \u043A\u0430\u0436\u0434\u044B\u0439 \u043C\u043E\u043C\u0435\u043D\u0442 \u043D\u0430\u043F\u043E\u043B\u043D\u0435\u043D \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043E\u043C \u0438 \u0438\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u043E\u0441\u0442\u044C\u044E. \u0412 \u043D\u0430\u0448\u0435\u043C \u043E\u0442\u0435\u043B\u0435 \u0432\u0430\u0441 \u0436\u0434\u0443\u0442 \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u0443\u0434\u043E\u0431\u0441\u0442\u0432\u0430: \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mV63PbJ28\"},motionChild:true,nodeId:\"QcnSHVRJ7\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0440\u0435\u0441\u0442\u043E\u0440\u0430\u043D \u0441 \u0430\u0432\u0442\u043E\u0440\u0441\u043A\u0438\u043C\u0438 \u0431\u043B\u044E\u0434\u0430\u043C\u0438\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lgZnAdPVF\"},motionChild:true,nodeId:\"QcnSHVRJ7\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0441\u043F\u0430\"})}),'-\u043F\u0440\u043E\u0446\u0435\u0434\u0443\u0440\u044B \u0434\u043B\u044F \u043F\u043E\u043B\u043D\u043E\u0433\u043E \u0440\u0430\u0441\u0441\u043B\u0430\u0431\u043B\u0435\u043D\u0438\u044F, \u0434\u0432\u0430 \u0430\u043A\u0432\u0430\u043F\u0430\u0440\u043A\u0430 \u0434\u043B\u044F \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0433\u043E \u043E\u0442\u0434\u044B\u0445\u0430 \u0438 \u043B\u0435\u0442\u043D\u044F\u044F \u0442\u0435\u0440\u0440\u0430\u0441\u0430 \u0434\u043B\u044F \u0443\u044E\u0442\u043D\u044B\u0445 \u0432\u0435\u0447\u0435\u0440\u043E\u0432. \u0414\u0432\u0430 \u043F\u043E\u0434\u043E\u0433\u0440\u0435\u0432\u0430\u0435\u043C\u044B\u0445 \u0431\u0430\u0441\u0441\u0435\u0439\u043D\u0430 \u0438 \u043F\u044F\u0442\u044C \u0432\u0438\u0434\u043E\u0432 \u0431\u0430\u043D\u044C \u0441\u043E\u0437\u0434\u0430\u0434\u0443\u0442 \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0443 \u0430\u0431\u0441\u043E\u043B\u044E\u0442\u043D\u043E\u0433\u043E \u0440\u0435\u043B\u0430\u043A\u0441\u0430. \u0412 \"\u041F\u0440\u0438\u0431\u043E\u0435\" \u043A\u0430\u0436\u0434\u044B\u0439 \u0433\u043E\u0441\u0442\u044C \u043D\u0430\u0439\u0434\u0451\u0442 \u0438\u0434\u0435\u0430\u043B\u044C\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u0434\u043B\u044F \u043E\u0442\u0434\u044B\u0445\u0430 \u0438 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0441\u0438\u043B.']})}),className:\"framer-12x021l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6qbtym-container\",\"data-framer-name\":\"rooms\",name:\"rooms\",nodeId:\"gVgdsbBC_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"\u041D\u0443\u0436\u043D\u0430 \u043A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\",GJPwsKfou:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",height:\"100%\",id:\"gVgdsbBC_\",Kd3ZunuEn:{borderColor:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",borderStyle:\"solid\",borderWidth:1},layoutId:\"gVgdsbBC_\",name:\"rooms\",variant:\"RYvi8Kkyb\",width:\"100%\",z7K7pxZPb:\"https://t.me/priboyspa_bot\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1osv41n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yxKtDSjKx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{speed:80}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:1,id:\"yxKtDSjKx\",layoutId:\"yxKtDSjKx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mV63PbJ28\"},motionChild:true,nodeId:\"ugH_NOpe1\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\u0420\u0435\u0441\u0442\u043E\u0440\u0430\u043D \u0410\u0432\u0435\u043D\u044E 23\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"400px\",src:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg\",srcSet:\"https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/QOyRMerLbG968zBp2ixuP1cpb98.jpg 3024w\"},className:\"framer-bix1gd framer-lux5qc\",\"data-framer-name\":\"Diner\",whileHover:animation10,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-218e4h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1np5w0g-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eixC8DnUF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FishSimple\",id:\"eixC8DnUF\",layoutId:\"eixC8DnUF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u041F\u0438\u0442\u0430\u043D\u0438\u0435\"})}),className:\"framer-dxi4k0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o2tm3k\",\"data-framer-name\":\"overlay\"})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gb1_jqHUW\"},motionChild:true,nodeId:\"JHibUCeQg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\u0420\u043E\u0441\u043A\u043E\u0448\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430 \u0432 \u0433\u0440\u0430\u043D\u0434 \u043E\u0442\u0435\u043B\u0435 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"400px\",src:\"https://framerusercontent.com/images/ehKSbOBaoUtDeUHz7VmcWMboLQs.jpeg\",srcSet:\"https://framerusercontent.com/images/ehKSbOBaoUtDeUHz7VmcWMboLQs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ehKSbOBaoUtDeUHz7VmcWMboLQs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ehKSbOBaoUtDeUHz7VmcWMboLQs.jpeg 1920w\"},className:\"framer-1iiz9uv framer-lux5qc\",\"data-framer-name\":\"Rooms\",whileHover:animation10,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmga0w\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsy0do-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vTy3IBemV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bed\",id:\"vTy3IBemV\",layoutId:\"vTy3IBemV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u0420\u043E\u0441\u043A\u043E\u0448\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\"})}),className:\"framer-1wm7dv2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s0fx8z\",\"data-framer-name\":\"overlay\"})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lgZnAdPVF\"},motionChild:true,nodeId:\"WH8Sy6eNA\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\u0422\u0435\u043F\u043B\u043D\u044B\u0439 \u0431\u0430\u0441\u0441\u0435\u0439\u043D \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435\",fit:\"fill\",pixelHeight:1080,pixelWidth:1620,sizes:\"400px\",src:\"https://framerusercontent.com/images/nNQSRNmZhaykIvkTtOgeuoGcDA.jpg\",srcSet:\"https://framerusercontent.com/images/nNQSRNmZhaykIvkTtOgeuoGcDA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nNQSRNmZhaykIvkTtOgeuoGcDA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nNQSRNmZhaykIvkTtOgeuoGcDA.jpg 1620w\"},className:\"framer-1gjdrse framer-lux5qc\",\"data-framer-name\":\"SPA\",whileHover:animation10,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vggst6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s8l50t-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QTBgFLieD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SwimmingPool\",id:\"QTBgFLieD\",layoutId:\"QTBgFLieD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"SPA \u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\"})}),className:\"framer-t4l9ok\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h9w5x4\",\"data-framer-name\":\"overlay\"})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RE1qbjeLH\"},motionChild:true,nodeId:\"Tgtv7WsXF\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\u041E\u0442\u043A\u0440\u044B\u0442\u044B\u0439 \u0431\u0430\u0441\u0441\u0435\u0439\u043D \u0432 \u043E\u0442\u0435\u043B\u0435\u0439 \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"400px\",src:\"https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg\",srcSet:\"https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg 1920w\"},className:\"framer-17qzexu framer-lux5qc\",\"data-framer-name\":\"Aquapark\",whileHover:animation10,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfx3nr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9icw1-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"x9ISk3E5F\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SwimmingPool\",id:\"x9ISk3E5F\",layoutId:\"x9ISk3E5F\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u0410\u043A\u0432\u0430\u043F\u0430\u0440\u043A\"})}),className:\"framer-jdvj2p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9uia1d\",\"data-framer-name\":\"overlay\"})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VKwzquGPb\"},motionChild:true,nodeId:\"dT3hSBKXv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\u0421\u043E\u0431\u044B\u0442\u0438\u044F \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435\",fit:\"fill\",pixelHeight:3164,pixelWidth:2e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/dVTa2leDV6PKgmBy8GlMM4KU6Xc.png\",srcSet:\"https://framerusercontent.com/images/dVTa2leDV6PKgmBy8GlMM4KU6Xc.png?scale-down-to=1024 647w,https://framerusercontent.com/images/dVTa2leDV6PKgmBy8GlMM4KU6Xc.png?scale-down-to=2048 1294w,https://framerusercontent.com/images/dVTa2leDV6PKgmBy8GlMM4KU6Xc.png 2000w\"},className:\"framer-kk7x17 framer-lux5qc\",\"data-framer-name\":\"Events\",whileHover:animation10,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-142l860\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ukmbt0-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C286SSxhi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Champagne\",id:\"C286SSxhi\",layoutId:\"C286SSxhi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u041C\u0435\u0440\u043E\u043F\u0440\u0438\u044F\u0442\u0438\u044F\"})}),className:\"framer-cbx02x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jxr78q\",\"data-framer-name\":\"overlay\"})]})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-13osqwe\",\"data-framer-name\":\"Activities CTA\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rjbge3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yt5gx6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u0413\u0430\u0440\u043C\u043E\u043D\u0438\u044F \u0423\u044E\u0442\u0430 \u0438 \u0420\u043E\u0441\u043A\u043E\u0448\u0438!\"})}),className:\"framer-1eaukew\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-028774f7-a554-4ce8-9085-53144f340ae2, rgba(105, 105, 105, 0.86))\"},children:[\"\u0418\u0449\u0435\u0442\u0435 \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0439 \u043E\u0442\u0435\u043B\u044C \u0441 \u0435\u0432\u0440\u043E\u043F\u0435\u0439\u0441\u043A\u0438\u043C \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u043C \u0432 \u0446\u0435\u043D\u0442\u0440\u0435 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0433\u043E? \u041D\u0430\u0448 \u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441 \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u0442 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gb1_jqHUW\"},motionChild:true,nodeId:\"Yd70eHjF2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u043A\u043E\u043C\u0444\u043E\u0440\u0442\u0430\u0431\u0435\u043B\u044C\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lgZnAdPVF\"},motionChild:true,nodeId:\"Yd70eHjF2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0440\u043E\u0441\u043A\u043E\u0448\u043D\u044B\u0439 \u0421\u041F\u0410-\u0446\u0435\u043D\u0442\u0440\"})}),\", \u0434\u0432\u0430 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RE1qbjeLH\"},motionChild:true,nodeId:\"Yd70eHjF2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0431\u0430\u0441\u0441\u0435\u0439\u043D\u0430\"})}),\" \u0438 \u0434\u0435\u0442\u0441\u043A\u0438\u0439 \u043C\u0438\u043D\u0438-\u0430\u043A\u0432\u0430\u043F\u0430\u0440\u043A. \u041D\u0430\u0441\u043B\u0430\u0436\u0434\u0430\u0439\u0442\u0435\u0441\u044C \u0431\u043B\u044E\u0434\u0430\u043C\u0438 \u0432 \u043D\u0430\u0448\u0438\u0445 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qcKPc6cyn\"},motionChild:true,nodeId:\"Yd70eHjF2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0440\u0435\u0441\u0442\u043E\u0440\u0430\u043D\u0430\u0445\"})}),\", \u043E\u0442\u0434\u044B\u0445\u0430\u0439\u0442\u0435 \u043D\u0430 \u0432\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u043D\u043E\u0439 \u0442\u0435\u0440\u0440\u0430\u0441\u0435 \u0438 \u043F\u043E\u0437\u0432\u043E\u043B\u044C\u0442\u0435 \u0434\u0435\u0442\u044F\u043C \u0432\u0435\u0441\u0435\u043B\u0438\u0442\u044C\u0441\u044F \u043D\u0430 \u0434\u0435\u0442\u0441\u043A\u043E\u0439 \u043F\u043B\u043E\u0449\u0430\u0434\u043A\u0435. \u041C\u044B \u043D\u0430\u0445\u043E\u0434\u0438\u043C\u0441\u044F \u0432 \u0436\u0438\u0432\u043E\u043F\u0438\u0441\u043D\u043E\u043C \u043A\u0443\u0440\u043E\u0440\u0442\u0435 \u0441 \u0440\u0430\u0437\u0432\u0438\u0442\u043E\u0439 \u0438\u043D\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u043E\u0439 \u0438 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u043C \u0441\u043E\u0431\u0441\u0442\u0432\u0435\u043D\u043D\u0443\u044E \u043F\u043E\u0434\u0437\u0435\u043C\u043D\u0443\u044E \u043F\u0430\u0440\u043A\u043E\u0432\u043A\u0443 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0443\u0434\u043E\u0431\u0441\u0442\u0432\u0430. \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Yd70eHjF2\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rcngrl\",\"data-styles-preset\":\"wLSpZSMfh\",children:\"\u0417\u0430\u0431\u0440\u043E\u043D\u0438\u0440\u0443\u0439\u0442\u0435 \u0438\u0434\u0435\u0430\u043B\u044C\u043D\u044B\u0439 \u043D\u043E\u043C\u0435\u0440 \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u043C\"})}),\" \u043D\u0430 \u043F\u043E\u0431\u0435\u0440\u0435\u0436\u044C\u0435 \u0427\u0435\u0440\u043D\u043E\u0433\u043E \u043C\u043E\u0440\u044F \u0443\u0436\u0435 \u0441\u0435\u0433\u043E\u0434\u043D\u044F!\"]})}),className:\"framer-161g7fy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SIB22xOzK\"},implicitPathVariables:undefined},{href:{webPageId:\"SIB22xOzK\"},implicitPathVariables:undefined},{href:{webPageId:\"SIB22xOzK\"},implicitPathVariables:undefined},{href:{webPageId:\"SIB22xOzK\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbw4ee-container\",nodeId:\"L12O5ZZmi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{PhjHhuR66:resolvedLinks7[3]},UFSIcBAOo:{PhjHhuR66:resolvedLinks7[2]},uI6TuZ1UR:{PhjHhuR66:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"L12O5ZZmi\",layoutId:\"L12O5ZZmi\",MQz7F6Pb7:\"\u041E \u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u0435\",PhjHhuR66:resolvedLinks7[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t74yod\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"\u041B\u043E\u0433\u043E\u0442\u0438\u043F \u043E\u0442\u0435\u043B\u044F \u041F\u0440\u0438\u0431\u043E\u0439\",fit:\"fill\",pixelHeight:1028,pixelWidth:1028,sizes:\"125px\",src:\"https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?lossless=1 1028w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\u041B\u043E\u0433\u043E\u0442\u0438\u043F \u043E\u0442\u0435\u043B\u044F \u041F\u0440\u0438\u0431\u043E\u0439\",fit:\"fill\",pixelHeight:1028,pixelWidth:1028,sizes:`min(${componentViewport?.width||\"100vw\"} / 4, 470px)`,src:\"https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JYSCGrCNEwrLzmD7wIO6T8Ys.png?lossless=1 1028w\"},className:\"framer-op596o\",\"data-framer-name\":\"Image 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"\u041E\u0442\u0435\u043B\u044C \u041F\u0440\u0438\u0431\u043E\u0439 4 \u0437\u0432\u0435\u0437\u0434\u044B\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 88px)`,src:\"https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg\",srcSet:\"https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\u041E\u0442\u0435\u043B\u044C \u041F\u0440\u0438\u0431\u043E\u0439 4 \u0437\u0432\u0435\u0437\u0434\u044B\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2 - 96px)`,src:\"https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg\",srcSet:\"https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/skQXgTmxaHamDInJsM54i4mTCQ.jpeg 1920w\"},className:\"framer-o4taxa\",\"data-framer-name\":\"Image 2\"})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-541gor\",\"data-framer-name\":\"Testimonial Big\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\u041E\u0431\u0437\u043E\u0440 \u043E\u0442\u0435\u043B\u044F \u041F\u0440\u0438\u0431\u043E\u0439 \u0441\u043E \u0441\u0432\u043E\u0438\u043C \u0431\u0430\u0441\u0441\u0435\u0439\u043D\u043E\u043C\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg\",srcSet:\"https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GaEv4pnktvqmHf6m8K24F9y6SA.jpeg 1920w\"},className:\"framer-j35srw\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vnam0m\",\"data-framer-name\":\"Gradient\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-drupbd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4wlpjz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jxjlm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vpZ26IHvH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"vpZ26IHvH\",layoutId:\"vpZ26IHvH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr6hc\",\"data-styles-preset\":\"tittoIAe8\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"\u0423\u0432\u0430\u0436\u0430\u0435\u043C\u044B\u0435 \u0433\u043E\u0441\u0442\u0438! \u042F \u0441 \u0431\u043E\u043B\u044C\u0448\u0438\u043C \u0443\u0434\u043E\u0432\u043E\u043B\u044C\u0441\u0442\u0432\u0438\u0435\u043C \u043F\u0440\u0438\u0433\u043B\u0430\u0448\u0430\u044E \u0432\u0430\u0441 \u043F\u0440\u043E\u0432\u0435\u0441\u0442\u0438 \u043D\u0435\u0437\u0430\u0431\u044B\u0432\u0430\u0435\u043C\u044B\u0439 \u043E\u0442\u0434\u044B\u0445 \u0432 \u043D\u0430\u0448\u0435\u043C \u043E\u0442\u0435\u043B\u0435. \u041C\u044B \u0433\u043E\u0440\u0434\u0438\u043C\u0441\u044F \u0438\u0434\u0435\u0430\u043B\u044C\u043D\u043E\u0439 \u0447\u0438\u0441\u0442\u043E\u0442\u043E\u0439 \u043D\u0430\u0448\u0438\u0445 \u043D\u043E\u043C\u0435\u0440\u043E\u0432 \u0438 \u0438\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u043E\u0439 \u043A\u0443\u0445\u043D\u0435\u0439, \u043A\u043E\u0442\u043E\u0440\u0443\u044E \u0441 \u043B\u044E\u0431\u043E\u0432\u044C\u044E \u0433\u043E\u0442\u043E\u0432\u044F\u0442 \u043D\u0430\u0448\u0438 \u0442\u0430\u043B\u0430\u043D\u0442\u043B\u0438\u0432\u044B\u0435 \u043F\u043E\u0432\u0430\u0440\u0430. \u041D\u0430\u0448 \u0432\u0435\u0436\u043B\u0438\u0432\u044B\u0439 \u0438 \u0437\u0430\u0431\u043E\u0442\u043B\u0438\u0432\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B \u0432\u0441\u0435\u0433\u0434\u0430 \u0440\u0430\u0434 \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u0432\u0430\u0448\u0435 \u043F\u0440\u0435\u0431\u044B\u0432\u0430\u043D\u0438\u0435 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043D\u044B\u043C. \u0423 \u043D\u0430\u0441 \u0432\u044B \u043F\u043E\u0447\u0443\u0432\u0441\u0442\u0432\u0443\u0435\u0442\u0435 \u0438\u0441\u0442\u0438\u043D\u043D\u043E\u0435 \u0433\u043E\u0441\u0442\u0435\u043F\u0440\u0438\u0438\u043C\u0441\u0442\u0432\u043E \u0438 \u0443\u044E\u0442, \u043A\u0430\u043A \u0434\u043E\u043C\u0430. \u0417\u0430\u0431\u0440\u043E\u043D\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043E\u0439 \u043D\u043E\u043C\u0435\u0440 \u043F\u0440\u044F\u043C\u043E \u0441\u0435\u0439\u0447\u0430\u0441 \u0438 \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C \u0432 \u043F\u0440\u0435\u0432\u043E\u0441\u0445\u043E\u0434\u0441\u0442\u0432\u0435 \u043D\u0430\u0448\u0435\u0433\u043E \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u0441\u0430\u043C\u0438!\"})}),className:\"framer-1904nej\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"-\u0422\u0430\u0432\u0430\u0434\u043E\u0432 \u042D\u0434\u0438\u043A \u0410\u0440\u0442\u0430\u0448\u043E\u0432\u0438\u0447\"})}),className:\"framer-rydcyp\",\"data-framer-name\":\"Owner\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qhy6pw\",\"data-framer-name\":\"Trustpilot\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://yandex.ru/maps/org/priboy/244585145973/reviews/?ll=39.340294%2C43.913165&tab=reviews&z=17.95\",motionChild:true,nodeId:\"Ja_xrFxAT\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"trustpilot logo\",fit:\"fill\",pixelHeight:936,pixelWidth:2625,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px)`,src:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png\",srcSet:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png 2625w\"}},UFSIcBAOo:{background:{alt:\"trustpilot logo\",fit:\"fill\",pixelHeight:936,pixelWidth:2625,sizes:\"292px\",src:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png\",srcSet:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png 2625w\"}},uI6TuZ1UR:{background:{alt:\"trustpilot logo\",fit:\"fill\",pixelHeight:936,pixelWidth:2625,sizes:\"337px\",src:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png\",srcSet:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png 2625w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"trustpilot logo\",fit:\"fill\",pixelHeight:936,pixelWidth:2625,sizes:\"324px\",src:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png\",srcSet:\"https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7IPCl1XQ9ZcMhM75VvJWJf3QM.png 2625w\"},className:\"framer-13vyozw framer-lux5qc\",\"data-framer-name\":\"Logo\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uI6TuZ1UR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://yandex.ru/maps/org/priboy/150446179571/reviews/?ll=39.326725%2C43.905583&z=17\",motionChild:true,nodeId:\"DgEwqR9ZY\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-irbsa6\",\"data-styles-preset\":\"A9rdXSvQ3\",children:\"\u0412\u0441\u0435 \u043E\u0442\u0437\u044B\u0432\u044B\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://yandex.ru/maps/org/priboy/150446179571/reviews/?ll=39.326725%2C43.905583&z=17\",motionChild:true,nodeId:\"DgEwqR9ZY\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-irbsa6\",\"data-styles-preset\":\"A9rdXSvQ3\",children:\"\u0412\u0441\u0435 \u043E\u0442\u0437\u044B\u0432\u044B\"})})})}),className:\"framer-10m7i70\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-k4r8sp\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0sjep\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ns8unp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:\"\u041D\u0430\u0448 \u043F\u043E\u043B\u0435\u0437\u043D\u044B\u0439 \u0431\u043B\u043E\u0433\"})}),className:\"framer-11kxfpw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-028774f7-a554-4ce8-9085-53144f340ae2, rgba(105, 105, 105, 0.86))\"},children:\"\u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u0435 \u2013 \u044D\u0442\u043E \u043C\u0435\u0441\u0442\u043E, \u0433\u0434\u0435 \u043C\u043E\u0436\u043D\u043E \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u0442\u044C \u043F\u0440\u0438\u044F\u0442\u043D\u044B\u0439 \u043E\u0442\u0434\u044B\u0445 \u0443 \u043C\u043E\u0440\u044F \u0441 \u043E\u0437\u0434\u043E\u0440\u043E\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u043C\u0438 \u043F\u0440\u043E\u0446\u0435\u0434\u0443\u0440\u0430\u043C\u0438 \u0438 \u043D\u0430\u0441\u044B\u0449\u0435\u043D\u043D\u043E\u0439 \u044D\u043A\u0441\u043A\u0443\u0440\u0441\u0438\u043E\u043D\u043D\u043E\u0439 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u043E\u0439. \u041F\u043B\u0430\u043D\u0438\u0440\u0443\u044F \u043F\u043E\u0435\u0437\u0434\u043A\u0443, \u0432\u0430\u0436\u043D\u043E \u0443\u0447\u0438\u0442\u044B\u0432\u0430\u0442\u044C \u0432\u0441\u0435 \u0434\u0435\u0442\u0430\u043B\u0438, \u0447\u0442\u043E\u0431\u044B \u043F\u0440\u043E\u0432\u0435\u0441\u0442\u0438 \u0432\u0440\u0435\u043C\u044F \u0441 \u043A\u043E\u043C\u0444\u043E\u0440\u0442\u043E\u043C \u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0439 \u0434\u043B\u044F \u0437\u0434\u043E\u0440\u043E\u0432\u044C\u044F.\"})}),className:\"framer-qfub72\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Jab5f9kim\"},implicitPathVariables:undefined},{href:{webPageId:\"Jab5f9kim\"},implicitPathVariables:undefined},{href:{webPageId:\"Jab5f9kim\"},implicitPathVariables:undefined},{href:{webPageId:\"Jab5f9kim\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u59ls5-container\",nodeId:\"p1RPSw4zp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{PhjHhuR66:resolvedLinks8[3]},UFSIcBAOo:{PhjHhuR66:resolvedLinks8[2]},uI6TuZ1UR:{PhjHhuR66:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"p1RPSw4zp\",layoutId:\"p1RPSw4zp\",MQz7F6Pb7:\"\u0427\u0438\u0442\u0430\u0442\u044C \u0441\u0442\u0430\u0442\u044C\u0438\",PhjHhuR66:resolvedLinks8[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-osw420\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n6jcuj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:6,query:{from:{alias:\"OWGouzN2Y\",data:UserComponent1,type:\"Collection\"},orderBy:[{collection:\"OWGouzN2Y\",direction:\"desc\",name:\"WZA1lF9kW\",type:\"Identifier\"}],select:[{collection:\"OWGouzN2Y\",name:\"dvuBR0Qdq\",type:\"Identifier\"},{collection:\"OWGouzN2Y\",name:\"ld28WkA6l\",type:\"Identifier\"},{collection:\"OWGouzN2Y\",name:\"WZA1lF9kW\",type:\"Identifier\"},{collection:\"OWGouzN2Y\",name:\"zYmfAHQYO\",type:\"Identifier\"},{collection:\"OWGouzN2Y\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"OWGouzN2Y\",name:\"id\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"OWGouzN2Y\",name:\"id\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({dvuBR0Qdq:dvuBR0QdqOWGouzN2Y,id:idOWGouzN2Y,ld28WkA6l:ld28WkA6lOWGouzN2Y,WZA1lF9kW:WZA1lF9kWOWGouzN2Y,zYmfAHQYO:zYmfAHQYOOWGouzN2Y},index1)=>{dvuBR0QdqOWGouzN2Y??=\"\";WZA1lF9kWOWGouzN2Y??=\"\";zYmfAHQYOOWGouzN2Y??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OWGouzN2Y-${idOWGouzN2Y}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dvuBR0Qdq:dvuBR0QdqOWGouzN2Y},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{dvuBR0Qdq:dvuBR0QdqOWGouzN2Y},webPageId:\"rnXJNEUzv\"},motionChild:true,nodeId:\"r9GrPfPoR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jw53hz framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45rx7x\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dzk21e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 320px)`,...toResponsiveImage(ld28WkA6lOWGouzN2Y)}},UFSIcBAOo:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 200px)`,...toResponsiveImage(ld28WkA6lOWGouzN2Y)}},uI6TuZ1UR:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 160px) / 2, 300px)`,...toResponsiveImage(ld28WkA6lOWGouzN2Y)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 192px) / 3, 300px)`,...toResponsiveImage(ld28WkA6lOWGouzN2Y)},className:\"framer-o27jhy\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xt36r8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-17bssob\",\"data-styles-preset\":\"FfbbwYOZg\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u041A\u0440\u0430\u0431\u043E\u0432\u043E\u0435 \u0443\u0449\u0435\u043B\u044C\u0435 \u2013 \u043F\u0440\u0438\u0440\u043E\u0434\u043D\u043E\u0435 \u0447\u0443\u0434\u043E \u0411\u043E\u043B\u044C\u0448\u043E\u0433\u043E \u0421\u043E\u0447\u0438, \u043C\u0430\u0440\u0448\u0440\u0443\u0442 \u0441\u0440\u0435\u0434\u0438 \u043F\u0440\u0438\u0440\u043E\u0434\u044B \u0438 \u043F\u0440\u0435\u0441\u043D\u043E\u0432\u043E\u0434\u043D\u044B\u0445 \u043A\u0440\u0430\u0431\u043E\u0432 \"})}),className:\"framer-5cn8op\",\"data-framer-name\":\"Title page\",fonts:[\"Inter\"],text:WZA1lF9kWOWGouzN2Y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u0423\u0437\u043D\u0430\u0439\u0442\u0435 \u0438\u0441\u0442\u043E\u0440\u0438\u044E \u041A\u0440\u0430\u0431\u043E\u0432\u043E\u0433\u043E \u0443\u0449\u0435\u043B\u044C\u044F \u0432 \u041B\u0430\u0437\u0430\u0440\u0435\u0432\u0441\u043A\u043E\u043C, \u043F\u043E\u0447\u0435\u043C\u0443 \u0437\u0434\u0435\u0441\u044C \u043E\u0431\u0438\u0442\u0430\u044E\u0442 \u043F\u0440\u0435\u0441\u043D\u043E\u0432\u043E\u0434\u043D\u044B\u0435 \u043A\u0440\u0430\u0431\u044B, \u043A\u0430\u043A\u0438\u0435 \u043F\u0440\u0438\u0440\u043E\u0434\u043D\u044B\u0435 \u0434\u043E\u0441\u0442\u043E\u043F\u0440\u0438\u043C\u0435\u0447\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438 \u043C\u043E\u0436\u043D\u043E \u0443\u0432\u0438\u0434\u0435\u0442\u044C \u0438 \u043A\u0430\u043A \u0434\u043E\u0431\u0440\u0430\u0442\u044C\u0441\u044F \u0434\u043E \u044D\u0442\u043E\u0433\u043E \u0443\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043C\u0435\u0441\u0442\u0430.\"})}),className:\"framer-oommxy\",\"data-framer-name\":\"Title page\",fonts:[\"Inter\"],text:zYmfAHQYOOWGouzN2Y,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})},idOWGouzN2Y);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 320px)`},UFSIcBAOo:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 200px)`},uI6TuZ1UR:{width:`max((${componentViewport?.width||\"100vw\"} - 160px) / 2, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max((${componentViewport?.width||\"100vw\"} - 192px) / 3, 300px)`,children:/*#__PURE__*/_jsx(ContainerWithInfiniteScroll,{__loadMore:loadMore1,__paginationInfo:paginationInfo1,className:\"framer-1ky9ay8-container\",isModuleExternal:true,nodeId:\"ibWraOYgn\",ref:dynamicRef(`${dvuBR0QdqOWGouzN2Y}-1ky9ay8`),scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spinner,{height:\"100%\",id:\"ibWraOYgn\",layoutId:\"ibWraOYgn\",variant:loaderVariants(paginationInfo1,{disabled:\"PX1MOnVXY\",loading:\"G47S15YSn\"},\"G47S15YSn\"),width:\"100%\"})})})})]})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-omt575\",\"data-framer-name\":\"Q&A\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6361yq\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0znnd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:\"\u0427\u0430\u0441\u0442\u043E \u0417\u0430\u0434\u0430\u0432\u0430\u0435\u043C\u044B\u0435 \u0412\u043E\u043F\u0440\u043E\u0441\u044B\"})}),className:\"framer-o5l104\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16oto2r\",\"data-framer-name\":\"Questions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxf5ky\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r40dyn-container\",nodeId:\"mF63D4Qox\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u0434\u0435\u043B\u0430\u0442\u044C \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u043D\u0430\u043F\u0440\u044F\u043C\u0443\u044E \u0447\u0435\u0440\u0435\u0437 \u043D\u0430\u0448 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0438\u043B\u0438 \u0441\u0432\u044F\u0437\u0430\u0432\u0448\u0438\u0441\u044C \u0441 \u043D\u0430\u0448\u0435\u0439 \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u0439 \u043F\u043E \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044E \u043F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443 \u0438\u043B\u0438 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u0435. \u041C\u044B \u0442\u0430\u043A\u0436\u0435 \u043F\u0440\u0438\u043D\u0438\u043C\u0430\u0435\u043C \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0447\u0435\u0440\u0435\u0437 \u0441\u0442\u043E\u0440\u043E\u043D\u043D\u0438\u0435 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F.\\n\\n+7 (988) 344-33-33\",height:\"100%\",id:\"mF63D4Qox\",layoutId:\"mF63D4Qox\",style:{width:\"100%\"},variant:\"E2PKHp_2l\",width:\"100%\",x2_Q5XkAe:\"\u041A\u0430\u043A \u044F \u043C\u043E\u0433\u0443 \u0437\u0430\u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043D\u043E\u043C\u0435\u0440 \u0432 \u0432\u0430\u0448\u0435\u043C \u043E\u0442\u0435\u043B\u0435?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qdv7e2-container\",nodeId:\"XgRxIFPi7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0423\u0441\u043B\u043E\u0432\u0438\u044F \u043E\u0442\u043C\u0435\u043D\u044B \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u043F\u0440\u0430\u0432\u0438\u043B\u0430\u043C\u0438 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0433\u043E\u0441\u0442\u0438\u043D\u0438\u0447\u043D\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u0430. \u041C\u044B \u0441\u043E\u0431\u043B\u044E\u0434\u0430\u0435\u043C \u0438\u043D\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u0439 \u043F\u043E\u0434\u0445\u043E\u0434 \u043A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043A\u043B\u0438\u0435\u043D\u0442\u0443, \u043F\u043E\u044D\u0442\u043E\u043C\u0443 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0442\u043C\u0435\u043D\u0443 \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0432\u0435\u0440\u0448\u0438\u0442\u044C \u043F\u0440\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0432 \u043B\u044E\u0431\u043E\u0439 \u043C\u043E\u043C\u0435\u043D\u0442 \u0432\u0440\u0435\u043C\u0435\u043D\u0438 (\u0434\u0430\u0436\u0435 \u0437\u0430 \u0441\u0443\u0442\u043A\u0438 \u0434\u043E \u043E\u0442\u044A\u0435\u0437\u0434\u0430), \u043D\u043E \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u0438 \u043E\u0442 \u0441\u0440\u043E\u043A\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u0438 \u0443\u0441\u043B\u043E\u0432\u0438\u0435 \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0430 \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u043F\u043E\u0441\u043B\u0435 \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F. \u0415\u0441\u043B\u0438 \u0432 \u0434\u0440\u0443\u0433\u0438\u0445 \u043E\u0442\u0435\u043B\u044F\u0445 \u0447\u0430\u0449\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u0440\u0435\u0434\u0443\u0441\u043C\u0430\u0442\u0440\u0438\u0432\u0430\u044E\u0442 \u0448\u0442\u0440\u0430\u0444\u043D\u044B\u0435 \u0441\u0430\u043D\u043A\u0446\u0438\u0438 \u0438 \u043D\u0435\u0443\u0441\u0442\u043E\u0439\u043A\u0443, \u0442\u043E \u0432 \u043D\u0430\u0448\u0435\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u0435 \u0432\u0441\u0435 \u043F\u0440\u043E\u0438\u0441\u0445\u043E\u0434\u0438\u0442 \u043F\u0440\u043E\u0437\u0440\u0430\u0447\u043D\u0435\u0435: https://priboy-spa.ru/otmena-bronirovaniya\",height:\"100%\",id:\"XgRxIFPi7\",layoutId:\"XgRxIFPi7\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u041A\u0430\u043A\u043E\u0432\u044B \u0432\u0430\u0448\u0438 \u043F\u0440\u0430\u0432\u0438\u043B\u0430 \u043E\u0442\u043C\u0435\u043D\u044B \u0431\u0440\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-piwj0k-container\",nodeId:\"a24JlQVnk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0412 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043F\u0440\u043E\u0436\u0438\u0432\u0430\u043D\u0438\u044F \u0432\u0445\u043E\u0434\u044F\u0442 \u0437\u0430\u0432\u0442\u0440\u0430\u043A\u0438, \u043E\u0431\u0435\u0434\u044B, \u0443\u0436\u0438\u043D\u044B (\u0448\u0432\u0435\u0434\u0441\u043A\u0438\u0439 \u0441\u0442\u043E\u043B), \u0431\u0430\u0441\u0441\u0435\u0439\u043D \u0432\u0437\u0440\u043E\u0441\u043B\u044B\u0439 \u0438 \u0434\u0432\u0430 \u0434\u0435\u0442\u0441\u043A\u0438\u0445, \u043C\u0438\u043D\u0438 \u0430\u043A\u0432\u0430\u043F\u0430\u0440\u043A, \u043B\u0435\u0436\u0430\u043A\u0438 \u0438 \u043F\u043E\u043B\u043E\u0442\u0435\u043D\u0446\u0430 \u0443 \u0431\u0430\u0441\u0441\u0435\u0439\u043D\u0430 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u0431\u0435\u0441\u043F\u043B\u0430\u0442\u043D\u043E, \u0430 \u0442\u0430\u043A\u0436\u0435 \u043B\u0435\u0436\u0430\u043A\u0438 \u043D\u0430 \u043D\u0430\u0431\u0435\u0440\u0435\u0436\u043D\u043E\u0439 (\u043F\u043E\u043B\u043E\u0442\u0435\u043D\u0446\u0430 \u043D\u0430 \u043F\u043B\u044F\u0436 \u043D\u0435 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u044E\u0442\u0441\u044F). \u0422\u0440\u0430\u043D\u0441\u0444\u0435\u0440 \u0434\u043E \u043D\u0430\u0431\u0435\u0440\u0435\u0436\u043D\u043E\u0439 \u0438 \u043E\u0431\u0440\u0430\u0442\u043D\u043E, \u043E\u0434\u043D\u043E \u043F\u0430\u0440\u043A\u043E\u0432\u043E\u0447\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u043D\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438 \u043E\u0442\u0435\u043B\u044F \u043D\u0430\u0448\u0438\u043C \u0433\u043E\u0441\u0442\u044F\u043C \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u0441\u043F\u043B\u0430\u0442\u043D\u043E. \u0422\u0430\u043A \u0436\u0435 \u0434\u0435\u0442\u0441\u043A\u0430\u044F \u0438 \u0432\u0437\u0440\u043E\u0441\u043B\u0430\u044F \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u0438, \u043A\u0430\u0436\u0434\u044B\u0439 \u0432\u0435\u0447\u0435\u0440 \u0448\u043E\u0443-\u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u044B \u0443 \u0442\u0435\u0440\u0440\u0430\u0441\u044B, \u0434\u0435\u0442\u0441\u043A\u0430\u044F \u0438\u0433\u0440\u043E\u0432\u0430\u044F \u043A\u043E\u043C\u043D\u0430\u0442\u0430 \u043D\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438 \u043B\u0435\u0442\u043D\u0435\u0439 \u0442\u0435\u0440\u0440\u0430\u0441\u044B, \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u044B \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C. \u041D\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438 \u043E\u0442\u0435\u043B\u044F \u0435\u0441\u0442\u044C \u0441\u043F\u0430-\u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441 (\u0431\u043E\u043B\u044C\u0448\u043E\u0439 \u043A\u0440\u044B\u0442\u044B\u0439 \u0431\u0430\u0441\u0441\u0435\u0439\u043D \u0441 \u043F\u043E\u0434\u043E\u0433\u0440\u0435\u0432\u043E\u043C, 5 \u0432\u0438\u0434\u043E\u0432 \u043F\u0430\u0440\u043D\u044B\u0445: \u0440\u0443\u0441\u0441\u043A\u0430\u044F \u0431\u0430\u043D\u044F, \u0444\u0438\u043D\u0441\u043A\u0430\u044F \u043F\u0430\u0440\u043D\u0430\u044F, \u0445\u0430\u043C\u0430\u043C, \u0441\u043E\u043B\u044F\u043D\u0430\u044F \u043A\u043E\u043C\u043D\u0430\u0442\u0430 \u0438 \u0430\u0440\u043E\u043C\u0430-\u0441\u0430\u0443\u043D\u0430, \u0437\u043E\u043D\u0430 \u043E\u0442\u0434\u044B\u0445\u0430 \u0441 \u043B\u0435\u0436\u0430\u043A\u0430\u043C\u0438 \u0438 \u0441\u0442\u043E\u043B\u0438\u043A\u0430\u043C\u0438 \u0438 \u0430\u0440\u043E\u043C\u0430\u0442\u043D\u044B\u0435 \u0447\u0430\u0438) \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0442\u0430\u043A\u0436\u0435 \u0432\u0445\u043E\u0434\u0438\u0442 \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043F\u0440\u043E\u0436\u0438\u0432\u0430\u043D\u0438\u044F.\",height:\"100%\",id:\"a24JlQVnk\",layoutId:\"a24JlQVnk\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u0427\u0442\u043E \u0432\u0445\u043E\u0434\u0438\u0442 \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u043D\u044B\u0439 \u043F\u0430\u043D\u0441\u0438\u043E\u043D?\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wghl\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ixjdkg-container\",nodeId:\"R09PHYsNC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0412 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043F\u0440\u043E\u0436\u0438\u0432\u0430\u043D\u0438\u044F \u0432\u0445\u043E\u0434\u044F\u0442 \u0437\u0430\u0432\u0442\u0440\u0430\u043A\u0438 (\u0448\u0432\u0435\u0434\u0441\u043A\u0438\u0439 \u0441\u0442\u043E\u043B), \u0431\u0430\u0441\u0441\u0435\u0439\u043D \u0432\u0437\u0440\u043E\u0441\u043B\u044B\u0439 \u0438 \u0434\u0432\u0430 \u0434\u0435\u0442\u0441\u043A\u0438\u0445, \u043C\u0438\u043D\u0438 \u0430\u043A\u0432\u0430\u043F\u0430\u0440\u043A, \u043B\u0435\u0436\u0430\u043A\u0438 \u0438 \u043F\u043E\u043B\u043E\u0442\u0435\u043D\u0446\u0430 \u0443 \u0431\u0430\u0441\u0441\u0435\u0439\u043D\u0430 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u0431\u0435\u0441\u043F\u043B\u0430\u0442\u043D\u043E, \u0430 \u0442\u0430\u043A\u0436\u0435 \u043B\u0435\u0436\u0430\u043A\u0438 \u043D\u0430 \u043D\u0430\u0431\u0435\u0440\u0435\u0436\u043D\u043E\u0439 (\u043F\u043E\u043B\u043E\u0442\u0435\u043D\u0446\u0430 \u043D\u0430 \u043F\u043B\u044F\u0436 \u043D\u0435 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u044E\u0442\u0441\u044F). \u0422\u0440\u0430\u043D\u0441\u0444\u0435\u0440 \u0434\u043E \u043D\u0430\u0431\u0435\u0440\u0435\u0436\u043D\u043E\u0439 \u0438 \u043E\u0431\u0440\u0430\u0442\u043D\u043E, \u043E\u0434\u043D\u043E \u043F\u0430\u0440\u043A\u043E\u0432\u043E\u0447\u043D\u043E\u0435 \u043C\u0435\u0441\u0442\u043E \u043D\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438 \u043E\u0442\u0435\u043B\u044F \u043D\u0430\u0448\u0438\u043C \u0433\u043E\u0441\u0442\u044F\u043C \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u0441\u043F\u043B\u0430\u0442\u043D\u043E. \u0422\u0430\u043A \u0436\u0435 \u0434\u0435\u0442\u0441\u043A\u0430\u044F \u0438 \u0432\u0437\u0440\u043E\u0441\u043B\u0430\u044F \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u0438, \u043A\u0430\u0436\u0434\u044B\u0439 \u0432\u0435\u0447\u0435\u0440 \u0448\u043E\u0443-\u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u044B \u0443 \u0442\u0435\u0440\u0440\u0430\u0441\u044B, \u0434\u0435\u0442\u0441\u043A\u0430\u044F \u0438\u0433\u0440\u043E\u0432\u0430\u044F \u043A\u043E\u043C\u043D\u0430\u0442\u0430 \u043D\u0430 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438 \u043B\u0435\u0442\u043D\u0435\u0439 \u0442\u0435\u0440\u0440\u0430\u0441\u044B, \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u044B \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C. \",height:\"100%\",id:\"R09PHYsNC\",layoutId:\"R09PHYsNC\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u0427\u0442\u043E \u0432\u0445\u043E\u0434\u0438\u0442 \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u2013 \u0442\u043E\u043B\u044C\u043A\u043E \u0437\u0430\u0432\u0442\u0440\u0430\u043A\u0438?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lb5s3f-container\",nodeId:\"DBTQ4_jpx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u041C\u044B \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u043C \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u0435 \u0442\u0438\u043F\u044B \u043D\u043E\u043C\u0435\u0440\u043E\u0432, \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u043C \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0442\u0435\u043D\u0438\u044F\u043C \u0438 \u0440\u0430\u0437\u043C\u0435\u0440\u0430\u043C \u0433\u0440\u0443\u043F\u043F, \u0432\u043A\u043B\u044E\u0447\u0430\u044F \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0435 \u043D\u043E\u043C\u0435\u0440\u0430, deluxe \u0438 \u043D\u043E\u043C\u0435\u0440\u0430 \u043A\u043B\u0430\u0441\u0441\u0430 \u043B\u044E\u043A\u0441.\",height:\"100%\",id:\"DBTQ4_jpx\",layoutId:\"DBTQ4_jpx\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u041A\u0430\u043A\u0438\u0435 \u0442\u0438\u043F\u044B \u043D\u043E\u043C\u0435\u0440\u043E\u0432 \u0432\u044B \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u0442\u0435?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yocz2p-container\",nodeId:\"L3byglfjx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0414\u0430, \u043C\u044B \u043F\u043E \u043F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0434\u043E\u0433\u043E\u0432\u043E\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u043C\u043E\u0436\u0435\u043C \u0432\u0430\u043C \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0442\u0440\u0430\u043D\u0441\u0444\u0435\u0440 \u0437\u0430 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u0443\u044E \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C, \u043F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u043E \u043F\u043E\u0437\u0432\u043E\u043D\u0438\u0442\u0435 \u043F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443 +7 (988) 344-33-33\",height:\"100%\",id:\"L3byglfjx\",layoutId:\"L3byglfjx\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u0412\u044B \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u0435\u0442 \u0442\u0440\u0430\u043D\u0441\u0444\u0435\u0440 \u043E\u0442 \u0430\u044D\u0440\u043E\u043F\u043E\u0440\u0442\u0430 \u0438\u0437 \u0410\u0434\u043B\u0435\u0440\u0430?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 1px)`},UFSIcBAOo:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gnfir7-container\",nodeId:\"pD20zktSn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gweFQuELC:\"\u0421\u041F\u0410 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442 \u043A\u0430\u0436\u0434\u044B\u0439 \u0434\u0435\u043D\u044C \u043A\u0440\u043E\u043C\u0435 \u043F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A\u0430 \u044D\u0442\u043E \u0441\u0430\u043D\u0438\u0442\u0430\u0440\u043D\u044B\u0439 \u0434\u0435\u043D\u044C, \\n\\n\u0441 17:00 \u0434\u043E 20:00 \u0432\u0435\u0447\u0435\u0440\u0430 \u2013 2100 \u0441 \u0447\u0435\u043B\u043E\u0432\u0435\u043A\u0430, \u0437\u0430 3 \u0447\u0430\u0441\u0430 1500, \u0437\u0430 2 \u0447\u0430\u0441\u0430. (\u0422\u0443\u0434\u0430 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u0430 \u043F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u0430\u044F \u0437\u0430\u043F\u0438\u0441\u044C)\\n\u0423 \u0432\u0441\u0435\u0445 \u043F\u0440\u043E\u0436\u0438\u0432\u0430\u044E\u0449\u0438\u0445 SPA \u0432\u0445\u043E\u0434\u0438\u0442 \u0432 \u0441\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u043D\u043E\u043C\u0435\u0440\u0430\",height:\"100%\",id:\"pD20zktSn\",layoutId:\"pD20zktSn\",style:{width:\"100%\"},variant:\"GNe6SLWcd\",width:\"100%\",x2_Q5XkAe:\"\u0412\u043E\u043F\u0440\u043E\u0441\u044B \u0441\u043E \u0421\u041F\u0410\"})})})})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1772,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjmhdg-container\",nodeId:\"AMmko0hPq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{variant:\"Nt2Lvbd6G\"},UFSIcBAOo:{variant:\"CZ193xi0M\"},uI6TuZ1UR:{variant:\"C0G1BKFsz\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AMmko0hPq\",layoutId:\"AMmko0hPq\",style:{width:\"100%\"},variant:\"X_uO4IEYG\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2ojdF.framer-lux5qc, .framer-2ojdF .framer-lux5qc { display: block; }\",\".framer-2ojdF.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1560px; }\",\".framer-2ojdF .framer-1r2x4lh-container { bottom: 64px; flex: none; height: 64px; left: 64px; position: fixed; width: 64px; z-index: 10; }\",\".framer-2ojdF .framer-pnc1uf-container, .framer-2ojdF .framer-kliotj-container, .framer-2ojdF .framer-8l1033-container, .framer-2ojdF .framer-1ujvhsz-container, .framer-2ojdF .framer-xk6x2v-container, .framer-2ojdF .framer-u8lgve-container, .framer-2ojdF .framer-1b26ved-container, .framer-2ojdF .framer-6qbtym-container, .framer-2ojdF .framer-1qbw4ee-container, .framer-2ojdF .framer-1u59ls5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2ojdF .framer-9i1qns-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-2ojdF .framer-1c2xfq1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 64px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-2ojdF .framer-48702u { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2ojdF .framer-j58qap-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2ojdF .framer-jvq64g { background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.21) 45%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2ojdF .framer-bow1fw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-2ojdF .framer-773oe9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-o2v27o { flex: 1 0 0px; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-mizucj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1yyd6s9 { background-color: var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, #ffffff); flex: none; height: 1px; opacity: 0.7; overflow: hidden; position: relative; width: 100%; }\",\".framer-2ojdF .framer-dbtuql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-780s7t { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-1mj3vel { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-m62g2e { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #faf2e6); 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%; z-index: 2; }\",\".framer-2ojdF .framer-jx0221 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-aw0pws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-uhiquf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 90vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-2ojdF .framer-vk2h7z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1o1wchv, .framer-2ojdF .framer-143j5pm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-7mjn8 { flex: none; height: 603px; left: calc(50.00000000000002% - 900px / 2); overflow: visible; pointer-events: none; position: absolute; top: calc(47.00748129675812% - 603px / 2); width: 900px; z-index: 1; }\",\".framer-2ojdF .framer-1w9tgpx, .framer-2ojdF .framer-1xwc0xn, .framer-2ojdF .framer-jyvf87, .framer-2ojdF .framer-155qxdi, .framer-2ojdF .framer-ug1bsa, .framer-2ojdF .framer-19wosc, .framer-2ojdF .framer-1s6dzbm, .framer-2ojdF .framer-1elf8id { border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; flex: none; height: 490px; left: calc(51.7777777777778% - 710px / 2); overflow: visible; position: absolute; top: calc(50.58043117744613% - 490px / 2); width: 710px; }\",\".framer-2ojdF .framer-1b4tcg2 { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #f8f4ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1oynz84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-11738m5-container, .framer-2ojdF .framer-alsbmp-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2ojdF .framer-1f943am { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2ojdF .framer-1xz96ww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 50%; z-index: 1; }\",\".framer-2ojdF .framer-19p3w75 { flex: 1 0 0px; gap: 10px; height: 518px; max-width: 820px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-1hnojyn { 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: hidden; padding: 0px 0px 0px 32px; position: relative; width: 1px; z-index: 1; }\",\".framer-2ojdF .framer-9c5elz { flex: none; height: 518px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1wuugdk { background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); bottom: 0px; flex: none; height: 50%; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-2ojdF .framer-ijomyy { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-c4yin8 { 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 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1jm743c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-f7ifg3 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-1e8pbie { align-content: flex-end; align-items: flex-end; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1g926uk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1640px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2ojdF .framer-dlch0q { display: grid; flex: 1 0 0px; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-apehq6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1nb2u63-container { flex: 1 0 0px; height: 640px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-dhld06-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-2ojdF .framer-14v2hg7 { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1fkp8kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-16mk285 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-qmmonf, .framer-2ojdF .framer-12x021l, .framer-2ojdF .framer-1eaukew, .framer-2ojdF .framer-161g7fy, .framer-2ojdF .framer-11kxfpw, .framer-2ojdF .framer-qfub72, .framer-2ojdF .framer-o5l104 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-1sz3wdw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-1osv41n-container { flex: none; height: 680px; max-width: 1640px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-bix1gd, .framer-2ojdF .framer-1iiz9uv, .framer-2ojdF .framer-1gjdrse, .framer-2ojdF .framer-17qzexu, .framer-2ojdF .framer-kk7x17 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 620px; justify-content: flex-end; overflow: visible; padding: 32px; position: relative; text-decoration: none; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2ojdF .framer-218e4h, .framer-2ojdF .framer-rmga0w, .framer-2ojdF .framer-vggst6, .framer-2ojdF .framer-1mfx3nr, .framer-2ojdF .framer-142l860 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2ojdF .framer-1np5w0g-container, .framer-2ojdF .framer-1xsy0do-container, .framer-2ojdF .framer-s8l50t-container, .framer-2ojdF .framer-1h9icw1-container, .framer-2ojdF .framer-1ukmbt0-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-2ojdF .framer-dxi4k0, .framer-2ojdF .framer-1wm7dv2, .framer-2ojdF .framer-t4l9ok, .framer-2ojdF .framer-jdvj2p, .framer-2ojdF .framer-cbx02x { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2ojdF .framer-1o2tm3k, .framer-2ojdF .framer-s0fx8z, .framer-2ojdF .framer-h9w5x4, .framer-2ojdF .framer-9uia1d, .framer-2ojdF .framer-jxr78q { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.67) 100%); bottom: 0px; flex: none; gap: 10px; height: 148px; left: calc(50.00000000000002% - min(820px, 100%) / 2); max-width: 820px; position: absolute; width: 100%; z-index: 0; }\",\".framer-2ojdF .framer-13osqwe { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #f8f4ec); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-rjbge3 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 64px; position: relative; width: 50%; }\",\".framer-2ojdF .framer-1yt5gx6, .framer-2ojdF .framer-1ns8unp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 820px; overflow: hidden; padding: 0px 32px 0px 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-t74yod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 809px; justify-content: flex-start; max-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-2ojdF .framer-op596o { aspect-ratio: 0.8623853211009175 / 1; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 10px 15px 22px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 452px); max-width: 470px; position: relative; width: 50%; z-index: 2; }\",\".framer-2ojdF .framer-o4taxa { bottom: 0px; flex: none; left: 96px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-2ojdF .framer-541gor { align-content: flex-end; align-items: flex-end; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 104.66101694915255vh; justify-content: center; overflow: hidden; padding: 0px 64px 140px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-j35srw { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-2ojdF .framer-vnam0m { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2ojdF .framer-drupbd { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-2ojdF .framer-4wlpjz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-12jxjlm-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-2ojdF .framer-1904nej, .framer-2ojdF .framer-rydcyp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-qhy6pw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2ojdF .framer-13vyozw { aspect-ratio: 2.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 151px); position: relative; text-decoration: none; width: 324px; }\",\".framer-2ojdF .framer-10m7i70 { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-k4r8sp { align-content: flex-start; align-items: flex-start; background-color: var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1n0sjep { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 64px; position: relative; width: 50%; }\",\".framer-2ojdF .framer-osw420 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 64px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-n6jcuj { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(300px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-jw53hz { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-2ojdF .framer-45rx7x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 22px 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-dzk21e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-o27jhy { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 297px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1xt36r8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-5cn8op, .framer-2ojdF .framer-oommxy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2ojdF .framer-1ky9ay8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-2ojdF .framer-omt575 { align-content: flex-start; align-items: flex-start; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-6361yq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1640px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-c0znnd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-16oto2r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2ojdF .framer-1rxf5ky, .framer-2ojdF .framer-15wghl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2ojdF .framer-r40dyn-container, .framer-2ojdF .framer-qdv7e2-container, .framer-2ojdF .framer-piwj0k-container, .framer-2ojdF .framer-1ixjdkg-container, .framer-2ojdF .framer-lb5s3f-container, .framer-2ojdF .framer-yocz2p-container, .framer-2ojdF .framer-gnfir7-container, .framer-2ojdF .framer-1xjmhdg-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 1200px) and (max-width: 1559px) { .framer-2ojdF.framer-72rtr7 { width: 1200px; } .framer-2ojdF .framer-1mj3vel { gap: 23px; } .framer-2ojdF .framer-1ujvhsz-container { order: 0; } .framer-2ojdF .framer-xk6x2v-container { order: 1; } .framer-2ojdF .framer-1nb2u63-container { height: 520px; } .framer-2ojdF .framer-1fkp8kb { gap: 32px; justify-content: flex-start; } .framer-2ojdF .framer-1osv41n-container { height: 540px; } .framer-2ojdF .framer-t74yod { height: 600px; } .framer-2ojdF .framer-op596o { height: var(--framer-aspect-ratio-supported, 348px); } .framer-2ojdF .framer-541gor { height: 75.21186440677965vh; } .framer-2ojdF .framer-13vyozw { height: var(--framer-aspect-ratio-supported, 157px); width: 337px; } .framer-2ojdF .framer-10m7i70 { align-self: unset; white-space: pre; } .framer-2ojdF .framer-n6jcuj { grid-template-columns: repeat(2, minmax(300px, 1fr)); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-2ojdF.framer-72rtr7 { width: 810px; } .framer-2ojdF .framer-1c2xfq1 { padding: 40px; } .framer-2ojdF .framer-dbtuql, .framer-2ojdF .framer-1fkp8kb { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-2ojdF .framer-780s7t, .framer-2ojdF .framer-16mk285, .framer-2ojdF .framer-1sz3wdw, .framer-2ojdF .framer-4wlpjz, .framer-2ojdF .framer-1rxf5ky, .framer-2ojdF .framer-15wghl { flex: none; width: 100%; } .framer-2ojdF .framer-1mj3vel { align-content: flex-start; align-items: flex-start; flex: none; justify-content: flex-start; width: 100%; } .framer-2ojdF .framer-1ujvhsz-container { order: 1; } .framer-2ojdF .framer-xk6x2v-container { order: 0; } .framer-2ojdF .framer-7mjn8 { height: 389px; left: calc(50.00000000000002% - 580px / 2); top: calc(46.95290858725764% - 389px / 2); width: 580px; } .framer-2ojdF .framer-1w9tgpx, .framer-2ojdF .framer-1xwc0xn, .framer-2ojdF .framer-jyvf87, .framer-2ojdF .framer-155qxdi, .framer-2ojdF .framer-ug1bsa, .framer-2ojdF .framer-19wosc, .framer-2ojdF .framer-1s6dzbm, .framer-2ojdF .framer-1elf8id { bottom: -36px; height: unset; left: -31px; right: -52px; top: -32px; width: unset; } .framer-2ojdF .framer-c4yin8, .framer-2ojdF .framer-1e8pbie { padding: 0px 40px 0px 40px; } .framer-2ojdF .framer-1g926uk, .framer-2ojdF .framer-16oto2r { flex-direction: column; } .framer-2ojdF .framer-dlch0q { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-2ojdF .framer-1nb2u63-container { height: 400px; } .framer-2ojdF .framer-14v2hg7 { padding: 160px 40px 160px 40px; } .framer-2ojdF .framer-rjbge3 { padding: 0px 0px 0px 40px; } .framer-2ojdF .framer-t74yod { height: 600px; } .framer-2ojdF .framer-op596o { aspect-ratio: 0.6766666666666666 / 1; height: var(--framer-aspect-ratio-supported, 299px); } .framer-2ojdF .framer-541gor { height: 77.12962962962962vh; padding: 0px 40px 96px 40px; } .framer-2ojdF .framer-drupbd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; justify-content: flex-start; } .framer-2ojdF .framer-qhy6pw { height: 168px; width: 292px; } .framer-2ojdF .framer-13vyozw { aspect-ratio: unset; flex: 1 0 0px; height: 1px; width: 100%; } .framer-2ojdF .framer-10m7i70 { align-self: unset; width: 100%; } .framer-2ojdF .framer-1n0sjep { align-content: center; align-items: center; justify-content: flex-start; padding: 0px 40px 0px 40px; width: 100%; } .framer-2ojdF .framer-osw420 { justify-content: flex-start; padding: 40px 40px 0px 40px; } .framer-2ojdF .framer-n6jcuj { gap: 24px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-2ojdF .framer-45rx7x { gap: 15px; } .framer-2ojdF .framer-o27jhy { height: 456px; } .framer-2ojdF .framer-omt575 { padding: 109px 40px 109px 40px; }}\",\"@media (max-width: 809px) { .framer-2ojdF.framer-72rtr7 { width: 390px; } .framer-2ojdF .framer-1r2x4lh-container { bottom: 16px; left: 16px; } .framer-2ojdF .framer-1c2xfq1 { height: 70vh; padding: 40px 24px 40px 24px; } .framer-2ojdF .framer-jvq64g { background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 14.000000000000002%, rgba(0, 0, 0, 0.56) 31%, rgba(0, 0, 0, 0.78) 42%, rgb(0, 0, 0) 100%); } .framer-2ojdF .framer-bow1fw, .framer-2ojdF .framer-mizucj { gap: 32px; } .framer-2ojdF .framer-773oe9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-2ojdF .framer-o2v27o { flex: none; max-width: unset; order: 1; width: 100%; } .framer-2ojdF .framer-dbtuql { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-2ojdF .framer-780s7t, .framer-2ojdF .framer-11738m5-container, .framer-2ojdF .framer-alsbmp-container, .framer-2ojdF .framer-16mk285, .framer-2ojdF .framer-1sz3wdw, .framer-2ojdF .framer-4wlpjz, .framer-2ojdF .framer-1rxf5ky, .framer-2ojdF .framer-15wghl { flex: none; width: 100%; } .framer-2ojdF .framer-1mj3vel { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; justify-content: flex-start; width: 100%; } .framer-2ojdF .framer-1ujvhsz-container { order: 1; width: 100%; } .framer-2ojdF .framer-jx0221 { padding: 96px 24px 40px 24px; } .framer-2ojdF .framer-uhiquf { height: min-content; } .framer-2ojdF .framer-vk2h7z { align-content: flex-start; align-items: flex-start; justify-content: flex-start; max-width: unset; } .framer-2ojdF .framer-143j5pm { max-width: unset; } .framer-2ojdF .framer-1b4tcg2, .framer-2ojdF .framer-c0znnd { gap: 64px; } .framer-2ojdF .framer-1oynz84, .framer-2ojdF .framer-1f943am, .framer-2ojdF .framer-1g926uk, .framer-2ojdF .framer-16oto2r { flex-direction: column; } .framer-2ojdF .framer-1xz96ww { gap: 0px; justify-content: center; width: 100%; } .framer-2ojdF .framer-19p3w75, .framer-2ojdF .framer-9c5elz { height: 264px; } .framer-2ojdF .framer-1hnojyn { flex: none; padding: 0px; width: 100%; } .framer-2ojdF .framer-1wuugdk { height: 200px; } .framer-2ojdF .framer-ijomyy { gap: 64px; padding: 96px 0px 40px 0px; } .framer-2ojdF .framer-c4yin8, .framer-2ojdF .framer-1e8pbie { padding: 0px 24px 0px 24px; } .framer-2ojdF .framer-dlch0q { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-2ojdF .framer-1nb2u63-container { height: 343px; } .framer-2ojdF .framer-14v2hg7 { gap: 64px; padding: 96px 24px 96px 24px; } .framer-2ojdF .framer-1fkp8kb { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-2ojdF .framer-1osv41n-container { height: 612px; } .framer-2ojdF .framer-13osqwe { flex-direction: column; gap: 40px; padding: 96px 0px 96px 0px; } .framer-2ojdF .framer-rjbge3 { align-self: unset; height: min-content; order: 1; padding: 0px 24px 0px 24px; width: 100%; } .framer-2ojdF .framer-1yt5gx6 { padding: 0px; } .framer-2ojdF .framer-t74yod { height: 337px; order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-2ojdF .framer-op596o { aspect-ratio: unset; height: 131px; width: 125px; } .framer-2ojdF .framer-o4taxa { left: 64px; right: 24px; } .framer-2ojdF .framer-541gor { height: 120vh; padding: 0px 24px 64px 24px; } .framer-2ojdF .framer-drupbd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-2ojdF .framer-qhy6pw { width: 100%; } .framer-2ojdF .framer-13vyozw { aspect-ratio: unset; height: 127px; width: 100%; } .framer-2ojdF .framer-10m7i70 { align-self: unset; width: 100%; } .framer-2ojdF .framer-k4r8sp { gap: 40px; padding: 96px 0px 96px 0px; } .framer-2ojdF .framer-1n0sjep { max-width: unset; order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-2ojdF .framer-1ns8unp { max-width: unset; padding: 0px; } .framer-2ojdF .framer-osw420 { justify-content: flex-start; order: 1; padding: 64px 24px 0px 24px; } .framer-2ojdF .framer-n6jcuj { grid-template-columns: repeat(1, minmax(320px, 1fr)); } .framer-2ojdF .framer-45rx7x { gap: 20px; } .framer-2ojdF .framer-o27jhy { height: 238px; } .framer-2ojdF .framer-omt575 { padding: 96px 24px 96px 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11619\n * @framerIntrinsicWidth 1560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uI6TuZ1UR\":{\"layout\":[\"fixed\",\"auto\"]},\"UFSIcBAOo\":{\"layout\":[\"fixed\",\"auto\"]},\"kZ6fwR6Vk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vkxZc50A0\":{\"pattern\":\":vkxZc50A0\",\"name\":\"body\"},\"S48s0AycK\":{\"pattern\":\":S48s0AycK\",\"name\":\"intro\"},\"lDVJy3kgu\":{\"pattern\":\":lDVJy3kgu\",\"name\":\"text\"},\"vdmAf9Lp1\":{\"pattern\":\":vdmAf9Lp1\",\"name\":\"images\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2ojdF\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11619,width:1560};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ContactFonts,...SmoothScrollFonts,...NavFonts,...VideoFonts,...ButtonHeroFonts,...PhoneFonts,...ButtonWithIconFonts,...Button2Fonts,...ButtonFonts,...RoomCardFonts,...PhosphorFonts,...TickerFonts,...SpinnerFonts,...AccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1560\",\"framerScrollSections\":\"{\\\"vkxZc50A0\\\":{\\\"pattern\\\":\\\":vkxZc50A0\\\",\\\"name\\\":\\\"body\\\"},\\\"S48s0AycK\\\":{\\\"pattern\\\":\\\":S48s0AycK\\\",\\\"name\\\":\\\"intro\\\"},\\\"lDVJy3kgu\\\":{\\\"pattern\\\":\\\":lDVJy3kgu\\\",\\\"name\\\":\\\"text\\\"},\\\"vdmAf9Lp1\\\":{\\\"pattern\\\":\\\":vdmAf9Lp1\\\",\\\"name\\\":\\\"images\\\"}}\",\"framerIntrinsicHeight\":\"11619\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uI6TuZ1UR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UFSIcBAOo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kZ6fwR6Vk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "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", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "MotionDivWithFX", "css", "FramerO_XoZ3FcZ", "withCSS", "O_XoZ3FcZ_default", "addPropertyControls", "ControlType", "addFonts", "clamp", "t", "i", "e", "Animate", "s", "o", "n", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinks", "handleClick", "e", "href", "a", "p", "l", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "u", "SVG", "RichText", "css", "FramertUDSLfHGW", "withCSS", "tUDSLfHGW_default", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uRy04MQBi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1xe5h7n", "args", "onMouseLeavekr7e26", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "css", "FramerV58UbAvyH", "withCSS", "V58UbAvyH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ContactFonts", "getFonts", "FWWBUKNtC_default", "SmoothScrollFonts", "SmoothScroll", "NavFonts", "ieuy8fRE2_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "ButtonHeroFonts", "tFZa52ygl_default", "MotionDivWithFX", "motion", "PhoneFonts", "tUDSLfHGW_default", "ButtonWithIconFonts", "UBX3bnWf0_default", "Button2Fonts", "V58UbAvyH_default", "ImageWithFX", "Image2", "ButtonFonts", "iqKpwvLsS_default", "RoomCardFonts", "Mk0oz1D4m_default", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "MotionSectionWithFX", "SpinnerFonts", "O_XoZ3FcZ_default", "ContainerWithInfiniteScroll", "withInfiniteScroll", "AccordionFonts", "xkgf3NWgk_default", "FooterFonts", "GgdFUtGAF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "animation6", "transition3", "animation7", "animation8", "animation9", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition4", "animation10", "animation11", "animation12", "transition5", "animation13", "animation14", "animation15", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData1", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "HTMLStyle", "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", "TaWV0ODwBFzvHHs92g", "IMNmiivHpFzvHHs92g", "IoIiY6vC_FzvHHs92g", "PuYurhAXKFzvHHs92g", "RLliPhS6YFzvHHs92g", "uRzhvgJIgFzvHHs92g", "gAE7A_noyFzvHHs92g", "u7yFNJuQaFzvHHs92g", "idFzvHHs92g", "dvuBR0QdqOWGouzN2Y", "ld28WkA6lOWGouzN2Y", "WZA1lF9kWOWGouzN2Y", "zYmfAHQYOOWGouzN2Y", "idOWGouzN2Y", "restProps", "metadata", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed1", "elementId3", "ref4", "dynamicRef", "useDynamicRefs", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "Q66w_5ghx_default", "collection", "l", "index", "PathVariablesContext", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "xU96LNnli_default", "collection1", "paginationInfo1", "loadMore1", "index1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
