{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/wSL0xFf42as2OgWcGogj/LC9v43RIoN1Zh5mF5XDv/hxZi_mWHb.js", "ssg:https://framerusercontent.com/modules/Cz91eNjX5FhQ7oe75oJF/kgOhehSkjWUxgyfYv5VI/y1V7w8BfW.js", "ssg:https://framerusercontent.com/modules/qyIweuFWieSAVhCuou7i/wFIPlBqD4W5mjDqLGHG8/s5sTQv3Kg.js", "ssg:https://framerusercontent.com/modules/yyhPUkeCm80oUeI9WDDh/s39CBFicQH84RSYPvjIw/c_enuWZBK.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (61bac00)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Fcf2250eU\"];const serializationHash=\"framer-AWMlF\";const variantClassNames={Fcf2250eU:\"framer-v-1bjrwsd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,cFCRkR2qV:link!==null&&link!==void 0?link:props.cFCRkR2qV,LPPjqlWaf:(_ref=title!==null&&title!==void 0?title:props.LPPjqlWaf)!==null&&_ref!==void 0?_ref:\"Strona www\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LPPjqlWaf,cFCRkR2qV,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Fcf2250eU\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:cFCRkR2qV,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1bjrwsd\",className,classNames)} framer-1fubxxz`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Fcf2250eU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\",\"--framer-text-decoration\":\"underline\"},children:\"Strona www\"})}),className:\"framer-u1b4af\",\"data-framer-name\":\"Strona www\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"lONaq1UbV\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:LPPjqlWaf,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=['.framer-AWMlF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AWMlF .framer-1fubxxz { display: block; }\",\".framer-AWMlF.framer-1bjrwsd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 158px; }\",\".framer-AWMlF .framer-u1b4af { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AWMlF.framer-1bjrwsd { gap: 0px; } .framer-AWMlF.framer-1bjrwsd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AWMlF.framer-1bjrwsd > :first-child { margin-left: 0px; } .framer-AWMlF.framer-1bjrwsd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 158\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LPPjqlWaf\":\"title\",\"cFCRkR2qV\":\"link\"}\n * @framerImmutableVariables true\n */const FramerhxZi_mWHb=withCSS(Component,css,\"framer-AWMlF\");export default FramerhxZi_mWHb;FramerhxZi_mWHb.displayName=\"Strona www\";FramerhxZi_mWHb.defaultProps={height:33,width:158};addPropertyControls(FramerhxZi_mWHb,{LPPjqlWaf:{defaultValue:\"Strona www\",displayTextArea:false,title:\"Title\",type:ControlType.String},cFCRkR2qV:{title:\"Link\",type:ControlType.Link}});addFonts(FramerhxZi_mWHb,[{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhxZi_mWHb\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"LPPjqlWaf\\\":\\\"title\\\",\\\"cFCRkR2qV\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"158\",\"framerIntrinsicHeight\":\"33\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hxZi_mWHb.map", "// Generated by Framer (f44ec39)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={R9GziUMPK:{hover:true}};const cycleOrder=[\"R9GziUMPK\"];const serializationHash=\"framer-kTN4O\";const variantClassNames={R9GziUMPK:\"framer-v-3wr5ep\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,image,subTitle,tap,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,ABhNGg0SY:(_ref=subTitle!==null&&subTitle!==void 0?subTitle:props.ABhNGg0SY)!==null&&_ref!==void 0?_ref:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:(_ref1=title!==null&&title!==void 0?title:props.dkS4mZNNL)!==null&&_ref1!==void 0?_ref1:\"In\u017Cynier Budowy\",G0NGEBMap:tap!==null&&tap!==void 0?tap:props.G0NGEBMap,r2JZ9PY2A:(_ref2=image!==null&&image!==void 0?image:props.r2JZ9PY2A)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/GBkYwWCEyfju8DTR94rNTxrmM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GBkYwWCEyfju8DTR94rNTxrmM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/GBkYwWCEyfju8DTR94rNTxrmM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/GBkYwWCEyfju8DTR94rNTxrmM.jpg 1920w\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,r2JZ9PY2A,dkS4mZNNL,ABhNGg0SY,G0NGEBMap,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"R9GziUMPK\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapoxssai=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(G0NGEBMap){const res=await G0NGEBMap(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"R9GziUMPK-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"R9GziUMPK-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3wr5ep\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"R9GziUMPK\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapoxssai,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(230, 51, 41, 0)\",...style},variants:{\"R9GziUMPK-hover\":{backgroundColor:\"rgb(230, 51, 41)\"}},...addPropertyOverrides({\"R9GziUMPK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(395px, 100vw) - 20px)\",...toResponsiveImage(r2JZ9PY2A)},className:\"framer-1fqt3xf\",\"data-framer-name\":\"WhatsApp Image 2023-09-29 at 14.28\",layoutDependency:layoutDependency,layoutId:\"mdCt1SCCt\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-re84jh\",layoutDependency:layoutDependency,layoutId:\"urKN6igA8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b6cocu\",layoutDependency:layoutDependency,layoutId:\"c5osKo7ZP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17.99px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\"},children:\"In\u017Cynier Budowy\"})}),className:\"framer-3uf5y6\",\"data-framer-name\":\"In\u017Cynier Budowy\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"RCLg_ebO9\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:dkS4mZNNL,variants:{\"R9GziUMPK-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"R9GziUMPK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17.99px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"In\u017Cynier Budowy\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17.99px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\"},children:\"Dowiedz si\u0119 wi\u0119cej\"})}),className:\"framer-1pmc5qy\",\"data-framer-name\":\"Dowiedz si\u0119 wi\u0119cej\",fonts:[\"GF;Montserrat-300\"],layoutDependency:layoutDependency,layoutId:\"WTfQJG6bE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ABhNGg0SY,variants:{\"R9GziUMPK-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"R9GziUMPK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17.99px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Dowiedz si\u0119 wi\u0119cej\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-isih6u\",\"data-framer-name\":\"Frame 39590\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"OtvzCmfDK\",svg:'<svg width=\"21\" height=\"56\" viewBox=\"0 0 21 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_942_710)\">\\n<path d=\"M20.1648 17.9616L20.1648 0.988281L3.19141 0.988281L20.1648 17.9616Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_942_710\">\\n<rect width=\"19.6233\" height=\"54.1504\" fill=\"white\" transform=\"translate(0.542969 0.988281)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ebfi1r\",\"data-framer-name\":\"Frame 39590\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"aWbNKTCI4\",svg:'<svg width=\"21\" height=\"56\" viewBox=\"0 0 21 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_629_4954)\">\\n<path d=\"M20.1023 17.8581L20.1023 0.884766L3.12891 0.884766L20.1023 17.8581Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_629_4954\">\\n<rect width=\"19.6062\" height=\"54.1504\" fill=\"white\" transform=\"translate(0.496094 0.884766)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})});});const css=['.framer-kTN4O[data-border=\"true\"]::after, .framer-kTN4O [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kTN4O.framer-sp1dp3, .framer-kTN4O .framer-sp1dp3 { display: block; }\",\".framer-kTN4O.framer-3wr5ep { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 10px 20px 10px; position: relative; width: 395px; }\",\".framer-kTN4O .framer-1fqt3xf { aspect-ratio: 1.897567178466088 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 198px); position: relative; width: 100%; }\",\".framer-kTN4O .framer-re84jh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kTN4O .framer-b6cocu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-kTN4O .framer-3uf5y6, .framer-kTN4O .framer-1pmc5qy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kTN4O .framer-isih6u, .framer-kTN4O .framer-ebfi1r { flex: none; height: 56px; position: relative; width: 21px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kTN4O.framer-3wr5ep, .framer-kTN4O .framer-b6cocu { gap: 0px; } .framer-kTN4O.framer-3wr5ep > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kTN4O.framer-3wr5ep > :first-child, .framer-kTN4O .framer-b6cocu > :first-child { margin-top: 0px; } .framer-kTN4O.framer-3wr5ep > :last-child, .framer-kTN4O .framer-b6cocu > :last-child { margin-bottom: 0px; } .framer-kTN4O .framer-b6cocu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 308\n * @framerIntrinsicWidth 395\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zqb8b2igD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"r2JZ9PY2A\":\"image\",\"dkS4mZNNL\":\"title\",\"ABhNGg0SY\":\"subTitle\",\"G0NGEBMap\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framery1V7w8BfW=withCSS(Component,css,\"framer-kTN4O\");export default Framery1V7w8BfW;Framery1V7w8BfW.displayName=\"Oferty Prarcy Card\";Framery1V7w8BfW.defaultProps={height:308,width:395};addPropertyControls(Framery1V7w8BfW,{r2JZ9PY2A:{__defaultAssetReference:\"data:framer/asset-reference,GBkYwWCEyfju8DTR94rNTxrmM.jpg?originalFilename=WhatsApp+Image+2023-09-29+at+14.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},dkS4mZNNL:{defaultValue:\"In\u017Cynier Budowy\",displayTextArea:false,title:\"Title\",type:ControlType.String},ABhNGg0SY:{defaultValue:\"Dowiedz si\u0119 wi\u0119cej\",displayTextArea:false,title:\"Sub title\",type:ControlType.String},G0NGEBMap:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framery1V7w8BfW,[{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew7Y3tcoqK5.woff2\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery1V7w8BfW\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"r2JZ9PY2A\\\":\\\"image\\\",\\\"dkS4mZNNL\\\":\\\"title\\\",\\\"ABhNGg0SY\\\":\\\"subTitle\\\",\\\"G0NGEBMap\\\":\\\"tap\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zqb8b2igD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"395\",\"framerIntrinsicHeight\":\"308\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y1V7w8BfW.map", "// Generated by Framer (570b8b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import OfertyPrarcyCard from\"https://framerusercontent.com/modules/Cz91eNjX5FhQ7oe75oJF/kgOhehSkjWUxgyfYv5VI/y1V7w8BfW.js\";const OfertyPrarcyCardFonts=getFonts(OfertyPrarcyCard);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ZkyeAAuL7\",\"NDv4h4Tdl\",\"zSQ4iQWc_\",\"USxjkEl1_\",\"PBSm4Ared\",\"sJoqg8GtX\",\"QDY9q_feu\",\"dD9SWFi6e\"];const serializationHash=\"framer-2n8q4\";const variantClassNames={dD9SWFi6e:\"framer-v-1rllw25\",NDv4h4Tdl:\"framer-v-1glnhjj\",PBSm4Ared:\"framer-v-wqzdzc\",QDY9q_feu:\"framer-v-1wo08n5\",sJoqg8GtX:\"framer-v-1cobips\",USxjkEl1_:\"framer-v-euqiok\",ZkyeAAuL7:\"framer-v-gt2yqb\",zSQ4iQWc_:\"framer-v-e89erb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const animation={opacity:0,rotate:0,scale:1,x:0,y:50};const transition1={damping:30,delay:.4,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:50};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={damping:30,delay:.7,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:0,scale:1,transition:transition2,x:0,y:50};const transition3={damping:30,delay:1,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:0,rotate:0,scale:1,transition:transition3,x:0,y:50};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Budynki Mieszkalne\":\"QDY9q_feu\",\"Obiekty Uslugowo-handlowe\":\"zSQ4iQWc_\",\"Variant 5\":\"PBSm4Ared\",\"Variant 6\":\"sJoqg8GtX\",\"Variant 8\":\"dD9SWFi6e\",Biurowce:\"NDv4h4Tdl\",Hotele:\"ZkyeAAuL7\",Tab:\"USxjkEl1_\"};const getProps=({biurowce1,biurowce2,biurowce3,biurowce4,biurowce5,biurowce6,biurowce7,budynki1,budynki10,budynki11,budynki12,budynki13,budynki14,budynki15,budynki16,budynki17,budynki18,budynki19,budynki2,budynki20,budynki21,budynki22,budynki23,budynki24,budynki25,budynki26,budynki27,budynki28,budynki29,budynki3,budynki30,budynki31,budynki32,budynki4,budynki5,budynki6,budynki7,budynki8,budynki9,height,hotele1,hotele2,id,obiektyUslugowoHandlowe,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,AH6fm3VDY:budynki16!==null&&budynki16!==void 0?budynki16:props.AH6fm3VDY,b1CypAnKJ:biurowce3!==null&&biurowce3!==void 0?biurowce3:props.b1CypAnKJ,BY5wC4PX7:budynki15!==null&&budynki15!==void 0?budynki15:props.BY5wC4PX7,BZzX86Xzz:biurowce5!==null&&biurowce5!==void 0?biurowce5:props.BZzX86Xzz,CpUTIxAq3:budynki24!==null&&budynki24!==void 0?budynki24:props.CpUTIxAq3,E9HbiKh0F:budynki18!==null&&budynki18!==void 0?budynki18:props.E9HbiKh0F,eWeudtBJf:budynki1!==null&&budynki1!==void 0?budynki1:props.eWeudtBJf,F2f5QPEoX:budynki14!==null&&budynki14!==void 0?budynki14:props.F2f5QPEoX,F77fSM3mf:biurowce4!==null&&biurowce4!==void 0?biurowce4:props.F77fSM3mf,fm6U8WOap:budynki10!==null&&budynki10!==void 0?budynki10:props.fm6U8WOap,fOKXAMEgV:budynki17!==null&&budynki17!==void 0?budynki17:props.fOKXAMEgV,HkJaeIfD_:budynki32!==null&&budynki32!==void 0?budynki32:props.HkJaeIfD_,IeeokCgUx:biurowce2!==null&&biurowce2!==void 0?biurowce2:props.IeeokCgUx,ikTBZOYi1:budynki6!==null&&budynki6!==void 0?budynki6:props.ikTBZOYi1,IOQwbWAjD:budynki19!==null&&budynki19!==void 0?budynki19:props.IOQwbWAjD,iQJmzJBfX:budynki3!==null&&budynki3!==void 0?budynki3:props.iQJmzJBfX,k6jxy5spQ:hotele2!==null&&hotele2!==void 0?hotele2:props.k6jxy5spQ,KO5sd9BHz:budynki31!==null&&budynki31!==void 0?budynki31:props.KO5sd9BHz,lNOBtelB2:budynki23!==null&&budynki23!==void 0?budynki23:props.lNOBtelB2,MCxdsVko4:budynki21!==null&&budynki21!==void 0?budynki21:props.MCxdsVko4,mITaFyoM2:budynki12!==null&&budynki12!==void 0?budynki12:props.mITaFyoM2,mmcAo6kls:budynki29!==null&&budynki29!==void 0?budynki29:props.mmcAo6kls,OVxTfWvJQ:budynki27!==null&&budynki27!==void 0?budynki27:props.OVxTfWvJQ,pbaroXTwu:budynki20!==null&&budynki20!==void 0?budynki20:props.pbaroXTwu,pnM5QLBpI:budynki8!==null&&budynki8!==void 0?budynki8:props.pnM5QLBpI,qdC6VRUNQ:budynki28!==null&&budynki28!==void 0?budynki28:props.qdC6VRUNQ,qK7MUUUXY:budynki7!==null&&budynki7!==void 0?budynki7:props.qK7MUUUXY,R6wx_nrOl:budynki9!==null&&budynki9!==void 0?budynki9:props.R6wx_nrOl,rNzGkB5Xs:biurowce6!==null&&biurowce6!==void 0?biurowce6:props.rNzGkB5Xs,rTGojpZOR:budynki13!==null&&budynki13!==void 0?budynki13:props.rTGojpZOR,rwfvc0bsa:budynki22!==null&&budynki22!==void 0?budynki22:props.rwfvc0bsa,SGzRTR81j:biurowce7!==null&&biurowce7!==void 0?biurowce7:props.SGzRTR81j,Swc5GsVZO:biurowce1!==null&&biurowce1!==void 0?biurowce1:props.Swc5GsVZO,tnTG1XvvI:budynki25!==null&&budynki25!==void 0?budynki25:props.tnTG1XvvI,UR9cBY25S:budynki2!==null&&budynki2!==void 0?budynki2:props.UR9cBY25S,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZkyeAAuL7\",vbftuOlqC:budynki30!==null&&budynki30!==void 0?budynki30:props.vbftuOlqC,veSHs8nfu:hotele1!==null&&hotele1!==void 0?hotele1:props.veSHs8nfu,W0pM4NXaL:budynki4!==null&&budynki4!==void 0?budynki4:props.W0pM4NXaL,xrm1eCFmH:budynki26!==null&&budynki26!==void 0?budynki26:props.xrm1eCFmH,Zsp9kdf7R:budynki5!==null&&budynki5!==void 0?budynki5:props.Zsp9kdf7R,ztxSt0dQ1:obiektyUslugowoHandlowe!==null&&obiektyUslugowoHandlowe!==void 0?obiektyUslugowoHandlowe:props.ztxSt0dQ1,zvKEj_KWv:budynki11!==null&&budynki11!==void 0?budynki11:props.zvKEj_KWv};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,veSHs8nfu,k6jxy5spQ,Swc5GsVZO,IeeokCgUx,b1CypAnKJ,F77fSM3mf,BZzX86Xzz,rNzGkB5Xs,SGzRTR81j,ztxSt0dQ1,eWeudtBJf,UR9cBY25S,iQJmzJBfX,W0pM4NXaL,Zsp9kdf7R,ikTBZOYi1,qK7MUUUXY,pnM5QLBpI,R6wx_nrOl,fm6U8WOap,zvKEj_KWv,mITaFyoM2,rTGojpZOR,F2f5QPEoX,BY5wC4PX7,AH6fm3VDY,fOKXAMEgV,E9HbiKh0F,IOQwbWAjD,pbaroXTwu,MCxdsVko4,rwfvc0bsa,lNOBtelB2,CpUTIxAq3,tnTG1XvvI,xrm1eCFmH,OVxTfWvJQ,qdC6VRUNQ,mmcAo6kls,vbftuOlqC,KO5sd9BHz,HkJaeIfD_,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZkyeAAuL7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1jnxtel=activeVariantCallback(async(...args)=>{setVariant(\"ZkyeAAuL7\");});const onTap18cou3l=activeVariantCallback(async(...args)=>{setVariant(\"USxjkEl1_\");});const onTap109v27q=activeVariantCallback(async(...args)=>{setVariant(\"NDv4h4Tdl\");});const onTap16bmw2a=activeVariantCallback(async(...args)=>{setVariant(\"PBSm4Ared\");});const onTapel85xs=activeVariantCallback(async(...args)=>{setVariant(\"QDY9q_feu\");});const onTap1i0m5jy=activeVariantCallback(async(...args)=>{setVariant(\"dD9SWFi6e\");});const onTap1g4ddsu=activeVariantCallback(async(...args)=>{setVariant(\"zSQ4iQWc_\");});const onTapegc7y1=activeVariantCallback(async(...args)=>{setVariant(\"sJoqg8GtX\");});const G0NGEBMapmppdh7=activeVariantCallback(async(...args)=>{if(veSHs8nfu){const res=await veSHs8nfu(...args);if(res===false)return false;}});const G0NGEBMap1ezftiy=activeVariantCallback(async(...args)=>{if(Swc5GsVZO){const res=await Swc5GsVZO(...args);if(res===false)return false;}});const G0NGEBMap1yhgb3=activeVariantCallback(async(...args)=>{if(ztxSt0dQ1){const res=await ztxSt0dQ1(...args);if(res===false)return false;}});const G0NGEBMaph12km0=activeVariantCallback(async(...args)=>{if(eWeudtBJf){const res=await eWeudtBJf(...args);if(res===false)return false;}});const G0NGEBMap1iimw5k=activeVariantCallback(async(...args)=>{if(k6jxy5spQ){const res=await k6jxy5spQ(...args);if(res===false)return false;}});const G0NGEBMapsvy6bd=activeVariantCallback(async(...args)=>{if(IeeokCgUx){const res=await IeeokCgUx(...args);if(res===false)return false;}});const G0NGEBMap1012mdy=activeVariantCallback(async(...args)=>{if(UR9cBY25S){const res=await UR9cBY25S(...args);if(res===false)return false;}});const G0NGEBMapc274vq=activeVariantCallback(async(...args)=>{if(b1CypAnKJ){const res=await b1CypAnKJ(...args);if(res===false)return false;}});const G0NGEBMap1fex7e9=activeVariantCallback(async(...args)=>{if(iQJmzJBfX){const res=await iQJmzJBfX(...args);if(res===false)return false;}});const G0NGEBMaplrjppa=activeVariantCallback(async(...args)=>{if(F77fSM3mf){const res=await F77fSM3mf(...args);if(res===false)return false;}});const G0NGEBMap14t9eeq=activeVariantCallback(async(...args)=>{if(W0pM4NXaL){const res=await W0pM4NXaL(...args);if(res===false)return false;}});const G0NGEBMap1hr1un7=activeVariantCallback(async(...args)=>{if(BZzX86Xzz){const res=await BZzX86Xzz(...args);if(res===false)return false;}});const G0NGEBMap8iloa0=activeVariantCallback(async(...args)=>{if(Zsp9kdf7R){const res=await Zsp9kdf7R(...args);if(res===false)return false;}});const G0NGEBMap1daszon=activeVariantCallback(async(...args)=>{if(rNzGkB5Xs){const res=await rNzGkB5Xs(...args);if(res===false)return false;}});const G0NGEBMap1wtz4gw=activeVariantCallback(async(...args)=>{if(SGzRTR81j){const res=await SGzRTR81j(...args);if(res===false)return false;}});const G0NGEBMap6a0sw3=activeVariantCallback(async(...args)=>{if(ikTBZOYi1){const res=await ikTBZOYi1(...args);if(res===false)return false;}});const G0NGEBMapu8iudr=activeVariantCallback(async(...args)=>{if(qK7MUUUXY){const res=await qK7MUUUXY(...args);if(res===false)return false;}});const G0NGEBMap1ta0lmq=activeVariantCallback(async(...args)=>{if(pnM5QLBpI){const res=await pnM5QLBpI(...args);if(res===false)return false;}});const G0NGEBMapsju6ku=activeVariantCallback(async(...args)=>{if(R6wx_nrOl){const res=await R6wx_nrOl(...args);if(res===false)return false;}});const G0NGEBMapgz116b=activeVariantCallback(async(...args)=>{if(fm6U8WOap){const res=await fm6U8WOap(...args);if(res===false)return false;}});const G0NGEBMap2pagyk=activeVariantCallback(async(...args)=>{if(zvKEj_KWv){const res=await zvKEj_KWv(...args);if(res===false)return false;}});const G0NGEBMap1769tod=activeVariantCallback(async(...args)=>{if(mITaFyoM2){const res=await mITaFyoM2(...args);if(res===false)return false;}});const G0NGEBMap1lw7gac=activeVariantCallback(async(...args)=>{if(rTGojpZOR){const res=await rTGojpZOR(...args);if(res===false)return false;}});const G0NGEBMap1n1q54s=activeVariantCallback(async(...args)=>{if(F2f5QPEoX){const res=await F2f5QPEoX(...args);if(res===false)return false;}});const G0NGEBMap16ots11=activeVariantCallback(async(...args)=>{if(BY5wC4PX7){const res=await BY5wC4PX7(...args);if(res===false)return false;}});const G0NGEBMapauiohy=activeVariantCallback(async(...args)=>{if(AH6fm3VDY){const res=await AH6fm3VDY(...args);if(res===false)return false;}});const G0NGEBMap8kodra=activeVariantCallback(async(...args)=>{if(fOKXAMEgV){const res=await fOKXAMEgV(...args);if(res===false)return false;}});const G0NGEBMaphiap27=activeVariantCallback(async(...args)=>{if(E9HbiKh0F){const res=await E9HbiKh0F(...args);if(res===false)return false;}});const G0NGEBMap1fhpf82=activeVariantCallback(async(...args)=>{if(IOQwbWAjD){const res=await IOQwbWAjD(...args);if(res===false)return false;}});const G0NGEBMap19duvok=activeVariantCallback(async(...args)=>{if(pbaroXTwu){const res=await pbaroXTwu(...args);if(res===false)return false;}});const G0NGEBMap2bkqnh=activeVariantCallback(async(...args)=>{if(MCxdsVko4){const res=await MCxdsVko4(...args);if(res===false)return false;}});const G0NGEBMap13e70w2=activeVariantCallback(async(...args)=>{if(rwfvc0bsa){const res=await rwfvc0bsa(...args);if(res===false)return false;}});const G0NGEBMap1ezws3f=activeVariantCallback(async(...args)=>{if(lNOBtelB2){const res=await lNOBtelB2(...args);if(res===false)return false;}});const G0NGEBMapiw0cux=activeVariantCallback(async(...args)=>{if(CpUTIxAq3){const res=await CpUTIxAq3(...args);if(res===false)return false;}});const G0NGEBMapwriqmy=activeVariantCallback(async(...args)=>{if(tnTG1XvvI){const res=await tnTG1XvvI(...args);if(res===false)return false;}});const G0NGEBMapv2xzga=activeVariantCallback(async(...args)=>{if(xrm1eCFmH){const res=await xrm1eCFmH(...args);if(res===false)return false;}});const G0NGEBMap12u5g3x=activeVariantCallback(async(...args)=>{if(OVxTfWvJQ){const res=await OVxTfWvJQ(...args);if(res===false)return false;}});const G0NGEBMapz8sixl=activeVariantCallback(async(...args)=>{if(qdC6VRUNQ){const res=await qdC6VRUNQ(...args);if(res===false)return false;}});const G0NGEBMapy0z2ie=activeVariantCallback(async(...args)=>{if(mmcAo6kls){const res=await mmcAo6kls(...args);if(res===false)return false;}});const G0NGEBMap1o1eeoh=activeVariantCallback(async(...args)=>{if(vbftuOlqC){const res=await vbftuOlqC(...args);if(res===false)return false;}});const G0NGEBMaplxz5ry=activeVariantCallback(async(...args)=>{if(KO5sd9BHz){const res=await KO5sd9BHz(...args);if(res===false)return false;}});const G0NGEBMap5etjpf=activeVariantCallback(async(...args)=>{if(HkJaeIfD_){const res=await HkJaeIfD_(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"PBSm4Ared\",\"sJoqg8GtX\",\"dD9SWFi6e\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"NDv4h4Tdl\",\"zSQ4iQWc_\",\"QDY9q_feu\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"NDv4h4Tdl\",\"QDY9q_feu\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"zSQ4iQWc_\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"NDv4h4Tdl\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"QDY9q_feu\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"PBSm4Ared\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"sJoqg8GtX\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"dD9SWFi6e\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gt2yqb\",className,classNames),\"data-framer-name\":\"Hotele\",initial:variant,layoutDependency:layoutDependency,layoutId:\"ZkyeAAuL7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dD9SWFi6e:{\"data-framer-name\":\"Variant 8\"},NDv4h4Tdl:{\"data-framer-name\":\"Biurowce\"},PBSm4Ared:{\"data-framer-name\":\"Variant 5\"},QDY9q_feu:{\"data-framer-name\":\"Budynki Mieszkalne\"},sJoqg8GtX:{\"data-framer-name\":\"Variant 6\"},USxjkEl1_:{\"data-framer-name\":\"Tab\"},zSQ4iQWc_:{\"data-framer-name\":\"Obiekty Uslugowo-handlowe\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uuva5e\",\"data-framer-name\":\"Category name\",layoutDependency:layoutDependency,layoutId:\"jz54htLJC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Hotele\"})}),className:\"framer-zo8e4s\",\"data-framer-name\":\"Hotele\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"M2gXyYZ65\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{dD9SWFi6e:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"},NDv4h4Tdl:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"},PBSm4Ared:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"},QDY9q_feu:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"},sJoqg8GtX:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"},zSQ4iQWc_:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dD9SWFi6e:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap18cou3l},NDv4h4Tdl:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap1jnxtel},PBSm4Ared:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap18cou3l},QDY9q_feu:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap1jnxtel},sJoqg8GtX:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap18cou3l},zSQ4iQWc_:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Hotele\"})}),fonts:[\"GF;Montserrat-regular\"],onTap:onTap1jnxtel}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Biurowce\"})}),className:\"framer-1pzlsaa\",\"data-framer-name\":\"Biurowce\",\"data-highlight\":true,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"OcmyWTGG7\",onTap:onTap109v27q,style:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dD9SWFi6e:{onTap:onTap16bmw2a},NDv4h4Tdl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Biurowce\"})}),fonts:[\"GF;Montserrat-500\"]},PBSm4Ared:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Biurowce\"})}),fonts:[\"GF;Montserrat-500\"],onTap:undefined},sJoqg8GtX:{onTap:onTap16bmw2a},USxjkEl1_:{onTap:onTap16bmw2a}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Budynki Mieszkalne\"})}),className:\"framer-12s2wzk\",\"data-highlight\":true,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"vlGFvy03S\",onTap:onTapel85xs,style:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dD9SWFi6e:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Budynki Mieszkalne\"})}),fonts:[\"GF;Montserrat-500\"],onTap:undefined},PBSm4Ared:{onTap:onTap1i0m5jy},QDY9q_feu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Budynki Mieszkalne\"})}),fonts:[\"GF;Montserrat-500\"]},sJoqg8GtX:{onTap:onTap1i0m5jy},USxjkEl1_:{onTap:onTap1i0m5jy}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 192, 192))\"},children:\"Obiekty Uslugowo-handlowe\"})}),className:\"framer-pv8b60\",\"data-framer-name\":\"Obiekty Uslugowo-handlowe\",\"data-highlight\":true,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"DZR1_pEmL\",onTap:onTap1g4ddsu,style:{\"--extracted-r6o4lv\":\"rgb(192, 192, 192)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dD9SWFi6e:{onTap:onTapegc7y1},PBSm4Ared:{onTap:onTapegc7y1},sJoqg8GtX:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Obiekty Uslugowo-handlowe\"})}),fonts:[\"GF;Montserrat-500\"],onTap:undefined},USxjkEl1_:{onTap:onTapegc7y1},zSQ4iQWc_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-decoration\":\"underline\"},children:\"Obiekty Uslugowo-handlowe\"})}),fonts:[\"GF;Montserrat-500\"]}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dl59gp\",layoutDependency:layoutDependency,layoutId:\"FpgTI8vpJ\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1b7ux5b-container\",layoutDependency:layoutDependency,layoutId:\"ppstgcEim-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Cieszy\u0144ska 9\",G0NGEBMap:G0NGEBMapmppdh7,height:\"100%\",id:\"ppstgcEim\",layoutId:\"ppstgcEim\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg\",srcSet:\"https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg 670w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Biurowiec Fabryka Kart\",G0NGEBMap:G0NGEBMap1ezftiy,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg\",srcSet:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg 643w\"},\"\")},QDY9q_feu:{G0NGEBMap:G0NGEBMaph12km0,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg\",srcSet:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg 662w\"},\"\")},zSQ4iQWc_:{dkS4mZNNL:\"Impol Nova Conrada 51\",G0NGEBMap:G0NGEBMap1yhgb3,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg\",srcSet:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19ii27l-container\",layoutDependency:layoutDependency,layoutId:\"UmmQi3__h-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Podedworze 9\",G0NGEBMap:G0NGEBMap1iimw5k,height:\"100%\",id:\"UmmQi3__h\",layoutId:\"UmmQi3__h\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png\",srcSet:\"https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png?scale-down-to=512 512w, https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png 985w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Bielany Business Point Wroc\u0142aw\",G0NGEBMap:G0NGEBMapsvy6bd,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg\",srcSet:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg 660w\"},\"\")},QDY9q_feu:{G0NGEBMap:G0NGEBMap1012mdy,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png\",srcSet:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png?scale-down-to=512 512w, https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png 985w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14hg4c9-container\",layoutDependency:layoutDependency,layoutId:\"LBE8zWDQk-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"S\u0142omnicka 4\",height:\"100%\",id:\"LBE8zWDQk\",layoutId:\"LBE8zWDQk\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg\",srcSet:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg 1920w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Quattro Business Park\",G0NGEBMap:G0NGEBMapc274vq,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg\",srcSet:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg 884w\"},\"\")},QDY9q_feu:{G0NGEBMap:G0NGEBMap1fex7e9,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg\",srcSet:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg 1920w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xbdy0m-container\",layoutDependency:layoutDependency,layoutId:\"AS9BKUGrB-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Q Hotel Plus Wygrana\",G0NGEBMap:G0NGEBMapmppdh7,height:\"100%\",id:\"AS9BKUGrB\",layoutId:\"AS9BKUGrB\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg\",srcSet:\"https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg 1800w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Green Office A,B\",G0NGEBMap:G0NGEBMaplrjppa,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg\",srcSet:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg 800w\"},\"\")},QDY9q_feu:{dkS4mZNNL:\"Wzg\\xf3rze Wielickie\",G0NGEBMap:G0NGEBMap14t9eeq,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg\",srcSet:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wx0lme-container\",layoutDependency:layoutDependency,layoutId:\"aFOMgTrBr-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Q Hotel Radzikowskiego\",G0NGEBMap:G0NGEBMap1iimw5k,height:\"100%\",id:\"aFOMgTrBr\",layoutId:\"aFOMgTrBr\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/y03Lk2IgKuJgCP9H9xCHE8MOi70.jpg\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Jasnog\\xf3rska 11\",G0NGEBMap:G0NGEBMap1hr1un7,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg\",srcSet:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg 1360w\"},\"\")},QDY9q_feu:{dkS4mZNNL:\"Panorama Park\",G0NGEBMap:G0NGEBMap8iloa0,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg\",srcSet:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg 558w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:0,className:\"framer-3ve074-container\",layoutDependency:layoutDependency,layoutId:\"m5jlZGtuq-container\",style:{opacity:0},transformTemplate:transformTemplate,variants:{NDv4h4Tdl:{opacity:1}},...addPropertyOverrides({NDv4h4Tdl:{__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"S\u0142omnicka 4\",height:\"100%\",id:\"m5jlZGtuq\",layoutId:\"m5jlZGtuq\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg\",srcSet:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg 1920w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NDv4h4Tdl:{dkS4mZNNL:\"Wielicka 72\",G0NGEBMap:G0NGEBMap1daszon,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1okijbh-container\",layoutDependency:layoutDependency,layoutId:\"zcSnto60S-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Krak\\xf3w Business Park\",G0NGEBMap:G0NGEBMap1wtz4gw,height:\"100%\",id:\"zcSnto60S\",layoutId:\"zcSnto60S\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg\",srcSet:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg 1356w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Apartamenty Kosocicka\",G0NGEBMap:G0NGEBMap6a0sw3}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:0,className:\"framer-1r3h82v-container\",layoutDependency:layoutDependency,layoutId:\"qxO2iNR73-container\",style:{opacity:0},transformTemplate:transformTemplate,variants:{QDY9q_feu:{opacity:1}},...addPropertyOverrides({QDY9q_feu:{__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Jasnog\\xf3rska 11\",height:\"100%\",id:\"qxO2iNR73\",layoutId:\"qxO2iNR73\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg\",srcSet:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg 1360w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Premier Park\",G0NGEBMap:G0NGEBMapu8iudr,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg\",srcSet:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg 1170w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-9sfe0-container\",layoutDependency:layoutDependency,layoutId:\"wWD7Qf6AY-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"wWD7Qf6AY\",layoutId:\"wWD7Qf6AY\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle \u017Belazna\",G0NGEBMap:G0NGEBMap1ta0lmq,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg\",srcSet:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg 1280w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-27bici-container\",layoutDependency:layoutDependency,layoutId:\"UG2xDOBfA-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"UG2xDOBfA\",layoutId:\"UG2xDOBfA\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Kazimierza Wielkiego 51\",G0NGEBMap:G0NGEBMapsju6ku,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png\",srcSet:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png?scale-down-to=512 512w, https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png 606w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sqho9s-container\",layoutDependency:layoutDependency,layoutId:\"ZkI7QsPtQ-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"ZkI7QsPtQ\",layoutId:\"ZkI7QsPtQ\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle S\u0142oneczne Miasteczko, kolejne etapy\",G0NGEBMap:G0NGEBMapgz116b,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png\",srcSet:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=512 512w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png 1094w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5hb3kl-container\",layoutDependency:layoutDependency,layoutId:\"a1Z7hCFiq-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"a1Z7hCFiq\",layoutId:\"a1Z7hCFiq\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Piasta Park\",G0NGEBMap:G0NGEBMap2pagyk,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg\",srcSet:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ymmixf-container\",layoutDependency:layoutDependency,layoutId:\"bKA2nMA9O-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"bKA2nMA9O\",layoutId:\"bKA2nMA9O\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Centralna Park, kolejne etapy\",G0NGEBMap:G0NGEBMap1769tod,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png\",srcSet:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png?scale-down-to=512 512w, https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png 964w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11v1y6z-container\",layoutDependency:layoutDependency,layoutId:\"ISs5UdmQL-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"ISs5UdmQL\",layoutId:\"ISs5UdmQL\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"My\u015Bliwska 66\",G0NGEBMap:G0NGEBMap1lw7gac,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg\",srcSet:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg 711w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-pxvpxg-container\",layoutDependency:layoutDependency,layoutId:\"E57PaWpMQ-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"E57PaWpMQ\",layoutId:\"E57PaWpMQ\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Podg\\xf3rze Duchackie\",G0NGEBMap:G0NGEBMap1n1q54s,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg\",srcSet:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg 1600w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-vjc0jl-container\",layoutDependency:layoutDependency,layoutId:\"k6udDPzt9-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"k6udDPzt9\",layoutId:\"k6udDPzt9\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle Harmonia\",G0NGEBMap:G0NGEBMap16ots11,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg\",srcSet:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg 1800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jynxu4-container\",layoutDependency:layoutDependency,layoutId:\"VBJikElWd-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"VBJikElWd\",layoutId:\"VBJikElWd\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"NY Residence\",G0NGEBMap:G0NGEBMapauiohy,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg\",srcSet:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg 1280w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pf3p49-container\",layoutDependency:layoutDependency,layoutId:\"p3ZP3vQVi-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"p3ZP3vQVi\",layoutId:\"p3ZP3vQVi\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Lubelska 16-18\",G0NGEBMap:G0NGEBMap8kodra,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg\",srcSet:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg 1800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1v8imxk-container\",layoutDependency:layoutDependency,layoutId:\"Um63YWKbe-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"Um63YWKbe\",layoutId:\"Um63YWKbe\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Krygowskiego\",G0NGEBMap:G0NGEBMaphiap27,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg\",srcSet:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg 633w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11e83s-container\",layoutDependency:layoutDependency,layoutId:\"elpnqBtne-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"elpnqBtne\",layoutId:\"elpnqBtne\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Lubelska 14\",G0NGEBMap:G0NGEBMap1fhpf82,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png\",srcSet:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png?scale-down-to=512 512w, https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png 693w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yqu5o9-container\",layoutDependency:layoutDependency,layoutId:\"OJVUc1PlN-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"OJVUc1PlN\",layoutId:\"OJVUc1PlN\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Bia\u0142opr\u0105dnicka\",G0NGEBMap:G0NGEBMap19duvok,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png\",srcSet:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png?scale-down-to=512 512w, https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19z3xg-container\",layoutDependency:layoutDependency,layoutId:\"Ad0dzPz6K-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"Ad0dzPz6K\",layoutId:\"Ad0dzPz6K\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Pozna\u0144ska 10\",G0NGEBMap:G0NGEBMap2bkqnh,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg\",srcSet:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg 1800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-58tjlm-container\",layoutDependency:layoutDependency,layoutId:\"YZScNIqdf-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"YZScNIqdf\",layoutId:\"YZScNIqdf\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle FI\",G0NGEBMap:G0NGEBMap13e70w2,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg 1024w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-pyxm8x-container\",layoutDependency:layoutDependency,layoutId:\"WeKHx0v72-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"WeKHx0v72\",layoutId:\"WeKHx0v72\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle Rycerskie\",G0NGEBMap:G0NGEBMap1ezws3f,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg\",srcSet:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg 1800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ib2oyo-container\",layoutDependency:layoutDependency,layoutId:\"J1L_zQKzh-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"J1L_zQKzh\",layoutId:\"J1L_zQKzh\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Kaskada Bia\u0142y Pr\u0105dnik\",G0NGEBMap:G0NGEBMapiw0cux,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg\",srcSet:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-25nepg-container\",layoutDependency:layoutDependency,layoutId:\"nHwwcYRS1-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"nHwwcYRS1\",layoutId:\"nHwwcYRS1\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Ogr\\xf3d P\u0142asz\\xf3w Koszykarska\",G0NGEBMap:G0NGEBMapwriqmy,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg\",srcSet:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6chxv6-container\",layoutDependency:layoutDependency,layoutId:\"G_9LL32iM-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"G_9LL32iM\",layoutId:\"G_9LL32iM\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle Familijne BUMA\",G0NGEBMap:G0NGEBMapv2xzga,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg\",srcSet:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ugxe56-container\",layoutDependency:layoutDependency,layoutId:\"BsJWiTKTi-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"BsJWiTKTi\",layoutId:\"BsJWiTKTi\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Reduty\",G0NGEBMap:G0NGEBMap12u5g3x,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg\",srcSet:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg 1278w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ymkoen-container\",layoutDependency:layoutDependency,layoutId:\"Ppxk9dU6Y-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"Ppxk9dU6Y\",layoutId:\"Ppxk9dU6Y\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Klonowica Wawel Service\",G0NGEBMap:G0NGEBMapz8sixl,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg\",srcSet:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-xweoi8-container\",layoutDependency:layoutDependency,layoutId:\"RcacGSmbY-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"RcacGSmbY\",layoutId:\"RcacGSmbY\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Pychowicka\",G0NGEBMap:G0NGEBMapy0z2ie,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg\",srcSet:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg 1302w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-vuk5yf-container\",layoutDependency:layoutDependency,layoutId:\"prhNQBg9F-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"prhNQBg9F\",layoutId:\"prhNQBg9F\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Wielicka Park\",G0NGEBMap:G0NGEBMap1o1eeoh,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg\",srcSet:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-pb15rp-container\",layoutDependency:layoutDependency,layoutId:\"VIdLIQlzB-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",height:\"100%\",id:\"VIdLIQlzB\",layoutId:\"VIdLIQlzB\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({QDY9q_feu:{dkS4mZNNL:\"Osiedle Nowalia Wroc\u0142aw\",G0NGEBMap:G0NGEBMaplxz5ry,r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg\",srcSet:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg 800w\"},\"\")}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1i0ivuj-container\",layoutDependency:layoutDependency,layoutId:\"nuxe5AT3F-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Bochenka, Krak\\xf3w\",G0NGEBMap:G0NGEBMap5etjpf,height:\"100%\",id:\"nuxe5AT3F\",layoutId:\"nuxe5AT3F\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg\",srcSet:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ptvvan\",layoutDependency:layoutDependency,layoutId:\"fPX_DzauC\"}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d5yfty\",layoutDependency:layoutDependency,layoutId:\"G22bPCx0E\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-55tnma-container\",layoutDependency:layoutDependency,layoutId:\"QXRqR8D_W-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Biurowiec Fabryka Kart\",G0NGEBMap:G0NGEBMap1ezftiy,height:\"100%\",id:\"QXRqR8D_W\",layoutId:\"QXRqR8D_W\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg\",srcSet:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg 643w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-k8w87n-container\",layoutDependency:layoutDependency,layoutId:\"JIMIuxdUY-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Bielany Business Point Wroc\u0142aw\",G0NGEBMap:G0NGEBMapsvy6bd,height:\"100%\",id:\"JIMIuxdUY\",layoutId:\"JIMIuxdUY\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg\",srcSet:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg 660w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gediym-container\",layoutDependency:layoutDependency,layoutId:\"ZkzsPPaot-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Quattro Business Park\",G0NGEBMap:G0NGEBMapc274vq,height:\"100%\",id:\"ZkzsPPaot\",layoutId:\"ZkzsPPaot\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg\",srcSet:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg 884w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p3wfop\",layoutDependency:layoutDependency,layoutId:\"URRKA0omV\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fln03n-container\",layoutDependency:layoutDependency,layoutId:\"fEn9GVqWn-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Green Office A,B\",G0NGEBMap:G0NGEBMaplrjppa,height:\"100%\",id:\"fEn9GVqWn\",layoutId:\"fEn9GVqWn\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg\",srcSet:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ppi26x-container\",layoutDependency:layoutDependency,layoutId:\"jlanEtPM7-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Jasnog\\xf3rska 11\",G0NGEBMap:G0NGEBMap1hr1un7,height:\"100%\",id:\"jlanEtPM7\",layoutId:\"jlanEtPM7\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg\",srcSet:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg 1360w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-izkesw-container\",layoutDependency:layoutDependency,layoutId:\"ewucqsQGW-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka 72\",G0NGEBMap:G0NGEBMap1daszon,height:\"100%\",id:\"ewucqsQGW\",layoutId:\"ewucqsQGW\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1itc3kh\",layoutDependency:layoutDependency,layoutId:\"BPQw66YYW\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2sp333-container\",layoutDependency:layoutDependency,layoutId:\"jR48lnFtz-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Impol Nova Conrada 51\",G0NGEBMap:G0NGEBMap1yhgb3,height:\"100%\",id:\"jR48lnFtz\",layoutId:\"jR48lnFtz\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg\",srcSet:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9q8vjz\",layoutDependency:layoutDependency,layoutId:\"JhueFxKf6\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11fk883-container\",layoutDependency:layoutDependency,layoutId:\"w1f_qVYel-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Cieszy\u0144ska 9\",G0NGEBMap:G0NGEBMaph12km0,height:\"100%\",id:\"w1f_qVYel\",layoutId:\"w1f_qVYel\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg\",srcSet:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg 662w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19wtruh-container\",layoutDependency:layoutDependency,layoutId:\"gJSIXrUED-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Podedworze 9\",G0NGEBMap:G0NGEBMap1012mdy,height:\"100%\",id:\"gJSIXrUED\",layoutId:\"gJSIXrUED\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png\",srcSet:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png?scale-down-to=512 512w, https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png 985w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h8kgqq-container\",layoutDependency:layoutDependency,layoutId:\"rHmIoqNln-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"S\u0142omnicka 4\",G0NGEBMap:G0NGEBMap1fex7e9,height:\"100%\",id:\"rHmIoqNln\",layoutId:\"rHmIoqNln\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg\",srcSet:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg 1920w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-z4d015-container\",layoutDependency:layoutDependency,layoutId:\"nzFY8SSIn-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wzg\\xf3rze Wielickie\",G0NGEBMap:G0NGEBMap14t9eeq,height:\"100%\",id:\"nzFY8SSIn\",layoutId:\"nzFY8SSIn\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg\",srcSet:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qc9ui2-container\",layoutDependency:layoutDependency,layoutId:\"k79KRkCj8-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Panorama Park\",G0NGEBMap:G0NGEBMap8iloa0,height:\"100%\",id:\"k79KRkCj8\",layoutId:\"k79KRkCj8\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg\",srcSet:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg 558w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wumkja-container\",layoutDependency:layoutDependency,layoutId:\"PMH6Nrf2w-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Apartamenty Kosocicka\",G0NGEBMap:G0NGEBMap6a0sw3,height:\"100%\",id:\"PMH6Nrf2w\",layoutId:\"PMH6Nrf2w\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg\",srcSet:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg 1356w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-q8kndx-container\",layoutDependency:layoutDependency,layoutId:\"AD5YGHiXt-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Premier Park\",G0NGEBMap:G0NGEBMapu8iudr,height:\"100%\",id:\"AD5YGHiXt\",layoutId:\"AD5YGHiXt\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg\",srcSet:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg 1170w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1al8639-container\",layoutDependency:layoutDependency,layoutId:\"lsJIVJRCq-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle \u017Belazna\",G0NGEBMap:G0NGEBMap1ta0lmq,height:\"100%\",id:\"lsJIVJRCq\",layoutId:\"lsJIVJRCq\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg\",srcSet:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg 1280w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12uvuun-container\",layoutDependency:layoutDependency,layoutId:\"YCYF6UDlb-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Kazimierza Wielkiego 51\",G0NGEBMap:G0NGEBMapsju6ku,height:\"100%\",id:\"YCYF6UDlb\",layoutId:\"YCYF6UDlb\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png\",srcSet:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png?scale-down-to=512 512w, https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png 606w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ma6zg0-container\",layoutDependency:layoutDependency,layoutId:\"juUaV20Hf-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle S\u0142oneczne Miasteczko, kolejne etapy\",G0NGEBMap:G0NGEBMapgz116b,height:\"100%\",id:\"juUaV20Hf\",layoutId:\"juUaV20Hf\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png\",srcSet:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=512 512w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png 1094w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-t18ly1-container\",layoutDependency:layoutDependency,layoutId:\"B4lPSPzlY-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Piasta Park\",G0NGEBMap:G0NGEBMap2pagyk,height:\"100%\",id:\"B4lPSPzlY\",layoutId:\"B4lPSPzlY\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg\",srcSet:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1l05ckw-container\",layoutDependency:layoutDependency,layoutId:\"ZNU0xIU2j-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Centralna Park, kolejne etapy\",G0NGEBMap:G0NGEBMap1769tod,height:\"100%\",id:\"ZNU0xIU2j\",layoutId:\"ZNU0xIU2j\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png\",srcSet:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png?scale-down-to=512 512w, https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png 964w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ns823k-container\",layoutDependency:layoutDependency,layoutId:\"qa07wYl8l-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"My\u015Bliwska 66\",G0NGEBMap:G0NGEBMap1lw7gac,height:\"100%\",id:\"qa07wYl8l\",layoutId:\"qa07wYl8l\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg\",srcSet:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg 711w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5xsjsg-container\",layoutDependency:layoutDependency,layoutId:\"sw7Imh62E-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Podg\\xf3rze Duchackie\",G0NGEBMap:G0NGEBMap1n1q54s,height:\"100%\",id:\"sw7Imh62E\",layoutId:\"sw7Imh62E\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg\",srcSet:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg 1600w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-enl5xv-container\",layoutDependency:layoutDependency,layoutId:\"zksN3BbO1-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle Harmonia\",G0NGEBMap:G0NGEBMap16ots11,height:\"100%\",id:\"zksN3BbO1\",layoutId:\"zksN3BbO1\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg\",srcSet:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg 1800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8zg4af-container\",layoutDependency:layoutDependency,layoutId:\"EOiSUDxmS-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"NY Residence\",G0NGEBMap:G0NGEBMapauiohy,height:\"100%\",id:\"EOiSUDxmS\",layoutId:\"EOiSUDxmS\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg\",srcSet:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg 1280w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1a1yrt0-container\",layoutDependency:layoutDependency,layoutId:\"ZEN8U4izP-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Lubelska 16-18\",G0NGEBMap:G0NGEBMap8kodra,height:\"100%\",id:\"ZEN8U4izP\",layoutId:\"ZEN8U4izP\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg\",srcSet:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg 1800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-lvha9-container\",layoutDependency:layoutDependency,layoutId:\"UJBCvFhQ0-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Krygowskiego\",G0NGEBMap:G0NGEBMaphiap27,height:\"100%\",id:\"UJBCvFhQ0\",layoutId:\"UJBCvFhQ0\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg\",srcSet:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg 633w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1eji9f2-container\",layoutDependency:layoutDependency,layoutId:\"tlVXIdNUC-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Lubelska 14\",G0NGEBMap:G0NGEBMap1fhpf82,height:\"100%\",id:\"tlVXIdNUC\",layoutId:\"tlVXIdNUC\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png\",srcSet:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png?scale-down-to=512 512w, https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png 693w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10hjr2x-container\",layoutDependency:layoutDependency,layoutId:\"bk04L4oNQ-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Bia\u0142opr\u0105dnicka\",G0NGEBMap:G0NGEBMap19duvok,height:\"100%\",id:\"bk04L4oNQ\",layoutId:\"bk04L4oNQ\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png\",srcSet:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png?scale-down-to=512 512w, https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nmkreg-container\",layoutDependency:layoutDependency,layoutId:\"jxtD3tuOb-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Pozna\u0144ska 10\",G0NGEBMap:G0NGEBMap2bkqnh,height:\"100%\",id:\"jxtD3tuOb\",layoutId:\"jxtD3tuOb\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg\",srcSet:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg 1800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qn78wk-container\",layoutDependency:layoutDependency,layoutId:\"QlX1dJEgc-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle FI\",G0NGEBMap:G0NGEBMap13e70w2,height:\"100%\",id:\"QlX1dJEgc\",layoutId:\"QlX1dJEgc\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg 1024w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15dyb3i-container\",layoutDependency:layoutDependency,layoutId:\"eyWQ5ro3H-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle Rycerskie\",G0NGEBMap:G0NGEBMap1ezws3f,height:\"100%\",id:\"eyWQ5ro3H\",layoutId:\"eyWQ5ro3H\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg\",srcSet:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg 1800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-61v1ni-container\",layoutDependency:layoutDependency,layoutId:\"iqsXDZp6I-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Kaskada Bia\u0142y Pr\u0105dnik\",G0NGEBMap:G0NGEBMapiw0cux,height:\"100%\",id:\"iqsXDZp6I\",layoutId:\"iqsXDZp6I\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg\",srcSet:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dxv9x3-container\",layoutDependency:layoutDependency,layoutId:\"wXW3xjWU9-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Ogr\\xf3d P\u0142asz\\xf3w Koszykarska\",G0NGEBMap:G0NGEBMapwriqmy,height:\"100%\",id:\"wXW3xjWU9\",layoutId:\"wXW3xjWU9\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg\",srcSet:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-cs3kkz-container\",layoutDependency:layoutDependency,layoutId:\"Wb6Yt5BTz-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle Familijne BUMA\",G0NGEBMap:G0NGEBMapv2xzga,height:\"100%\",id:\"Wb6Yt5BTz\",layoutId:\"Wb6Yt5BTz\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg\",srcSet:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1orzrl3-container\",layoutDependency:layoutDependency,layoutId:\"Y9kgzyz3X-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Reduty\",G0NGEBMap:G0NGEBMap12u5g3x,height:\"100%\",id:\"Y9kgzyz3X\",layoutId:\"Y9kgzyz3X\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg\",srcSet:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg 1278w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10w34qa-container\",layoutDependency:layoutDependency,layoutId:\"vg8VNReFb-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Klonowica Wawel Service\",G0NGEBMap:G0NGEBMapz8sixl,height:\"100%\",id:\"vg8VNReFb\",layoutId:\"vg8VNReFb\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg\",srcSet:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-175v1me-container\",layoutDependency:layoutDependency,layoutId:\"ny2IGxs8p-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Pychowicka\",G0NGEBMap:G0NGEBMapy0z2ie,height:\"100%\",id:\"ny2IGxs8p\",layoutId:\"ny2IGxs8p\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg\",srcSet:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg 1302w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1gukmwo-container\",layoutDependency:layoutDependency,layoutId:\"yM6SyBl1v-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Wielicka Park\",G0NGEBMap:G0NGEBMap1o1eeoh,height:\"100%\",id:\"yM6SyBl1v\",layoutId:\"yM6SyBl1v\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg\",srcSet:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1gqumrl-container\",layoutDependency:layoutDependency,layoutId:\"ATiU355IW-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Osiedle Nowalia Wroc\u0142aw\",G0NGEBMap:G0NGEBMaplxz5ry,height:\"100%\",id:\"ATiU355IW\",layoutId:\"ATiU355IW\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg\",srcSet:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15bii84-container\",layoutDependency:layoutDependency,layoutId:\"Ox1Jn3rBl-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(OfertyPrarcyCard,{ABhNGg0SY:\"Dowiedz si\u0119 wi\u0119cej\",dkS4mZNNL:\"Bochenka, Krak\\xf3w\",G0NGEBMap:G0NGEBMap5etjpf,height:\"100%\",id:\"Ox1Jn3rBl\",layoutId:\"Ox1Jn3rBl\",r2JZ9PY2A:addImageAlt({src:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg\",srcSet:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg 800w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})]})]})})});});const css=['.framer-2n8q4[data-border=\"true\"]::after, .framer-2n8q4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2n8q4.framer-1w0ugfk, .framer-2n8q4 .framer-1w0ugfk { display: block; }\",\".framer-2n8q4.framer-gt2yqb { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 721px; }\",\".framer-2n8q4 .framer-uuva5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 721px; }\",\".framer-2n8q4 .framer-uuva5e::-webkit-scrollbar { height: 0px; width: 0px; }\",\".framer-2n8q4 .framer-uuva5e::-webkit-scrollbar-thumb { background: transparent; }\",\".framer-2n8q4 .framer-zo8e4s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2n8q4 .framer-1pzlsaa, .framer-2n8q4 .framer-12s2wzk, .framer-2n8q4 .framer-pv8b60 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2n8q4 .framer-1dl59gp { display: grid; flex: none; gap: 43px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-1b7ux5b-container, .framer-2n8q4 .framer-19ii27l-container, .framer-2n8q4 .framer-14hg4c9-container, .framer-2n8q4 .framer-1xbdy0m-container, .framer-2n8q4 .framer-1wx0lme-container, .framer-2n8q4 .framer-3ve074-container, .framer-2n8q4 .framer-1okijbh-container, .framer-2n8q4 .framer-1r3h82v-container, .framer-2n8q4 .framer-9sfe0-container, .framer-2n8q4 .framer-27bici-container, .framer-2n8q4 .framer-sqho9s-container, .framer-2n8q4 .framer-5hb3kl-container, .framer-2n8q4 .framer-1ymmixf-container, .framer-2n8q4 .framer-11v1y6z-container, .framer-2n8q4 .framer-pxvpxg-container, .framer-2n8q4 .framer-vjc0jl-container, .framer-2n8q4 .framer-1jynxu4-container, .framer-2n8q4 .framer-1pf3p49-container, .framer-2n8q4 .framer-1v8imxk-container, .framer-2n8q4 .framer-11e83s-container, .framer-2n8q4 .framer-yqu5o9-container, .framer-2n8q4 .framer-19z3xg-container, .framer-2n8q4 .framer-58tjlm-container, .framer-2n8q4 .framer-pyxm8x-container, .framer-2n8q4 .framer-1ib2oyo-container, .framer-2n8q4 .framer-25nepg-container, .framer-2n8q4 .framer-6chxv6-container, .framer-2n8q4 .framer-1ugxe56-container, .framer-2n8q4 .framer-ymkoen-container, .framer-2n8q4 .framer-xweoi8-container, .framer-2n8q4 .framer-vuk5yf-container, .framer-2n8q4 .framer-pb15rp-container, .framer-2n8q4 .framer-1i0ivuj-container, .framer-2n8q4 .framer-11fk883-container, .framer-2n8q4 .framer-19wtruh-container, .framer-2n8q4 .framer-1h8kgqq-container, .framer-2n8q4 .framer-z4d015-container, .framer-2n8q4 .framer-qc9ui2-container, .framer-2n8q4 .framer-1wumkja-container, .framer-2n8q4 .framer-q8kndx-container, .framer-2n8q4 .framer-1al8639-container, .framer-2n8q4 .framer-12uvuun-container, .framer-2n8q4 .framer-1ma6zg0-container, .framer-2n8q4 .framer-t18ly1-container, .framer-2n8q4 .framer-1l05ckw-container, .framer-2n8q4 .framer-1ns823k-container, .framer-2n8q4 .framer-5xsjsg-container, .framer-2n8q4 .framer-enl5xv-container, .framer-2n8q4 .framer-8zg4af-container, .framer-2n8q4 .framer-1a1yrt0-container, .framer-2n8q4 .framer-lvha9-container, .framer-2n8q4 .framer-1eji9f2-container, .framer-2n8q4 .framer-10hjr2x-container, .framer-2n8q4 .framer-1nmkreg-container, .framer-2n8q4 .framer-1qn78wk-container, .framer-2n8q4 .framer-15dyb3i-container, .framer-2n8q4 .framer-61v1ni-container, .framer-2n8q4 .framer-1dxv9x3-container, .framer-2n8q4 .framer-cs3kkz-container, .framer-2n8q4 .framer-1orzrl3-container, .framer-2n8q4 .framer-10w34qa-container, .framer-2n8q4 .framer-175v1me-container, .framer-2n8q4 .framer-1gukmwo-container, .framer-2n8q4 .framer-1gqumrl-container, .framer-2n8q4 .framer-15bii84-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-1ptvvan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; min-height: 223px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-1d5yfty, .framer-2n8q4 .framer-p3wfop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-55tnma-container, .framer-2n8q4 .framer-k8w87n-container, .framer-2n8q4 .framer-gediym-container, .framer-2n8q4 .framer-1fln03n-container, .framer-2n8q4 .framer-ppi26x-container, .framer-2n8q4 .framer-izkesw-container, .framer-2n8q4 .framer-2sp333-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-1itc3kh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2n8q4 .framer-9q8vjz { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2n8q4.framer-gt2yqb, .framer-2n8q4 .framer-uuva5e, .framer-2n8q4 .framer-1ptvvan, .framer-2n8q4 .framer-1d5yfty, .framer-2n8q4 .framer-p3wfop, .framer-2n8q4 .framer-1itc3kh { gap: 0px; } .framer-2n8q4.framer-gt2yqb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2n8q4.framer-gt2yqb > :first-child, .framer-2n8q4 .framer-1d5yfty > :first-child, .framer-2n8q4 .framer-p3wfop > :first-child, .framer-2n8q4 .framer-1itc3kh > :first-child { margin-top: 0px; } .framer-2n8q4.framer-gt2yqb > :last-child, .framer-2n8q4 .framer-1d5yfty > :last-child, .framer-2n8q4 .framer-p3wfop > :last-child, .framer-2n8q4 .framer-1itc3kh > :last-child { margin-bottom: 0px; } .framer-2n8q4 .framer-uuva5e > * { margin: 0px; margin-left: calc(57px / 2); margin-right: calc(57px / 2); } .framer-2n8q4 .framer-uuva5e > :first-child, .framer-2n8q4 .framer-1ptvvan > :first-child { margin-left: 0px; } .framer-2n8q4 .framer-uuva5e > :last-child, .framer-2n8q4 .framer-1ptvvan > :last-child { margin-right: 0px; } .framer-2n8q4 .framer-1ptvvan > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } .framer-2n8q4 .framer-1d5yfty > *, .framer-2n8q4 .framer-p3wfop > *, .framer-2n8q4 .framer-1itc3kh > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } }\",\".framer-2n8q4.framer-v-1glnhjj .framer-zo8e4s, .framer-2n8q4.framer-v-e89erb .framer-zo8e4s, .framer-2n8q4.framer-v-wqzdzc .framer-zo8e4s, .framer-2n8q4.framer-v-1cobips .framer-zo8e4s, .framer-2n8q4.framer-v-1wo08n5 .framer-zo8e4s, .framer-2n8q4.framer-v-1rllw25 .framer-zo8e4s { cursor: pointer; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-1dl59gp, .framer-2n8q4.framer-v-1wo08n5 .framer-1dl59gp { gap: 40px; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-1b7ux5b-container { order: 0; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-19ii27l-container, .framer-2n8q4.framer-v-wqzdzc .framer-1d5yfty, .framer-2n8q4.framer-v-1cobips .framer-1itc3kh { order: 1; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-14hg4c9-container, .framer-2n8q4.framer-v-wqzdzc .framer-p3wfop { order: 2; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-1xbdy0m-container { order: 3; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-1wx0lme-container { order: 4; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-3ve074-container { order: 5; }\",\".framer-2n8q4.framer-v-1glnhjj .framer-1okijbh-container { order: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2n8q4.framer-v-1glnhjj .framer-1dl59gp { gap: 0px; } .framer-2n8q4.framer-v-1glnhjj .framer-1dl59gp > *, .framer-2n8q4.framer-v-1glnhjj .framer-1dl59gp > :first-child, .framer-2n8q4.framer-v-1glnhjj .framer-1dl59gp > :last-child { margin: 0px; } }\",\".framer-2n8q4.framer-v-euqiok .framer-uuva5e { justify-content: flex-start; overflow-x: auto; padding: 20px 0px 20px 0px; width: 100%; }\",\".framer-2n8q4.framer-v-euqiok .framer-1dl59gp { gap: 10px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2n8q4.framer-v-euqiok .framer-1dl59gp { gap: 0px; } .framer-2n8q4.framer-v-euqiok .framer-1dl59gp > *, .framer-2n8q4.framer-v-euqiok .framer-1dl59gp > :first-child, .framer-2n8q4.framer-v-euqiok .framer-1dl59gp > :last-child { margin: 0px; } }\",\".framer-2n8q4.framer-v-wqzdzc .framer-uuva5e, .framer-2n8q4.framer-v-1cobips .framer-uuva5e { justify-content: flex-start; order: 0; overflow-x: auto; padding: 20px 0px 20px 0px; width: 100%; }\",\".framer-2n8q4.framer-v-wqzdzc .framer-1pzlsaa, .framer-2n8q4.framer-v-1cobips .framer-pv8b60, .framer-2n8q4.framer-v-1rllw25 .framer-12s2wzk { cursor: unset; }\",\".framer-2n8q4.framer-v-wqzdzc .framer-1ptvvan { flex-direction: column; order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2n8q4.framer-v-wqzdzc .framer-1ptvvan { gap: 0px; } .framer-2n8q4.framer-v-wqzdzc .framer-1ptvvan > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-2n8q4.framer-v-wqzdzc .framer-1ptvvan > :first-child { margin-top: 0px; } .framer-2n8q4.framer-v-wqzdzc .framer-1ptvvan > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2n8q4.framer-v-1wo08n5 .framer-1dl59gp { gap: 0px; } .framer-2n8q4.framer-v-1wo08n5 .framer-1dl59gp > *, .framer-2n8q4.framer-v-1wo08n5 .framer-1dl59gp > :first-child, .framer-2n8q4.framer-v-1wo08n5 .framer-1dl59gp > :last-child { margin: 0px; } }\",\".framer-2n8q4.framer-v-1rllw25 .framer-uuva5e { overflow-x: auto; padding: 20px 0px 20px 0px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 357\n * @framerIntrinsicWidth 721\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NDv4h4Tdl\":{\"layout\":[\"fixed\",\"auto\"]},\"zSQ4iQWc_\":{\"layout\":[\"fixed\",\"auto\"]},\"USxjkEl1_\":{\"layout\":[\"fixed\",\"auto\"]},\"PBSm4Ared\":{\"layout\":[\"fixed\",\"auto\"]},\"sJoqg8GtX\":{\"layout\":[\"fixed\",\"auto\"]},\"QDY9q_feu\":{\"layout\":[\"fixed\",\"auto\"]},\"dD9SWFi6e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"veSHs8nfu\":\"hotele1\",\"k6jxy5spQ\":\"hotele2\",\"Swc5GsVZO\":\"biurowce1\",\"IeeokCgUx\":\"biurowce2\",\"b1CypAnKJ\":\"biurowce3\",\"F77fSM3mf\":\"biurowce4\",\"BZzX86Xzz\":\"biurowce5\",\"rNzGkB5Xs\":\"biurowce6\",\"SGzRTR81j\":\"biurowce7\",\"ztxSt0dQ1\":\"obiektyUslugowoHandlowe\",\"eWeudtBJf\":\"budynki1\",\"UR9cBY25S\":\"budynki2\",\"iQJmzJBfX\":\"budynki3\",\"W0pM4NXaL\":\"budynki4\",\"Zsp9kdf7R\":\"budynki5\",\"ikTBZOYi1\":\"budynki6\",\"qK7MUUUXY\":\"budynki7\",\"pnM5QLBpI\":\"budynki8\",\"R6wx_nrOl\":\"budynki9\",\"fm6U8WOap\":\"budynki10\",\"zvKEj_KWv\":\"budynki11\",\"mITaFyoM2\":\"budynki12\",\"rTGojpZOR\":\"budynki13\",\"F2f5QPEoX\":\"budynki14\",\"BY5wC4PX7\":\"budynki15\",\"AH6fm3VDY\":\"budynki16\",\"fOKXAMEgV\":\"budynki17\",\"E9HbiKh0F\":\"budynki18\",\"IOQwbWAjD\":\"budynki19\",\"pbaroXTwu\":\"budynki20\",\"MCxdsVko4\":\"budynki21\",\"rwfvc0bsa\":\"budynki22\",\"lNOBtelB2\":\"budynki23\",\"CpUTIxAq3\":\"budynki24\",\"tnTG1XvvI\":\"budynki25\",\"xrm1eCFmH\":\"budynki26\",\"OVxTfWvJQ\":\"budynki27\",\"qdC6VRUNQ\":\"budynki28\",\"mmcAo6kls\":\"budynki29\",\"vbftuOlqC\":\"budynki30\",\"KO5sd9BHz\":\"budynki31\",\"HkJaeIfD_\":\"budynki32\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framers5sTQv3Kg=withCSS(Component,css,\"framer-2n8q4\");export default Framers5sTQv3Kg;Framers5sTQv3Kg.displayName=\"Tab\";Framers5sTQv3Kg.defaultProps={height:357,width:721};addPropertyControls(Framers5sTQv3Kg,{variant:{options:[\"ZkyeAAuL7\",\"NDv4h4Tdl\",\"zSQ4iQWc_\",\"USxjkEl1_\",\"PBSm4Ared\",\"sJoqg8GtX\",\"QDY9q_feu\",\"dD9SWFi6e\"],optionTitles:[\"Hotele\",\"Biurowce\",\"Obiekty Uslugowo-handlowe\",\"Tab\",\"Variant 5\",\"Variant 6\",\"Budynki Mieszkalne\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},veSHs8nfu:{title:\"Hotele - 1\",type:ControlType.EventHandler},k6jxy5spQ:{title:\"Hotele -2\",type:ControlType.EventHandler},Swc5GsVZO:{title:\"Biurowce -1\",type:ControlType.EventHandler},IeeokCgUx:{title:\"Biurowce -2\",type:ControlType.EventHandler},b1CypAnKJ:{title:\"Biurowce -3\",type:ControlType.EventHandler},F77fSM3mf:{title:\"Biurowce 4\",type:ControlType.EventHandler},BZzX86Xzz:{title:\"Biurowce 5\",type:ControlType.EventHandler},rNzGkB5Xs:{title:\"Biurowce 6\",type:ControlType.EventHandler},SGzRTR81j:{title:\"Biurowce 7\",type:ControlType.EventHandler},ztxSt0dQ1:{title:\"Obiekty Uslugowo Handlowe\",type:ControlType.EventHandler},eWeudtBJf:{title:\"Budynki 1\",type:ControlType.EventHandler},UR9cBY25S:{title:\"Budynki 2\",type:ControlType.EventHandler},iQJmzJBfX:{title:\"Budynki 3\",type:ControlType.EventHandler},W0pM4NXaL:{title:\"Budynki 4\",type:ControlType.EventHandler},Zsp9kdf7R:{title:\"Budynki 5\",type:ControlType.EventHandler},ikTBZOYi1:{title:\"Budynki 6\",type:ControlType.EventHandler},qK7MUUUXY:{title:\"Budynki 7\",type:ControlType.EventHandler},pnM5QLBpI:{title:\"Budynki 8\",type:ControlType.EventHandler},R6wx_nrOl:{title:\"Budynki 9\",type:ControlType.EventHandler},fm6U8WOap:{title:\"Budynki 10\",type:ControlType.EventHandler},zvKEj_KWv:{title:\"Budynki 11\",type:ControlType.EventHandler},mITaFyoM2:{title:\"Budynki 12\",type:ControlType.EventHandler},rTGojpZOR:{title:\"Budynki 13\",type:ControlType.EventHandler},F2f5QPEoX:{title:\"Budynki 14\",type:ControlType.EventHandler},BY5wC4PX7:{title:\"Budynki 15\",type:ControlType.EventHandler},AH6fm3VDY:{title:\"Budynki 16\",type:ControlType.EventHandler},fOKXAMEgV:{title:\"Budynki 17\",type:ControlType.EventHandler},E9HbiKh0F:{title:\"Budynki 18\",type:ControlType.EventHandler},IOQwbWAjD:{title:\"Budynki 19\",type:ControlType.EventHandler},pbaroXTwu:{title:\"Budynki 20\",type:ControlType.EventHandler},MCxdsVko4:{title:\"Budynki 21\",type:ControlType.EventHandler},rwfvc0bsa:{title:\"Budynki 22\",type:ControlType.EventHandler},lNOBtelB2:{title:\"Budynki 23\",type:ControlType.EventHandler},CpUTIxAq3:{title:\"Budynki 24\",type:ControlType.EventHandler},tnTG1XvvI:{title:\"Budynki 25\",type:ControlType.EventHandler},xrm1eCFmH:{title:\"Budynki 26\",type:ControlType.EventHandler},OVxTfWvJQ:{title:\"Budynki 27\",type:ControlType.EventHandler},qdC6VRUNQ:{title:\"Budynki 28\",type:ControlType.EventHandler},mmcAo6kls:{title:\"Budynki 29\",type:ControlType.EventHandler},vbftuOlqC:{title:\"Budynki 30\",type:ControlType.EventHandler},KO5sd9BHz:{title:\"Budynki 31\",type:ControlType.EventHandler},HkJaeIfD_:{title:\"Budynki 32\",type:ControlType.EventHandler}});addFonts(Framers5sTQv3Kg,[{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},...OfertyPrarcyCardFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers5sTQv3Kg\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NDv4h4Tdl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zSQ4iQWc_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"USxjkEl1_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PBSm4Ared\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sJoqg8GtX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QDY9q_feu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dD9SWFi6e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"357\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"veSHs8nfu\\\":\\\"hotele1\\\",\\\"k6jxy5spQ\\\":\\\"hotele2\\\",\\\"Swc5GsVZO\\\":\\\"biurowce1\\\",\\\"IeeokCgUx\\\":\\\"biurowce2\\\",\\\"b1CypAnKJ\\\":\\\"biurowce3\\\",\\\"F77fSM3mf\\\":\\\"biurowce4\\\",\\\"BZzX86Xzz\\\":\\\"biurowce5\\\",\\\"rNzGkB5Xs\\\":\\\"biurowce6\\\",\\\"SGzRTR81j\\\":\\\"biurowce7\\\",\\\"ztxSt0dQ1\\\":\\\"obiektyUslugowoHandlowe\\\",\\\"eWeudtBJf\\\":\\\"budynki1\\\",\\\"UR9cBY25S\\\":\\\"budynki2\\\",\\\"iQJmzJBfX\\\":\\\"budynki3\\\",\\\"W0pM4NXaL\\\":\\\"budynki4\\\",\\\"Zsp9kdf7R\\\":\\\"budynki5\\\",\\\"ikTBZOYi1\\\":\\\"budynki6\\\",\\\"qK7MUUUXY\\\":\\\"budynki7\\\",\\\"pnM5QLBpI\\\":\\\"budynki8\\\",\\\"R6wx_nrOl\\\":\\\"budynki9\\\",\\\"fm6U8WOap\\\":\\\"budynki10\\\",\\\"zvKEj_KWv\\\":\\\"budynki11\\\",\\\"mITaFyoM2\\\":\\\"budynki12\\\",\\\"rTGojpZOR\\\":\\\"budynki13\\\",\\\"F2f5QPEoX\\\":\\\"budynki14\\\",\\\"BY5wC4PX7\\\":\\\"budynki15\\\",\\\"AH6fm3VDY\\\":\\\"budynki16\\\",\\\"fOKXAMEgV\\\":\\\"budynki17\\\",\\\"E9HbiKh0F\\\":\\\"budynki18\\\",\\\"IOQwbWAjD\\\":\\\"budynki19\\\",\\\"pbaroXTwu\\\":\\\"budynki20\\\",\\\"MCxdsVko4\\\":\\\"budynki21\\\",\\\"rwfvc0bsa\\\":\\\"budynki22\\\",\\\"lNOBtelB2\\\":\\\"budynki23\\\",\\\"CpUTIxAq3\\\":\\\"budynki24\\\",\\\"tnTG1XvvI\\\":\\\"budynki25\\\",\\\"xrm1eCFmH\\\":\\\"budynki26\\\",\\\"OVxTfWvJQ\\\":\\\"budynki27\\\",\\\"qdC6VRUNQ\\\":\\\"budynki28\\\",\\\"mmcAo6kls\\\":\\\"budynki29\\\",\\\"vbftuOlqC\\\":\\\"budynki30\\\",\\\"KO5sd9BHz\\\":\\\"budynki31\\\",\\\"HkJaeIfD_\\\":\\\"budynki32\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"721\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import StronaWww from\"#framer/local/canvasComponent/hxZi_mWHb/hxZi_mWHb.js\";import Footer from\"#framer/local/canvasComponent/JOiMPCDbl/JOiMPCDbl.js\";import NavBar from\"#framer/local/canvasComponent/JVZRMH6Rf/JVZRMH6Rf.js\";import Tab from\"#framer/local/canvasComponent/s5sTQv3Kg/s5sTQv3Kg.js\";import*as sharedStyle from\"#framer/local/css/krpp4Eq_K/krpp4Eq_K.js\";import metadataProvider from\"#framer/local/webPageMetadata/c_enuWZBK/c_enuWZBK.js\";const NavBarFonts=getFonts(NavBar);const RichTextWithFX=withFX(RichText);const TabFonts=getFonts(Tab);const StronaWwwFonts=getFonts(StronaWww);const SlideshowFonts=getFonts(Slideshow);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const cycleOrder=[\"zkNXHmsl4\",\"uidt59zP_\",\"CiwV903E0\"];const breakpoints={CiwV903E0:\"(max-width: 809px)\",uidt59zP_:\"(min-width: 810px) and (max-width: 1439px)\",zkNXHmsl4:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lzb2O\";const variantClassNames={CiwV903E0:\"framer-v-1c162j0\",uidt59zP_:\"framer-v-uduxbo\",zkNXHmsl4:\"framer-v-cewhyy\"};const transitions={default:{duration:0}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,scale:1,x:0,y:50};const transition1={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:50};const transformTemplate2=(_,t)=>`perspective(1200px) ${t}`;const animation2={opacity:0,rotate:0,scale:1,x:0,y:100};const animation3={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:100};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zkNXHmsl4\",Phone:\"CiwV903E0\",Tablet:\"uidt59zP_\"};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:\"zkNXHmsl4\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-lzb2O`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-lzb2O`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const veSHs8nfu42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const k6jxy5spQ42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Swc5GsVZO42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const IeeokCgUx42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const b1CypAnKJ42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const F77fSM3mf42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const BZzX86Xzz42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const rNzGkB5Xs42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const SGzRTR81j42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ztxSt0dQ142m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const eWeudtBJf42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const UR9cBY25S42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const iQJmzJBfX42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const W0pM4NXaL42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Zsp9kdf7R42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ikTBZOYi142m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const qK7MUUUXY42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const pnM5QLBpI42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const R6wx_nrOl42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const fm6U8WOap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const zvKEj_KWv42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const mITaFyoM242m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const rTGojpZOR42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const F2f5QPEoX42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const BY5wC4PX742m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const AH6fm3VDY42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const fOKXAMEgV42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const E9HbiKh0F42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const IOQwbWAjD42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const pbaroXTwu42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const MCxdsVko442m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const rwfvc0bsa42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const lNOBtelB242m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const CpUTIxAq342m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const tnTG1XvvI42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const xrm1eCFmH42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const OVxTfWvJQ42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const qdC6VRUNQ42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const mmcAo6kls42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const vbftuOlqC42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const KO5sd9BHz42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const HkJaeIfD_42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTapzn6atv=overlay=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"CiwV903E0\")return true;return!isBrowser();};const isDisplayed1=()=>{if(baseVariant===\"CiwV903E0\")return!isBrowser();return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zkNXHmsl4\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cewhyy\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eue3wq\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pyorlg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{variant:\"CAmGHVagi\"},uidt59zP_:{variant:\"CAmGHVagi\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"bmG4zqhFW\",layoutId:\"bmG4zqhFW\",style:{width:\"100%\"},variant:\"FQp0cjt0N\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qv5my4\",\"data-framer-name\":\"1st Section\",name:\"1st Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{background:{alt:\"Realizacje TK NOVA\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:1261,pixelHeight:764,pixelWidth:1261,sizes:\"360px\",src:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png\",srcSet:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=512 512w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png 1261w\"},transformTemplate:transformTemplate1},uidt59zP_:{background:{alt:\"Realizacje TK NOVA\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:1261,pixelHeight:764,pixelWidth:1261,sizes:\"740px\",src:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png\",srcSet:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=512 512w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png 1261w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Realizacje TK NOVA\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:1261,pixelHeight:764,pixelWidth:1261,sizes:\"1260px\",src:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png\",srcSet:\"https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=512 512w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/pPU18AAxZExqRNR0Uku4C8ab9o.png 1261w\"},className:\"framer-qxmyvk\",\"data-framer-name\":\"Intersect\",name:\"Intersect\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u7cim2\",\"data-framer-name\":\"Group 39575\",name:\"Group 39575\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 360 186\"><g id=\"ss727176416_1\"><path d=\"M 132.128 0 L 0 0 L 0 186 L 360 186 L 360 167.046 Z\" fill=\"rgba(0,0,0,0.8)\"></path></g></svg>',svgContentId:727176416}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1er11l hidden-cewhyy hidden-uduxbo\",\"data-framer-name\":\"New Vector 15\",layout:\"position\",name:\"New Vector 15\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 360 186\"><g id=\"ss1849788238_1\"><path d=\"M 132.128 0 L 0 0 L 0 186 L 360 186 L 360 167.046 Z\" fill=\"rgba(0,0,0,0.8)\"></path></g></svg>',svgContentId:1849788238,withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uidt59zP_:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 550 301\"><g transform=\"translate(0 0.531)\" id=\"ss617991335_1\"><g id=\"ss617991335_2\"><path d=\"M 201.862 0 L 0 0 L 0 300 L 550 300 L 550 269.429 Z\" fill=\"rgba(0, 0, 0, 0.8)\"></path></g></g></svg>',svgContentId:617991335}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5ycg1 hidden-1c162j0\",\"data-framer-name\":\"Group 39557\",layout:\"position\",name:\"Group 39557\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 768 654\"><g transform=\"translate(0 0.762)\" id=\"ss1442990610_1\"><g id=\"ss1442990610_2\"><path d=\"M 281.674 0 L 0 0 L 0 652.95 L 767.46 652.95 L 767.46 586.413 Z\" fill=\"rgba(0, 0, 0, 0.8)\"></path></g></g></svg>',svgContentId:1442990610,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bsrbh1\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymfqtn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-851ubs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:25,name:\"Vector\",svg:'<svg width=\"25\" height=\"26\" viewBox=\"0 0 25 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25 0.710938L0 0.710938L0 25.7109L25 0.710938Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fapnh9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realizacje\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realizacje\"})}),className:\"framer-198vf52\",\"data-framer-name\":\"Biurowce\",fonts:[\"GF;Montserrat-regular\"],name:\"Biurowce\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohu7oa\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a2vsbq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Realizacje\"})})},uidt59zP_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\"},children:\"Realizacje\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\"},children:\"Realizacje\"})}),className:\"framer-13h9ait\",\"data-framer-name\":\"Oferty Prarcy\",fonts:[\"GF;Montserrat-700\"],name:\"Oferty Prarcy\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay41=>/*#__PURE__*/_jsx(Overlay,{children:overlay40=>/*#__PURE__*/_jsx(Overlay,{children:overlay39=>/*#__PURE__*/_jsx(Overlay,{children:overlay38=>/*#__PURE__*/_jsx(Overlay,{children:overlay37=>/*#__PURE__*/_jsx(Overlay,{children:overlay36=>/*#__PURE__*/_jsx(Overlay,{children:overlay35=>/*#__PURE__*/_jsx(Overlay,{children:overlay34=>/*#__PURE__*/_jsx(Overlay,{children:overlay33=>/*#__PURE__*/_jsx(Overlay,{children:overlay32=>/*#__PURE__*/_jsx(Overlay,{children:overlay31=>/*#__PURE__*/_jsx(Overlay,{children:overlay30=>/*#__PURE__*/_jsx(Overlay,{children:overlay29=>/*#__PURE__*/_jsx(Overlay,{children:overlay28=>/*#__PURE__*/_jsx(Overlay,{children:overlay27=>/*#__PURE__*/_jsx(Overlay,{children:overlay26=>/*#__PURE__*/_jsx(Overlay,{children:overlay25=>/*#__PURE__*/_jsx(Overlay,{children:overlay24=>/*#__PURE__*/_jsx(Overlay,{children:overlay23=>/*#__PURE__*/_jsx(Overlay,{children:overlay22=>/*#__PURE__*/_jsx(Overlay,{children:overlay21=>/*#__PURE__*/_jsx(Overlay,{children:overlay20=>/*#__PURE__*/_jsx(Overlay,{children:overlay19=>/*#__PURE__*/_jsx(Overlay,{children:overlay18=>/*#__PURE__*/_jsx(Overlay,{children:overlay17=>/*#__PURE__*/_jsx(Overlay,{children:overlay16=>/*#__PURE__*/_jsx(Overlay,{children:overlay15=>/*#__PURE__*/_jsx(Overlay,{children:overlay14=>/*#__PURE__*/_jsx(Overlay,{children:overlay13=>/*#__PURE__*/_jsx(Overlay,{children:overlay12=>/*#__PURE__*/_jsx(Overlay,{children:overlay11=>/*#__PURE__*/_jsx(Overlay,{children:overlay10=>/*#__PURE__*/_jsx(Overlay,{children:overlay9=>/*#__PURE__*/_jsx(Overlay,{children:overlay8=>/*#__PURE__*/_jsx(Overlay,{children:overlay7=>/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-lglvmx-container\",id:\"lglvmx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{variant:\"USxjkEl1_\"},uidt59zP_:{variant:\"USxjkEl1_\"}},children:/*#__PURE__*/_jsx(Tab,{AH6fm3VDY:AH6fm3VDY42m929(overlay25),b1CypAnKJ:b1CypAnKJ42m929(overlay4),BY5wC4PX7:BY5wC4PX742m929(overlay24),BZzX86Xzz:BZzX86Xzz42m929(overlay6),CpUTIxAq3:CpUTIxAq342m929(overlay33),E9HbiKh0F:E9HbiKh0F42m929(overlay27),eWeudtBJf:eWeudtBJf42m929(overlay10),F2f5QPEoX:F2f5QPEoX42m929(overlay23),F77fSM3mf:F77fSM3mf42m929(overlay5),fm6U8WOap:fm6U8WOap42m929(overlay19),fOKXAMEgV:fOKXAMEgV42m929(overlay26),height:\"100%\",HkJaeIfD_:HkJaeIfD_42m929(overlay41),id:\"ca6Ecyn7m\",IeeokCgUx:IeeokCgUx42m929(overlay3),ikTBZOYi1:ikTBZOYi142m929(overlay15),IOQwbWAjD:IOQwbWAjD42m929(overlay28),iQJmzJBfX:iQJmzJBfX42m929(overlay12),k6jxy5spQ:k6jxy5spQ42m929(overlay1),KO5sd9BHz:KO5sd9BHz42m929(overlay40),layoutId:\"ca6Ecyn7m\",lNOBtelB2:lNOBtelB242m929(overlay32),MCxdsVko4:MCxdsVko442m929(overlay30),mITaFyoM2:mITaFyoM242m929(overlay21),mmcAo6kls:mmcAo6kls42m929(overlay38),OVxTfWvJQ:OVxTfWvJQ42m929(overlay36),pbaroXTwu:pbaroXTwu42m929(overlay29),pnM5QLBpI:pnM5QLBpI42m929(overlay17),qdC6VRUNQ:qdC6VRUNQ42m929(overlay37),qK7MUUUXY:qK7MUUUXY42m929(overlay16),R6wx_nrOl:R6wx_nrOl42m929(overlay18),rNzGkB5Xs:rNzGkB5Xs42m929(overlay7),rTGojpZOR:rTGojpZOR42m929(overlay22),rwfvc0bsa:rwfvc0bsa42m929(overlay31),SGzRTR81j:SGzRTR81j42m929(overlay8),style:{width:\"100%\"},Swc5GsVZO:Swc5GsVZO42m929(overlay2),tnTG1XvvI:tnTG1XvvI42m929(overlay34),UR9cBY25S:UR9cBY25S42m929(overlay11),variant:\"ZkyeAAuL7\",vbftuOlqC:vbftuOlqC42m929(overlay39),veSHs8nfu:veSHs8nfu42m929(overlay),W0pM4NXaL:W0pM4NXaL42m929(overlay13),width:\"100%\",xrm1eCFmH:xrm1eCFmH42m929(overlay35),Zsp9kdf7R:Zsp9kdf7R42m929(overlay14),ztxSt0dQ1:ztxSt0dQ142m929(overlay9),zvKEj_KWv:zvKEj_KWv42m929(overlay20)})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-p8kb0t\",\"data-framer-name\":\"Hotel 1\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Hotel 1\",onTap:()=>overlay.hide()},\"wGHfsqfEF\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjmo6l\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-op2vfv\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Q Hotel Plus Wygrana\"})}),className:\"framer-1vbzdfc\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jv2rta\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo budynku hotelowego\"})}),className:\"framer-17sk4ax\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\"166 pokoi hotelowych z zapleczami sanitarnymi, 3 sale konferencyjne z zapleczem gastronomicznym, szatni\u0105 i foyer, gara\u017C podziemny z 25 miejscami postojowymi, zaplecze biurowo-administracyjne, sanitarno-porz\u0105dkowe i techniczne.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\"Inwestor: WYGRANA Sp. z o.o.\\xa0\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\"Inwestor zast\u0119pczy: Hotel Inwest\"})]}),className:\"framer-1x1u2m7\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\"},children:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\"})})}),className:\"framer-1rmngep\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3zurj\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-gj2msv-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.qhotels.pl/krakow-plus\",height:\"100%\",id:\"fqS00dTX8\",layoutId:\"fqS00dTX8\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Termin rozpocz\u0119cia prac: wrzesie\u0144 2013\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: marzec 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Wygrana 6\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 4 937,00 m2\"]})}),className:\"framer-198gglz\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-huit8y\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-129129f-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"wASm3L4fz\",intervalControl:1.5,itemAmount:1,layoutId:\"wASm3L4fz\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg\",srcSet:\"https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/AMCfCdavawaNKpGw1BAN9j5qDlA.jpg 1800w\"},className:\"framer-1i0ix9t\",\"data-framer-name\":\"Hotele 1.1\",name:\"Hotele 1.1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/Gyk8zW7jrxb5PbqTGUw0mgLOKZ0.jpg\",srcSet:\"https://framerusercontent.com/images/Gyk8zW7jrxb5PbqTGUw0mgLOKZ0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Gyk8zW7jrxb5PbqTGUw0mgLOKZ0.jpg 800w\"},className:\"framer-qlbmsq\",\"data-framer-name\":\"Hotele 1.2\",name:\"Hotele 1.2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/QztVMJgrV7P3BIRFY3LddMJjXQ.jpg\",srcSet:\"https://framerusercontent.com/images/QztVMJgrV7P3BIRFY3LddMJjXQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/QztVMJgrV7P3BIRFY3LddMJjXQ.jpg 800w\"},className:\"framer-u9j6q0\",\"data-framer-name\":\"Hotele 1.3\",name:\"Hotele 1.3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/Z1BliryYeMm8QFnIxZoeiQgAlo.jpg\",srcSet:\"https://framerusercontent.com/images/Z1BliryYeMm8QFnIxZoeiQgAlo.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Z1BliryYeMm8QFnIxZoeiQgAlo.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Z1BliryYeMm8QFnIxZoeiQgAlo.jpg 1800w\"},className:\"framer-1vxcbpw\",\"data-framer-name\":\"Hotele 1.4\",name:\"Hotele 1.4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/TMw0SRakQ5QKaBgryuOMJ8Yl5M.jpg\",srcSet:\"https://framerusercontent.com/images/TMw0SRakQ5QKaBgryuOMJ8Yl5M.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/TMw0SRakQ5QKaBgryuOMJ8Yl5M.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/TMw0SRakQ5QKaBgryuOMJ8Yl5M.jpg 1800w\"},className:\"framer-10seprj\",\"data-framer-name\":\"Hotele 1.5\",name:\"Hotele 1.5\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i2tzp5\",onTap:onTapzn6atv(overlay),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h1j708\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-oca5b0\",\"data-framer-name\":\"Hotel 2\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Hotel 2\",onTap:()=>overlay1.hide()},\"zXPuKjyyt\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rguum3\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g3kqu0\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Q Hotel Radzikowskiego\"})}),className:\"framer-rl69lc\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151ag8\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo budynku hotelowego.\"})}),className:\"framer-1iwiksg\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Na parterze: hol wej\u015Bciowy z recepcj\u0105 oraz sal\u0105 restauracyjn\u0105 dla ponad 50 os\\xf3b wraz z zapleczem kuchennym, sal\u0105 konferencyjn\u0105 dla 35 os\\xf3b, zapleczem socjalnym i sanitarnym dla personelu oraz pomieszczeniami technicznymi: rozdzielnia elektryczna i hydrofornia. 5 pi\u0119ter, 89 pokoi Na 5. pi\u0119trze kot\u0142ownia gazowa. Budynek wyposa\u017Cony jest w dwie klatki schodowe, kt\\xf3re obs\u0142uguj\u0105 wszystkie w/w kondygnacje u\u017Cytkowe.\"})}),className:\"framer-2nwpiy\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujdoqd\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://www.qhotels.pl/krakow\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-11ihxic\",\"data-styles-preset\":\"krpp4Eq_K\",children:\"Strona www\"})})})}),className:\"framer-1byp86u\",\"data-framer-name\":\"Strona www\",fonts:[\"GF;Montserrat-600\"],name:\"Strona www\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Radzikowskiego Sp. z o.o.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: marzec 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: marzec 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Radzikowskiego 142\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 2 511,00 m2\"]})}),className:\"framer-1v2tqi1\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5hbpu\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mjw3v-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"PgwAmYSU6\",intervalControl:1.5,itemAmount:1,layoutId:\"PgwAmYSU6\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/y03Lk2IgKuJgCP9H9xCHE8MOi70.jpg\",srcSet:\"https://framerusercontent.com/images/y03Lk2IgKuJgCP9H9xCHE8MOi70.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/y03Lk2IgKuJgCP9H9xCHE8MOi70.jpg 800w\"},className:\"framer-p741by\",\"data-framer-name\":\"qhotel\",name:\"qhotel\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/HrEnFx7WT94aASAZgY48FRehqM.jpg\",srcSet:\"https://framerusercontent.com/images/HrEnFx7WT94aASAZgY48FRehqM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/HrEnFx7WT94aASAZgY48FRehqM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/HrEnFx7WT94aASAZgY48FRehqM.jpg 1800w\"},className:\"framer-4alh48\",\"data-framer-name\":\"Q_hotel_ul_Radzikowskiego_142_1_\",name:\"Q_hotel_ul_Radzikowskiego_142_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/Yj93XLwVY0wdIvPYpMuLTDjh8nc.jpg\",srcSet:\"https://framerusercontent.com/images/Yj93XLwVY0wdIvPYpMuLTDjh8nc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yj93XLwVY0wdIvPYpMuLTDjh8nc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yj93XLwVY0wdIvPYpMuLTDjh8nc.jpg 1800w\"},className:\"framer-1guqdv9\",\"data-framer-name\":\"Q_hotel_ul_Radzikowskiego_142_2_\",name:\"Q_hotel_ul_Radzikowskiego_142_2_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"540px\",src:\"https://framerusercontent.com/images/2lGPGpm5J3gKSL5Roe1BsKMF2rA.jpg\",srcSet:\"https://framerusercontent.com/images/2lGPGpm5J3gKSL5Roe1BsKMF2rA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2lGPGpm5J3gKSL5Roe1BsKMF2rA.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/2lGPGpm5J3gKSL5Roe1BsKMF2rA.jpg 1800w\"},className:\"framer-1265ud7\",\"data-framer-name\":\"Q_hotel_ul_Radzikowskiego_142_3_\",name:\"Q_hotel_ul_Radzikowskiego_142_3_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-181r4g\",onTap:onTapzn6atv(overlay1),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-osxp78\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-sivwg0\",\"data-framer-name\":\"Biurowce 1\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 1\",onTap:()=>overlay2.hide()},\"HZ0viKeSp\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kckhkc\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qqnsco\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j9q3tl\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Biurowiec Fabryka Kart\"})}),className:\"framer-17j6ngj\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:'Biurowiec Fabryka Kart to przebudowywany, krakowski zesp\\xf3\u0142 budynk\\xf3w biurowych w dzielnicy Krowodrza. Bogata historia oraz niepowtarzalna architektura sprawiaj\u0105, \u017Ce Fabryka Kart to jedyny w swoim rodzaju obiekt z \"dusz\u0105\", kt\\xf3ra wp\u0142ywa na specyficzny klimat miejsca oraz podkre\u015Bla jego presti\u017Cowy charakter.  '}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\"Wizualizacja: materia\u0142 inwestora\"})]}),className:\"framer-2u0sv2\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-noq4kk\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-w56lqg-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.biura.fabrykakart.com/\",height:\"100%\",id:\"zoZl8MW6l\",layoutId:\"zoZl8MW6l\",LPPjqlWaf:\"Strona www\",width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Fabryka Kart Trefl-Krak\\xf3w Lokalizacja: Krak\\xf3w, ul. Cieszy\u0144ska 13 Powierzchnia: 2 401,00 m2\"})}),className:\"framer-16y8p2\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d190qt\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-102er8x-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"upHh3zzl4\",intervalControl:1.5,itemAmount:1,layoutId:\"upHh3zzl4\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:643,pixelHeight:500,pixelWidth:643,sizes:\"540px\",src:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg\",srcSet:\"https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/FBM3ZaXrk7H1Yp83KvZtHImqz08.jpg 643w\"},className:\"framer-1j1kt5q\",\"data-framer-name\":\"fabryka_kart\",name:\"fabryka_kart\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ssv6mo\",onTap:onTapzn6atv(overlay2),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f09viy\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1vm442k\",\"data-framer-name\":\"Biurowce 2\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 2\",onTap:()=>overlay3.hide()},\"ApipPge2X\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvz7hu\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgmvf9\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-173mfvq\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Bielany Business Point Wroc\u0142aw\"})}),className:\"framer-2ocr8n\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Bielany Business Point to wysokiej klasy obiekt biurowy, spe\u0142niaj\u0105cy wymogi kategorii A wed\u0142ug Modern Office Standards Polska.\"})}),className:\"framer-rraqu9\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1mccg\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Ilo\u015B\u0107 kondygnacji: 5 Modu\u0142y biurowe o powierzchni od 130 m2 do 2500 m2 Ilo\u015B\u0107 miejsc parkingowych: 272\"})}),className:\"framer-c73was\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy1uff\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-qdilou-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.bielanybusinesspoint.pl/\",height:\"100%\",id:\"lIJzbsZhx\",layoutId:\"lIJzbsZhx\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Inwestor: Bielany Megapolis sp\\xf3\u0142ka z ograniczon\u0105\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" odpowiedzialno\u015Bci\u0105 sp. k.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin rozpocz\u0119cia prac: lipiec 2015\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin zako\u0144czenia prac: pa\u017Adziernik 2016 Lokalizacja: ul. Irysowa, Bielany Wroc\u0142awskie, Wroc\u0142aw Powierzchnia: 12 000,00 m2\"})]}),className:\"framer-18qu0du\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fdk99\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ua15s-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"FHw6lsI4r\",intervalControl:1.5,itemAmount:1,layoutId:\"FHw6lsI4r\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:330,intrinsicWidth:660,pixelHeight:330,pixelWidth:660,sizes:\"540px\",src:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg\",srcSet:\"https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PovfpG4vpyQuD2XJwHNlyElopjc.jpg 660w\"},className:\"framer-6is4fm\",\"data-framer-name\":\"biurowiec_Wroc\\xc5_aw\",name:\"biurowiec_Wroc\\xc5_aw\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l5rx5j\",onTap:onTapzn6atv(overlay3),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cl5rx5\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-13x3o1a\",\"data-framer-name\":\"Biurowce 3\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 3\",onTap:()=>overlay4.hide()},\"vSqTrYc8o\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m73rz0\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zk264n\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ocze0d\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Quattro Business Park\"})}),className:\"framer-43p4wl\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4uayvj\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek biurowo-us\u0142ugowy\"})}),className:\"framer-sxunft\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xdhnae\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Buma Development\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin rozpocz\u0119cia prac: 2008\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin zako\u0144czenia prac: 2010\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Lokalizacja: ul. Bora Komorowskiego, Krak\\xf3w Powierzchnia: 18 000,00 m2\"})]}),className:\"framer-1bldo6p\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ph3ma0\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nl05rs-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"EsVmV9_Ef\",intervalControl:1.5,itemAmount:1,layoutId:\"EsVmV9_Ef\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:884,pixelHeight:533,pixelWidth:884,sizes:\"540px\",src:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg\",srcSet:\"https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/V7uonSV0ORQTRlRpsQPtwuaBkc.jpg 884w\"},className:\"framer-14v5q0v\",\"data-framer-name\":\"QUATTRO\",name:\"QUATTRO\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r7kxgm\",onTap:onTapzn6atv(overlay4),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jskkvl\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1jtlu3m\",\"data-framer-name\":\"Biurowce 4\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 4\",onTap:()=>overlay5.hide()},\"fSFNvdlCU\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4786we\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p0hegh\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39q4y9\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Green Office A,B\"})}),className:\"framer-4qjb0h\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Zesp\\xf3\u0142 budynk\\xf3w biurowo-us\u0142ugowych\"})}),className:\"framer-1iegski\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lma8e7\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"2 budynki A i B biurowo-us\u0142ugowe\"})}),className:\"framer-gq8aa4\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtt594\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1cl9wdj-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://bumacontractor.pl/obiekty-biurowe/green-office\",height:\"100%\",id:\"yosPwfUcl\",layoutId:\"yosPwfUcl\",LPPjqlWaf:\"Strona www\",width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Buma Developement\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin rozpocz\u0119cia prac: 2010\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin zako\u0144czenia prac: 2011\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Lokalizacja: Krak\\xf3w, ul. Czerwone Maki Powierzchnia: 18 000,00 m2\"})]}),className:\"framer-1yh2hqt\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5v5zo\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-v79b9n-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"q_9AUaH4V\",intervalControl:1.5,itemAmount:1,layoutId:\"q_9AUaH4V\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/r3azEz20qyxThvSOYtQSPzB54.jpg\",srcSet:\"https://framerusercontent.com/images/r3azEz20qyxThvSOYtQSPzB54.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/r3azEz20qyxThvSOYtQSPzB54.jpg 800w\"},className:\"framer-veoc06\",\"data-framer-name\":\"CZERWONE_MAKI_1_800x600\",name:\"CZERWONE_MAKI_1_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/nUT8EZ6oRwbm0gJV4nnFHlM8m0.jpg\",srcSet:\"https://framerusercontent.com/images/nUT8EZ6oRwbm0gJV4nnFHlM8m0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/nUT8EZ6oRwbm0gJV4nnFHlM8m0.jpg 800w\"},className:\"framer-wnk12e\",\"data-framer-name\":\"CZERWONE_MAKI_5_800x600\",name:\"CZERWONE_MAKI_5_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:800,pixelHeight:624,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/1aenJOvBhFj83z0BwgBSnAiqhA.jpg\",srcSet:\"https://framerusercontent.com/images/1aenJOvBhFj83z0BwgBSnAiqhA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1aenJOvBhFj83z0BwgBSnAiqhA.jpg 800w\"},className:\"framer-ybpydi\",\"data-framer-name\":\"green_office\",name:\"green_office\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg\",srcSet:\"https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/XFtWC4uowalcAuHlFRotxYzjRs.jpg 800w\"},className:\"framer-1jo70d4\",\"data-framer-name\":\"CZERWONE_MAKI_7_800x600\",name:\"CZERWONE_MAKI_7_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bldp46\",onTap:onTapzn6atv(overlay5),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4l0qpn\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-lo8zoi\",\"data-framer-name\":\"Biurowce 5\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 5\",onTap:()=>overlay6.hide()},\"OtA68Qd4M\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0sneo\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfckm6\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mpgcni\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Jasnog\\xf3rska 11\"})}),className:\"framer-1209r80\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek biurowo-us\u0142ugowy\"})}),className:\"framer-kaodjf\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13n5u8j\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Ilo\u015B\u0107 kondygnacji: 4\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"  Ilo\u015B\u0107 miejsc parkingowych: 300\"})]}),className:\"framer-f8tvhn\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qayqyu\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1wdjtd3-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://mixbiura.pl/jasnogorska-11/\",height:\"100%\",id:\"wVxLRIU1n\",layoutId:\"wVxLRIU1n\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Mix-Nieruchomo\u015Bci Sp. z o.o\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin rozpocz\u0119cia prac: wrzesie\u0144 2008 Termin zako\u0144czenia prac: marzec 2009 Lokalizacja: ul. Jasnog\\xf3rska, Krak\\xf3w Powierzchnia: 8 645,30 m2\"})]}),className:\"framer-1tm2mhj\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vg4vvr\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlakwu-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"tJa41NPmt\",intervalControl:1.5,itemAmount:1,layoutId:\"tJa41NPmt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:766,intrinsicWidth:1350,pixelHeight:766,pixelWidth:1350,sizes:\"540px\",src:\"https://framerusercontent.com/images/6nfZ1UcsQSaPYTLEkdPi9LRrc.jpg\",srcSet:\"https://framerusercontent.com/images/6nfZ1UcsQSaPYTLEkdPi9LRrc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/6nfZ1UcsQSaPYTLEkdPi9LRrc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/6nfZ1UcsQSaPYTLEkdPi9LRrc.jpg 1350w\"},className:\"framer-1a523wh\",\"data-framer-name\":\"mix_1_\",name:\"mix_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:812,intrinsicWidth:1360,pixelHeight:812,pixelWidth:1360,sizes:\"540px\",src:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg\",srcSet:\"https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/5Kv83dF3sSlWSP6aGwhi02LqE.jpg 1360w\"},className:\"framer-175ilfe\",\"data-framer-name\":\"mix_jasnog\\xc3_rska_2\",name:\"mix_jasnog\\xc3_rska_2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vaxoc\",onTap:onTapzn6atv(overlay6),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x0owc9\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-ul7c7n\",\"data-framer-name\":\"Biurowce 6\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 6\",onTap:()=>overlay7.hide()},\"RAlRh2iLE\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vnths9\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12r7n2d\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1ybp0\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Wielicka 72\"})}),className:\"framer-cijmnj\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek biurowo-us\u0142ugowy\"})}),className:\"framer-1e1m8gx\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bng8bf\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Ilo\u015B\u0107 kondygnacji: 4\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Ilo\u015B\u0107 miejsc parkingowych: 170\"})]}),className:\"framer-1ljnxla\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hu3lmc\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-a3jpvx-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://mixbiura.pl/wielicka/\",height:\"100%\",id:\"Sp_i4yS1u\",layoutId:\"Sp_i4yS1u\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Mix-Nieruchomo\u015Bci Sp. z o.o.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin rozpocz\u0119cia prac: maj 2008 Lokalizacja: Wielicka 72, Krak\\xf3w\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Powierzchnia: 2 890,00 m2\"})]}),className:\"framer-1pmhsej\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wzgekj\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ddwno-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"vIc61zC3K\",intervalControl:1.5,itemAmount:1,layoutId:\"vIc61zC3K\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:782,intrinsicWidth:1410,pixelHeight:782,pixelWidth:1410,sizes:\"540px\",src:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg\",srcSet:\"https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Yuj4FmOYxuOr3ettGb4c0GXFd3w.jpg 1410w\"},className:\"framer-1i0v3yq\",\"data-framer-name\":\"mix_wielicka\",name:\"mix_wielicka\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pepfjc\",onTap:onTapzn6atv(overlay7),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14g3f3f\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-a696x8\",\"data-framer-name\":\"Biurowce 7\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Biurowce 7\",onTap:()=>overlay8.hide()},\"rUgmnZMs3\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121qe9g\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fay8n2\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9hg9u\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Krak\\xf3w Business Park\"})}),className:\"framer-485n4d\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek biurowy \u2013 us\u0142ugowy\"})}),className:\"framer-9oiejm\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jaeehj\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalny Wykonawca: POL-AQUA S.A.\"})}),className:\"framer-k2p8h3\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-67ak22\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\",\"--framer-text-decoration\":\"underline\"},children:\"Strona www\"})}),className:\"framer-x224wz\",\"data-framer-name\":\"Strona www\",fonts:[\"GF;Montserrat-600\"],name:\"Strona www\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Termin rozpocz\u0119cia prac: 2008\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Termin zako\u0144czenia prac: 2009\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Lokalizacja: Zabierz\\xf3w\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Powierzchnia: 16 200,00 m2\"})]}),className:\"framer-105b9dz\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sh8oxq\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqn4wk-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"QA0KkkbcR\",intervalControl:1.5,itemAmount:1,layoutId:\"QA0KkkbcR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:1356,pixelHeight:818,pixelWidth:1356,sizes:\"540px\",src:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg\",srcSet:\"https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yk4g4sASHf671jU6e1iSjcbpTX4.jpg 1356w\"},className:\"framer-10uyonc\",\"data-framer-name\":\"krak\\xc3_w_business_park_2_\",name:\"krak\\xc3_w_business_park_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tfo16t\",onTap:onTapzn6atv(overlay8),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-87c85l\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1iytwp5\",\"data-framer-name\":\"OBIEKTY US\u0141UGOWO-HANDLOWE\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"OBIEKTY US\u0141UGOWO-HANDLOWE\",onTap:()=>overlay9.hide()},\"PFwwFmsSa\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fkbsp2\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rylgc\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgzxue\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Impol Nova Conrada 51\"})}),className:\"framer-1t8h7n1\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budowa stanu surowego budynku biurowo-handlowo-us\u0142ugowego\"})}),className:\"framer-1z01jgo\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3bhcs\",\"data-framer-name\":\"Frame 626079\",name:\"Frame 626079\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalny wykonawca: Buma Contractor\"})}),className:\"framer-1o3d2g4\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-to22gx\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1xnrx7j-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.impolnova.pl/\",height:\"100%\",id:\"l3Fq8Xotf\",layoutId:\"l3Fq8Xotf\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Inwestor: Impol \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Termin rozpocz\u0119cia prac: pa\u017Adziernik 2013\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\" Lokalizacja: Krak\\xf3w, ul. Conrada 51 Powierzchnia: 4 290,00 m2\"})]}),className:\"framer-nt4xvv\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19i5hvo\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wamq9w-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"D9eOfuJMb\",intervalControl:1.5,itemAmount:1,layoutId:\"D9eOfuJMb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"540px\",src:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg\",srcSet:\"https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zocwUGsf5wnGZBozJO06aIPrcIA.jpg 800w\"},className:\"framer-1vf9gos\",\"data-framer-name\":\"Obiekty Uslugowo-handlowe\",name:\"Obiekty Uslugowo-handlowe\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jhmdx7\",onTap:onTapzn6atv(overlay9),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9lm02h\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-o5v7p6\",\"data-framer-name\":\"Budynki 1\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 1\",onTap:()=>overlay10.hide()},\"Ny53Xxzqa\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5wl20\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nane1\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Cieszy\u0144ska 9\"})}),className:\"framer-vs2bth\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q11xr4\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\" Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\"},children:\"Wizualizacja:\\xa0materia\u0142 inwestora\"})]}),className:\"framer-1ensesh\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 230\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 28 - 132\\xa0m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 175\"]})}),className:\"framer-1kb46i8\",\"data-framer-name\":\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",fonts:[\"GF;Montserrat-regular\"],name:\"lo\u015B\u0107 mieszka\u0144: 230Wielko\u015B\u0107 mieszka\u0144: 28 - 132 m2Ilo\u015B\u0107 miejsc postojowych: 175\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5bczb\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-x9v5cv-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://www.cieszynska9.pl/\",height:\"100%\",id:\"Tu278rX41\",layoutId:\"Tu278rX41\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Palladio Cieszy\u0144ska 9\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: II kwarta\u0142 2023\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\"]})}),className:\"framer-ltgd5u\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g0p9vu\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsxrea-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"D_IscCUaU\",intervalControl:1.5,itemAmount:1,layoutId:\"D_IscCUaU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:662,pixelHeight:447,pixelWidth:662,sizes:\"540px\",src:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg\",srcSet:\"https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/gUKuUUdhjVbaSforfGgYVeDpqg.jpg 662w\"},className:\"framer-1v7xlhm\",\"data-framer-name\":\"$2_1\",name:\"$2_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:670,pixelHeight:447,pixelWidth:670,sizes:\"540px\",src:\"https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg\",srcSet:\"https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/ZjZfmLvXudIHcYDfKZDyF78EvU.jpg 670w\"},className:\"framer-e0hbdh\",\"data-framer-name\":\"$8_1_\",name:\"$8_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:588,pixelHeight:447,pixelWidth:588,sizes:\"540px\",src:\"https://framerusercontent.com/images/2k5tDb88BxGcepzIvbd2Sw8kBZk.jpg\",srcSet:\"https://framerusercontent.com/images/2k5tDb88BxGcepzIvbd2Sw8kBZk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2k5tDb88BxGcepzIvbd2Sw8kBZk.jpg 588w\"},className:\"framer-1givg4l\",\"data-framer-name\":\"$1\",name:\"$1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:571,pixelHeight:447,pixelWidth:571,sizes:\"540px\",src:\"https://framerusercontent.com/images/rko8yWbgJP2yq94dP3jM4cgGZjg.jpg\",srcSet:\"https://framerusercontent.com/images/rko8yWbgJP2yq94dP3jM4cgGZjg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/rko8yWbgJP2yq94dP3jM4cgGZjg.jpg 571w\"},className:\"framer-8wyjgm\",\"data-framer-name\":\"$5\",name:\"$5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:557,pixelHeight:447,pixelWidth:557,sizes:\"540px\",src:\"https://framerusercontent.com/images/aO5ogo8z9btcfSW8ey0mnl3j80w.jpg\",srcSet:\"https://framerusercontent.com/images/aO5ogo8z9btcfSW8ey0mnl3j80w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/aO5ogo8z9btcfSW8ey0mnl3j80w.jpg 557w\"},className:\"framer-kxm35w\",\"data-framer-name\":\"$4\",name:\"$4\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1alql5d\",onTap:onTapzn6atv(overlay10),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-117u61x\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-n16sft\",\"data-framer-name\":\"Budynki 2\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 2\",onTap:()=>overlay11.hide()},\"RIMuk2Qq2\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otq7oq\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-temmrr\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Podedworze 9\"})}),className:\"framer-y5v4d7\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxcztl\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Podedworze\\xa09 to nowoczesny budnek wielorodzinny, kt\\xf3ry powstaje w po\u0142udniowej cz\u0119\u015Bci Krakowa.\\xa0W ramach inwestycji zaprojektowano 122 funkcjonalne i przestronne mieszkania o zr\\xf3\u017Cnicowanych metra\u017Cach i uk\u0142adach.\\xa0Mieszkania zr\\xf3\u017Cnicowane s\u0105 pod wzgl\u0119dem\\xa0metra\u017Cu - zaczynaj\u0105c od najmniejszych\\xa0\\xa033 mkw., ko\u0144cz\u0105c na 132 mkw.\\xa0\\xa0Do ka\u017Cdego z mieszka\u0144 przynale\u017Ce\u0107 b\u0119dzie balkon, loggia lub ogr\\xf3dek.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})]}),className:\"framer-vsxrlu\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1np4eve\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1jesrh1-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://podedworze9.pl/\",height:\"100%\",id:\"zA59SV6qJ\",layoutId:\"zA59SV6qJ\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Palladio Podedworze Sp. z o.o.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: I kwarta\u0142 2022\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w\"]})}),className:\"framer-1jc6jum\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zhsf8\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eujpq9-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"fA2Nbl7xd\",intervalControl:1.5,itemAmount:1,layoutId:\"fA2Nbl7xd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:985,pixelHeight:700,pixelWidth:985,sizes:\"540px\",src:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png\",srcSet:\"https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png?scale-down-to=512 512w, https://framerusercontent.com/images/lQaR0c8qDX1FewA3suFfDaDTUo4.png 985w\"},className:\"framer-2n7816\",\"data-framer-name\":\"m1_2\",name:\"m1_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:1011,pixelHeight:700,pixelWidth:1011,sizes:\"540px\",src:\"https://framerusercontent.com/images/Yy6ysoLmWnE3iRct5oBjWK5ipYQ.jpg\",srcSet:\"https://framerusercontent.com/images/Yy6ysoLmWnE3iRct5oBjWK5ipYQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Yy6ysoLmWnE3iRct5oBjWK5ipYQ.jpg 1011w\"},className:\"framer-p3cv69\",\"data-framer-name\":\"wizualizacja_podedworze_04_low_2_1\",name:\"wizualizacja_podedworze_04_low_2_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:985,pixelHeight:700,pixelWidth:985,sizes:\"540px\",src:\"https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png\",srcSet:\"https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png?scale-down-to=512 512w, https://framerusercontent.com/images/WuXVQ4784FBQgtNjz3DvBXhB6Ak.png 985w\"},className:\"framer-mvdsk2\",\"data-framer-name\":\"m3_2\",name:\"m3_2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gwxuq9\",onTap:onTapzn6atv(overlay11),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cl28ya\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1cs0jjh\",\"data-framer-name\":\"Budynki 3\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 3\",onTap:()=>overlay12.hide()},\"OgP5rojl8\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifk8ps\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tbu7wc\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"S\u0142omnicka 4\"})}),className:\"framer-420mw4\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ue32pl\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"S\u0142omnicka 4 to nowoczesny, estetycznie wyko\u0144czony i \u015Bwietnie zaaran\u017Cowany budynek po\u0142o\u017Cony w centrum miasta pomi\u0119dzy ma\u0142ymi i spokojnymi ulicami Lubelsk\u0105 a Cieszy\u0144sk\u0105. Budynek zaprojektowano w formie prostej w wyrazie, pi\u0119ciokondygnacyjnej bry\u0142y g\u0142\\xf3wnej na planie litery L.\\xa0Zaprojektowano w nim 75 lokali mieszkalnych o zr\\xf3\u017Cnicowanych uk\u0142adach i metra\u017Cach. Ka\u017Cde z nich posiada\u0107 b\u0119dzie w\u0142asny balkon/loggi\u0119, ogr\\xf3dek, a mieszkania dwupoziomowe przestronne tarasy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 mieszka\u0144: 75\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 22- 122 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 66\"]})}),className:\"framer-15iok23\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ig2o2x\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1uggasr-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.slomnicka4.pl/\",height:\"100%\",id:\"g0Dvf8zqg\",layoutId:\"g0Dvf8zqg\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: S\u0142omnicka 4 sp\\xf3\u0142ka z ograniczon\u0105 odpowiedzialno\u015Bci\u0105 sp. k\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: S\u0142omnicka 4, Krak\\xf3w\"]})}),className:\"framer-1ol5rv4\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ddqky\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cdua0i-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"rzJ9wnP8H\",intervalControl:1.5,itemAmount:1,layoutId:\"rzJ9wnP8H\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:1920,pixelHeight:1440,pixelWidth:1920,sizes:\"540px\",src:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg\",srcSet:\"https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/y9oR5onjg5s6K94k07juSEfhqI.jpg 1920w\"},className:\"framer-13arjyl\",\"data-framer-name\":\"elewacja_p\\xc3_\\xc5_nocna_i_wschodnia\",name:\"elewacja_p\\xc3_\\xc5_nocna_i_wschodnia\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:1920,pixelHeight:1440,pixelWidth:1920,sizes:\"540px\",src:\"https://framerusercontent.com/images/CXXewI7bcVBuCpQ2JMTEQ39y0Q.jpg\",srcSet:\"https://framerusercontent.com/images/CXXewI7bcVBuCpQ2JMTEQ39y0Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/CXXewI7bcVBuCpQ2JMTEQ39y0Q.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/CXXewI7bcVBuCpQ2JMTEQ39y0Q.jpg 1920w\"},className:\"framer-1gwsupc\",\"data-framer-name\":\"Klatka_parter\",name:\"Klatka_parter\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:1920,pixelHeight:1440,pixelWidth:1920,sizes:\"540px\",src:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg\",srcSet:\"https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/7eRvoJ5i1KjvQ0rzTN4yZNydlqU.jpg 1920w\"},className:\"framer-1pv5ero\",\"data-framer-name\":\"elewacja_zachodnia_i_po\\xc5_udniowa\",name:\"elewacja_zachodnia_i_po\\xc5_udniowa\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q5wgef\",onTap:onTapzn6atv(overlay12),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1whbwwc\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1nbzfj9\",\"data-framer-name\":\"Budynki 4\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 4\",onTap:()=>overlay13.hide()},\"jr0tFrGuG\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yqv6vd\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k51xzh\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Wzg\\xf3rze Wielickie\"})}),className:\"framer-d4ckjz\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a0v4fe\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Osiedle Wzg\\xf3rze Wielickie to\\xa0inwestycja zlokalizowana przy ul.\\xa0Jaworowej w\\xa0p\\xf3\u0142nocno-zachodniej cz\u0119\u015Bci Wieliczki, na\\xa0granicy z\\xa0Krakowem.\\xa0W ramach inwestycji powstan\u0105 cztery pi\u0119ciokondygnacyjne budynki wielorodzinne, w\\xa0kt\\xf3rych\\xa0zaprojektowano \u0142\u0105cznie 112 funkcjonalne i\\xa0przestronne lokale mieszkalne, licz\u0105ce od\\xa0jednego do\\xa0czterech pokoi. Mieszkania zr\\xf3\u017Cnicowane s\u0105\\xa0pod\\xa0wzgl\u0119dem metra\u017Cu \u2013 zaczynaj\u0105c od\\xa0najmniejszych 36 mkw., ko\u0144cz\u0105c na\\xa089 mkw.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Wizualicaja: materia\u0142 inwestora\"})]}),className:\"framer-ehceh5\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pmws30\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1ucc4ho-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://wzgorze-wielickie.pl/\",height:\"100%\",id:\"VEpG3PcFJ\",layoutId:\"VEpG3PcFJ\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: HRMS Invest\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: II kwarta\u0142 2022\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: IV kwarta\u0142 2023\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Wieliczka\"]})}),className:\"framer-5lbr69\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3bn5uh\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c4xij5-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"nhFFdNjvW\",intervalControl:1.5,itemAmount:1,layoutId:\"nhFFdNjvW\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:1160,pixelHeight:730,pixelWidth:1160,sizes:\"1160px\",src:\"https://framerusercontent.com/images/1frDD88KdXHakYaN459FinwbUQ.png\",srcSet:\"https://framerusercontent.com/images/1frDD88KdXHakYaN459FinwbUQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/1frDD88KdXHakYaN459FinwbUQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/1frDD88KdXHakYaN459FinwbUQ.png 1160w\"},className:\"framer-13cabwz\",\"data-framer-name\":\"Wzg\\xc3_rza_Wielickie\",name:\"Wzg\\xc3_rza_Wielickie\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:775,intrinsicWidth:1162,pixelHeight:775,pixelWidth:1162,sizes:\"1162px\",src:\"https://framerusercontent.com/images/vU3iQA5YEIqhuYOoj2xODDL7f1s.png\",srcSet:\"https://framerusercontent.com/images/vU3iQA5YEIqhuYOoj2xODDL7f1s.png?scale-down-to=512 512w, https://framerusercontent.com/images/vU3iQA5YEIqhuYOoj2xODDL7f1s.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/vU3iQA5YEIqhuYOoj2xODDL7f1s.png 1162w\"},className:\"framer-1kotmbr\",\"data-framer-name\":\"wieliczka\",name:\"wieliczka\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:752,intrinsicWidth:1171,pixelHeight:752,pixelWidth:1171,sizes:\"1171px\",src:\"https://framerusercontent.com/images/QWrXuzS1tlmusO9kYVwaYYGu2o.png\",srcSet:\"https://framerusercontent.com/images/QWrXuzS1tlmusO9kYVwaYYGu2o.png?scale-down-to=512 512w, https://framerusercontent.com/images/QWrXuzS1tlmusO9kYVwaYYGu2o.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/QWrXuzS1tlmusO9kYVwaYYGu2o.png 1171w\"},className:\"framer-f6479k\",\"data-framer-name\":\"Wzg\\xc3_rza_Wielickie_1\",name:\"Wzg\\xc3_rza_Wielickie_1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dhirvp\",onTap:onTapzn6atv(overlay13),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jtqv6x\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1r3uriz\",\"data-framer-name\":\"Budynki 5\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 5\",onTap:()=>overlay14.hide()},\"lVlzakFbs\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hga7ln\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqazhz\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Panorama Park\"})}),className:\"framer-1bjldkc\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tij8vj\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Osielde Panorama Park to unikatowa przestrze\u0144 mieszkalna z prywatnym parkiem oraz jeziorem. W ramach inwestycji powstanie 38 apartament\\xf3w z tarasami, ogrodami i gara\u017Cami podziemnymi o powierzchni od 40 m2 do 126 m2.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]})}),className:\"framer-no0i0x\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 apartament\\xf3w: 38\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 apartament\\xf3w: 40-126 m2\"]})}),className:\"framer-1k1oyt7\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxzo3a\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-q4kek5-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://panoramapark.pl/\",height:\"100%\",id:\"JQtkeRMTs\",layoutId:\"JQtkeRMTs\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Panorama Park Sp. z o.o.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Mak\\xf3w, 41-700 Ruda \u015Al\u0105ska\"]})}),className:\"framer-17sj7f2\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogk7rm\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1fud9-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"yE854OSEI\",intervalControl:1.5,itemAmount:1,layoutId:\"yE854OSEI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:558,pixelHeight:447,pixelWidth:558,sizes:\"558px\",src:\"https://framerusercontent.com/images/8uwETR4O4hz1NUIbQi2Zhdm4.jpg\",srcSet:\"https://framerusercontent.com/images/8uwETR4O4hz1NUIbQi2Zhdm4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/8uwETR4O4hz1NUIbQi2Zhdm4.jpg 558w\"},className:\"framer-jngk3x\",\"data-framer-name\":\"slider2\",name:\"slider2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:558,pixelHeight:447,pixelWidth:558,sizes:\"558px\",src:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg\",srcSet:\"https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YVFiJfGSbdfv8usiV2rBb0HeUQ.jpg 558w\"},className:\"framer-1x22rvy\",\"data-framer-name\":\"panoramapark_apartament_1\",name:\"panoramapark_apartament_1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ml2mb0\",onTap:onTapzn6atv(overlay14),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qrurqw\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-87lolu\",\"data-framer-name\":\"Budynki 6\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 6\",onTap:()=>overlay15.hide()},\"KBhCVFUIv\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47anf1\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qcpx58\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Apartamenty Kosocicka\"})}),className:\"framer-1voxpx7\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjjwkt\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Apartamenty Kosocika to inwestycja mieszkaniowa zlokalizowana w po\u0142udniowej cz\u0119\u015Bci Krakowa przy ul. Kosocickiej, w dzielnicy Bie\u017Can\\xf3w-Prokocim.\\xa0W ramach inwestycji zrealizowanych zostanie 5 kameralnych, trzypi\u0119trowych budynk\\xf3w o podwy\u017Cszonym standardzie z windami. Projekt przewiduje \u0142\u0105cznie 114 mieszka\u0144 o powierzchni od 27 m2 do 62 m2.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]})}),className:\"framer-1ht60mw\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 apartament\\xf3w: 114\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 apartament\\xf3w: 27,51\u201362,6 m2\"]})}),className:\"framer-uggbyd\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsnx2a\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-fix0rk-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://kosocicka.pl/\",height:\"100%\",id:\"YqLrWHTAS\",layoutId:\"YqLrWHTAS\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Apartamenty Kosocicka 2 Sp z o.o.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: IV kwarta\u0142 2022\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Kosocicka, Krak\\xf3w\"]})}),className:\"framer-1b9genb\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-osxtdk\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urea7p-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Kb55fGsFu\",intervalControl:1.5,itemAmount:1,layoutId:\"Kb55fGsFu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:598,pixelHeight:447,pixelWidth:598,sizes:\"598px\",src:\"https://framerusercontent.com/images/cTg5wHoYZ2pGRk9bWwtPQcgMA0.jpg\",srcSet:\"https://framerusercontent.com/images/cTg5wHoYZ2pGRk9bWwtPQcgMA0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cTg5wHoYZ2pGRk9bWwtPQcgMA0.jpg 598w\"},className:\"framer-159y9zv\",\"data-framer-name\":\"$1_1_\",name:\"$1_1_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edkydb\",onTap:onTapzn6atv(overlay15),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kptpc5\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1l78cer\",\"data-framer-name\":\"Budynki 7\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 7\",onTap:()=>overlay16.hide()},\"R3YIKDhXA\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7og1cf\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x6ij2v\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Premier Park\"})}),className:\"framer-1kbkngc\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-paehqw\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Premier Park to kompleksowa odpowied\u017A architektoniczna na stale rosn\u0105ce oczekiwania rynku, zgodna z wymaganiami XXI wieku. Na osiedlu powstaj\u0105 dwa rodzaje budynk\\xf3w (apartamentowiec Villa Class i wi\u0119kszy budynek mieszkalny Grand House), a tak\u017Ce \u017C\u0142obek i przedszkole, plac zabaw i doskonale zaplanowana ziele\u0144.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})}),className:\"framer-vompd5\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 99\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 26-160 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 81\"]})}),className:\"framer-1fvjtp3\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdacb0\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-ect7h4-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://premierpark.pl/\",height:\"100%\",id:\"S1eT8i7sb\",layoutId:\"S1eT8i7sb\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: BD Inwestor \u2018\u20192\u201D Sp. z o.o. PREMIER PARK Sp. K.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: II kwarta\u0142 2019\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: IV kwarta\u0142 2020\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Osiedle Witosa, ul. Witosa/Kolo\u0144ska, Katowice\"]})}),className:\"framer-mf13cx\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p94vv3\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-126ugkv-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"W3wqRemuY\",intervalControl:1.5,itemAmount:1,layoutId:\"W3wqRemuY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658,intrinsicWidth:1170,pixelHeight:658,pixelWidth:1170,sizes:\"1170px\",src:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg\",srcSet:\"https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cUYzLRUQn112cd2xs1Ed2CMSEOg.jpg 1170w\"},className:\"framer-19xx35r\",\"data-framer-name\":\"Premier_Park_Villa_Class_1_\",name:\"Premier_Park_Villa_Class_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:2048,pixelHeight:1152,pixelWidth:2048,sizes:\"1292.4444px\",src:\"https://framerusercontent.com/images/rKnzJGyvM19cxhHu6EuazNm5E.jpg\",srcSet:\"https://framerusercontent.com/images/rKnzJGyvM19cxhHu6EuazNm5E.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/rKnzJGyvM19cxhHu6EuazNm5E.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/rKnzJGyvM19cxhHu6EuazNm5E.jpg 2048w\"},className:\"framer-l234ji\",\"data-framer-name\":\"Premier_Park_Grand_House\",name:\"Premier_Park_Grand_House\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:2048,pixelHeight:1152,pixelWidth:2048,sizes:\"1164.4444px\",src:\"https://framerusercontent.com/images/memORVW94R6pMyuE97KJJRbujs.jpg\",srcSet:\"https://framerusercontent.com/images/memORVW94R6pMyuE97KJJRbujs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/memORVW94R6pMyuE97KJJRbujs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/memORVW94R6pMyuE97KJJRbujs.jpg 2048w\"},className:\"framer-ahygey\",\"data-framer-name\":\"Premier_Park_Villa_Class_2_\",name:\"Premier_Park_Villa_Class_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r798be\",onTap:onTapzn6atv(overlay16),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o1myva\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay17.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-iv8dci\",\"data-framer-name\":\"Budynki 8\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 8\",onTap:()=>overlay17.hide()},\"fno_z38lP\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18juto2\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kofcck\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle \u017Belazna\"})}),className:\"framer-1opzjco\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ne0y45\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Osiedle \u017Belazna to komfortowy kompleks mieszkalny, b\u0119d\u0105cy odpowiedzi\u0105 wobec rosn\u0105cemu zapotrzebowaniu na nowe mieszkania w sosnowieckiej dzielnicy Niwka. Osiedle sk\u0142ada si\u0119 z czterech budynk\\xf3w wielorodzinnych o wysoko\u015Bci 5 kondygnacji.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})}),className:\"framer-1sp0ukj\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 32\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 32-78 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 138\"]})}),className:\"framer-1drb6ns\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1agcvt\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-3iwy1m-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://osiedlezelazna.pl/\",height:\"100%\",id:\"XMxYA5Ump\",layoutId:\"XMxYA5Ump\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: BD Inwestor \u2018\u20192\u201D Sp. z o.o. \u017BELAZNA Sp. K.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: IV kwarta\u0142 2019\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: III kwarta\u0142 2022\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. \u017Belazna, Sosnowiec\"]})}),className:\"framer-1f8zkwr\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xsga6y\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-27v3x1-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"oP9tFYfNQ\",intervalControl:1.5,itemAmount:1,layoutId:\"oP9tFYfNQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,pixelHeight:720,pixelWidth:1280,sizes:\"1280px\",src:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg\",srcSet:\"https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/CW9BignkN0OIbHMutymXXJBGrk.jpg 1280w\"},className:\"framer-7frq6x\",\"data-framer-name\":\"Osiedle_\\xc5_elazna_Sosnowiec\",name:\"Osiedle_\\xc5_elazna_Sosnowiec\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,pixelHeight:720,pixelWidth:1280,sizes:\"1280px\",src:\"https://framerusercontent.com/images/pU6xcCyVHgxzyUqzAb5lCAUHCds.jpg\",srcSet:\"https://framerusercontent.com/images/pU6xcCyVHgxzyUqzAb5lCAUHCds.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/pU6xcCyVHgxzyUqzAb5lCAUHCds.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/pU6xcCyVHgxzyUqzAb5lCAUHCds.jpg 1280w\"},className:\"framer-8vlhb0\",\"data-framer-name\":\"Osiedle_\\xc5_elazna_Sosnowiec_1\",name:\"Osiedle_\\xc5_elazna_Sosnowiec_1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gan3fz\",onTap:onTapzn6atv(overlay17),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1946c4u\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay18.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-s3tsw2\",\"data-framer-name\":\"Budynki 9\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 9\",onTap:()=>overlay18.hide()},\"ZGJ1xutoh\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pstjmf\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t03t6y\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Kazimierza Wielkiego 51\"})}),className:\"framer-jezmql\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t91ply\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Apartamentowiec, realizowany jest\\xa0\\xa0przy ulicy Kazimierza Wielkiego 51 to swoista oaza spokoju i harmonii w samym sercu t\u0119tni\u0105cego \u017Cyciem miasta. Inwestycja KW51 zak\u0142ada zr\\xf3\u017Cnicowane i funkcjonalne mieszkania. Wi\u0119kszo\u015B\u0107 z nich to kawalerki oraz mieszkania dwupokojowe. W inwestycji KW51 zlokalizowanych jest 79 lokali, w tym 77 mieszka\u0144 i 2 lokale us\u0142ugowe. Do budynku przynale\u017Cy te\u017C 75 miejsc postojowych podziemnych, w przestronnej hali gara\u017Cowej oraz 6 miejsc postojowych na zewn\u0105trz. Budynek posiada siedem kondygnacji.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})}),className:\"framer-1srlfp7\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 77\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 81\"]})}),className:\"framer-1ulf11x\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5t2mi\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1xhc3vp-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://kw51.pl/\",height:\"100%\",id:\"SYYs7UDaZ\",layoutId:\"SYYs7UDaZ\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Des Henryk Dowgier Anna Dowgier S.J.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Kazimierza Wielkiego 51, Krak\\xf3w\"]})}),className:\"framer-bscvch\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9l2q6\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uz5ckn-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"oUG_f6wNw\",intervalControl:1.5,itemAmount:1,layoutId:\"oUG_f6wNw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:599,pixelHeight:447,pixelWidth:599,sizes:\"599px\",src:\"https://framerusercontent.com/images/l2n2tlq1Jg8Ske1V1UQ2iL7LApg.png\",srcSet:\"https://framerusercontent.com/images/l2n2tlq1Jg8Ske1V1UQ2iL7LApg.png?scale-down-to=512 512w, https://framerusercontent.com/images/l2n2tlq1Jg8Ske1V1UQ2iL7LApg.png 599w\"},className:\"framer-xgkvdx\",\"data-framer-name\":\"$1\",name:\"$1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:606,pixelHeight:447,pixelWidth:606,sizes:\"606px\",src:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png\",srcSet:\"https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png?scale-down-to=512 512w, https://framerusercontent.com/images/ED3Olo4lkfd8JIWLtK2HFXYYJY.png 606w\"},className:\"framer-15k76ev\",\"data-framer-name\":\"$3\",name:\"$3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:447,intrinsicWidth:614,pixelHeight:447,pixelWidth:614,sizes:\"614px\",src:\"https://framerusercontent.com/images/JqMXOSRNBvxlulNRd7i0g95ma3A.png\",srcSet:\"https://framerusercontent.com/images/JqMXOSRNBvxlulNRd7i0g95ma3A.png?scale-down-to=512 512w, https://framerusercontent.com/images/JqMXOSRNBvxlulNRd7i0g95ma3A.png 614w\"},className:\"framer-1s4q0fv\",\"data-framer-name\":\"$2_2_\",name:\"$2_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydwhr7\",onTap:onTapzn6atv(overlay18),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ftdr78\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay19.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1wm2k4j\",\"data-framer-name\":\"Budynki 10\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 10\",onTap:()=>overlay19.hide()},\"TRECQksdT\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyadzo\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62guue\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle S\u0142oneczne Miasteczko, kolejne etapy\"})}),className:\"framer-q4txsf\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pugf7a\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle S\u0142oneczne Miasteczko znajduje si\u0119\\xa0przy ul. Henryka i Karola Czecz\\xf3w w dzielnicy Bie\u017Can\\xf3w-Prokocim. Inwestycj\u0119 tworz\u0105 kameralne, 3-pi\u0119trowe budynki z mieszkaniami o zr\\xf3\u017Cnicowanej powierzchni od 37 do 87 m\\xb2 z\\xa0gara\u017Cem podziemnym.\"})}),className:\"framer-f2gjnq\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Wizualizacja:\\xa0materia\u0142 inwestora\"})}),className:\"framer-4r6b34\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1z2qf\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-ll1pty-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://develia.pl/pl/mieszkania/krakow/sloneczne-miasteczko/\",height:\"100%\",id:\"OK9KzCGdy\",layoutId:\"OK9KzCGdy\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Inwestor: DEVELIA S.A.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Braci Czecz\\xf3w\"]})}),className:\"framer-1jmb14m\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j6rpkp\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yoalch-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ohWXcMogx\",intervalControl:1.5,itemAmount:1,layoutId:\"ohWXcMogx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:617,intrinsicWidth:1094,pixelHeight:617,pixelWidth:1094,sizes:\"1094px\",src:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png\",srcSet:\"https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=512 512w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/q2mH6o6W6YjHF5ty28GZoDKLqLk.png 1094w\"},className:\"framer-eyym4q\",\"data-framer-name\":\"S\\xc5_oneczne_Maisteczko\",name:\"S\\xc5_oneczne_Maisteczko\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:1089,pixelHeight:600,pixelWidth:1089,sizes:\"1089px\",src:\"https://framerusercontent.com/images/05bMcVq0SM6eDhC0iqCIkeVyGOg.png\",srcSet:\"https://framerusercontent.com/images/05bMcVq0SM6eDhC0iqCIkeVyGOg.png?scale-down-to=512 512w, https://framerusercontent.com/images/05bMcVq0SM6eDhC0iqCIkeVyGOg.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/05bMcVq0SM6eDhC0iqCIkeVyGOg.png 1089w\"},className:\"framer-h4smi4\",\"data-framer-name\":\"S\\xc5_oneczne_Maisteczko_2\",name:\"S\\xc5_oneczne_Maisteczko_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:615,intrinsicWidth:1087,pixelHeight:615,pixelWidth:1087,sizes:\"1087px\",src:\"https://framerusercontent.com/images/LRG6CWDSTKEjsjjplqcRp23k.png\",srcSet:\"https://framerusercontent.com/images/LRG6CWDSTKEjsjjplqcRp23k.png?scale-down-to=512 512w, https://framerusercontent.com/images/LRG6CWDSTKEjsjjplqcRp23k.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/LRG6CWDSTKEjsjjplqcRp23k.png 1087w\"},className:\"framer-1hr0876\",\"data-framer-name\":\"S\\xc5_oneczne_Maisteczko_3\",name:\"S\\xc5_oneczne_Maisteczko_3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y5f4rm\",onTap:onTapzn6atv(overlay19),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u62fwp\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay20.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-unp5o9\",\"data-framer-name\":\"Budynki 11\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 11\",onTap:()=>overlay20.hide()},\"fl0cRwBG_\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f532lh\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zljtvz\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Piasta Park\"})}),className:\"framer-1rhuaj2\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1270gat\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Lokale z przestrzennymi loggiami, balkonami, tarasami, a tak\u017Ce ogr\\xf3dkami przydomowymi.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]})}),className:\"framer-ddj0u3\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 222+ 293\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 28 \u2013 105 m2\"]})}),className:\"framer-k53adi\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4lild\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-145j7mt-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://www.taniemieszkania.pl/mieszkania-krakow/piasta-park.html\",height:\"100%\",id:\"aJhUUDAA5\",layoutId:\"aJhUUDAA5\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wawel Service\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Mistrzejowice, ul. Piasta Ko\u0142odzieja\"]})}),className:\"framer-tyzg5v\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f6r3sm\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-guf6bi-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"lm50jt71k\",intervalControl:1.5,itemAmount:1,layoutId:\"lm50jt71k\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:658,pixelHeight:484,pixelWidth:658,sizes:\"658px\",src:\"https://framerusercontent.com/images/stCVauSL55XIR3t5dASg4S7fN30.png\",srcSet:\"https://framerusercontent.com/images/stCVauSL55XIR3t5dASg4S7fN30.png?scale-down-to=512 512w, https://framerusercontent.com/images/stCVauSL55XIR3t5dASg4S7fN30.png 658w\"},className:\"framer-199m1rm\",\"data-framer-name\":\"Bia\\xc5_opr\\xc4_dnicka_3\",name:\"Bia\\xc5_opr\\xc4_dnicka_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:800,pixelHeight:400,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg\",srcSet:\"https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/sTer8SsekiWMyHHGGmb0FNLiOE.jpg 800w\"},className:\"framer-jmgyik\",\"data-framer-name\":\"Piatsa\",name:\"Piatsa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:800,pixelHeight:400,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/0uD8pPqUq3pBVv83HyBXRKLZ4.jpg\",srcSet:\"https://framerusercontent.com/images/0uD8pPqUq3pBVv83HyBXRKLZ4.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/0uD8pPqUq3pBVv83HyBXRKLZ4.jpg 800w\"},className:\"framer-3bu4ly\",\"data-framer-name\":\"piasta\",name:\"piasta\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:800,pixelHeight:400,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/yxBFfaXxEIZfPoap0FD0rT6k6g.jpg\",srcSet:\"https://framerusercontent.com/images/yxBFfaXxEIZfPoap0FD0rT6k6g.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yxBFfaXxEIZfPoap0FD0rT6k6g.jpg 800w\"},className:\"framer-1iars4h\",\"data-framer-name\":\"Piasta_2\",name:\"Piasta_2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fkunn9\",onTap:onTapzn6atv(overlay20),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qk0ktf\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay21.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1jrmkp4\",\"data-framer-name\":\"Budynki 12\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 12\",onTap:()=>overlay21.hide()},\"YcbFA6Gqz\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i3t3gw\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rqjiuz\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Centralna Park, kolejne etapy\"})}),className:\"framer-bosinu\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9oj5w\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle Centralna Park po\u0142o\u017Cone przy ulicach Centralnej i Galicyjskiej w Krakowie, w dzielnicy Czy\u017Cyny.\\xa0Wszystkie mieszkania posiadaj\u0105 balkon, loggi\u0119 lub ogr\\xf3dki.\\xa0W budynku jest tak\u017Ce przestronny gara\u017C podziemny, kom\\xf3rki lokatorskie, a na terenie osiedla naziemne miejsca postojowe.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Aktualnie w\\xa0ramach inwestycji budujemy jako Genralny Wykonawca:\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"etap VI (F)\\xa0-\\xa0262 lokale, termin zako\u0144czenia prac:\\xa0IV kw.\\xa02022 r.\",/*#__PURE__*/_jsx(\"br\",{}),\"etap VII (H) -\\xa0216 mieszka\u0144, termin zako\u0144czenia prac: I kw.\\xa02023 r.\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"etap VIII (G) -139 mieszka\u0144,\\xa0termin zako\u0144czenia prac: I kw.\\xa02024 r.\",/*#__PURE__*/_jsx(\"br\",{}),\"etap IX\\xa0(I) - 154 lokale,\\xa0termin zako\u0144czenia prac: I kw.\\xa02024 r.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Wcze\u015Bniejsze realizacje w ramach inewstycji zosta\u0142o wybudowanych prawie 800 mieszka\u0144.\\xa0\"})]}),className:\"framer-fe3n1z\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pmtqpv\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1eo1fn-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://develia.pl/pl/mieszkania/krakow/centralna-park/\",height:\"100%\",id:\"S66RjnF67\",layoutId:\"S66RjnF67\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: DEVELIA S.A.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Centralna, Krak\\xf3w\"]})}),className:\"framer-2gnbh6\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtlgek\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h7xbio-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"pRyBgReOX\",intervalControl:1.5,itemAmount:1,layoutId:\"pRyBgReOX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:586,intrinsicWidth:964,pixelHeight:586,pixelWidth:964,sizes:\"964px\",src:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png\",srcSet:\"https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png?scale-down-to=512 512w, https://framerusercontent.com/images/53kv0EMq1VDACy7AmiJLYw4Zw.png 964w\"},className:\"framer-9rmck3\",\"data-framer-name\":\"Centralna_Park_G_VIII_etap_Develia_1_\",name:\"Centralna_Park_G_VIII_etap_Develia_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:569,intrinsicWidth:903,pixelHeight:569,pixelWidth:903,sizes:\"903px\",src:\"https://framerusercontent.com/images/KrMx8ZQAh3FMduFnSE443QnLSA.png\",srcSet:\"https://framerusercontent.com/images/KrMx8ZQAh3FMduFnSE443QnLSA.png?scale-down-to=512 512w, https://framerusercontent.com/images/KrMx8ZQAh3FMduFnSE443QnLSA.png 903w\"},className:\"framer-d0llg0\",\"data-framer-name\":\"Centralna_Park_H_VII_etap_Develia_2_\",name:\"Centralna_Park_H_VII_etap_Develia_2_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:950,pixelHeight:600,pixelWidth:950,sizes:\"950px\",src:\"https://framerusercontent.com/images/z06FJ5dl56u6gLcNt2VJphiB0.png\",srcSet:\"https://framerusercontent.com/images/z06FJ5dl56u6gLcNt2VJphiB0.png?scale-down-to=512 512w, https://framerusercontent.com/images/z06FJ5dl56u6gLcNt2VJphiB0.png 950w\"},className:\"framer-l9z6sx\",\"data-framer-name\":\"Centralna_Park_H_VII_etap_Develia_1_\",name:\"Centralna_Park_H_VII_etap_Develia_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:934,pixelHeight:592,pixelWidth:934,sizes:\"934px\",src:\"https://framerusercontent.com/images/bIKQ98R2hxJqAlWNHjDeYEJmEk.png\",srcSet:\"https://framerusercontent.com/images/bIKQ98R2hxJqAlWNHjDeYEJmEk.png?scale-down-to=512 512w, https://framerusercontent.com/images/bIKQ98R2hxJqAlWNHjDeYEJmEk.png 934w\"},className:\"framer-y2kxik\",\"data-framer-name\":\"Centralna_Park_G_VIII_etap_Develia_2_\",name:\"Centralna_Park_G_VIII_etap_Develia_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12uwmkz\",onTap:onTapzn6atv(overlay21),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u1fyy7\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay22.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-125zoxa\",\"data-framer-name\":\"Budynki 13\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 13\",onTap:()=>overlay22.hide()},\"nPZrKt9Ma\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-de18d4\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a1rwa8\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"My\u015Bliwska 66\"})}),className:\"framer-1gblv75\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a97u2j\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:['My\u015Bliwska 66 to adres we wschodniej cz\u0119\u015Bci Podg\\xf3rza, pod kt\\xf3rym powstaje nowoczesny budynek wielorodzinny. Najwy\u017Cszej jako\u015Bci materia\u0142y, komfortowe mieszkania oraz bliskie s\u0105siedztwo parku to tylko nieliczne atuty inwestycji. Na uwag\u0119 zas\u0142uguje nowoczesna architektura oraz niepowtarzalne rozwi\u0105zania konstrukcyjne budynku.\\xa0 Jego prost\u0105, opart\u0105 na kszta\u0142cie litery \"L\", bry\u0142\u0119 podzielono w poziomie na dwie cz\u0119\u015Bci. Wsuni\u0119ta w obwodzie dziewi\u0105ta kondygnacja rozdziela go optycznie, dodaj\u0105c mu lekko\u015Bci i dynamiczno\u015Bci. W budynku zaprojektowano 150 komfortowych mieszka\u0144 o zr\\xf3\u017Cnicowanej wielko\u015Bci (30-89 m2) i uk\u0142adzie, gara\u017C podziemny oraz cz\u0119\u015Bci wsp\\xf3lne do u\u017Cytku mieszka\u0144c\\xf3w. Do ka\u017Cdego z mieszka\u0144 przynale\u017Ce\u0107 b\u0119dzie balkon, loggia lub przestronny taras. Funkcjonalno\u015B\u0107 i r\\xf3\u017Cnorodno\u015B\u0107 rozwi\u0105za\u0144 pozwalaj\u0105 wyj\u015B\u0107 naprzeciw oczekiwaniom i indywidualnym potrzebom przysz\u0142ych mieszka\u0144c\\xf3w.',/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]})}),className:\"framer-mzploc\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gea1ud\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-ptyzs8-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.mysliwska66.pl/\",height:\"100%\",id:\"rratDG7lv\",layoutId:\"rratDG7lv\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: My\u015Bliwska 66 Sp\\xf3\u0142ka z o.o. Sp.k.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. My\u015Bliwska 66\"]})}),className:\"framer-xdaqtp\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ozkmy\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l15tgg-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"oSq7VjKba\",intervalControl:1.5,itemAmount:1,layoutId:\"oSq7VjKba\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:711,pixelHeight:533,pixelWidth:711,sizes:\"711px\",src:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg\",srcSet:\"https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/UVca1tJSneQeQDQJGsE30OeYzE.jpg 711w\"},className:\"framer-1517a47\",\"data-framer-name\":\"Mysliwska_Zewnatrz_37_170427_copy_ma\\xc5_y\",name:\"Mysliwska_Zewnatrz_37_170427_copy_ma\\xc5_y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:711,pixelHeight:533,pixelWidth:711,sizes:\"711px\",src:\"https://framerusercontent.com/images/Z9G142FLrSijt98VbfWTr2Guk.jpg\",srcSet:\"https://framerusercontent.com/images/Z9G142FLrSijt98VbfWTr2Guk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Z9G142FLrSijt98VbfWTr2Guk.jpg 711w\"},className:\"framer-1mk1upe\",\"data-framer-name\":\"Mysliwska_Zewnatrz_38_170427_copy_ma\\xc5_y\",name:\"Mysliwska_Zewnatrz_38_170427_copy_ma\\xc5_y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:711,pixelHeight:533,pixelWidth:711,sizes:\"711px\",src:\"https://framerusercontent.com/images/sakeoFZW49J2atDzMmhydBpt3w.jpg\",srcSet:\"https://framerusercontent.com/images/sakeoFZW49J2atDzMmhydBpt3w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/sakeoFZW49J2atDzMmhydBpt3w.jpg 711w\"},className:\"framer-1i7uc9i\",\"data-framer-name\":\"Mysliwska_Zewnatrz_35_170404c_ma\\xc5_y\",name:\"Mysliwska_Zewnatrz_35_170404c_ma\\xc5_y\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11210hz\",onTap:onTapzn6atv(overlay22),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yd27o\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay23.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-oqy6pk\",\"data-framer-name\":\"Budynki 14\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 14\",onTap:()=>overlay23.hide()},\"EeNsRa8PK\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69s09z\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6wbre\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Podg\\xf3rze Duchackie\"})}),className:\"framer-9ybfgq\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swlpi7\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle mieszkaniowe Podg\\xf3rze Duchackie to zesp\\xf3\u0142 trzech budynk\\xf3w zlokalizowanych w po\u0142udniowej cz\u0119\u015Bci Krakowa.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Grupa TK jest wykonawc\u0105 stanu surowego budynku B2, ul. Turniejowa.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})]}),className:\"framer-9h99ja\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144 w budynku B2: 90\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 49-71 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 52\"]})}),className:\"framer-sc1sn1\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6rdl7e\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1qholu1-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://turniejowa.com.pl/\",height:\"100%\",id:\"n7UJVBEfD\",layoutId:\"n7UJVBEfD\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:['Inwestor: Krakowskie Konsorcjum Inwestycyjne \"KRAKOIN\" Sp. z o.o. Sp. k.',/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: II kwarta\u0142 2019\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: III kwarta\u0142 2020\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Turniejowa, Krak\\xf3w\"]})}),className:\"framer-1kaztqy\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7jznd\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sd8b4n-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"RUyXC5V9c\",intervalControl:1.5,itemAmount:1,layoutId:\"RUyXC5V9c\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:1600,pixelHeight:821,pixelWidth:1600,sizes:\"1600px\",src:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg\",srcSet:\"https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/oE4ZNBIFK9QfiooPqSiUddYwj10.jpg 1600w\"},className:\"framer-1l7gcb5\",\"data-framer-name\":\"Turniejowa_KRAKOIN\",name:\"Turniejowa_KRAKOIN\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6mnip8\",onTap:onTapzn6atv(overlay23),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1namz8h\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay24.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-46h91o\",\"data-framer-name\":\"Budynki 15\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 15\",onTap:()=>overlay24.hide()},\"DCDdF2c2P\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17hernw\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oinf1y\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle Harmonia\"})}),className:\"framer-sijbpa\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zryapa\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle Harmonia jest inwestycj\u0105 zlokalizowan\u0105 w po\u0142udniowej cz\u0119\u015Bci Krakowa \u2013 rejon Kliny Zacisze, przy ul. Bartla/ Anny Szwed-\u015Aniadowskiej. Aktualnie trwaj\u0105 prace dotycz\u0105ce budynk\\xf3w B11, B10, B9 stanowi\u0105cych kolejny etap osiedla\"})}),className:\"framer-1lx6cqd\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ak421\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-4ba2le-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://osiedleharmonia.com.pl//\",height:\"100%\",id:\"VEpdZ58S4\",layoutId:\"VEpdZ58S4\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Bartla Development Grupa KTBS\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Bartla, Krak\\xf3w\"]})}),className:\"framer-u8je0o\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4cfn8t\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13u7be2-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Byo6tCIcR\",intervalControl:1.5,itemAmount:1,layoutId:\"Byo6tCIcR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/Gmwj9TOCS3eMRUDE2l64arDjgRY.jpg\",srcSet:\"https://framerusercontent.com/images/Gmwj9TOCS3eMRUDE2l64arDjgRY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Gmwj9TOCS3eMRUDE2l64arDjgRY.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/Gmwj9TOCS3eMRUDE2l64arDjgRY.jpg 1800w\"},className:\"framer-1bv6ts1\",\"data-framer-name\":\"Osiedle_Harmonia_1_\",name:\"Osiedle_Harmonia_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg\",srcSet:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg 1800w\"},className:\"framer-1ur924b\",\"data-framer-name\":\"Osiedle_Harmonia_2_\",name:\"Osiedle_Harmonia_2_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg\",srcSet:\"https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/mUOP7jiwEOTrvlZgrPfrBreebE.jpg 1800w\"},className:\"framer-1f4wgci\",\"data-framer-name\":\"Osiedle_Harmonia_2_\",name:\"Osiedle_Harmonia_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-76ucr2\",onTap:onTapzn6atv(overlay24),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzlgrp\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay25.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-7u9m3i\",\"data-framer-name\":\"Budynki 16\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 16\",onTap:()=>overlay25.hide()},\"w8Qb3EYto\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9xous\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0t1b3\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"NY Residence\"})}),className:\"framer-1h2tm9u\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsgcqx\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Wroc\u0142awska 33\"})}),className:\"framer-19n9521\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"NY Residence Wroc\u0142awska 33 to budynek o wysokim standardzie wyko\u0144czenia - kwintesencja wielkomiejskiego szyku i nowoczesno\u015Bci typowej dla ameryka\u0144skich apartament\\xf3w. Frontowa cz\u0119\u015B\u0107 nawi\u0105zuj\u0105ca wysoko\u015Bci\u0105 okolicznych budynk\\xf3w, wyr\\xf3\u017Cnia si\u0119 kamienn\u0105 elewacj\u0105, mosi\u0119\u017Cnym gzymsem oryginalnymi wej\u015Bciami do lokali us\u0142ugowych. Eleganckie lobby wraz z recepcj\u0105 i wej\u015Bciami do wind wyko\u0144czone jest szlachetnymi materia\u0142ami oraz motywami nawi\u0105zuj\u0105cymi do stylu Nowego Jorku.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja:\\xa0materia\u0142 inwestora\"]})}),className:\"framer-874hnl\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 130\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 22-105 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 miejsc postojowych: 100\"]})}),className:\"framer-5223l\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u76jbn\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1r8yh39-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://nyresidence.pl/\",height:\"100%\",id:\"s0f9AWYsH\",layoutId:\"s0f9AWYsH\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Inwestor: Terra Casa S.A.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Wroc\u0142awska 33, Krak\\xf3w\"]})}),className:\"framer-12s41hv\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nsky0c\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-23u87a-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"hx0pfqOJI\",intervalControl:1.5,itemAmount:1,layoutId:\"hx0pfqOJI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:1280,pixelHeight:896,pixelWidth:1280,sizes:\"1280px\",src:\"https://framerusercontent.com/images/2fQxhBIQrKejGhf2L3CrFDKTE.jpg\",srcSet:\"https://framerusercontent.com/images/2fQxhBIQrKejGhf2L3CrFDKTE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/2fQxhBIQrKejGhf2L3CrFDKTE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/2fQxhBIQrKejGhf2L3CrFDKTE.jpg 1280w\"},className:\"framer-6hortt\",\"data-framer-name\":\"NY_Residence_Wroc\\xc5_awska_33_1_2_\",name:\"NY_Residence_Wroc\\xc5_awska_33_1_2_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:793,intrinsicWidth:1280,pixelHeight:793,pixelWidth:1280,sizes:\"1280px\",src:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg\",srcSet:\"https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/SIZ6Wj1WbbztX1lEgIWNcLLs.jpg 1280w\"},className:\"framer-qdoeqh\",\"data-framer-name\":\"NY_Residence_Wroc\\xc5_awska_33\",name:\"NY_Residence_Wroc\\xc5_awska_33\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-29qyrj\",onTap:onTapzn6atv(overlay25),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cef2nh\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay26.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1575elk\",\"data-framer-name\":\"Budynki 17\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 17\",onTap:()=>overlay26.hide()},\"tnjrwqxkJ\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0jaa9\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wxe3eb\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Lubelska 16-18\"})}),className:\"framer-8dryps\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3yhjzh\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Ilo\u015B\u0107 mieszka\u0144:\\xa0 96 mieszka\u0144\",/*#__PURE__*/_jsx(\"br\",{}),\"PUM: ok. 3483 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"LU: ok. 720 m\"]})}),className:\"framer-i6ir1v\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Lubelska 14-18 Sp\\xf3\u0142ka z ograniczon\u0105 odpowiedzialno\u015Bci\u0105 S.K.A.\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Lubelska 16-18, Krak\\xf3w\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 3 483,00 m2\"]})}),className:\"framer-1tfpgq4\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i6706j\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfzk4s-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"vqZ_hGalJ\",intervalControl:1.5,itemAmount:1,layoutId:\"vqZ_hGalJ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg\",srcSet:\"https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/k94KiAf5qJACkYLn6RegsncvQk.jpg 1800w\"},className:\"framer-1t4dlnu\",\"data-framer-name\":\"Lubelska_16_18_1_\",name:\"Lubelska_16_18_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/hFW8DpihJq1qGvGvR1uqPlad5I.jpg\",srcSet:\"https://framerusercontent.com/images/hFW8DpihJq1qGvGvR1uqPlad5I.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/hFW8DpihJq1qGvGvR1uqPlad5I.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/hFW8DpihJq1qGvGvR1uqPlad5I.jpg 1800w\"},className:\"framer-69i7gw\",\"data-framer-name\":\"Lubelska_16_18_2_\",name:\"Lubelska_16_18_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16lt9jd\",onTap:onTapzn6atv(overlay26),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14fr10k\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay27.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1c0472v\",\"data-framer-name\":\"Budynki 18\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 18\",onTap:()=>overlay27.hide()},\"tfE4sCjQ0\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hjuox6\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rsp5v2\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Krygowskiego\"})}),className:\"framer-x13su2\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6w8ksd\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Budowa budynk\\xf3w mieszkalnych wielorodzinnych A1 i A2.\",/*#__PURE__*/_jsx(\"br\",{}),\"Wizualizacja: materia\u0142 inwestora\"]})}),className:\"framer-2vb3k5\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 84\",/*#__PURE__*/_jsx(\"br\",{}),\"Wielko\u015B\u0107 mieszka\u0144: 34-78 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 kondygnacji: 3\"]})}),className:\"framer-yuoyht\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3bg4t\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-13cpjnj-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://www.taniemieszkania.pl/mieszkania-krakow/krygowskiego.html\",height:\"100%\",id:\"yMWB0DmVB\",layoutId:\"yMWB0DmVB\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wawel Service\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Krygowskiego\"]})}),className:\"framer-jv10ry\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6gogtn\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tzkp1p-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"xvWFChuA8\",intervalControl:1.5,itemAmount:1,layoutId:\"xvWFChuA8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:384,intrinsicWidth:633,pixelHeight:384,pixelWidth:633,sizes:\"633px\",src:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg\",srcSet:\"https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zSgM9FaMliMnspPYkU8tLIfWQow.jpg 633w\"},className:\"framer-107s3xd\",\"data-framer-name\":\"Kryg\",name:\"Kryg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:570,pixelHeight:400,pixelWidth:570,sizes:\"570px\",src:\"https://framerusercontent.com/images/SS17aSJEucK03bvvXR65Gip2K3o.jpg\",srcSet:\"https://framerusercontent.com/images/SS17aSJEucK03bvvXR65Gip2K3o.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/SS17aSJEucK03bvvXR65Gip2K3o.jpg 570w\"},className:\"framer-5jp1gt\",\"data-framer-name\":\"krygowskiego_zdjecie_inwestycji\",name:\"krygowskiego_zdjecie_inwestycji\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ssura\",onTap:onTapzn6atv(overlay27),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-th1y9t\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay28.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1j9sokw\",\"data-framer-name\":\"Budynki 19\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 19\",onTap:()=>overlay28.hide()},\"I3npnQBR6\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yxpg8\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1afx6ux\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Lubelska 14\"})}),className:\"framer-1msnp26\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fa33kb\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Przebudowa i nadbudowa budynku us\u0142ugowo - mieszkalnego, wielorodzinnego\"})}),className:\"framer-5h1vx7\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"15 mieszka\u0144, 3 lokale us\u0142ugowe oraz kom\\xf3rki lokatorskie\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Lubelska 14 to wielorodzinny, kameralny 4-pi\u0119trowy budynek po\u0142o\u017Cony w jednej z najbardziej urokliwych dzielnic Krakowa \u2013 Krowodrzy. Inwestycja jest adaptacj\u0105 biurowego budynku z pierwszej po\u0142owy XX wieku na luksusowe mieszkania oraz lokale us\u0142ugowe.\"})]}),className:\"framer-1ug4uv1\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18grkok\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-hvo0dk-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://lubelska14.pl/\",height:\"100%\",id:\"zRb1yLWpy\",layoutId:\"zRb1yLWpy\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: TK INVEST 2 sp. zo.o.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: 1 kw. 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: luty 2016\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Lubelska 14\"]})}),className:\"framer-10eoxpm\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oephgl\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16pru3t-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"XDdN0dznL\",intervalControl:1.5,itemAmount:1,layoutId:\"XDdN0dznL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:583,intrinsicWidth:693,pixelHeight:583,pixelWidth:693,sizes:\"693px\",src:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png\",srcSet:\"https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png?scale-down-to=512 512w, https://framerusercontent.com/images/8a8ahaZBGpoSJEDOr6oXW769Olc.png 693w\"},className:\"framer-zoci5\",\"data-framer-name\":\"Zrzut_ekranu_2017_07_06_o_11_19_06\",name:\"Zrzut_ekranu_2017_07_06_o_11_19_06\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c8tmm9\",onTap:onTapzn6atv(overlay28),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a8i55n\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay29.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-f442n2\",\"data-framer-name\":\"Budynki 20\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 20\",onTap:()=>overlay29.hide()},\"W9Z_jhVXi\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9sp59\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rcdtjv\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Bia\u0142opr\u0105dnicka\"})}),className:\"framer-7zvwnp\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6e80tr\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Dwa wolnostoj\u0105ce budynki wielorodzinne. Ka\u017Cde z mieszka\u0144 posiada balkon lub ogr\\xf3dek.\"})}),className:\"framer-1cunjd7\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 115\",/*#__PURE__*/_jsx(\"br\",{}),\"Metra\u017Ce: 27 \u2013 83 m2\"]})}),className:\"framer-1r7lnvq\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-clc6q6\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1bfcvo5-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://www.taniemieszkania.pl/mieszkania-krakow/bialopradnicka.html\",height:\"100%\",id:\"FYtPiaIRN\",layoutId:\"FYtPiaIRN\",LPPjqlWaf:\"Strona www\",width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Wizualizacja za zgod\u0105\\xa0inwestora:\\xa0Wawel Service\"})}),className:\"framer-1a0bg5t\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wawel Service\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, u. Bia\u0142opr\u0105dnicka\"]})}),className:\"framer-14lw49n\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10jpgvx\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n2x10e-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"oxuM6_D6U\",intervalControl:1.5,itemAmount:1,layoutId:\"oxuM6_D6U\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:800,pixelHeight:450,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/y354XkySBC66cKcPgrCh7WisIg.png\",srcSet:\"https://framerusercontent.com/images/y354XkySBC66cKcPgrCh7WisIg.png?scale-down-to=512 512w, https://framerusercontent.com/images/y354XkySBC66cKcPgrCh7WisIg.png 800w\"},className:\"framer-cbveob\",\"data-framer-name\":\"Bia\\xc5_opr\\xc4_dnicka_1\",name:\"Bia\\xc5_opr\\xc4_dnicka_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:800,pixelHeight:450,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png\",srcSet:\"https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png?scale-down-to=512 512w, https://framerusercontent.com/images/yjc32CLECN01lLiqkQmA5OpHQ0.png 800w\"},className:\"framer-15jip09\",\"data-framer-name\":\"Bia\\xc5_opr\\xc4_dnicka_3_2_\",name:\"Bia\\xc5_opr\\xc4_dnicka_3_2_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mr8q8p\",onTap:onTapzn6atv(overlay29),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l9rku3\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay30.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-m7rji1\",\"data-framer-name\":\"Budynki 21\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 21\",onTap:()=>overlay30.hide()},\"KYIQ5JwFV\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iehfqc\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ypvrt\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Pozna\u0144ska 10\"})}),className:\"framer-xpffp1\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rwcs27\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek mieszkalny, wielorodzinny z gara\u017Cem oraz zagospodarowaniem terenu\"})}),className:\"framer-1dcaftm\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 mieszka\u0144: 139 mieszkania\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Na placu przed\\xa0budynkiem zainstalowano rze\u017Ab\u0119-instalacj\u0119 \u201EDrzewo \u017Bycia\u201D Dariusza Pali.\"})]}),className:\"framer-jolcwo\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5tmkq\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-10vhw63-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://poznanska10.pl/\",height:\"100%\",id:\"dmF3CgvJt\",layoutId:\"dmF3CgvJt\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Terra Casa S.A.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: czerwiec 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: stycze\u0144 2016\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, Pozna\u0144ska 10\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 6 700,00 m2\"]})}),className:\"framer-utoq14\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snzdl4\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-40kp89-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"MBJ6jTFPT\",intervalControl:1.5,itemAmount:1,layoutId:\"MBJ6jTFPT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1204,intrinsicWidth:1800,pixelHeight:1204,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/EMb9aq4uYJcfWGPHRCtADtGQ.jpg\",srcSet:\"https://framerusercontent.com/images/EMb9aq4uYJcfWGPHRCtADtGQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/EMb9aq4uYJcfWGPHRCtADtGQ.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/EMb9aq4uYJcfWGPHRCtADtGQ.jpg 1800w\"},className:\"framer-18au1pc\",\"data-framer-name\":\"Pozna\\xc5_ska_2\",name:\"Pozna\\xc5_ska_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/tqmPof0BqWvawdsAt485lABi8.jpg\",srcSet:\"https://framerusercontent.com/images/tqmPof0BqWvawdsAt485lABi8.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/tqmPof0BqWvawdsAt485lABi8.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/tqmPof0BqWvawdsAt485lABi8.jpg 1800w\"},className:\"framer-kdsmii\",\"data-framer-name\":\"Pozna\\xc5_ska_3\",name:\"Pozna\\xc5_ska_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg\",srcSet:\"https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/dMK2PWgLs81eAeQENLKO6Xu1PKQ.jpg 1800w\"},className:\"framer-39tqg4\",\"data-framer-name\":\"Pozna\\xc5_ska1\",name:\"Pozna\\xc5_ska1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gur5hg\",onTap:onTapzn6atv(overlay30),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6rbdn3\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay31.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1k2x4pu\",\"data-framer-name\":\"Budynki 22\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 22\",onTap:()=>overlay31.hide()},\"lCTFTbR2d\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8m65bx\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c8fmyo\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle FI\"})}),className:\"framer-qj7t62\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-win4i9\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Zesp\\xf3\u0142 budynk\\xf3w mieszkalnych wielorodzinnych z us\u0142ugami\"})}),className:\"framer-yg7st8\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 324\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 lokali us\u0142ugowych: 12\"]})}),className:\"framer-eofoja\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6gm3j\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1cuod87-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://osiedlefi.pl/\",height:\"100%\",id:\"C3k_4JtgV\",layoutId:\"C3k_4JtgV\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Megapolis Osiedle FI sp\\xf3\u0142ka z ograniczon\u0105 odpowiedzialno\u015Bci\u0105 sp. k.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: czerwiec 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: grudzie\u0144 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Rzemie\u015Blnicza, Krak\\xf3w\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 18 971,67 m2\"]})}),className:\"framer-13nrxed\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tttf8n\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wufati-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"LxB5v0BCx\",intervalControl:1.5,itemAmount:1,layoutId:\"LxB5v0BCx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:683,intrinsicWidth:1024,pixelHeight:683,pixelWidth:1024,sizes:\"1024px\",src:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/Z7r315hOO2zlKBgsvjro2AJXQ.jpg 1024w\"},className:\"framer-76nitt\",\"data-framer-name\":\"FI_1_\",name:\"FI_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:683,intrinsicWidth:1024,pixelHeight:683,pixelWidth:1024,sizes:\"1024px\",src:\"https://framerusercontent.com/images/7r0JGebrfgtdybmUIbZ2xK7eWng.jpg\",srcSet:\"https://framerusercontent.com/images/7r0JGebrfgtdybmUIbZ2xK7eWng.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7r0JGebrfgtdybmUIbZ2xK7eWng.jpg 1024w\"},className:\"framer-1iyjz9s\",\"data-framer-name\":\"fi2\",name:\"fi2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17u7fx7\",onTap:onTapzn6atv(overlay31),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jcz0o0\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay32.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-9mikyg\",\"data-framer-name\":\"Budynki 23\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 23\",onTap:()=>overlay32.hide()},\"snvNHR9Qq\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo2hqb\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0ra6n\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle Rycerskie\"})}),className:\"framer-15383z9\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f3ues\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Zesp\\xf3\u0142 budynk\\xf3w mieszkalnych wielorodzinnych z us\u0142ugami\"})}),className:\"framer-7dgi03\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Ilo\u015B\u0107 mieszka\u0144: 73 mieszkania o powierzchni od 26 m2 do 66 m2\"})}),className:\"framer-gfhr9\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdpdal\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1v9vl0y-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.osiedlerycerskie.com.pl/\",height:\"100%\",id:\"ENhjMtnrS\",layoutId:\"ENhjMtnrS\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wroc\u0142aw KG Group sp\\xf3\u0142ka z ograniczon\u0105 odpowiedzialno\u015Bci\u0105 sp. k.\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: stycze\u0144 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: czerwiec 2016\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Zielna, Wroc\u0142aw\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 3 495,62 m2\"]})}),className:\"framer-ufrsr6\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kd8yt9\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qdjf3-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"SywF2j71m\",intervalControl:1.5,itemAmount:1,layoutId:\"SywF2j71m\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1800,pixelHeight:1200,pixelWidth:1800,sizes:\"1800px\",src:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg\",srcSet:\"https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yLbBydkqdsA03nisvYGi11ic5Q.jpg 1800w\"},className:\"framer-3yl6ug\",\"data-framer-name\":\"Osiedle_Rycerskie\",name:\"Osiedle_Rycerskie\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r5uud7\",onTap:onTapzn6atv(overlay32),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hbuu12\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay33.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-9gg5hp\",\"data-framer-name\":\"Budynki 24\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 24\",onTap:()=>overlay33.hide()},\"HCTCrudXC\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11rjakf\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nw14x\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Kaskada Bia\u0142y Pr\u0105dnik\"})}),className:\"framer-1x793wy\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14mxn52\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo 2 budynk\\xf3w mieszkalnych wielorodzinnych wraz z infrastruktur\u0105 towarzysz\u0105c\u0105.\"})}),className:\"framer-1tbj9vm\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Ilo\u015B\u0107 mieszka\u0144: 118 + 67\",/*#__PURE__*/_jsx(\"br\",{}),\"Ilo\u015B\u0107 lokali us\u0142ugowych: 30 + 4\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia u\u017Cytkowa mieszka\u0144: oko\u0142o 5500 m2 + 2653 m2\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia u\u017Cytkowa lokali: oko\u0142o 2500 m2 + 653 m2\"]})}),className:\"framer-1l5y9tc\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lstnbi\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-z70z0-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.kaskada-bp.pl/\",height:\"100%\",id:\"ubTbKtGmI\",layoutId:\"ubTbKtGmI\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Inwestor: Kaskada Bia\u0142y Pr\u0105dnik\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: lipiec 2012\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: kwiecie\u0144 2015\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Danka\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 5 500,00 m2\"]})}),className:\"framer-1moodh6\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15lj029\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vbyhhj-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"qglk3VsLy\",intervalControl:1.5,itemAmount:1,layoutId:\"qglk3VsLy\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/dW37JcjsDeemikjCIRkablUQYk.jpg\",srcSet:\"https://framerusercontent.com/images/dW37JcjsDeemikjCIRkablUQYk.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/dW37JcjsDeemikjCIRkablUQYk.jpg 800w\"},className:\"framer-1w4esbf\",\"data-framer-name\":\"DANKA_3_800x600\",name:\"DANKA_3_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/GFks7w5bWYuha3sYRtWTunp3S2g.jpg\",srcSet:\"https://framerusercontent.com/images/GFks7w5bWYuha3sYRtWTunp3S2g.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/GFks7w5bWYuha3sYRtWTunp3S2g.jpg 800w\"},className:\"framer-12dudbp\",\"data-framer-name\":\"DANKA_2_800x600\",name:\"DANKA_2_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/JOi4RBNufg7diYiXAFnzQuWVM.jpg\",srcSet:\"https://framerusercontent.com/images/JOi4RBNufg7diYiXAFnzQuWVM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/JOi4RBNufg7diYiXAFnzQuWVM.jpg 800w\"},className:\"framer-1sz22oq\",\"data-framer-name\":\"DANKA_7_800x600\",name:\"DANKA_7_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg\",srcSet:\"https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/w7WzQSEmRIrjX4Qx8pTaKhZ6C9I.jpg 800w\"},className:\"framer-1bp0034\",\"data-framer-name\":\"DANKA_6_800x600\",name:\"DANKA_6_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wxqvaq\",onTap:onTapzn6atv(overlay33),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hmch2o\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay34.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1im3r0z\",\"data-framer-name\":\"Budynki 25\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 25\",onTap:()=>overlay34.hide()},\"BAnAz1nSB\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yncudu\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9c3ac\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Ogr\\xf3d P\u0142asz\\xf3w Koszykarska\"})}),className:\"framer-x8z4u8\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-da0wqy\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo wielorodzinnego budynku mieszkalnego\"})}),className:\"framer-ccl1oa\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Generalny wykonawca: AWBUD Sp. z o.o.\"]})}),className:\"framer-1g91brk\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dme9ej\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-126vrwv-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.solartdeweloper.pl/inwestycja,1.html\",height:\"100%\",id:\"CUI5pcJmQ\",layoutId:\"CUI5pcJmQ\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Termin rozpocz\u0119cia prac: maj 2011\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: wrzesie\u0144 2012\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Koszykarska\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 17 000,00 m2\"]})}),className:\"framer-1w8pp13\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vpe9gk\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1slfdqh-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ZPQS0XeQm\",intervalControl:1.5,itemAmount:1,layoutId:\"ZPQS0XeQm\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg\",srcSet:\"https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/lGJaRL4ynM41doLKJSJZroHzaE.jpg 800w\"},className:\"framer-n7gvim\",\"data-framer-name\":\"koszykar_1_800x600\",name:\"koszykar_1_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/ggoIUZkBA8tjzUdmiXQL7JO30.jpg\",srcSet:\"https://framerusercontent.com/images/ggoIUZkBA8tjzUdmiXQL7JO30.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/ggoIUZkBA8tjzUdmiXQL7JO30.jpg 800w\"},className:\"framer-3qo0qa\",\"data-framer-name\":\"koszykar_3_800x600\",name:\"koszykar_3_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/FYknEMFetSrlVIs7O38sQ8uOlIc.jpg\",srcSet:\"https://framerusercontent.com/images/FYknEMFetSrlVIs7O38sQ8uOlIc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/FYknEMFetSrlVIs7O38sQ8uOlIc.jpg 800w\"},className:\"framer-1d62mse\",\"data-framer-name\":\"koszykar_2_800x600\",name:\"koszykar_2_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u0fcvw\",onTap:onTapzn6atv(overlay34),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r7qrxe\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay35.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1dc9ciq\",\"data-framer-name\":\"Budynki 26\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 26\",onTap:()=>overlay35.hide()},\"YkFKlEmJe\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ekazb\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p2nwxu\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Osiedle Familijne BUMA\"})}),className:\"framer-1ga90q7\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jpm6ld\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek mieszkalny wielorodzinny\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})]}),className:\"framer-pokq75\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s565e0\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-rqwp5m-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.osiedlefamilijne.pl/\",height:\"100%\",id:\"YLKVo6jsk\",layoutId:\"YLKVo6jsk\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Buma Developement\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: stycze\u0144 2011\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: pa\u017Adziernik 2011\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Dobrego Pasterza\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 10 000,00 m2\"]})}),className:\"framer-1oiiiwd\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kzhxbs\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hnfqpl-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"LkpbhiVzA\",intervalControl:1.5,itemAmount:1,layoutId:\"LkpbhiVzA\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/IQzI5gd5XZMI1o39b5G10Yq7PI.jpg\",srcSet:\"https://framerusercontent.com/images/IQzI5gd5XZMI1o39b5G10Yq7PI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/IQzI5gd5XZMI1o39b5G10Yq7PI.jpg 800w\"},className:\"framer-12ilg96\",\"data-framer-name\":\"DOBREGO_PASTERZA_5_800x600\",name:\"DOBREGO_PASTERZA_5_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/GzyVhVp9OWUnm3BgdA3DlnezN04.jpg\",srcSet:\"https://framerusercontent.com/images/GzyVhVp9OWUnm3BgdA3DlnezN04.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/GzyVhVp9OWUnm3BgdA3DlnezN04.jpg 800w\"},className:\"framer-1uwnrwx\",\"data-framer-name\":\"DOBREGO_PASTERZA_2_800x600\",name:\"DOBREGO_PASTERZA_2_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg\",srcSet:\"https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/jnErUFcUX2NG9EWEMykfsvd5f0w.jpg 800w\"},className:\"framer-hq60ns\",\"data-framer-name\":\"DOBREGO_PASTERZA_3_800x600\",name:\"DOBREGO_PASTERZA_3_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/ffriSGnUNCzCDhX8YU2Wfs5o.jpg\",srcSet:\"https://framerusercontent.com/images/ffriSGnUNCzCDhX8YU2Wfs5o.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/ffriSGnUNCzCDhX8YU2Wfs5o.jpg 800w\"},className:\"framer-rs1sym\",\"data-framer-name\":\"DOBREGO_PASTERZA_4_800x600\",name:\"DOBREGO_PASTERZA_4_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i95maw\",onTap:onTapzn6atv(overlay35),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fsxf0u\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay36.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1l9za4w\",\"data-framer-name\":\"Budynki 27\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 27\",onTap:()=>overlay36.hide()},\"zoZ_ohsxO\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ra05zq\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf6y3m\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Reduty\"})}),className:\"framer-1n755oh\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qaflri\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynek mieszkalny\"})}),className:\"framer-16qcmak\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1637p4x\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Budynek mieszkalny po\u0142o\u017Cony\\xa0w dzielnicy Pr\u0105dnik Czerwony. Ka\u017Cde mieszkanie posiada balkon. Budynek zosta\u0142 realizowany w tradycyjnej technologii.\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"lo\u015B\u0107 mieszka\u0144: 63\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia mieszka\u0144: 29-50 m2\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Krakowskie Konsorcjum Inwestycyjne Krakoin Sp. z o.o\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: czerwiec 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: czerwiec 2016\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Reduty, Krak\\xf3w\"]})]}),className:\"framer-kblen2\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j4xawq\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lk2id-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"O6o7ZWBh_\",intervalControl:1.5,itemAmount:1,layoutId:\"O6o7ZWBh_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:1278,pixelHeight:724,pixelWidth:1278,sizes:\"1278px\",src:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg\",srcSet:\"https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/AhUW2nsbrarTmRxFRdLhDMpNUGw.jpg 1278w\"},className:\"framer-1h0cnb1\",\"data-framer-name\":\"Reduty\",name:\"Reduty\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ivtqaq\",onTap:onTapzn6atv(overlay36),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4jut7t\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay37.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1k5cc6o\",\"data-framer-name\":\"Budynki 28\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 28\",onTap:()=>overlay37.hide()},\"IZ4r58svZ\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a8qtr2\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ti50hv\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Klonowica Wawel Service\"})}),className:\"framer-1x97x4a\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vads80\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo budynku mieszkalnego wielorodzinnego wraz z infrastruktur\u0105 towarzysz\u0105c\u0105.\"})}),className:\"framer-30qvpm\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Ilo\u015B\u0107 mieszka\u0144: 177 + 3 lokale us\u0142ugowe\"})}),className:\"framer-13z2e2\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kghf74\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-rr0wme-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.wawel-service.pl/inwestycje/klonowica.html\",height:\"100%\",id:\"WIsaL4hs3\",layoutId:\"WIsaL4hs3\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wawel Service\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: lipiec 2011\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: marzec 2013\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Klonowica\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 9 000,00 m2\"]})}),className:\"framer-1krwsx2\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rzby0\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-304cew-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"OQ5pwk0l5\",intervalControl:1.5,itemAmount:1,layoutId:\"OQ5pwk0l5\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg\",srcSet:\"https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/VsqhbaF9idSQXQ2v1MOKiH17Wtg.jpg 800w\"},className:\"framer-594cet\",\"data-framer-name\":\"KLONOWICKA_1_800x600\",name:\"KLONOWICKA_1_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/7hOSBBoBynk3Guzt7tujGBT3eU.jpg\",srcSet:\"https://framerusercontent.com/images/7hOSBBoBynk3Guzt7tujGBT3eU.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7hOSBBoBynk3Guzt7tujGBT3eU.jpg 800w\"},className:\"framer-1e7ufon\",\"data-framer-name\":\"KLONOWICKA_6_800x600\",name:\"KLONOWICKA_6_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/dCH8yhMO5KJcbFOMSTJrLydlkHM.jpg\",srcSet:\"https://framerusercontent.com/images/dCH8yhMO5KJcbFOMSTJrLydlkHM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/dCH8yhMO5KJcbFOMSTJrLydlkHM.jpg 800w\"},className:\"framer-1upowlh\",\"data-framer-name\":\"KLONOWICKA_5_800x600\",name:\"KLONOWICKA_5_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wiq5e\",onTap:onTapzn6atv(overlay37),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qjm369\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay38.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-mps4za\",\"data-framer-name\":\"Budynki 29\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 29\",onTap:()=>overlay38.hide()},\"htTJtIdnJ\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51m8l1\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tww6jj\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Pychowicka\"})}),className:\"framer-1hsq5hc\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wseksl\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynki mieszkalne wielorodzinne\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})]}),className:\"framer-1s1gt6w\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budynki mieszkalne B7, B8 oraz P1,P2\\xa0 o powierzchni ok. 3000m2 + ok. 1675 m2+ ok. 20000m2\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Krakowskie Konsorcjum Inwestycyjne KRAKOIN\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: grudzie\u0144 2010\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: sierpie\u0144 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: ul. Pychowicka, Krak\\xf3w\"]})]}),className:\"framer-o6cy66\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11g7nw8\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqjocj-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Qf2Lcrxi9\",intervalControl:1.5,itemAmount:1,layoutId:\"Qf2Lcrxi9\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:884,intrinsicWidth:1326,pixelHeight:884,pixelWidth:1326,sizes:\"1326px\",src:\"https://framerusercontent.com/images/rvcdzOIp4AhZ8WtvwYffmj2uVpM.jpg\",srcSet:\"https://framerusercontent.com/images/rvcdzOIp4AhZ8WtvwYffmj2uVpM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/rvcdzOIp4AhZ8WtvwYffmj2uVpM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/rvcdzOIp4AhZ8WtvwYffmj2uVpM.jpg 1326w\"},className:\"framer-4c6m4i\",\"data-framer-name\":\"pychowicka_2_1_\",name:\"pychowicka_2_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:789,intrinsicWidth:1302,pixelHeight:789,pixelWidth:1302,sizes:\"1302px\",src:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg\",srcSet:\"https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/cYF4ov500feru0mBMMKW16dKXtw.jpg 1302w\"},className:\"framer-1gehca8\",\"data-framer-name\":\"pychowicka_2\",name:\"pychowicka_2\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-128yhnf\",onTap:onTapzn6atv(overlay38),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u8uqla\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay39.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1e9t29t\",\"data-framer-name\":\"Budynki 30\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 30\",onTap:()=>overlay39.hide()},\"rz4pys8TJ\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4gm3c\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mwahqf\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Wielicka Park\"})}),className:\"framer-w17lcg\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwj5cb\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo budynk\\xf3w mieszkalno-us\u0142ugowych\"})}),className:\"framer-xfhfg2\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo budynk\\xf3w mieszkalno-us\u0142ugowych A i B z parkingiem podziemnym, instalacjami wewn\u0119trznymi: wody ciep\u0142ej, zimnej, C.O., kanalizacji sanitarnej i deszczowej, wentylacji mechanicznej i grawitacyjnej, elektrycznymi, ppo\u017C wraz z zagospodarowaniem terenu.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Ilo\u015B\u0107 mieszka\u0144: 142 + 4 lokale us\u0142ugowe\"})]}),className:\"framer-1y6v2h5\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awrs5w\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1v1o4ts-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.wawel-service.pl/inwestycje/wielicka-44.html\",height:\"100%\",id:\"brwhAFjLy\",layoutId:\"brwhAFjLy\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Wawel Service\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: marzec 2012\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: listopad 2013\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Wielicka\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 8 000,00 m2\"]})}),className:\"framer-1nbnozt\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-92byd6\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hmplm4-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"jXH1ADnSL\",intervalControl:1.5,itemAmount:1,layoutId:\"jXH1ADnSL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/zqF4pm9CUw222TGB7t46qVa5CT8.jpg\",srcSet:\"https://framerusercontent.com/images/zqF4pm9CUw222TGB7t46qVa5CT8.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/zqF4pm9CUw222TGB7t46qVa5CT8.jpg 800w\"},className:\"framer-fkk1d9\",\"data-framer-name\":\"WIELICKA_2_800x600\",name:\"WIELICKA_2_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/7jqwi0FPWXWmiYNWRLh3cAIWBY.jpg\",srcSet:\"https://framerusercontent.com/images/7jqwi0FPWXWmiYNWRLh3cAIWBY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/7jqwi0FPWXWmiYNWRLh3cAIWBY.jpg 800w\"},className:\"framer-monyx2\",\"data-framer-name\":\"WIELICKA_6_800x600\",name:\"WIELICKA_6_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/M1YPqW67WpBRYXTDvK7TwF9Sgi0.jpg\",srcSet:\"https://framerusercontent.com/images/M1YPqW67WpBRYXTDvK7TwF9Sgi0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/M1YPqW67WpBRYXTDvK7TwF9Sgi0.jpg 800w\"},className:\"framer-1h5stbl\",\"data-framer-name\":\"WIELICKA_4_800x600\",name:\"WIELICKA_4_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg\",srcSet:\"https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/PJbXT3Y73KSSMGd3iiG9LSMuiqo.jpg 800w\"},className:\"framer-1ydbqqp\",\"data-framer-name\":\"WIELICKA_3_800x600\",name:\"WIELICKA_3_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ef27l\",onTap:onTapzn6atv(overlay39),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e5ozhr\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay40.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-4dfu7g\",\"data-framer-name\":\"Budynki 31\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 31\",onTap:()=>overlay40.hide()},\"vmFQQNWuU\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iw9up3\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161toad\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Osiedle Nowalia\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Wroc\u0142aw\"})]})}),className:\"framer-kkz78b\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\",\"GF;Montserrat-700\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyogr4\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Generalne wykonawstwo osiedla budynk\\xf3w jednorodzinnych\"})}),className:\"framer-1e323jt\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Generalne wykonawstwo 44 budynk\\xf3w jednorodzinnych w zabudowie szeregowej wraz z instalacjami wewn\u0119trznymi, zewn\u0119trznymi, zagospodarowaniem terenu i infrastruktur\u0105 towarzysz\u0105c\u0105.\"]})}),className:\"framer-knnrrd\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jbrkug\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1dd1v04-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"http://www.lcc.pl/pl/nowalia\",height:\"100%\",id:\"mAxUCnC8_\",layoutId:\"mAxUCnC8_\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: LC-Corp\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: luty 2013\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: stycze\u0144 2014\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Wroc\u0142aw, ul.Og\\xf3rkowa\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 3 800,00 m2\"]})}),className:\"framer-1nihk5z\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1okab\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13hpiee-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"O8YIggTQB\",intervalControl:1.5,itemAmount:1,layoutId:\"O8YIggTQB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg\",srcSet:\"https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/aHzmpEob7rpuuoCQu2kr3x11B1Q.jpg 800w\"},className:\"framer-1ezb1mx\",\"data-framer-name\":\"OGORKOWA_WR_4_800x600\",name:\"OGORKOWA_WR_4_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/ltT0bpoBBRp181X8t3unzcb6d0.jpg\",srcSet:\"https://framerusercontent.com/images/ltT0bpoBBRp181X8t3unzcb6d0.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/ltT0bpoBBRp181X8t3unzcb6d0.jpg 800w\"},className:\"framer-4ett4o\",\"data-framer-name\":\"OGORKOWA_WR_7_800x600\",name:\"OGORKOWA_WR_7_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/8CEWGYTeqIwnY2tFq8BWJUdiwXg.jpg\",srcSet:\"https://framerusercontent.com/images/8CEWGYTeqIwnY2tFq8BWJUdiwXg.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/8CEWGYTeqIwnY2tFq8BWJUdiwXg.jpg 800w\"},className:\"framer-1bivfx0\",\"data-framer-name\":\"OGORKOWA_WR_5_800x600\",name:\"OGORKOWA_WR_5_800x600\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i93cor\",onTap:onTapzn6atv(overlay40),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jepp2v\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay41.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-owdnns\",\"data-framer-name\":\"Budynki 32\",\"data-framer-portal-id\":\"lglvmx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Budynki 32\",onTap:()=>overlay41.hide()},\"OJacOK2MC\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jh3ehq\",\"data-framer-portal-id\":\"lglvmx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s602cn\",\"data-framer-name\":\"Frame 626081\",name:\"Frame 626081\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"left\"},children:\"Bochenka, Krak\\xf3w\"})}),className:\"framer-1ht884t\",\"data-framer-name\":\"Cieszy\u0144ska 9\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o63002\",\"data-framer-name\":\"Frame 626084\",name:\"Frame 626084\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budowa stanu surowego budynku A i stanu \u201E0\u201D budynku B.\"})}),className:\"framer-sbn20c\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-500\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:\"Budowa stanu surowego budynku A i stanu \u201E0\u201D budynku B\\xa0 w budynkach mieszkalnych wielorodzinnych przy ulicy Bochenka 20 i 22 w Krakowie.\"})}),className:\"framer-1ea48gw\",\"data-framer-name\":\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",fonts:[\"GF;Montserrat-regular\"],name:\"Cieszy\u0144ska 9 to trzy 5 i 6-pi\u0119trowe budynki z reprezentacyjnym lobby z recepcj\u0105 oraz gara\u017Cem podziemnym. Znajdzie si\u0119 w nich \u0142\u0105cznie 230 mieszka\u0144 o r\\xf3\u017Cnorodnych uk\u0142adach od 4 pokoi i wielko\u015Bci od 28 do 132 mkw. Cieszy\u0144ska 9 powstaje w krakowskiej dzielnicy Krowodrza przy skrzy\u017Cowaniu ulicy Cieszy\u0144skiej i \u015Al\u0105skiej. Wizualizacja: materia\u0142 inwestora\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9i1f1i\",\"data-framer-name\":\"Frame 626080\",name:\"Frame 626080\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1pg98jc-container\",children:/*#__PURE__*/_jsx(StronaWww,{cFCRkR2qV:\"https://www.krakoin.com.pl/firma/\",height:\"100%\",id:\"uMpAsNSKO\",layoutId:\"uMpAsNSKO\",LPPjqlWaf:\"Strona www\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150.02%\",\"--framer-text-alignment\":\"right\"},children:[\"Inwestor: Krakowskie Konsorcjum Inwestycyjne KRAKOIN\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin rozpocz\u0119cia prac: sierpie\u0144 2011\",/*#__PURE__*/_jsx(\"br\",{}),\"Termin zako\u0144czenia prac: lipiec 2012\",/*#__PURE__*/_jsx(\"br\",{}),\"Lokalizacja: Krak\\xf3w, ul. Bochenka 20 i 22\",/*#__PURE__*/_jsx(\"br\",{}),\"Powierzchnia: 3 500,00 m2\"]})}),className:\"framer-19103qu\",\"data-framer-name\":\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",fonts:[\"GF;Montserrat-regular\"],name:\"Inwestor: Palladio Cieszy\u0144ska 9Termin zako\u0144czenia prac: II kwarta\u0142 2023Lokalizacja: Cieszy\u0144ska 9, Krak\\xf3w\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19wa6tk\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-o4ql4d-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.79)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"kECZXpp6Z\",intervalControl:1.5,itemAmount:1,layoutId:\"kECZXpp6Z\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg\",srcSet:\"https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/r0ypEd9SwGgpFlldCDrIxu7A12Y.jpg 800w\"},className:\"framer-1xpvjwm\",\"data-framer-name\":\"BOCHENKA_1_800x600\",name:\"BOCHENKA_1_800x600\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,pixelHeight:600,pixelWidth:800,sizes:\"800px\",src:\"https://framerusercontent.com/images/z93i7h39clsjXUf2W5R5eRK6pI.jpg\",srcSet:\"https://framerusercontent.com/images/z93i7h39clsjXUf2W5R5eRK6pI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/z93i7h39clsjXUf2W5R5eRK6pI.jpg 800w\"},className:\"framer-6zgxo9\",\"data-framer-name\":\"BOCHENKA_3_800x600_1_\",name:\"BOCHENKA_3_800x600_1_\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjpg9e\",onTap:onTapzn6atv(overlay41),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16avsc\",\"data-framer-name\":\"Frame 626032\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:26,name:\"Frame 626032\",svg:'<svg width=\"26\" height=\"25\" viewBox=\"0 0 26 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.59375 0L25.4036 24.8099\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n<path d=\"M0.59375 24.8105L25.4036 0.000681855\" stroke=\"#0E1413\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-156ihxq-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.google.com/maps/d/embed?mid=1WX-UvyXJ5R7rktJfLSMP8m_-8Vs7RD0&ehbc=2E312F\" width=\"100%\" height=\"480\"></iframe>',id:\"BSS4YKFud\",layoutId:\"BSS4YKFud\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:'<iframe src=\"https://www.google.com/maps/d/embed?mid=1RRJaTWLjL-iiskSmPk54CyIYyPVq3FY&ehbc=2E312F\" width=\"640\" height=\"480\"></iframe>',width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1l0hq9f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiwV903E0:{variant:\"hEGHbZpMj\"},uidt59zP_:{variant:\"mHOzLrbtb\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Xv5qifyj9\",layoutId:\"Xv5qifyj9\",style:{width:\"100%\"},variant:\"YbcYHo5iG\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-lzb2O[data-border=\"true\"]::after, .framer-lzb2O [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-lzb2O { background: white; }`,\".framer-lzb2O.framer-1mi1hv3, .framer-lzb2O .framer-1mi1hv3 { display: block; }\",\".framer-lzb2O.framer-cewhyy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-lzb2O .framer-1eue3wq { 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 0px 52px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-pyorlg-container { flex: none; height: auto; position: relative; width: 1261px; }\",\".framer-lzb2O .framer-1qv5my4 { background-color: #ffffff; flex: none; height: 837px; overflow: visible; position: relative; width: 1300px; }\",\".framer-lzb2O .framer-qxmyvk { aspect-ratio: 1.649214659685864 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 764px); overflow: visible; position: absolute; right: 0px; top: 0px; width: 1260px; }\",\".framer-lzb2O .framer-1u7cim2 { flex: none; height: 653px; left: 0px; overflow: visible; position: absolute; top: 184px; width: 767px; }\",\".framer-lzb2O .framer-1er11l { bottom: 0px; flex: none; height: 186px; left: calc(50.00000000000002% - 360px / 2); position: absolute; width: 360px; }\",\".framer-lzb2O .framer-1l5ycg1 { flex: none; height: 654px; left: 0px; position: absolute; top: -1px; width: 768px; }\",\".framer-lzb2O .framer-1bsrbh1 { align-content: flex-start; align-items: flex-start; bottom: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 50px; overflow: visible; padding: 50px 50px 50px 0px; position: absolute; width: min-content; }\",\".framer-lzb2O .framer-ymfqtn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 396px; }\",\".framer-lzb2O .framer-851ubs { flex: none; height: 26px; position: relative; width: 25px; }\",\".framer-lzb2O .framer-1fapnh9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 396px; }\",\".framer-lzb2O .framer-198vf52 { flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lzb2O .framer-1ohu7oa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 50px 0px; position: relative; width: 1305px; }\",\".framer-lzb2O .framer-a2vsbq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-13h9ait { flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 659px; word-break: break-word; word-wrap: break-word; }\",\".framer-lzb2O .framer-lglvmx-container, .framer-lzb2O .framer-gj2msv-container, .framer-lzb2O .framer-qdilou-container, .framer-lzb2O .framer-1wdjtd3-container, .framer-lzb2O .framer-a3jpvx-container, .framer-lzb2O .framer-1xnrx7j-container, .framer-lzb2O .framer-x9v5cv-container, .framer-lzb2O .framer-1jesrh1-container, .framer-lzb2O .framer-1uggasr-container, .framer-lzb2O .framer-1ucc4ho-container, .framer-lzb2O .framer-q4kek5-container, .framer-lzb2O .framer-fix0rk-container, .framer-lzb2O .framer-ect7h4-container, .framer-lzb2O .framer-3iwy1m-container, .framer-lzb2O .framer-1xhc3vp-container, .framer-lzb2O .framer-ll1pty-container, .framer-lzb2O .framer-145j7mt-container, .framer-lzb2O .framer-1eo1fn-container, .framer-lzb2O .framer-ptyzs8-container, .framer-lzb2O .framer-1qholu1-container, .framer-lzb2O .framer-4ba2le-container, .framer-lzb2O .framer-1r8yh39-container, .framer-lzb2O .framer-13cpjnj-container, .framer-lzb2O .framer-hvo0dk-container, .framer-lzb2O .framer-10vhw63-container, .framer-lzb2O .framer-1cuod87-container, .framer-lzb2O .framer-1v9vl0y-container, .framer-lzb2O .framer-z70z0-container, .framer-lzb2O .framer-126vrwv-container, .framer-lzb2O .framer-rqwp5m-container, .framer-lzb2O .framer-rr0wme-container, .framer-lzb2O .framer-1v1o4ts-container, .framer-lzb2O .framer-1dd1v04-container, .framer-lzb2O .framer-1pg98jc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lzb2O .framer-p8kb0t, .framer-lzb2O .framer-oca5b0, .framer-lzb2O .framer-sivwg0, .framer-lzb2O .framer-1vm442k, .framer-lzb2O .framer-13x3o1a, .framer-lzb2O .framer-1jtlu3m, .framer-lzb2O .framer-lo8zoi, .framer-lzb2O .framer-ul7c7n, .framer-lzb2O .framer-a696x8, .framer-lzb2O .framer-1iytwp5, .framer-lzb2O .framer-o5v7p6, .framer-lzb2O .framer-n16sft, .framer-lzb2O .framer-1cs0jjh, .framer-lzb2O .framer-1nbzfj9, .framer-lzb2O .framer-1r3uriz, .framer-lzb2O .framer-87lolu, .framer-lzb2O .framer-1l78cer, .framer-lzb2O .framer-iv8dci, .framer-lzb2O .framer-s3tsw2, .framer-lzb2O .framer-1wm2k4j, .framer-lzb2O .framer-unp5o9, .framer-lzb2O .framer-1jrmkp4, .framer-lzb2O .framer-125zoxa, .framer-lzb2O .framer-oqy6pk, .framer-lzb2O .framer-46h91o, .framer-lzb2O .framer-7u9m3i, .framer-lzb2O .framer-1575elk, .framer-lzb2O .framer-1c0472v, .framer-lzb2O .framer-1j9sokw, .framer-lzb2O .framer-f442n2, .framer-lzb2O .framer-m7rji1, .framer-lzb2O .framer-1k2x4pu, .framer-lzb2O .framer-9mikyg, .framer-lzb2O .framer-9gg5hp, .framer-lzb2O .framer-1im3r0z, .framer-lzb2O .framer-1dc9ciq, .framer-lzb2O .framer-1l9za4w, .framer-lzb2O .framer-1k5cc6o, .framer-lzb2O .framer-mps4za, .framer-lzb2O .framer-1e9t29t, .framer-lzb2O .framer-4dfu7g, .framer-lzb2O .framer-owdnns { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-lzb2O .framer-vjmo6l, .framer-lzb2O .framer-rguum3, .framer-lzb2O .framer-1kckhkc, .framer-lzb2O .framer-mvz7hu, .framer-lzb2O .framer-1m73rz0, .framer-lzb2O .framer-4786we, .framer-lzb2O .framer-q0sneo, .framer-lzb2O .framer-1vnths9, .framer-lzb2O .framer-121qe9g, .framer-lzb2O .framer-fkbsp2, .framer-lzb2O .framer-1l5wl20, .framer-lzb2O .framer-1otq7oq, .framer-lzb2O .framer-1ifk8ps, .framer-lzb2O .framer-1yqv6vd, .framer-lzb2O .framer-1hga7ln, .framer-lzb2O .framer-47anf1, .framer-lzb2O .framer-7og1cf, .framer-lzb2O .framer-18juto2, .framer-lzb2O .framer-pstjmf, .framer-lzb2O .framer-gyadzo, .framer-lzb2O .framer-1f532lh, .framer-lzb2O .framer-1i3t3gw, .framer-lzb2O .framer-de18d4, .framer-lzb2O .framer-69s09z, .framer-lzb2O .framer-17hernw, .framer-lzb2O .framer-1c9xous, .framer-lzb2O .framer-j0jaa9, .framer-lzb2O .framer-1hjuox6, .framer-lzb2O .framer-12yxpg8, .framer-lzb2O .framer-9sp59, .framer-lzb2O .framer-1iehfqc, .framer-lzb2O .framer-8m65bx, .framer-lzb2O .framer-1lo2hqb, .framer-lzb2O .framer-11rjakf, .framer-lzb2O .framer-1yncudu, .framer-lzb2O .framer-11ekazb, .framer-lzb2O .framer-1ra05zq, .framer-lzb2O .framer-1a8qtr2, .framer-lzb2O .framer-51m8l1, .framer-lzb2O .framer-w4gm3c, .framer-lzb2O .framer-1iw9up3, .framer-lzb2O .framer-1jh3ehq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 600px; justify-content: space-between; left: calc(50.00000000000002% - 1100px / 2); overflow: hidden; padding: 75px 75px 75px 75px; position: fixed; top: calc(50.00000000000002% - 600px / 2); width: 1100px; }\",\".framer-lzb2O .framer-op2vfv, .framer-lzb2O .framer-g3kqu0, .framer-lzb2O .framer-1xgmvf9, .framer-lzb2O .framer-zk264n, .framer-lzb2O .framer-dfckm6, .framer-lzb2O .framer-fay8n2, .framer-lzb2O .framer-8nane1, .framer-lzb2O .framer-temmrr, .framer-lzb2O .framer-1tbu7wc, .framer-lzb2O .framer-k51xzh, .framer-lzb2O .framer-rqazhz, .framer-lzb2O .framer-qcpx58, .framer-lzb2O .framer-1x6ij2v, .framer-lzb2O .framer-kofcck, .framer-lzb2O .framer-1t03t6y, .framer-lzb2O .framer-62guue, .framer-lzb2O .framer-zljtvz, .framer-lzb2O .framer-1rqjiuz, .framer-lzb2O .framer-1a1rwa8, .framer-lzb2O .framer-1d6wbre, .framer-lzb2O .framer-1oinf1y, .framer-lzb2O .framer-n0t1b3, .framer-lzb2O .framer-wxe3eb, .framer-lzb2O .framer-rsp5v2, .framer-lzb2O .framer-1afx6ux, .framer-lzb2O .framer-1rcdtjv, .framer-lzb2O .framer-14ypvrt, .framer-lzb2O .framer-1c8fmyo, .framer-lzb2O .framer-a0ra6n, .framer-lzb2O .framer-13nw14x, .framer-lzb2O .framer-1q9c3ac, .framer-lzb2O .framer-1p2nwxu, .framer-lzb2O .framer-qf6y3m, .framer-lzb2O .framer-ti50hv, .framer-lzb2O .framer-1tww6jj, .framer-lzb2O .framer-1mwahqf, .framer-lzb2O .framer-161toad, .framer-lzb2O .framer-1s602cn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 500px; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 10px 10px 10px 10px; position: relative; width: 345px; }\",\".framer-lzb2O .framer-1vbzdfc, .framer-lzb2O .framer-17sk4ax, .framer-lzb2O .framer-1x1u2m7, .framer-lzb2O .framer-1rmngep, .framer-lzb2O .framer-198gglz, .framer-lzb2O .framer-rl69lc, .framer-lzb2O .framer-1iwiksg, .framer-lzb2O .framer-2nwpiy, .framer-lzb2O .framer-1byp86u, .framer-lzb2O .framer-1v2tqi1, .framer-lzb2O .framer-17j6ngj, .framer-lzb2O .framer-2u0sv2, .framer-lzb2O .framer-16y8p2, .framer-lzb2O .framer-2ocr8n, .framer-lzb2O .framer-rraqu9, .framer-lzb2O .framer-c73was, .framer-lzb2O .framer-18qu0du, .framer-lzb2O .framer-43p4wl, .framer-lzb2O .framer-sxunft, .framer-lzb2O .framer-1bldo6p, .framer-lzb2O .framer-4qjb0h, .framer-lzb2O .framer-1iegski, .framer-lzb2O .framer-gq8aa4, .framer-lzb2O .framer-1yh2hqt, .framer-lzb2O .framer-1209r80, .framer-lzb2O .framer-kaodjf, .framer-lzb2O .framer-f8tvhn, .framer-lzb2O .framer-1tm2mhj, .framer-lzb2O .framer-cijmnj, .framer-lzb2O .framer-1e1m8gx, .framer-lzb2O .framer-1ljnxla, .framer-lzb2O .framer-1pmhsej, .framer-lzb2O .framer-485n4d, .framer-lzb2O .framer-9oiejm, .framer-lzb2O .framer-k2p8h3, .framer-lzb2O .framer-x224wz, .framer-lzb2O .framer-105b9dz, .framer-lzb2O .framer-1t8h7n1, .framer-lzb2O .framer-1z01jgo, .framer-lzb2O .framer-1o3d2g4, .framer-lzb2O .framer-nt4xvv, .framer-lzb2O .framer-vs2bth, .framer-lzb2O .framer-1ensesh, .framer-lzb2O .framer-1kb46i8, .framer-lzb2O .framer-ltgd5u, .framer-lzb2O .framer-y5v4d7, .framer-lzb2O .framer-vsxrlu, .framer-lzb2O .framer-1jc6jum, .framer-lzb2O .framer-420mw4, .framer-lzb2O .framer-15iok23, .framer-lzb2O .framer-1ol5rv4, .framer-lzb2O .framer-d4ckjz, .framer-lzb2O .framer-ehceh5, .framer-lzb2O .framer-5lbr69, .framer-lzb2O .framer-1bjldkc, .framer-lzb2O .framer-no0i0x, .framer-lzb2O .framer-1k1oyt7, .framer-lzb2O .framer-17sj7f2, .framer-lzb2O .framer-1voxpx7, .framer-lzb2O .framer-1ht60mw, .framer-lzb2O .framer-uggbyd, .framer-lzb2O .framer-1b9genb, .framer-lzb2O .framer-1kbkngc, .framer-lzb2O .framer-vompd5, .framer-lzb2O .framer-1fvjtp3, .framer-lzb2O .framer-mf13cx, .framer-lzb2O .framer-1opzjco, .framer-lzb2O .framer-1sp0ukj, .framer-lzb2O .framer-1drb6ns, .framer-lzb2O .framer-1f8zkwr, .framer-lzb2O .framer-jezmql, .framer-lzb2O .framer-1srlfp7, .framer-lzb2O .framer-1ulf11x, .framer-lzb2O .framer-bscvch, .framer-lzb2O .framer-q4txsf, .framer-lzb2O .framer-f2gjnq, .framer-lzb2O .framer-4r6b34, .framer-lzb2O .framer-1jmb14m, .framer-lzb2O .framer-1rhuaj2, .framer-lzb2O .framer-ddj0u3, .framer-lzb2O .framer-k53adi, .framer-lzb2O .framer-tyzg5v, .framer-lzb2O .framer-bosinu, .framer-lzb2O .framer-fe3n1z, .framer-lzb2O .framer-2gnbh6, .framer-lzb2O .framer-1gblv75, .framer-lzb2O .framer-mzploc, .framer-lzb2O .framer-xdaqtp, .framer-lzb2O .framer-9ybfgq, .framer-lzb2O .framer-9h99ja, .framer-lzb2O .framer-sc1sn1, .framer-lzb2O .framer-1kaztqy, .framer-lzb2O .framer-sijbpa, .framer-lzb2O .framer-1lx6cqd, .framer-lzb2O .framer-u8je0o, .framer-lzb2O .framer-1h2tm9u, .framer-lzb2O .framer-19n9521, .framer-lzb2O .framer-874hnl, .framer-lzb2O .framer-5223l, .framer-lzb2O .framer-12s41hv, .framer-lzb2O .framer-8dryps, .framer-lzb2O .framer-i6ir1v, .framer-lzb2O .framer-1tfpgq4, .framer-lzb2O .framer-x13su2, .framer-lzb2O .framer-2vb3k5, .framer-lzb2O .framer-yuoyht, .framer-lzb2O .framer-jv10ry, .framer-lzb2O .framer-1msnp26, .framer-lzb2O .framer-5h1vx7, .framer-lzb2O .framer-1ug4uv1, .framer-lzb2O .framer-10eoxpm, .framer-lzb2O .framer-7zvwnp, .framer-lzb2O .framer-1cunjd7, .framer-lzb2O .framer-1r7lnvq, .framer-lzb2O .framer-1a0bg5t, .framer-lzb2O .framer-14lw49n, .framer-lzb2O .framer-xpffp1, .framer-lzb2O .framer-1dcaftm, .framer-lzb2O .framer-jolcwo, .framer-lzb2O .framer-utoq14, .framer-lzb2O .framer-qj7t62, .framer-lzb2O .framer-yg7st8, .framer-lzb2O .framer-eofoja, .framer-lzb2O .framer-13nrxed, .framer-lzb2O .framer-15383z9, .framer-lzb2O .framer-7dgi03, .framer-lzb2O .framer-gfhr9, .framer-lzb2O .framer-ufrsr6, .framer-lzb2O .framer-1x793wy, .framer-lzb2O .framer-1tbj9vm, .framer-lzb2O .framer-1l5y9tc, .framer-lzb2O .framer-1moodh6, .framer-lzb2O .framer-x8z4u8, .framer-lzb2O .framer-ccl1oa, .framer-lzb2O .framer-1g91brk, .framer-lzb2O .framer-1w8pp13, .framer-lzb2O .framer-1ga90q7, .framer-lzb2O .framer-pokq75, .framer-lzb2O .framer-1oiiiwd, .framer-lzb2O .framer-1n755oh, .framer-lzb2O .framer-16qcmak, .framer-lzb2O .framer-kblen2, .framer-lzb2O .framer-1x97x4a, .framer-lzb2O .framer-30qvpm, .framer-lzb2O .framer-13z2e2, .framer-lzb2O .framer-1krwsx2, .framer-lzb2O .framer-1hsq5hc, .framer-lzb2O .framer-1s1gt6w, .framer-lzb2O .framer-o6cy66, .framer-lzb2O .framer-w17lcg, .framer-lzb2O .framer-xfhfg2, .framer-lzb2O .framer-1y6v2h5, .framer-lzb2O .framer-1nbnozt, .framer-lzb2O .framer-kkz78b, .framer-lzb2O .framer-1e323jt, .framer-lzb2O .framer-knnrrd, .framer-lzb2O .framer-1nihk5z, .framer-lzb2O .framer-1ht884t, .framer-lzb2O .framer-sbn20c, .framer-lzb2O .framer-1ea48gw, .framer-lzb2O .framer-19103qu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lzb2O .framer-1jv2rta, .framer-lzb2O .framer-151ag8, .framer-lzb2O .framer-q11xr4, .framer-lzb2O .framer-1jxcztl, .framer-lzb2O .framer-1ue32pl, .framer-lzb2O .framer-a0v4fe, .framer-lzb2O .framer-1tij8vj, .framer-lzb2O .framer-yjjwkt, .framer-lzb2O .framer-paehqw, .framer-lzb2O .framer-ne0y45, .framer-lzb2O .framer-1t91ply, .framer-lzb2O .framer-pugf7a, .framer-lzb2O .framer-1270gat, .framer-lzb2O .framer-1o9oj5w, .framer-lzb2O .framer-1a97u2j, .framer-lzb2O .framer-1swlpi7, .framer-lzb2O .framer-zryapa, .framer-lzb2O .framer-1hsgcqx, .framer-lzb2O .framer-3yhjzh, .framer-lzb2O .framer-6w8ksd, .framer-lzb2O .framer-1fa33kb, .framer-lzb2O .framer-6e80tr, .framer-lzb2O .framer-1rwcs27, .framer-lzb2O .framer-win4i9, .framer-lzb2O .framer-18f3ues, .framer-lzb2O .framer-14mxn52, .framer-lzb2O .framer-da0wqy, .framer-lzb2O .framer-1jpm6ld, .framer-lzb2O .framer-qaflri, .framer-lzb2O .framer-vads80, .framer-lzb2O .framer-1wseksl, .framer-lzb2O .framer-nwj5cb, .framer-lzb2O .framer-pyogr4, .framer-lzb2O .framer-o63002 { 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: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-h3zurj, .framer-lzb2O .framer-ujdoqd, .framer-lzb2O .framer-1fy1uff, .framer-lzb2O .framer-1xdhnae, .framer-lzb2O .framer-1hu3lmc, .framer-lzb2O .framer-67ak22, .framer-lzb2O .framer-1q5bczb, .framer-lzb2O .framer-1np4eve, .framer-lzb2O .framer-ig2o2x, .framer-lzb2O .framer-pmws30, .framer-lzb2O .framer-1oxzo3a, .framer-lzb2O .framer-hsnx2a, .framer-lzb2O .framer-1wdacb0, .framer-lzb2O .framer-1agcvt, .framer-lzb2O .framer-5t2mi, .framer-lzb2O .framer-q1z2qf, .framer-lzb2O .framer-1d4lild, .framer-lzb2O .framer-1pmtqpv, .framer-lzb2O .framer-1gea1ud, .framer-lzb2O .framer-6rdl7e, .framer-lzb2O .framer-9ak421, .framer-lzb2O .framer-1u76jbn, .framer-lzb2O .framer-h3bg4t, .framer-lzb2O .framer-18grkok, .framer-lzb2O .framer-clc6q6, .framer-lzb2O .framer-y5tmkq, .framer-lzb2O .framer-d6gm3j, .framer-lzb2O .framer-sdpdal, .framer-lzb2O .framer-1lstnbi, .framer-lzb2O .framer-dme9ej, .framer-lzb2O .framer-1s565e0, .framer-lzb2O .framer-1637p4x, .framer-lzb2O .framer-kghf74, .framer-lzb2O .framer-1awrs5w, .framer-lzb2O .framer-1jbrkug, .framer-lzb2O .framer-9i1f1i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-huit8y, .framer-lzb2O .framer-r5hbpu, .framer-lzb2O .framer-1d190qt, .framer-lzb2O .framer-fdk99, .framer-lzb2O .framer-ph3ma0, .framer-lzb2O .framer-1q5v5zo, .framer-lzb2O .framer-vg4vvr, .framer-lzb2O .framer-wzgekj, .framer-lzb2O .framer-sh8oxq, .framer-lzb2O .framer-19i5hvo, .framer-lzb2O .framer-g0p9vu, .framer-lzb2O .framer-4zhsf8, .framer-lzb2O .framer-19ddqky, .framer-lzb2O .framer-3bn5uh, .framer-lzb2O .framer-ogk7rm, .framer-lzb2O .framer-osxtdk, .framer-lzb2O .framer-p94vv3, .framer-lzb2O .framer-1xsga6y, .framer-lzb2O .framer-y9l2q6, .framer-lzb2O .framer-j6rpkp, .framer-lzb2O .framer-1f6r3sm, .framer-lzb2O .framer-rtlgek, .framer-lzb2O .framer-14ozkmy, .framer-lzb2O .framer-1j7jznd, .framer-lzb2O .framer-4cfn8t, .framer-lzb2O .framer-1nsky0c, .framer-lzb2O .framer-i6706j, .framer-lzb2O .framer-6gogtn, .framer-lzb2O .framer-oephgl, .framer-lzb2O .framer-10jpgvx, .framer-lzb2O .framer-snzdl4, .framer-lzb2O .framer-tttf8n, .framer-lzb2O .framer-kd8yt9, .framer-lzb2O .framer-15lj029, .framer-lzb2O .framer-1vpe9gk, .framer-lzb2O .framer-kzhxbs, .framer-lzb2O .framer-1j4xawq, .framer-lzb2O .framer-6rzby0, .framer-lzb2O .framer-11g7nw8, .framer-lzb2O .framer-92byd6, .framer-lzb2O .framer-v1okab, .framer-lzb2O .framer-19wa6tk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 538px; }\",\".framer-lzb2O .framer-129129f-container, .framer-lzb2O .framer-9mjw3v-container, .framer-lzb2O .framer-102er8x-container, .framer-lzb2O .framer-8ua15s-container, .framer-lzb2O .framer-1nl05rs-container, .framer-lzb2O .framer-v79b9n-container, .framer-lzb2O .framer-1xlakwu-container, .framer-lzb2O .framer-2ddwno-container, .framer-lzb2O .framer-nqn4wk-container, .framer-lzb2O .framer-wamq9w-container { flex: 1 0 0px; height: 450px; position: relative; width: 1px; }\",\".framer-lzb2O .framer-1i0ix9t, .framer-lzb2O .framer-qlbmsq, .framer-lzb2O .framer-u9j6q0, .framer-lzb2O .framer-1vxcbpw, .framer-lzb2O .framer-10seprj, .framer-lzb2O .framer-p741by, .framer-lzb2O .framer-4alh48, .framer-lzb2O .framer-1guqdv9, .framer-lzb2O .framer-1265ud7, .framer-lzb2O .framer-1j1kt5q, .framer-lzb2O .framer-6is4fm, .framer-lzb2O .framer-14v5q0v, .framer-lzb2O .framer-veoc06, .framer-lzb2O .framer-wnk12e, .framer-lzb2O .framer-ybpydi, .framer-lzb2O .framer-1jo70d4, .framer-lzb2O .framer-1a523wh, .framer-lzb2O .framer-175ilfe, .framer-lzb2O .framer-1i0v3yq, .framer-lzb2O .framer-10uyonc, .framer-lzb2O .framer-1vf9gos, .framer-lzb2O .framer-1v7xlhm, .framer-lzb2O .framer-e0hbdh, .framer-lzb2O .framer-1givg4l, .framer-lzb2O .framer-8wyjgm, .framer-lzb2O .framer-kxm35w, .framer-lzb2O .framer-2n7816, .framer-lzb2O .framer-p3cv69, .framer-lzb2O .framer-mvdsk2, .framer-lzb2O .framer-13arjyl, .framer-lzb2O .framer-1gwsupc, .framer-lzb2O .framer-1pv5ero { aspect-ratio: 1.2 / 1; height: var(--framer-aspect-ratio-supported, 450px); overflow: visible; position: relative; width: 540px; }\",\".framer-lzb2O .framer-i2tzp5, .framer-lzb2O .framer-181r4g, .framer-lzb2O .framer-ssv6mo, .framer-lzb2O .framer-l5rx5j, .framer-lzb2O .framer-1r7kxgm, .framer-lzb2O .framer-1bldp46, .framer-lzb2O .framer-15vaxoc, .framer-lzb2O .framer-pepfjc, .framer-lzb2O .framer-tfo16t, .framer-lzb2O .framer-1jhmdx7, .framer-lzb2O .framer-1alql5d, .framer-lzb2O .framer-gwxuq9, .framer-lzb2O .framer-q5wgef, .framer-lzb2O .framer-1dhirvp, .framer-lzb2O .framer-ml2mb0, .framer-lzb2O .framer-1edkydb, .framer-lzb2O .framer-1r798be, .framer-lzb2O .framer-gan3fz, .framer-lzb2O .framer-1ydwhr7, .framer-lzb2O .framer-1y5f4rm, .framer-lzb2O .framer-1fkunn9, .framer-lzb2O .framer-12uwmkz, .framer-lzb2O .framer-11210hz, .framer-lzb2O .framer-6mnip8, .framer-lzb2O .framer-76ucr2, .framer-lzb2O .framer-29qyrj, .framer-lzb2O .framer-16lt9jd, .framer-lzb2O .framer-18ssura, .framer-lzb2O .framer-c8tmm9, .framer-lzb2O .framer-mr8q8p, .framer-lzb2O .framer-1gur5hg, .framer-lzb2O .framer-17u7fx7, .framer-lzb2O .framer-1r5uud7, .framer-lzb2O .framer-wxqvaq, .framer-lzb2O .framer-1u0fcvw, .framer-lzb2O .framer-i95maw, .framer-lzb2O .framer-1ivtqaq, .framer-lzb2O .framer-9wiq5e, .framer-lzb2O .framer-128yhnf, .framer-lzb2O .framer-18ef27l, .framer-lzb2O .framer-1i93cor, .framer-lzb2O .framer-rjpg9e { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 32px; top: 32px; width: 26px; z-index: 1; }\",\".framer-lzb2O .framer-1h1j708, .framer-lzb2O .framer-osxp78, .framer-lzb2O .framer-1f09viy, .framer-lzb2O .framer-cl5rx5, .framer-lzb2O .framer-jskkvl, .framer-lzb2O .framer-4l0qpn, .framer-lzb2O .framer-1x0owc9, .framer-lzb2O .framer-14g3f3f, .framer-lzb2O .framer-87c85l, .framer-lzb2O .framer-9lm02h, .framer-lzb2O .framer-117u61x, .framer-lzb2O .framer-1cl28ya, .framer-lzb2O .framer-1whbwwc, .framer-lzb2O .framer-1jtqv6x, .framer-lzb2O .framer-1qrurqw, .framer-lzb2O .framer-kptpc5, .framer-lzb2O .framer-o1myva, .framer-lzb2O .framer-1946c4u, .framer-lzb2O .framer-ftdr78, .framer-lzb2O .framer-1u62fwp, .framer-lzb2O .framer-qk0ktf, .framer-lzb2O .framer-u1fyy7, .framer-lzb2O .framer-yd27o, .framer-lzb2O .framer-1namz8h, .framer-lzb2O .framer-1yzlgrp, .framer-lzb2O .framer-1cef2nh, .framer-lzb2O .framer-14fr10k, .framer-lzb2O .framer-th1y9t, .framer-lzb2O .framer-1a8i55n, .framer-lzb2O .framer-1l9rku3, .framer-lzb2O .framer-6rbdn3, .framer-lzb2O .framer-jcz0o0, .framer-lzb2O .framer-hbuu12, .framer-lzb2O .framer-hmch2o, .framer-lzb2O .framer-r7qrxe, .framer-lzb2O .framer-fsxf0u, .framer-lzb2O .framer-4jut7t, .framer-lzb2O .framer-1qjm369, .framer-lzb2O .framer-1u8uqla, .framer-lzb2O .framer-1e5ozhr, .framer-lzb2O .framer-jepp2v, .framer-lzb2O .framer-16avsc { flex: none; height: 25px; position: relative; width: 26px; }\",\".framer-lzb2O .framer-qqnsco { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 10px 10px 10px 10px; position: relative; width: 345px; }\",\".framer-lzb2O .framer-j9q3tl, .framer-lzb2O .framer-m9hg9u { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-noq4kk, .framer-lzb2O .framer-1qayqyu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-w56lqg-container, .framer-lzb2O .framer-1cl9wdj-container, .framer-lzb2O .framer-1bfcvo5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lzb2O .framer-173mfvq, .framer-lzb2O .framer-ocze0d, .framer-lzb2O .framer-39q4y9, .framer-lzb2O .framer-1mpgcni, .framer-lzb2O .framer-1v1ybp0, .framer-lzb2O .framer-lgzxue { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 305px; }\",\".framer-lzb2O .framer-t1mccg, .framer-lzb2O .framer-lma8e7, .framer-lzb2O .framer-13n5u8j, .framer-lzb2O .framer-1bng8bf, .framer-lzb2O .framer-jaeehj, .framer-lzb2O .framer-3bhcs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 305px; }\",\".framer-lzb2O .framer-4uayvj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-1p0hegh, .framer-lzb2O .framer-14rylgc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 506px; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 20px 20px 20px 20px; position: relative; width: 345px; }\",\".framer-lzb2O .framer-1wtt594 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-12r7n2d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 506px; justify-content: flex-start; overflow: hidden; overflow-y: auto; padding: 10px 10px 10px 10px; position: relative; width: 345px; }\",\".framer-lzb2O .framer-to22gx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lzb2O .framer-1bsxrea-container, .framer-lzb2O .framer-1eujpq9-container, .framer-lzb2O .framer-1cdua0i-container, .framer-lzb2O .framer-c4xij5-container, .framer-lzb2O .framer-i1fud9-container, .framer-lzb2O .framer-1urea7p-container, .framer-lzb2O .framer-126ugkv-container, .framer-lzb2O .framer-27v3x1-container, .framer-lzb2O .framer-uz5ckn-container, .framer-lzb2O .framer-yoalch-container, .framer-lzb2O .framer-guf6bi-container, .framer-lzb2O .framer-h7xbio-container, .framer-lzb2O .framer-l15tgg-container, .framer-lzb2O .framer-sd8b4n-container, .framer-lzb2O .framer-13u7be2-container, .framer-lzb2O .framer-23u87a-container, .framer-lzb2O .framer-1mfzk4s-container, .framer-lzb2O .framer-1tzkp1p-container, .framer-lzb2O .framer-16pru3t-container, .framer-lzb2O .framer-n2x10e-container, .framer-lzb2O .framer-40kp89-container, .framer-lzb2O .framer-1wufati-container, .framer-lzb2O .framer-11qdjf3-container, .framer-lzb2O .framer-1vbyhhj-container, .framer-lzb2O .framer-1slfdqh-container, .framer-lzb2O .framer-hnfqpl-container, .framer-lzb2O .framer-7lk2id-container, .framer-lzb2O .framer-304cew-container, .framer-lzb2O .framer-uqjocj-container, .framer-lzb2O .framer-1hmplm4-container, .framer-lzb2O .framer-13hpiee-container, .framer-lzb2O .framer-o4ql4d-container { flex: none; height: 450px; position: relative; width: 538px; }\",\".framer-lzb2O .framer-13cabwz { height: 730px; overflow: visible; position: relative; width: 1160px; }\",\".framer-lzb2O .framer-1kotmbr { height: 775px; overflow: visible; position: relative; width: 1162px; }\",\".framer-lzb2O .framer-f6479k { height: 752px; overflow: visible; position: relative; width: 1171px; }\",\".framer-lzb2O .framer-jngk3x, .framer-lzb2O .framer-1x22rvy { aspect-ratio: 1.2483221476510067 / 1; height: var(--framer-aspect-ratio-supported, 447px); overflow: visible; position: relative; width: 558px; }\",\".framer-lzb2O .framer-159y9zv { aspect-ratio: 1.337807606263982 / 1; height: var(--framer-aspect-ratio-supported, 447px); overflow: visible; position: relative; width: 598px; }\",\".framer-lzb2O .framer-19xx35r { aspect-ratio: 1.778115501519757 / 1; height: var(--framer-aspect-ratio-supported, 658px); overflow: visible; position: relative; width: 1170px; }\",\".framer-lzb2O .framer-l234ji { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 727px); overflow: visible; position: relative; width: 1292px; }\",\".framer-lzb2O .framer-ahygey { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 655px); overflow: visible; position: relative; width: 1164px; }\",\".framer-lzb2O .framer-7frq6x, .framer-lzb2O .framer-8vlhb0 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 720px); overflow: visible; position: relative; width: 1280px; }\",\".framer-lzb2O .framer-xgkvdx { aspect-ratio: 1.3400447427293065 / 1; height: var(--framer-aspect-ratio-supported, 447px); overflow: visible; position: relative; width: 599px; }\",\".framer-lzb2O .framer-15k76ev { aspect-ratio: 1.3557046979865772 / 1; height: var(--framer-aspect-ratio-supported, 447px); overflow: visible; position: relative; width: 606px; }\",\".framer-lzb2O .framer-1s4q0fv { aspect-ratio: 1.3736017897091723 / 1; height: var(--framer-aspect-ratio-supported, 447px); overflow: visible; position: relative; width: 614px; }\",\".framer-lzb2O .framer-eyym4q { aspect-ratio: 1.7730956239870341 / 1; height: var(--framer-aspect-ratio-supported, 617px); overflow: visible; position: relative; width: 1094px; }\",\".framer-lzb2O .framer-h4smi4 { aspect-ratio: 1.815 / 1; height: var(--framer-aspect-ratio-supported, 600px); overflow: visible; position: relative; width: 1089px; }\",\".framer-lzb2O .framer-1hr0876 { aspect-ratio: 1.767479674796748 / 1; height: var(--framer-aspect-ratio-supported, 615px); overflow: visible; position: relative; width: 1087px; }\",\".framer-lzb2O .framer-199m1rm { aspect-ratio: 1.359504132231405 / 1; height: var(--framer-aspect-ratio-supported, 484px); overflow: visible; position: relative; width: 658px; }\",\".framer-lzb2O .framer-jmgyik, .framer-lzb2O .framer-3bu4ly, .framer-lzb2O .framer-1iars4h { aspect-ratio: 2 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 800px; }\",\".framer-lzb2O .framer-9rmck3 { aspect-ratio: 1.6450511945392492 / 1; height: var(--framer-aspect-ratio-supported, 586px); overflow: visible; position: relative; width: 964px; }\",\".framer-lzb2O .framer-d0llg0 { aspect-ratio: 1.5869947275922671 / 1; height: var(--framer-aspect-ratio-supported, 569px); overflow: visible; position: relative; width: 903px; }\",\".framer-lzb2O .framer-l9z6sx { aspect-ratio: 1.5833333333333333 / 1; height: var(--framer-aspect-ratio-supported, 600px); overflow: visible; position: relative; width: 950px; }\",\".framer-lzb2O .framer-y2kxik { aspect-ratio: 1.5777027027027026 / 1; height: var(--framer-aspect-ratio-supported, 592px); overflow: visible; position: relative; width: 934px; }\",\".framer-lzb2O .framer-1517a47, .framer-lzb2O .framer-1mk1upe, .framer-lzb2O .framer-1i7uc9i { aspect-ratio: 1.3339587242026267 / 1; height: var(--framer-aspect-ratio-supported, 533px); overflow: visible; position: relative; width: 711px; }\",\".framer-lzb2O .framer-1l7gcb5 { aspect-ratio: 1.94884287454324 / 1; height: var(--framer-aspect-ratio-supported, 821px); overflow: visible; position: relative; width: 1600px; }\",\".framer-lzb2O .framer-1bv6ts1, .framer-lzb2O .framer-1ur924b, .framer-lzb2O .framer-1f4wgci, .framer-lzb2O .framer-1t4dlnu, .framer-lzb2O .framer-69i7gw, .framer-lzb2O .framer-kdsmii, .framer-lzb2O .framer-39tqg4, .framer-lzb2O .framer-3yl6ug { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 1200px); overflow: visible; position: relative; width: 1800px; }\",\".framer-lzb2O .framer-6hortt { aspect-ratio: 1.4285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 896px); overflow: visible; position: relative; width: 1280px; }\",\".framer-lzb2O .framer-qdoeqh { aspect-ratio: 1.614123581336696 / 1; height: var(--framer-aspect-ratio-supported, 793px); overflow: visible; position: relative; width: 1280px; }\",\".framer-lzb2O .framer-107s3xd { aspect-ratio: 1.6484375 / 1; height: var(--framer-aspect-ratio-supported, 384px); overflow: visible; position: relative; width: 633px; }\",\".framer-lzb2O .framer-5jp1gt { aspect-ratio: 1.425 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 570px; }\",\".framer-lzb2O .framer-zoci5 { aspect-ratio: 1.1886792452830188 / 1; height: var(--framer-aspect-ratio-supported, 583px); overflow: visible; position: relative; width: 693px; }\",\".framer-lzb2O .framer-cbveob, .framer-lzb2O .framer-15jip09 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 450px); overflow: visible; position: relative; width: 800px; }\",\".framer-lzb2O .framer-18au1pc { aspect-ratio: 1.495016611295681 / 1; height: var(--framer-aspect-ratio-supported, 1204px); overflow: visible; position: relative; width: 1800px; }\",\".framer-lzb2O .framer-76nitt, .framer-lzb2O .framer-1iyjz9s { aspect-ratio: 1.499267935578331 / 1; height: var(--framer-aspect-ratio-supported, 683px); overflow: visible; position: relative; width: 1024px; }\",\".framer-lzb2O .framer-1w4esbf, .framer-lzb2O .framer-12dudbp, .framer-lzb2O .framer-1sz22oq, .framer-lzb2O .framer-1bp0034, .framer-lzb2O .framer-n7gvim, .framer-lzb2O .framer-3qo0qa, .framer-lzb2O .framer-1d62mse, .framer-lzb2O .framer-12ilg96, .framer-lzb2O .framer-1uwnrwx, .framer-lzb2O .framer-hq60ns, .framer-lzb2O .framer-rs1sym, .framer-lzb2O .framer-594cet, .framer-lzb2O .framer-1e7ufon, .framer-lzb2O .framer-1upowlh, .framer-lzb2O .framer-fkk1d9, .framer-lzb2O .framer-monyx2, .framer-lzb2O .framer-1h5stbl, .framer-lzb2O .framer-1ydbqqp, .framer-lzb2O .framer-1ezb1mx, .framer-lzb2O .framer-4ett4o, .framer-lzb2O .framer-1bivfx0, .framer-lzb2O .framer-1xpvjwm, .framer-lzb2O .framer-6zgxo9 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 600px); overflow: visible; position: relative; width: 800px; }\",\".framer-lzb2O .framer-1h0cnb1 { aspect-ratio: 1.7651933701657458 / 1; height: var(--framer-aspect-ratio-supported, 724px); overflow: visible; position: relative; width: 1278px; }\",\".framer-lzb2O .framer-4c6m4i { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 884px); overflow: visible; position: relative; width: 1326px; }\",\".framer-lzb2O .framer-1gehca8 { aspect-ratio: 1.650190114068441 / 1; height: var(--framer-aspect-ratio-supported, 789px); overflow: visible; position: relative; width: 1302px; }\",\".framer-lzb2O .framer-156ihxq-container { flex: none; height: 480px; position: relative; width: 1300px; }\",\".framer-lzb2O .framer-1l0hq9f-container { flex: none; height: auto; position: relative; width: 1300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lzb2O.framer-cewhyy, .framer-lzb2O .framer-1eue3wq, .framer-lzb2O .framer-1bsrbh1, .framer-lzb2O .framer-ymfqtn, .framer-lzb2O .framer-1fapnh9, .framer-lzb2O .framer-1ohu7oa, .framer-lzb2O .framer-a2vsbq, .framer-lzb2O .framer-op2vfv, .framer-lzb2O .framer-1jv2rta, .framer-lzb2O .framer-h3zurj, .framer-lzb2O .framer-huit8y, .framer-lzb2O .framer-i2tzp5, .framer-lzb2O .framer-g3kqu0, .framer-lzb2O .framer-151ag8, .framer-lzb2O .framer-ujdoqd, .framer-lzb2O .framer-r5hbpu, .framer-lzb2O .framer-181r4g, .framer-lzb2O .framer-qqnsco, .framer-lzb2O .framer-j9q3tl, .framer-lzb2O .framer-noq4kk, .framer-lzb2O .framer-1d190qt, .framer-lzb2O .framer-ssv6mo, .framer-lzb2O .framer-1xgmvf9, .framer-lzb2O .framer-173mfvq, .framer-lzb2O .framer-t1mccg, .framer-lzb2O .framer-1fy1uff, .framer-lzb2O .framer-fdk99, .framer-lzb2O .framer-l5rx5j, .framer-lzb2O .framer-zk264n, .framer-lzb2O .framer-ocze0d, .framer-lzb2O .framer-4uayvj, .framer-lzb2O .framer-1xdhnae, .framer-lzb2O .framer-ph3ma0, .framer-lzb2O .framer-1r7kxgm, .framer-lzb2O .framer-1p0hegh, .framer-lzb2O .framer-39q4y9, .framer-lzb2O .framer-lma8e7, .framer-lzb2O .framer-1wtt594, .framer-lzb2O .framer-1q5v5zo, .framer-lzb2O .framer-1bldp46, .framer-lzb2O .framer-dfckm6, .framer-lzb2O .framer-1mpgcni, .framer-lzb2O .framer-13n5u8j, .framer-lzb2O .framer-1qayqyu, .framer-lzb2O .framer-vg4vvr, .framer-lzb2O .framer-15vaxoc, .framer-lzb2O .framer-12r7n2d, .framer-lzb2O .framer-1v1ybp0, .framer-lzb2O .framer-1bng8bf, .framer-lzb2O .framer-1hu3lmc, .framer-lzb2O .framer-wzgekj, .framer-lzb2O .framer-pepfjc, .framer-lzb2O .framer-fay8n2, .framer-lzb2O .framer-m9hg9u, .framer-lzb2O .framer-jaeehj, .framer-lzb2O .framer-67ak22, .framer-lzb2O .framer-sh8oxq, .framer-lzb2O .framer-tfo16t, .framer-lzb2O .framer-14rylgc, .framer-lzb2O .framer-lgzxue, .framer-lzb2O .framer-3bhcs, .framer-lzb2O .framer-to22gx, .framer-lzb2O .framer-19i5hvo, .framer-lzb2O .framer-1jhmdx7, .framer-lzb2O .framer-8nane1, .framer-lzb2O .framer-q11xr4, .framer-lzb2O .framer-1q5bczb, .framer-lzb2O .framer-g0p9vu, .framer-lzb2O .framer-1alql5d, .framer-lzb2O .framer-temmrr, .framer-lzb2O .framer-1jxcztl, .framer-lzb2O .framer-1np4eve, .framer-lzb2O .framer-4zhsf8, .framer-lzb2O .framer-gwxuq9, .framer-lzb2O .framer-1tbu7wc, .framer-lzb2O .framer-1ue32pl, .framer-lzb2O .framer-ig2o2x, .framer-lzb2O .framer-19ddqky, .framer-lzb2O .framer-q5wgef, .framer-lzb2O .framer-k51xzh, .framer-lzb2O .framer-a0v4fe, .framer-lzb2O .framer-pmws30, .framer-lzb2O .framer-3bn5uh, .framer-lzb2O .framer-1dhirvp, .framer-lzb2O .framer-rqazhz, .framer-lzb2O .framer-1tij8vj, .framer-lzb2O .framer-1oxzo3a, .framer-lzb2O .framer-ogk7rm, .framer-lzb2O .framer-ml2mb0, .framer-lzb2O .framer-qcpx58, .framer-lzb2O .framer-yjjwkt, .framer-lzb2O .framer-hsnx2a, .framer-lzb2O .framer-osxtdk, .framer-lzb2O .framer-1edkydb, .framer-lzb2O .framer-1x6ij2v, .framer-lzb2O .framer-paehqw, .framer-lzb2O .framer-1wdacb0, .framer-lzb2O .framer-p94vv3, .framer-lzb2O .framer-1r798be, .framer-lzb2O .framer-kofcck, .framer-lzb2O .framer-ne0y45, .framer-lzb2O .framer-1agcvt, .framer-lzb2O .framer-1xsga6y, .framer-lzb2O .framer-gan3fz, .framer-lzb2O .framer-1t03t6y, .framer-lzb2O .framer-1t91ply, .framer-lzb2O .framer-5t2mi, .framer-lzb2O .framer-y9l2q6, .framer-lzb2O .framer-1ydwhr7, .framer-lzb2O .framer-62guue, .framer-lzb2O .framer-pugf7a, .framer-lzb2O .framer-q1z2qf, .framer-lzb2O .framer-j6rpkp, .framer-lzb2O .framer-1y5f4rm, .framer-lzb2O .framer-zljtvz, .framer-lzb2O .framer-1270gat, .framer-lzb2O .framer-1d4lild, .framer-lzb2O .framer-1f6r3sm, .framer-lzb2O .framer-1fkunn9, .framer-lzb2O .framer-1rqjiuz, .framer-lzb2O .framer-1o9oj5w, .framer-lzb2O .framer-1pmtqpv, .framer-lzb2O .framer-rtlgek, .framer-lzb2O .framer-12uwmkz, .framer-lzb2O .framer-1a1rwa8, .framer-lzb2O .framer-1a97u2j, .framer-lzb2O .framer-1gea1ud, .framer-lzb2O .framer-14ozkmy, .framer-lzb2O .framer-11210hz, .framer-lzb2O .framer-1d6wbre, .framer-lzb2O .framer-1swlpi7, .framer-lzb2O .framer-6rdl7e, .framer-lzb2O .framer-1j7jznd, .framer-lzb2O .framer-6mnip8, .framer-lzb2O .framer-1oinf1y, .framer-lzb2O .framer-zryapa, .framer-lzb2O .framer-9ak421, .framer-lzb2O .framer-4cfn8t, .framer-lzb2O .framer-76ucr2, .framer-lzb2O .framer-n0t1b3, .framer-lzb2O .framer-1hsgcqx, .framer-lzb2O .framer-1u76jbn, .framer-lzb2O .framer-1nsky0c, .framer-lzb2O .framer-29qyrj, .framer-lzb2O .framer-wxe3eb, .framer-lzb2O .framer-3yhjzh, .framer-lzb2O .framer-i6706j, .framer-lzb2O .framer-16lt9jd, .framer-lzb2O .framer-rsp5v2, .framer-lzb2O .framer-6w8ksd, .framer-lzb2O .framer-h3bg4t, .framer-lzb2O .framer-6gogtn, .framer-lzb2O .framer-18ssura, .framer-lzb2O .framer-1afx6ux, .framer-lzb2O .framer-1fa33kb, .framer-lzb2O .framer-18grkok, .framer-lzb2O .framer-oephgl, .framer-lzb2O .framer-c8tmm9, .framer-lzb2O .framer-1rcdtjv, .framer-lzb2O .framer-6e80tr, .framer-lzb2O .framer-clc6q6, .framer-lzb2O .framer-10jpgvx, .framer-lzb2O .framer-mr8q8p, .framer-lzb2O .framer-14ypvrt, .framer-lzb2O .framer-1rwcs27, .framer-lzb2O .framer-y5tmkq, .framer-lzb2O .framer-snzdl4, .framer-lzb2O .framer-1gur5hg, .framer-lzb2O .framer-1c8fmyo, .framer-lzb2O .framer-win4i9, .framer-lzb2O .framer-d6gm3j, .framer-lzb2O .framer-tttf8n, .framer-lzb2O .framer-17u7fx7, .framer-lzb2O .framer-a0ra6n, .framer-lzb2O .framer-18f3ues, .framer-lzb2O .framer-sdpdal, .framer-lzb2O .framer-kd8yt9, .framer-lzb2O .framer-1r5uud7, .framer-lzb2O .framer-13nw14x, .framer-lzb2O .framer-14mxn52, .framer-lzb2O .framer-1lstnbi, .framer-lzb2O .framer-15lj029, .framer-lzb2O .framer-wxqvaq, .framer-lzb2O .framer-1q9c3ac, .framer-lzb2O .framer-da0wqy, .framer-lzb2O .framer-dme9ej, .framer-lzb2O .framer-1vpe9gk, .framer-lzb2O .framer-1u0fcvw, .framer-lzb2O .framer-1p2nwxu, .framer-lzb2O .framer-1jpm6ld, .framer-lzb2O .framer-1s565e0, .framer-lzb2O .framer-kzhxbs, .framer-lzb2O .framer-i95maw, .framer-lzb2O .framer-qf6y3m, .framer-lzb2O .framer-qaflri, .framer-lzb2O .framer-1637p4x, .framer-lzb2O .framer-1j4xawq, .framer-lzb2O .framer-1ivtqaq, .framer-lzb2O .framer-ti50hv, .framer-lzb2O .framer-vads80, .framer-lzb2O .framer-kghf74, .framer-lzb2O .framer-6rzby0, .framer-lzb2O .framer-9wiq5e, .framer-lzb2O .framer-1tww6jj, .framer-lzb2O .framer-1wseksl, .framer-lzb2O .framer-11g7nw8, .framer-lzb2O .framer-128yhnf, .framer-lzb2O .framer-1mwahqf, .framer-lzb2O .framer-nwj5cb, .framer-lzb2O .framer-1awrs5w, .framer-lzb2O .framer-92byd6, .framer-lzb2O .framer-18ef27l, .framer-lzb2O .framer-161toad, .framer-lzb2O .framer-pyogr4, .framer-lzb2O .framer-1jbrkug, .framer-lzb2O .framer-v1okab, .framer-lzb2O .framer-1i93cor, .framer-lzb2O .framer-1s602cn, .framer-lzb2O .framer-o63002, .framer-lzb2O .framer-9i1f1i, .framer-lzb2O .framer-19wa6tk, .framer-lzb2O .framer-rjpg9e { gap: 0px; } .framer-lzb2O.framer-cewhyy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lzb2O.framer-cewhyy > :first-child, .framer-lzb2O .framer-1bsrbh1 > :first-child, .framer-lzb2O .framer-ymfqtn > :first-child, .framer-lzb2O .framer-1fapnh9 > :first-child, .framer-lzb2O .framer-1ohu7oa > :first-child, .framer-lzb2O .framer-a2vsbq > :first-child, .framer-lzb2O .framer-op2vfv > :first-child, .framer-lzb2O .framer-1jv2rta > :first-child, .framer-lzb2O .framer-h3zurj > :first-child, .framer-lzb2O .framer-g3kqu0 > :first-child, .framer-lzb2O .framer-151ag8 > :first-child, .framer-lzb2O .framer-ujdoqd > :first-child, .framer-lzb2O .framer-qqnsco > :first-child, .framer-lzb2O .framer-j9q3tl > :first-child, .framer-lzb2O .framer-noq4kk > :first-child, .framer-lzb2O .framer-1xgmvf9 > :first-child, .framer-lzb2O .framer-173mfvq > :first-child, .framer-lzb2O .framer-t1mccg > :first-child, .framer-lzb2O .framer-1fy1uff > :first-child, .framer-lzb2O .framer-zk264n > :first-child, .framer-lzb2O .framer-ocze0d > :first-child, .framer-lzb2O .framer-4uayvj > :first-child, .framer-lzb2O .framer-1xdhnae > :first-child, .framer-lzb2O .framer-1p0hegh > :first-child, .framer-lzb2O .framer-39q4y9 > :first-child, .framer-lzb2O .framer-lma8e7 > :first-child, .framer-lzb2O .framer-1wtt594 > :first-child, .framer-lzb2O .framer-dfckm6 > :first-child, .framer-lzb2O .framer-1mpgcni > :first-child, .framer-lzb2O .framer-13n5u8j > :first-child, .framer-lzb2O .framer-1qayqyu > :first-child, .framer-lzb2O .framer-12r7n2d > :first-child, .framer-lzb2O .framer-1v1ybp0 > :first-child, .framer-lzb2O .framer-1bng8bf > :first-child, .framer-lzb2O .framer-1hu3lmc > :first-child, .framer-lzb2O .framer-fay8n2 > :first-child, .framer-lzb2O .framer-m9hg9u > :first-child, .framer-lzb2O .framer-jaeehj > :first-child, .framer-lzb2O .framer-67ak22 > :first-child, .framer-lzb2O .framer-14rylgc > :first-child, .framer-lzb2O .framer-lgzxue > :first-child, .framer-lzb2O .framer-3bhcs > :first-child, .framer-lzb2O .framer-to22gx > :first-child, .framer-lzb2O .framer-8nane1 > :first-child, .framer-lzb2O .framer-q11xr4 > :first-child, .framer-lzb2O .framer-1q5bczb > :first-child, .framer-lzb2O .framer-temmrr > :first-child, .framer-lzb2O .framer-1jxcztl > :first-child, .framer-lzb2O .framer-1np4eve > :first-child, .framer-lzb2O .framer-1tbu7wc > :first-child, .framer-lzb2O .framer-1ue32pl > :first-child, .framer-lzb2O .framer-ig2o2x > :first-child, .framer-lzb2O .framer-k51xzh > :first-child, .framer-lzb2O .framer-a0v4fe > :first-child, .framer-lzb2O .framer-pmws30 > :first-child, .framer-lzb2O .framer-rqazhz > :first-child, .framer-lzb2O .framer-1tij8vj > :first-child, .framer-lzb2O .framer-1oxzo3a > :first-child, .framer-lzb2O .framer-qcpx58 > :first-child, .framer-lzb2O .framer-yjjwkt > :first-child, .framer-lzb2O .framer-hsnx2a > :first-child, .framer-lzb2O .framer-1x6ij2v > :first-child, .framer-lzb2O .framer-paehqw > :first-child, .framer-lzb2O .framer-1wdacb0 > :first-child, .framer-lzb2O .framer-kofcck > :first-child, .framer-lzb2O .framer-ne0y45 > :first-child, .framer-lzb2O .framer-1agcvt > :first-child, .framer-lzb2O .framer-1t03t6y > :first-child, .framer-lzb2O .framer-1t91ply > :first-child, .framer-lzb2O .framer-5t2mi > :first-child, .framer-lzb2O .framer-62guue > :first-child, .framer-lzb2O .framer-pugf7a > :first-child, .framer-lzb2O .framer-q1z2qf > :first-child, .framer-lzb2O .framer-zljtvz > :first-child, .framer-lzb2O .framer-1270gat > :first-child, .framer-lzb2O .framer-1d4lild > :first-child, .framer-lzb2O .framer-1rqjiuz > :first-child, .framer-lzb2O .framer-1o9oj5w > :first-child, .framer-lzb2O .framer-1pmtqpv > :first-child, .framer-lzb2O .framer-1a1rwa8 > :first-child, .framer-lzb2O .framer-1a97u2j > :first-child, .framer-lzb2O .framer-1gea1ud > :first-child, .framer-lzb2O .framer-1d6wbre > :first-child, .framer-lzb2O .framer-1swlpi7 > :first-child, .framer-lzb2O .framer-6rdl7e > :first-child, .framer-lzb2O .framer-1oinf1y > :first-child, .framer-lzb2O .framer-zryapa > :first-child, .framer-lzb2O .framer-9ak421 > :first-child, .framer-lzb2O .framer-n0t1b3 > :first-child, .framer-lzb2O .framer-1hsgcqx > :first-child, .framer-lzb2O .framer-1u76jbn > :first-child, .framer-lzb2O .framer-wxe3eb > :first-child, .framer-lzb2O .framer-3yhjzh > :first-child, .framer-lzb2O .framer-rsp5v2 > :first-child, .framer-lzb2O .framer-6w8ksd > :first-child, .framer-lzb2O .framer-h3bg4t > :first-child, .framer-lzb2O .framer-1afx6ux > :first-child, .framer-lzb2O .framer-1fa33kb > :first-child, .framer-lzb2O .framer-18grkok > :first-child, .framer-lzb2O .framer-1rcdtjv > :first-child, .framer-lzb2O .framer-6e80tr > :first-child, .framer-lzb2O .framer-clc6q6 > :first-child, .framer-lzb2O .framer-14ypvrt > :first-child, .framer-lzb2O .framer-1rwcs27 > :first-child, .framer-lzb2O .framer-y5tmkq > :first-child, .framer-lzb2O .framer-1c8fmyo > :first-child, .framer-lzb2O .framer-win4i9 > :first-child, .framer-lzb2O .framer-d6gm3j > :first-child, .framer-lzb2O .framer-a0ra6n > :first-child, .framer-lzb2O .framer-18f3ues > :first-child, .framer-lzb2O .framer-sdpdal > :first-child, .framer-lzb2O .framer-13nw14x > :first-child, .framer-lzb2O .framer-14mxn52 > :first-child, .framer-lzb2O .framer-1lstnbi > :first-child, .framer-lzb2O .framer-1q9c3ac > :first-child, .framer-lzb2O .framer-da0wqy > :first-child, .framer-lzb2O .framer-dme9ej > :first-child, .framer-lzb2O .framer-1p2nwxu > :first-child, .framer-lzb2O .framer-1jpm6ld > :first-child, .framer-lzb2O .framer-1s565e0 > :first-child, .framer-lzb2O .framer-qf6y3m > :first-child, .framer-lzb2O .framer-qaflri > :first-child, .framer-lzb2O .framer-1637p4x > :first-child, .framer-lzb2O .framer-ti50hv > :first-child, .framer-lzb2O .framer-vads80 > :first-child, .framer-lzb2O .framer-kghf74 > :first-child, .framer-lzb2O .framer-1tww6jj > :first-child, .framer-lzb2O .framer-1wseksl > :first-child, .framer-lzb2O .framer-1mwahqf > :first-child, .framer-lzb2O .framer-nwj5cb > :first-child, .framer-lzb2O .framer-1awrs5w > :first-child, .framer-lzb2O .framer-161toad > :first-child, .framer-lzb2O .framer-pyogr4 > :first-child, .framer-lzb2O .framer-1jbrkug > :first-child, .framer-lzb2O .framer-1s602cn > :first-child, .framer-lzb2O .framer-o63002 > :first-child, .framer-lzb2O .framer-9i1f1i > :first-child { margin-top: 0px; } .framer-lzb2O.framer-cewhyy > :last-child, .framer-lzb2O .framer-1bsrbh1 > :last-child, .framer-lzb2O .framer-ymfqtn > :last-child, .framer-lzb2O .framer-1fapnh9 > :last-child, .framer-lzb2O .framer-1ohu7oa > :last-child, .framer-lzb2O .framer-a2vsbq > :last-child, .framer-lzb2O .framer-op2vfv > :last-child, .framer-lzb2O .framer-1jv2rta > :last-child, .framer-lzb2O .framer-h3zurj > :last-child, .framer-lzb2O .framer-g3kqu0 > :last-child, .framer-lzb2O .framer-151ag8 > :last-child, .framer-lzb2O .framer-ujdoqd > :last-child, .framer-lzb2O .framer-qqnsco > :last-child, .framer-lzb2O .framer-j9q3tl > :last-child, .framer-lzb2O .framer-noq4kk > :last-child, .framer-lzb2O .framer-1xgmvf9 > :last-child, .framer-lzb2O .framer-173mfvq > :last-child, .framer-lzb2O .framer-t1mccg > :last-child, .framer-lzb2O .framer-1fy1uff > :last-child, .framer-lzb2O .framer-zk264n > :last-child, .framer-lzb2O .framer-ocze0d > :last-child, .framer-lzb2O .framer-4uayvj > :last-child, .framer-lzb2O .framer-1xdhnae > :last-child, .framer-lzb2O .framer-1p0hegh > :last-child, .framer-lzb2O .framer-39q4y9 > :last-child, .framer-lzb2O .framer-lma8e7 > :last-child, .framer-lzb2O .framer-1wtt594 > :last-child, .framer-lzb2O .framer-dfckm6 > :last-child, .framer-lzb2O .framer-1mpgcni > :last-child, .framer-lzb2O .framer-13n5u8j > :last-child, .framer-lzb2O .framer-1qayqyu > :last-child, .framer-lzb2O .framer-12r7n2d > :last-child, .framer-lzb2O .framer-1v1ybp0 > :last-child, .framer-lzb2O .framer-1bng8bf > :last-child, .framer-lzb2O .framer-1hu3lmc > :last-child, .framer-lzb2O .framer-fay8n2 > :last-child, .framer-lzb2O .framer-m9hg9u > :last-child, .framer-lzb2O .framer-jaeehj > :last-child, .framer-lzb2O .framer-67ak22 > :last-child, .framer-lzb2O .framer-14rylgc > :last-child, .framer-lzb2O .framer-lgzxue > :last-child, .framer-lzb2O .framer-3bhcs > :last-child, .framer-lzb2O .framer-to22gx > :last-child, .framer-lzb2O .framer-8nane1 > :last-child, .framer-lzb2O .framer-q11xr4 > :last-child, .framer-lzb2O .framer-1q5bczb > :last-child, .framer-lzb2O .framer-temmrr > :last-child, .framer-lzb2O .framer-1jxcztl > :last-child, .framer-lzb2O .framer-1np4eve > :last-child, .framer-lzb2O .framer-1tbu7wc > :last-child, .framer-lzb2O .framer-1ue32pl > :last-child, .framer-lzb2O .framer-ig2o2x > :last-child, .framer-lzb2O .framer-k51xzh > :last-child, .framer-lzb2O .framer-a0v4fe > :last-child, .framer-lzb2O .framer-pmws30 > :last-child, .framer-lzb2O .framer-rqazhz > :last-child, .framer-lzb2O .framer-1tij8vj > :last-child, .framer-lzb2O .framer-1oxzo3a > :last-child, .framer-lzb2O .framer-qcpx58 > :last-child, .framer-lzb2O .framer-yjjwkt > :last-child, .framer-lzb2O .framer-hsnx2a > :last-child, .framer-lzb2O .framer-1x6ij2v > :last-child, .framer-lzb2O .framer-paehqw > :last-child, .framer-lzb2O .framer-1wdacb0 > :last-child, .framer-lzb2O .framer-kofcck > :last-child, .framer-lzb2O .framer-ne0y45 > :last-child, .framer-lzb2O .framer-1agcvt > :last-child, .framer-lzb2O .framer-1t03t6y > :last-child, .framer-lzb2O .framer-1t91ply > :last-child, .framer-lzb2O .framer-5t2mi > :last-child, .framer-lzb2O .framer-62guue > :last-child, .framer-lzb2O .framer-pugf7a > :last-child, .framer-lzb2O .framer-q1z2qf > :last-child, .framer-lzb2O .framer-zljtvz > :last-child, .framer-lzb2O .framer-1270gat > :last-child, .framer-lzb2O .framer-1d4lild > :last-child, .framer-lzb2O .framer-1rqjiuz > :last-child, .framer-lzb2O .framer-1o9oj5w > :last-child, .framer-lzb2O .framer-1pmtqpv > :last-child, .framer-lzb2O .framer-1a1rwa8 > :last-child, .framer-lzb2O .framer-1a97u2j > :last-child, .framer-lzb2O .framer-1gea1ud > :last-child, .framer-lzb2O .framer-1d6wbre > :last-child, .framer-lzb2O .framer-1swlpi7 > :last-child, .framer-lzb2O .framer-6rdl7e > :last-child, .framer-lzb2O .framer-1oinf1y > :last-child, .framer-lzb2O .framer-zryapa > :last-child, .framer-lzb2O .framer-9ak421 > :last-child, .framer-lzb2O .framer-n0t1b3 > :last-child, .framer-lzb2O .framer-1hsgcqx > :last-child, .framer-lzb2O .framer-1u76jbn > :last-child, .framer-lzb2O .framer-wxe3eb > :last-child, .framer-lzb2O .framer-3yhjzh > :last-child, .framer-lzb2O .framer-rsp5v2 > :last-child, .framer-lzb2O .framer-6w8ksd > :last-child, .framer-lzb2O .framer-h3bg4t > :last-child, .framer-lzb2O .framer-1afx6ux > :last-child, .framer-lzb2O .framer-1fa33kb > :last-child, .framer-lzb2O .framer-18grkok > :last-child, .framer-lzb2O .framer-1rcdtjv > :last-child, .framer-lzb2O .framer-6e80tr > :last-child, .framer-lzb2O .framer-clc6q6 > :last-child, .framer-lzb2O .framer-14ypvrt > :last-child, .framer-lzb2O .framer-1rwcs27 > :last-child, .framer-lzb2O .framer-y5tmkq > :last-child, .framer-lzb2O .framer-1c8fmyo > :last-child, .framer-lzb2O .framer-win4i9 > :last-child, .framer-lzb2O .framer-d6gm3j > :last-child, .framer-lzb2O .framer-a0ra6n > :last-child, .framer-lzb2O .framer-18f3ues > :last-child, .framer-lzb2O .framer-sdpdal > :last-child, .framer-lzb2O .framer-13nw14x > :last-child, .framer-lzb2O .framer-14mxn52 > :last-child, .framer-lzb2O .framer-1lstnbi > :last-child, .framer-lzb2O .framer-1q9c3ac > :last-child, .framer-lzb2O .framer-da0wqy > :last-child, .framer-lzb2O .framer-dme9ej > :last-child, .framer-lzb2O .framer-1p2nwxu > :last-child, .framer-lzb2O .framer-1jpm6ld > :last-child, .framer-lzb2O .framer-1s565e0 > :last-child, .framer-lzb2O .framer-qf6y3m > :last-child, .framer-lzb2O .framer-qaflri > :last-child, .framer-lzb2O .framer-1637p4x > :last-child, .framer-lzb2O .framer-ti50hv > :last-child, .framer-lzb2O .framer-vads80 > :last-child, .framer-lzb2O .framer-kghf74 > :last-child, .framer-lzb2O .framer-1tww6jj > :last-child, .framer-lzb2O .framer-1wseksl > :last-child, .framer-lzb2O .framer-1mwahqf > :last-child, .framer-lzb2O .framer-nwj5cb > :last-child, .framer-lzb2O .framer-1awrs5w > :last-child, .framer-lzb2O .framer-161toad > :last-child, .framer-lzb2O .framer-pyogr4 > :last-child, .framer-lzb2O .framer-1jbrkug > :last-child, .framer-lzb2O .framer-1s602cn > :last-child, .framer-lzb2O .framer-o63002 > :last-child, .framer-lzb2O .framer-9i1f1i > :last-child { margin-bottom: 0px; } .framer-lzb2O .framer-1eue3wq > *, .framer-lzb2O .framer-huit8y > *, .framer-lzb2O .framer-i2tzp5 > *, .framer-lzb2O .framer-r5hbpu > *, .framer-lzb2O .framer-181r4g > *, .framer-lzb2O .framer-1d190qt > *, .framer-lzb2O .framer-ssv6mo > *, .framer-lzb2O .framer-fdk99 > *, .framer-lzb2O .framer-l5rx5j > *, .framer-lzb2O .framer-ph3ma0 > *, .framer-lzb2O .framer-1r7kxgm > *, .framer-lzb2O .framer-1q5v5zo > *, .framer-lzb2O .framer-1bldp46 > *, .framer-lzb2O .framer-vg4vvr > *, .framer-lzb2O .framer-15vaxoc > *, .framer-lzb2O .framer-wzgekj > *, .framer-lzb2O .framer-pepfjc > *, .framer-lzb2O .framer-sh8oxq > *, .framer-lzb2O .framer-tfo16t > *, .framer-lzb2O .framer-19i5hvo > *, .framer-lzb2O .framer-1jhmdx7 > *, .framer-lzb2O .framer-g0p9vu > *, .framer-lzb2O .framer-1alql5d > *, .framer-lzb2O .framer-4zhsf8 > *, .framer-lzb2O .framer-gwxuq9 > *, .framer-lzb2O .framer-19ddqky > *, .framer-lzb2O .framer-q5wgef > *, .framer-lzb2O .framer-3bn5uh > *, .framer-lzb2O .framer-1dhirvp > *, .framer-lzb2O .framer-ogk7rm > *, .framer-lzb2O .framer-ml2mb0 > *, .framer-lzb2O .framer-osxtdk > *, .framer-lzb2O .framer-1edkydb > *, .framer-lzb2O .framer-p94vv3 > *, .framer-lzb2O .framer-1r798be > *, .framer-lzb2O .framer-1xsga6y > *, .framer-lzb2O .framer-gan3fz > *, .framer-lzb2O .framer-y9l2q6 > *, .framer-lzb2O .framer-1ydwhr7 > *, .framer-lzb2O .framer-j6rpkp > *, .framer-lzb2O .framer-1y5f4rm > *, .framer-lzb2O .framer-1f6r3sm > *, .framer-lzb2O .framer-1fkunn9 > *, .framer-lzb2O .framer-rtlgek > *, .framer-lzb2O .framer-12uwmkz > *, .framer-lzb2O .framer-14ozkmy > *, .framer-lzb2O .framer-11210hz > *, .framer-lzb2O .framer-1j7jznd > *, .framer-lzb2O .framer-6mnip8 > *, .framer-lzb2O .framer-4cfn8t > *, .framer-lzb2O .framer-76ucr2 > *, .framer-lzb2O .framer-1nsky0c > *, .framer-lzb2O .framer-29qyrj > *, .framer-lzb2O .framer-i6706j > *, .framer-lzb2O .framer-16lt9jd > *, .framer-lzb2O .framer-6gogtn > *, .framer-lzb2O .framer-18ssura > *, .framer-lzb2O .framer-oephgl > *, .framer-lzb2O .framer-c8tmm9 > *, .framer-lzb2O .framer-10jpgvx > *, .framer-lzb2O .framer-mr8q8p > *, .framer-lzb2O .framer-snzdl4 > *, .framer-lzb2O .framer-1gur5hg > *, .framer-lzb2O .framer-tttf8n > *, .framer-lzb2O .framer-17u7fx7 > *, .framer-lzb2O .framer-kd8yt9 > *, .framer-lzb2O .framer-1r5uud7 > *, .framer-lzb2O .framer-15lj029 > *, .framer-lzb2O .framer-wxqvaq > *, .framer-lzb2O .framer-1vpe9gk > *, .framer-lzb2O .framer-1u0fcvw > *, .framer-lzb2O .framer-kzhxbs > *, .framer-lzb2O .framer-i95maw > *, .framer-lzb2O .framer-1j4xawq > *, .framer-lzb2O .framer-1ivtqaq > *, .framer-lzb2O .framer-6rzby0 > *, .framer-lzb2O .framer-9wiq5e > *, .framer-lzb2O .framer-11g7nw8 > *, .framer-lzb2O .framer-128yhnf > *, .framer-lzb2O .framer-92byd6 > *, .framer-lzb2O .framer-18ef27l > *, .framer-lzb2O .framer-v1okab > *, .framer-lzb2O .framer-1i93cor > *, .framer-lzb2O .framer-19wa6tk > *, .framer-lzb2O .framer-rjpg9e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lzb2O .framer-1eue3wq > :first-child, .framer-lzb2O .framer-huit8y > :first-child, .framer-lzb2O .framer-i2tzp5 > :first-child, .framer-lzb2O .framer-r5hbpu > :first-child, .framer-lzb2O .framer-181r4g > :first-child, .framer-lzb2O .framer-1d190qt > :first-child, .framer-lzb2O .framer-ssv6mo > :first-child, .framer-lzb2O .framer-fdk99 > :first-child, .framer-lzb2O .framer-l5rx5j > :first-child, .framer-lzb2O .framer-ph3ma0 > :first-child, .framer-lzb2O .framer-1r7kxgm > :first-child, .framer-lzb2O .framer-1q5v5zo > :first-child, .framer-lzb2O .framer-1bldp46 > :first-child, .framer-lzb2O .framer-vg4vvr > :first-child, .framer-lzb2O .framer-15vaxoc > :first-child, .framer-lzb2O .framer-wzgekj > :first-child, .framer-lzb2O .framer-pepfjc > :first-child, .framer-lzb2O .framer-sh8oxq > :first-child, .framer-lzb2O .framer-tfo16t > :first-child, .framer-lzb2O .framer-19i5hvo > :first-child, .framer-lzb2O .framer-1jhmdx7 > :first-child, .framer-lzb2O .framer-g0p9vu > :first-child, .framer-lzb2O .framer-1alql5d > :first-child, .framer-lzb2O .framer-4zhsf8 > :first-child, .framer-lzb2O .framer-gwxuq9 > :first-child, .framer-lzb2O .framer-19ddqky > :first-child, .framer-lzb2O .framer-q5wgef > :first-child, .framer-lzb2O .framer-3bn5uh > :first-child, .framer-lzb2O .framer-1dhirvp > :first-child, .framer-lzb2O .framer-ogk7rm > :first-child, .framer-lzb2O .framer-ml2mb0 > :first-child, .framer-lzb2O .framer-osxtdk > :first-child, .framer-lzb2O .framer-1edkydb > :first-child, .framer-lzb2O .framer-p94vv3 > :first-child, .framer-lzb2O .framer-1r798be > :first-child, .framer-lzb2O .framer-1xsga6y > :first-child, .framer-lzb2O .framer-gan3fz > :first-child, .framer-lzb2O .framer-y9l2q6 > :first-child, .framer-lzb2O .framer-1ydwhr7 > :first-child, .framer-lzb2O .framer-j6rpkp > :first-child, .framer-lzb2O .framer-1y5f4rm > :first-child, .framer-lzb2O .framer-1f6r3sm > :first-child, .framer-lzb2O .framer-1fkunn9 > :first-child, .framer-lzb2O .framer-rtlgek > :first-child, .framer-lzb2O .framer-12uwmkz > :first-child, .framer-lzb2O .framer-14ozkmy > :first-child, .framer-lzb2O .framer-11210hz > :first-child, .framer-lzb2O .framer-1j7jznd > :first-child, .framer-lzb2O .framer-6mnip8 > :first-child, .framer-lzb2O .framer-4cfn8t > :first-child, .framer-lzb2O .framer-76ucr2 > :first-child, .framer-lzb2O .framer-1nsky0c > :first-child, .framer-lzb2O .framer-29qyrj > :first-child, .framer-lzb2O .framer-i6706j > :first-child, .framer-lzb2O .framer-16lt9jd > :first-child, .framer-lzb2O .framer-6gogtn > :first-child, .framer-lzb2O .framer-18ssura > :first-child, .framer-lzb2O .framer-oephgl > :first-child, .framer-lzb2O .framer-c8tmm9 > :first-child, .framer-lzb2O .framer-10jpgvx > :first-child, .framer-lzb2O .framer-mr8q8p > :first-child, .framer-lzb2O .framer-snzdl4 > :first-child, .framer-lzb2O .framer-1gur5hg > :first-child, .framer-lzb2O .framer-tttf8n > :first-child, .framer-lzb2O .framer-17u7fx7 > :first-child, .framer-lzb2O .framer-kd8yt9 > :first-child, .framer-lzb2O .framer-1r5uud7 > :first-child, .framer-lzb2O .framer-15lj029 > :first-child, .framer-lzb2O .framer-wxqvaq > :first-child, .framer-lzb2O .framer-1vpe9gk > :first-child, .framer-lzb2O .framer-1u0fcvw > :first-child, .framer-lzb2O .framer-kzhxbs > :first-child, .framer-lzb2O .framer-i95maw > :first-child, .framer-lzb2O .framer-1j4xawq > :first-child, .framer-lzb2O .framer-1ivtqaq > :first-child, .framer-lzb2O .framer-6rzby0 > :first-child, .framer-lzb2O .framer-9wiq5e > :first-child, .framer-lzb2O .framer-11g7nw8 > :first-child, .framer-lzb2O .framer-128yhnf > :first-child, .framer-lzb2O .framer-92byd6 > :first-child, .framer-lzb2O .framer-18ef27l > :first-child, .framer-lzb2O .framer-v1okab > :first-child, .framer-lzb2O .framer-1i93cor > :first-child, .framer-lzb2O .framer-19wa6tk > :first-child, .framer-lzb2O .framer-rjpg9e > :first-child { margin-left: 0px; } .framer-lzb2O .framer-1eue3wq > :last-child, .framer-lzb2O .framer-huit8y > :last-child, .framer-lzb2O .framer-i2tzp5 > :last-child, .framer-lzb2O .framer-r5hbpu > :last-child, .framer-lzb2O .framer-181r4g > :last-child, .framer-lzb2O .framer-1d190qt > :last-child, .framer-lzb2O .framer-ssv6mo > :last-child, .framer-lzb2O .framer-fdk99 > :last-child, .framer-lzb2O .framer-l5rx5j > :last-child, .framer-lzb2O .framer-ph3ma0 > :last-child, .framer-lzb2O .framer-1r7kxgm > :last-child, .framer-lzb2O .framer-1q5v5zo > :last-child, .framer-lzb2O .framer-1bldp46 > :last-child, .framer-lzb2O .framer-vg4vvr > :last-child, .framer-lzb2O .framer-15vaxoc > :last-child, .framer-lzb2O .framer-wzgekj > :last-child, .framer-lzb2O .framer-pepfjc > :last-child, .framer-lzb2O .framer-sh8oxq > :last-child, .framer-lzb2O .framer-tfo16t > :last-child, .framer-lzb2O .framer-19i5hvo > :last-child, .framer-lzb2O .framer-1jhmdx7 > :last-child, .framer-lzb2O .framer-g0p9vu > :last-child, .framer-lzb2O .framer-1alql5d > :last-child, .framer-lzb2O .framer-4zhsf8 > :last-child, .framer-lzb2O .framer-gwxuq9 > :last-child, .framer-lzb2O .framer-19ddqky > :last-child, .framer-lzb2O .framer-q5wgef > :last-child, .framer-lzb2O .framer-3bn5uh > :last-child, .framer-lzb2O .framer-1dhirvp > :last-child, .framer-lzb2O .framer-ogk7rm > :last-child, .framer-lzb2O .framer-ml2mb0 > :last-child, .framer-lzb2O .framer-osxtdk > :last-child, .framer-lzb2O .framer-1edkydb > :last-child, .framer-lzb2O .framer-p94vv3 > :last-child, .framer-lzb2O .framer-1r798be > :last-child, .framer-lzb2O .framer-1xsga6y > :last-child, .framer-lzb2O .framer-gan3fz > :last-child, .framer-lzb2O .framer-y9l2q6 > :last-child, .framer-lzb2O .framer-1ydwhr7 > :last-child, .framer-lzb2O .framer-j6rpkp > :last-child, .framer-lzb2O .framer-1y5f4rm > :last-child, .framer-lzb2O .framer-1f6r3sm > :last-child, .framer-lzb2O .framer-1fkunn9 > :last-child, .framer-lzb2O .framer-rtlgek > :last-child, .framer-lzb2O .framer-12uwmkz > :last-child, .framer-lzb2O .framer-14ozkmy > :last-child, .framer-lzb2O .framer-11210hz > :last-child, .framer-lzb2O .framer-1j7jznd > :last-child, .framer-lzb2O .framer-6mnip8 > :last-child, .framer-lzb2O .framer-4cfn8t > :last-child, .framer-lzb2O .framer-76ucr2 > :last-child, .framer-lzb2O .framer-1nsky0c > :last-child, .framer-lzb2O .framer-29qyrj > :last-child, .framer-lzb2O .framer-i6706j > :last-child, .framer-lzb2O .framer-16lt9jd > :last-child, .framer-lzb2O .framer-6gogtn > :last-child, .framer-lzb2O .framer-18ssura > :last-child, .framer-lzb2O .framer-oephgl > :last-child, .framer-lzb2O .framer-c8tmm9 > :last-child, .framer-lzb2O .framer-10jpgvx > :last-child, .framer-lzb2O .framer-mr8q8p > :last-child, .framer-lzb2O .framer-snzdl4 > :last-child, .framer-lzb2O .framer-1gur5hg > :last-child, .framer-lzb2O .framer-tttf8n > :last-child, .framer-lzb2O .framer-17u7fx7 > :last-child, .framer-lzb2O .framer-kd8yt9 > :last-child, .framer-lzb2O .framer-1r5uud7 > :last-child, .framer-lzb2O .framer-15lj029 > :last-child, .framer-lzb2O .framer-wxqvaq > :last-child, .framer-lzb2O .framer-1vpe9gk > :last-child, .framer-lzb2O .framer-1u0fcvw > :last-child, .framer-lzb2O .framer-kzhxbs > :last-child, .framer-lzb2O .framer-i95maw > :last-child, .framer-lzb2O .framer-1j4xawq > :last-child, .framer-lzb2O .framer-1ivtqaq > :last-child, .framer-lzb2O .framer-6rzby0 > :last-child, .framer-lzb2O .framer-9wiq5e > :last-child, .framer-lzb2O .framer-11g7nw8 > :last-child, .framer-lzb2O .framer-128yhnf > :last-child, .framer-lzb2O .framer-92byd6 > :last-child, .framer-lzb2O .framer-18ef27l > :last-child, .framer-lzb2O .framer-v1okab > :last-child, .framer-lzb2O .framer-1i93cor > :last-child, .framer-lzb2O .framer-19wa6tk > :last-child, .framer-lzb2O .framer-rjpg9e > :last-child { margin-right: 0px; } .framer-lzb2O .framer-1bsrbh1 > *, .framer-lzb2O .framer-1fapnh9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-lzb2O .framer-ymfqtn > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-lzb2O .framer-1ohu7oa > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-lzb2O .framer-a2vsbq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-lzb2O .framer-op2vfv > *, .framer-lzb2O .framer-g3kqu0 > *, .framer-lzb2O .framer-1xgmvf9 > *, .framer-lzb2O .framer-zk264n > *, .framer-lzb2O .framer-1p0hegh > *, .framer-lzb2O .framer-dfckm6 > *, .framer-lzb2O .framer-12r7n2d > *, .framer-lzb2O .framer-fay8n2 > *, .framer-lzb2O .framer-14rylgc > *, .framer-lzb2O .framer-8nane1 > *, .framer-lzb2O .framer-temmrr > *, .framer-lzb2O .framer-1tbu7wc > *, .framer-lzb2O .framer-k51xzh > *, .framer-lzb2O .framer-rqazhz > *, .framer-lzb2O .framer-qcpx58 > *, .framer-lzb2O .framer-1x6ij2v > *, .framer-lzb2O .framer-kofcck > *, .framer-lzb2O .framer-1t03t6y > *, .framer-lzb2O .framer-62guue > *, .framer-lzb2O .framer-zljtvz > *, .framer-lzb2O .framer-1rqjiuz > *, .framer-lzb2O .framer-1a1rwa8 > *, .framer-lzb2O .framer-1d6wbre > *, .framer-lzb2O .framer-1oinf1y > *, .framer-lzb2O .framer-n0t1b3 > *, .framer-lzb2O .framer-wxe3eb > *, .framer-lzb2O .framer-rsp5v2 > *, .framer-lzb2O .framer-1afx6ux > *, .framer-lzb2O .framer-1rcdtjv > *, .framer-lzb2O .framer-14ypvrt > *, .framer-lzb2O .framer-1c8fmyo > *, .framer-lzb2O .framer-a0ra6n > *, .framer-lzb2O .framer-13nw14x > *, .framer-lzb2O .framer-1q9c3ac > *, .framer-lzb2O .framer-1p2nwxu > *, .framer-lzb2O .framer-qf6y3m > *, .framer-lzb2O .framer-ti50hv > *, .framer-lzb2O .framer-1tww6jj > *, .framer-lzb2O .framer-1mwahqf > *, .framer-lzb2O .framer-161toad > *, .framer-lzb2O .framer-1s602cn > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-lzb2O .framer-1jv2rta > *, .framer-lzb2O .framer-151ag8 > *, .framer-lzb2O .framer-q11xr4 > *, .framer-lzb2O .framer-1jxcztl > *, .framer-lzb2O .framer-1ue32pl > *, .framer-lzb2O .framer-a0v4fe > *, .framer-lzb2O .framer-1tij8vj > *, .framer-lzb2O .framer-yjjwkt > *, .framer-lzb2O .framer-paehqw > *, .framer-lzb2O .framer-ne0y45 > *, .framer-lzb2O .framer-1t91ply > *, .framer-lzb2O .framer-pugf7a > *, .framer-lzb2O .framer-1270gat > *, .framer-lzb2O .framer-1o9oj5w > *, .framer-lzb2O .framer-1a97u2j > *, .framer-lzb2O .framer-1swlpi7 > *, .framer-lzb2O .framer-zryapa > *, .framer-lzb2O .framer-1hsgcqx > *, .framer-lzb2O .framer-3yhjzh > *, .framer-lzb2O .framer-6w8ksd > *, .framer-lzb2O .framer-1fa33kb > *, .framer-lzb2O .framer-6e80tr > *, .framer-lzb2O .framer-1rwcs27 > *, .framer-lzb2O .framer-win4i9 > *, .framer-lzb2O .framer-18f3ues > *, .framer-lzb2O .framer-14mxn52 > *, .framer-lzb2O .framer-da0wqy > *, .framer-lzb2O .framer-1jpm6ld > *, .framer-lzb2O .framer-qaflri > *, .framer-lzb2O .framer-vads80 > *, .framer-lzb2O .framer-1wseksl > *, .framer-lzb2O .framer-nwj5cb > *, .framer-lzb2O .framer-pyogr4 > *, .framer-lzb2O .framer-o63002 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-lzb2O .framer-h3zurj > *, .framer-lzb2O .framer-ujdoqd > *, .framer-lzb2O .framer-noq4kk > *, .framer-lzb2O .framer-1fy1uff > *, .framer-lzb2O .framer-1xdhnae > *, .framer-lzb2O .framer-1wtt594 > *, .framer-lzb2O .framer-1qayqyu > *, .framer-lzb2O .framer-1hu3lmc > *, .framer-lzb2O .framer-67ak22 > *, .framer-lzb2O .framer-1q5bczb > *, .framer-lzb2O .framer-1np4eve > *, .framer-lzb2O .framer-ig2o2x > *, .framer-lzb2O .framer-pmws30 > *, .framer-lzb2O .framer-1oxzo3a > *, .framer-lzb2O .framer-hsnx2a > *, .framer-lzb2O .framer-1wdacb0 > *, .framer-lzb2O .framer-1agcvt > *, .framer-lzb2O .framer-5t2mi > *, .framer-lzb2O .framer-q1z2qf > *, .framer-lzb2O .framer-1d4lild > *, .framer-lzb2O .framer-1pmtqpv > *, .framer-lzb2O .framer-1gea1ud > *, .framer-lzb2O .framer-6rdl7e > *, .framer-lzb2O .framer-9ak421 > *, .framer-lzb2O .framer-1u76jbn > *, .framer-lzb2O .framer-h3bg4t > *, .framer-lzb2O .framer-18grkok > *, .framer-lzb2O .framer-clc6q6 > *, .framer-lzb2O .framer-y5tmkq > *, .framer-lzb2O .framer-d6gm3j > *, .framer-lzb2O .framer-sdpdal > *, .framer-lzb2O .framer-1lstnbi > *, .framer-lzb2O .framer-dme9ej > *, .framer-lzb2O .framer-1s565e0 > *, .framer-lzb2O .framer-1637p4x > *, .framer-lzb2O .framer-kghf74 > *, .framer-lzb2O .framer-1awrs5w > *, .framer-lzb2O .framer-1jbrkug > *, .framer-lzb2O .framer-9i1f1i > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-lzb2O .framer-qqnsco > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lzb2O .framer-j9q3tl > *, .framer-lzb2O .framer-173mfvq > *, .framer-lzb2O .framer-ocze0d > *, .framer-lzb2O .framer-39q4y9 > *, .framer-lzb2O .framer-1mpgcni > *, .framer-lzb2O .framer-1v1ybp0 > *, .framer-lzb2O .framer-m9hg9u > *, .framer-lzb2O .framer-lgzxue > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lzb2O .framer-t1mccg > *, .framer-lzb2O .framer-4uayvj > *, .framer-lzb2O .framer-lma8e7 > *, .framer-lzb2O .framer-13n5u8j > *, .framer-lzb2O .framer-1bng8bf > *, .framer-lzb2O .framer-jaeehj > *, .framer-lzb2O .framer-3bhcs > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-lzb2O .framer-to22gx > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } }\",\"@media (min-width: 1440px) { .framer-lzb2O .hidden-cewhyy { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-lzb2O .hidden-uduxbo { display: none !important; } .${metadata.bodyClassName}-framer-lzb2O { background: white; } .framer-lzb2O.framer-cewhyy { width: 810px; } .framer-lzb2O .framer-pyorlg-container { flex: 1 0 0px; width: 1px; } .framer-lzb2O .framer-1qv5my4 { height: 482px; width: 740px; } .framer-lzb2O .framer-qxmyvk { height: var(--framer-aspect-ratio-supported, 449px); width: 100%; } .framer-lzb2O .framer-1u7cim2 { bottom: 0px; height: 302px; right: 0px; top: unset; width: unset; } .framer-lzb2O .framer-1l5ycg1 { bottom: 0px; height: 301px; left: 0px; top: unset; width: 550px; } .framer-lzb2O .framer-1bsrbh1 { gap: 25px; left: 0px; padding: 25px 25px 25px 25px; } .framer-lzb2O .framer-ymfqtn, .framer-lzb2O .framer-1fapnh9 { gap: 38px; } .framer-lzb2O .framer-1ohu7oa { padding: 100px 40px 50px 40px; width: 100%; } .framer-lzb2O .framer-vjmo6l, .framer-lzb2O .framer-rguum3, .framer-lzb2O .framer-1kckhkc, .framer-lzb2O .framer-mvz7hu, .framer-lzb2O .framer-1m73rz0, .framer-lzb2O .framer-4786we, .framer-lzb2O .framer-q0sneo, .framer-lzb2O .framer-1vnths9, .framer-lzb2O .framer-121qe9g, .framer-lzb2O .framer-fkbsp2, .framer-lzb2O .framer-1l5wl20, .framer-lzb2O .framer-1otq7oq, .framer-lzb2O .framer-1ifk8ps, .framer-lzb2O .framer-1yqv6vd, .framer-lzb2O .framer-1hga7ln, .framer-lzb2O .framer-47anf1, .framer-lzb2O .framer-7og1cf, .framer-lzb2O .framer-18juto2, .framer-lzb2O .framer-pstjmf, .framer-lzb2O .framer-gyadzo, .framer-lzb2O .framer-1f532lh, .framer-lzb2O .framer-1i3t3gw, .framer-lzb2O .framer-de18d4, .framer-lzb2O .framer-69s09z, .framer-lzb2O .framer-17hernw, .framer-lzb2O .framer-1c9xous, .framer-lzb2O .framer-j0jaa9, .framer-lzb2O .framer-1hjuox6, .framer-lzb2O .framer-12yxpg8, .framer-lzb2O .framer-9sp59, .framer-lzb2O .framer-1iehfqc, .framer-lzb2O .framer-8m65bx, .framer-lzb2O .framer-1lo2hqb, .framer-lzb2O .framer-11rjakf, .framer-lzb2O .framer-1yncudu, .framer-lzb2O .framer-11ekazb, .framer-lzb2O .framer-1ra05zq, .framer-lzb2O .framer-1a8qtr2, .framer-lzb2O .framer-51m8l1, .framer-lzb2O .framer-w4gm3c, .framer-lzb2O .framer-1iw9up3, .framer-lzb2O .framer-1jh3ehq { left: calc(50.00000000000002% - 90% / 2); padding: 20px 20px 20px 20px; width: 90%; } .framer-lzb2O .framer-op2vfv, .framer-lzb2O .framer-g3kqu0, .framer-lzb2O .framer-qqnsco, .framer-lzb2O .framer-1xgmvf9, .framer-lzb2O .framer-zk264n, .framer-lzb2O .framer-1p0hegh, .framer-lzb2O .framer-dfckm6, .framer-lzb2O .framer-12r7n2d, .framer-lzb2O .framer-fay8n2, .framer-lzb2O .framer-14rylgc, .framer-lzb2O .framer-8nane1, .framer-lzb2O .framer-temmrr, .framer-lzb2O .framer-1tbu7wc, .framer-lzb2O .framer-k51xzh, .framer-lzb2O .framer-rqazhz, .framer-lzb2O .framer-qcpx58, .framer-lzb2O .framer-1x6ij2v, .framer-lzb2O .framer-kofcck, .framer-lzb2O .framer-1t03t6y, .framer-lzb2O .framer-62guue, .framer-lzb2O .framer-zljtvz, .framer-lzb2O .framer-1rqjiuz, .framer-lzb2O .framer-1a1rwa8, .framer-lzb2O .framer-1d6wbre, .framer-lzb2O .framer-1oinf1y, .framer-lzb2O .framer-n0t1b3, .framer-lzb2O .framer-wxe3eb, .framer-lzb2O .framer-rsp5v2, .framer-lzb2O .framer-1afx6ux, .framer-lzb2O .framer-1rcdtjv, .framer-lzb2O .framer-14ypvrt, .framer-lzb2O .framer-1c8fmyo, .framer-lzb2O .framer-a0ra6n, .framer-lzb2O .framer-13nw14x, .framer-lzb2O .framer-1q9c3ac, .framer-lzb2O .framer-1p2nwxu, .framer-lzb2O .framer-qf6y3m, .framer-lzb2O .framer-ti50hv, .framer-lzb2O .framer-1tww6jj, .framer-lzb2O .framer-1mwahqf, .framer-lzb2O .framer-161toad, .framer-lzb2O .framer-1s602cn { height: 484px; } .framer-lzb2O .framer-g0p9vu, .framer-lzb2O .framer-4zhsf8, .framer-lzb2O .framer-19ddqky, .framer-lzb2O .framer-3bn5uh, .framer-lzb2O .framer-ogk7rm, .framer-lzb2O .framer-osxtdk, .framer-lzb2O .framer-p94vv3, .framer-lzb2O .framer-1xsga6y, .framer-lzb2O .framer-y9l2q6, .framer-lzb2O .framer-j6rpkp, .framer-lzb2O .framer-1f6r3sm, .framer-lzb2O .framer-rtlgek, .framer-lzb2O .framer-14ozkmy, .framer-lzb2O .framer-1j7jznd, .framer-lzb2O .framer-4cfn8t, .framer-lzb2O .framer-1nsky0c, .framer-lzb2O .framer-i6706j, .framer-lzb2O .framer-6gogtn, .framer-lzb2O .framer-oephgl, .framer-lzb2O .framer-10jpgvx, .framer-lzb2O .framer-snzdl4, .framer-lzb2O .framer-tttf8n, .framer-lzb2O .framer-kd8yt9, .framer-lzb2O .framer-15lj029, .framer-lzb2O .framer-1vpe9gk, .framer-lzb2O .framer-kzhxbs, .framer-lzb2O .framer-1j4xawq, .framer-lzb2O .framer-6rzby0, .framer-lzb2O .framer-11g7nw8, .framer-lzb2O .framer-92byd6, .framer-lzb2O .framer-v1okab, .framer-lzb2O .framer-19wa6tk { flex: 1 0 0px; height: 450px; width: 1px; } .framer-lzb2O .framer-1bsxrea-container, .framer-lzb2O .framer-1eujpq9-container, .framer-lzb2O .framer-1cdua0i-container, .framer-lzb2O .framer-c4xij5-container, .framer-lzb2O .framer-i1fud9-container, .framer-lzb2O .framer-1urea7p-container, .framer-lzb2O .framer-126ugkv-container, .framer-lzb2O .framer-27v3x1-container, .framer-lzb2O .framer-uz5ckn-container, .framer-lzb2O .framer-yoalch-container, .framer-lzb2O .framer-guf6bi-container, .framer-lzb2O .framer-h7xbio-container, .framer-lzb2O .framer-l15tgg-container, .framer-lzb2O .framer-13u7be2-container, .framer-lzb2O .framer-23u87a-container, .framer-lzb2O .framer-1mfzk4s-container, .framer-lzb2O .framer-1tzkp1p-container, .framer-lzb2O .framer-16pru3t-container, .framer-lzb2O .framer-n2x10e-container, .framer-lzb2O .framer-40kp89-container, .framer-lzb2O .framer-1wufati-container, .framer-lzb2O .framer-11qdjf3-container, .framer-lzb2O .framer-1vbyhhj-container, .framer-lzb2O .framer-1slfdqh-container, .framer-lzb2O .framer-hnfqpl-container, .framer-lzb2O .framer-7lk2id-container, .framer-lzb2O .framer-304cew-container, .framer-lzb2O .framer-uqjocj-container, .framer-lzb2O .framer-1hmplm4-container, .framer-lzb2O .framer-13hpiee-container, .framer-lzb2O .framer-o4ql4d-container { flex: 1 0 0px; height: 100%; width: 1px; } .framer-lzb2O .framer-156ihxq-container, .framer-lzb2O .framer-1l0hq9f-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lzb2O .framer-1bsrbh1, .framer-lzb2O .framer-ymfqtn, .framer-lzb2O .framer-1fapnh9 { gap: 0px; } .framer-lzb2O .framer-1bsrbh1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-lzb2O .framer-1bsrbh1 > :first-child, .framer-lzb2O .framer-ymfqtn > :first-child, .framer-lzb2O .framer-1fapnh9 > :first-child { margin-top: 0px; } .framer-lzb2O .framer-1bsrbh1 > :last-child, .framer-lzb2O .framer-ymfqtn > :last-child, .framer-lzb2O .framer-1fapnh9 > :last-child { margin-bottom: 0px; } .framer-lzb2O .framer-ymfqtn > *, .framer-lzb2O .framer-1fapnh9 > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } }}`,`@media (max-width: 809px) { .framer-lzb2O .hidden-1c162j0 { display: none !important; } .${metadata.bodyClassName}-framer-lzb2O { background: white; } .framer-lzb2O.framer-cewhyy { width: 390px; } .framer-lzb2O .framer-1eue3wq { flex-direction: column; order: 0; } .framer-lzb2O .framer-pyorlg-container, .framer-lzb2O .framer-13h9ait { width: 100%; } .framer-lzb2O .framer-1qv5my4 { height: 238px; order: 1; width: 360px; } .framer-lzb2O .framer-qxmyvk { height: var(--framer-aspect-ratio-supported, 121px); left: 50%; right: unset; transform: translateX(-50%); width: 100%; } .framer-lzb2O .framer-1u7cim2 { bottom: 1px; height: 208px; right: 0px; top: unset; width: unset; } .framer-lzb2O .framer-1bsrbh1 { bottom: 0px; gap: 20px; left: 0px; padding: 18px 18px 18px 18px; width: 245px; } .framer-lzb2O .framer-ymfqtn { gap: 16px; width: min-content; } .framer-lzb2O .framer-851ubs { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); width: 16px; } .framer-lzb2O .framer-1fapnh9 { gap: 20px; width: 226px; } .framer-lzb2O .framer-1ohu7oa { gap: 20px; order: 2; padding: 40px 16px 50px 16px; width: 100%; } .framer-lzb2O .framer-vjmo6l, .framer-lzb2O .framer-rguum3, .framer-lzb2O .framer-1kckhkc, .framer-lzb2O .framer-mvz7hu, .framer-lzb2O .framer-1m73rz0, .framer-lzb2O .framer-4786we, .framer-lzb2O .framer-q0sneo, .framer-lzb2O .framer-1vnths9, .framer-lzb2O .framer-121qe9g, .framer-lzb2O .framer-fkbsp2, .framer-lzb2O .framer-1l5wl20, .framer-lzb2O .framer-1otq7oq, .framer-lzb2O .framer-1ifk8ps, .framer-lzb2O .framer-1yqv6vd, .framer-lzb2O .framer-1hga7ln, .framer-lzb2O .framer-47anf1, .framer-lzb2O .framer-7og1cf, .framer-lzb2O .framer-18juto2, .framer-lzb2O .framer-pstjmf, .framer-lzb2O .framer-gyadzo, .framer-lzb2O .framer-1f532lh, .framer-lzb2O .framer-1i3t3gw, .framer-lzb2O .framer-de18d4, .framer-lzb2O .framer-69s09z, .framer-lzb2O .framer-17hernw, .framer-lzb2O .framer-1c9xous, .framer-lzb2O .framer-j0jaa9, .framer-lzb2O .framer-1hjuox6, .framer-lzb2O .framer-12yxpg8, .framer-lzb2O .framer-9sp59, .framer-lzb2O .framer-1iehfqc, .framer-lzb2O .framer-8m65bx, .framer-lzb2O .framer-1lo2hqb, .framer-lzb2O .framer-11rjakf, .framer-lzb2O .framer-1yncudu, .framer-lzb2O .framer-11ekazb, .framer-lzb2O .framer-1ra05zq, .framer-lzb2O .framer-1a8qtr2, .framer-lzb2O .framer-51m8l1, .framer-lzb2O .framer-w4gm3c, .framer-lzb2O .framer-1iw9up3, .framer-lzb2O .framer-1jh3ehq { flex-direction: column; left: calc(50.00000000000002% - 94% / 2); padding: 8px 8px 8px 8px; width: 94%; } .framer-lzb2O .framer-op2vfv, .framer-lzb2O .framer-g3kqu0, .framer-lzb2O .framer-qqnsco, .framer-lzb2O .framer-1xgmvf9, .framer-lzb2O .framer-zk264n, .framer-lzb2O .framer-1p0hegh, .framer-lzb2O .framer-dfckm6, .framer-lzb2O .framer-12r7n2d, .framer-lzb2O .framer-fay8n2, .framer-lzb2O .framer-14rylgc, .framer-lzb2O .framer-8nane1, .framer-lzb2O .framer-temmrr, .framer-lzb2O .framer-1tbu7wc, .framer-lzb2O .framer-k51xzh, .framer-lzb2O .framer-rqazhz, .framer-lzb2O .framer-qcpx58, .framer-lzb2O .framer-1x6ij2v, .framer-lzb2O .framer-kofcck, .framer-lzb2O .framer-1t03t6y, .framer-lzb2O .framer-62guue, .framer-lzb2O .framer-zljtvz, .framer-lzb2O .framer-1rqjiuz, .framer-lzb2O .framer-1a1rwa8, .framer-lzb2O .framer-1d6wbre, .framer-lzb2O .framer-1oinf1y, .framer-lzb2O .framer-n0t1b3, .framer-lzb2O .framer-wxe3eb, .framer-lzb2O .framer-rsp5v2, .framer-lzb2O .framer-1afx6ux, .framer-lzb2O .framer-1rcdtjv, .framer-lzb2O .framer-14ypvrt, .framer-lzb2O .framer-1c8fmyo, .framer-lzb2O .framer-a0ra6n, .framer-lzb2O .framer-13nw14x, .framer-lzb2O .framer-1q9c3ac, .framer-lzb2O .framer-1p2nwxu, .framer-lzb2O .framer-qf6y3m, .framer-lzb2O .framer-ti50hv, .framer-lzb2O .framer-1tww6jj, .framer-lzb2O .framer-1mwahqf, .framer-lzb2O .framer-161toad, .framer-lzb2O .framer-1s602cn { height: 340px; } .framer-lzb2O .framer-huit8y, .framer-lzb2O .framer-r5hbpu, .framer-lzb2O .framer-1d190qt, .framer-lzb2O .framer-fdk99, .framer-lzb2O .framer-ph3ma0, .framer-lzb2O .framer-1q5v5zo, .framer-lzb2O .framer-vg4vvr, .framer-lzb2O .framer-wzgekj, .framer-lzb2O .framer-sh8oxq, .framer-lzb2O .framer-19i5hvo, .framer-lzb2O .framer-g0p9vu, .framer-lzb2O .framer-4zhsf8, .framer-lzb2O .framer-19ddqky, .framer-lzb2O .framer-3bn5uh, .framer-lzb2O .framer-ogk7rm, .framer-lzb2O .framer-osxtdk, .framer-lzb2O .framer-p94vv3, .framer-lzb2O .framer-1xsga6y, .framer-lzb2O .framer-y9l2q6, .framer-lzb2O .framer-j6rpkp, .framer-lzb2O .framer-1f6r3sm, .framer-lzb2O .framer-rtlgek, .framer-lzb2O .framer-14ozkmy, .framer-lzb2O .framer-1j7jznd, .framer-lzb2O .framer-4cfn8t, .framer-lzb2O .framer-1nsky0c, .framer-lzb2O .framer-i6706j, .framer-lzb2O .framer-6gogtn, .framer-lzb2O .framer-oephgl, .framer-lzb2O .framer-10jpgvx, .framer-lzb2O .framer-snzdl4, .framer-lzb2O .framer-tttf8n, .framer-lzb2O .framer-kd8yt9, .framer-lzb2O .framer-15lj029, .framer-lzb2O .framer-1vpe9gk, .framer-lzb2O .framer-kzhxbs, .framer-lzb2O .framer-1j4xawq, .framer-lzb2O .framer-6rzby0, .framer-lzb2O .framer-11g7nw8, .framer-lzb2O .framer-92byd6, .framer-lzb2O .framer-v1okab, .framer-lzb2O .framer-19wa6tk { flex: 1 0 0px; height: 1px; width: 100%; } .framer-lzb2O .framer-129129f-container, .framer-lzb2O .framer-9mjw3v-container, .framer-lzb2O .framer-102er8x-container, .framer-lzb2O .framer-8ua15s-container, .framer-lzb2O .framer-1nl05rs-container, .framer-lzb2O .framer-v79b9n-container, .framer-lzb2O .framer-1xlakwu-container, .framer-lzb2O .framer-2ddwno-container, .framer-lzb2O .framer-nqn4wk-container, .framer-lzb2O .framer-wamq9w-container { height: 100%; } .framer-lzb2O .framer-1bsxrea-container, .framer-lzb2O .framer-1eujpq9-container, .framer-lzb2O .framer-1cdua0i-container, .framer-lzb2O .framer-c4xij5-container, .framer-lzb2O .framer-i1fud9-container, .framer-lzb2O .framer-1urea7p-container, .framer-lzb2O .framer-126ugkv-container, .framer-lzb2O .framer-27v3x1-container, .framer-lzb2O .framer-uz5ckn-container, .framer-lzb2O .framer-yoalch-container, .framer-lzb2O .framer-guf6bi-container, .framer-lzb2O .framer-h7xbio-container, .framer-lzb2O .framer-l15tgg-container, .framer-lzb2O .framer-13u7be2-container, .framer-lzb2O .framer-23u87a-container, .framer-lzb2O .framer-1mfzk4s-container, .framer-lzb2O .framer-1tzkp1p-container, .framer-lzb2O .framer-16pru3t-container, .framer-lzb2O .framer-n2x10e-container, .framer-lzb2O .framer-40kp89-container, .framer-lzb2O .framer-1wufati-container, .framer-lzb2O .framer-11qdjf3-container, .framer-lzb2O .framer-1vbyhhj-container, .framer-lzb2O .framer-1slfdqh-container, .framer-lzb2O .framer-hnfqpl-container, .framer-lzb2O .framer-7lk2id-container, .framer-lzb2O .framer-304cew-container, .framer-lzb2O .framer-uqjocj-container, .framer-lzb2O .framer-1hmplm4-container, .framer-lzb2O .framer-13hpiee-container, .framer-lzb2O .framer-o4ql4d-container { flex: 1 0 0px; height: 100%; width: 1px; } .framer-lzb2O .framer-156ihxq-container { order: 4; width: 100%; } .framer-lzb2O .framer-1l0hq9f-container { order: 5; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lzb2O .framer-1eue3wq, .framer-lzb2O .framer-1bsrbh1, .framer-lzb2O .framer-ymfqtn, .framer-lzb2O .framer-1fapnh9, .framer-lzb2O .framer-1ohu7oa, .framer-lzb2O .framer-vjmo6l, .framer-lzb2O .framer-rguum3, .framer-lzb2O .framer-1kckhkc, .framer-lzb2O .framer-mvz7hu, .framer-lzb2O .framer-1m73rz0, .framer-lzb2O .framer-4786we, .framer-lzb2O .framer-q0sneo, .framer-lzb2O .framer-1vnths9, .framer-lzb2O .framer-121qe9g, .framer-lzb2O .framer-fkbsp2, .framer-lzb2O .framer-1l5wl20, .framer-lzb2O .framer-1otq7oq, .framer-lzb2O .framer-1ifk8ps, .framer-lzb2O .framer-1yqv6vd, .framer-lzb2O .framer-1hga7ln, .framer-lzb2O .framer-47anf1, .framer-lzb2O .framer-7og1cf, .framer-lzb2O .framer-18juto2, .framer-lzb2O .framer-pstjmf, .framer-lzb2O .framer-gyadzo, .framer-lzb2O .framer-1f532lh, .framer-lzb2O .framer-1i3t3gw, .framer-lzb2O .framer-de18d4, .framer-lzb2O .framer-69s09z, .framer-lzb2O .framer-17hernw, .framer-lzb2O .framer-1c9xous, .framer-lzb2O .framer-j0jaa9, .framer-lzb2O .framer-1hjuox6, .framer-lzb2O .framer-12yxpg8, .framer-lzb2O .framer-9sp59, .framer-lzb2O .framer-1iehfqc, .framer-lzb2O .framer-8m65bx, .framer-lzb2O .framer-1lo2hqb, .framer-lzb2O .framer-11rjakf, .framer-lzb2O .framer-1yncudu, .framer-lzb2O .framer-11ekazb, .framer-lzb2O .framer-1ra05zq, .framer-lzb2O .framer-1a8qtr2, .framer-lzb2O .framer-51m8l1, .framer-lzb2O .framer-w4gm3c, .framer-lzb2O .framer-1iw9up3, .framer-lzb2O .framer-1jh3ehq { gap: 0px; } .framer-lzb2O .framer-1eue3wq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lzb2O .framer-1eue3wq > :first-child, .framer-lzb2O .framer-1bsrbh1 > :first-child, .framer-lzb2O .framer-ymfqtn > :first-child, .framer-lzb2O .framer-1fapnh9 > :first-child, .framer-lzb2O .framer-1ohu7oa > :first-child { margin-top: 0px; } .framer-lzb2O .framer-1eue3wq > :last-child, .framer-lzb2O .framer-1bsrbh1 > :last-child, .framer-lzb2O .framer-ymfqtn > :last-child, .framer-lzb2O .framer-1fapnh9 > :last-child, .framer-lzb2O .framer-1ohu7oa > :last-child { margin-bottom: 0px; } .framer-lzb2O .framer-1bsrbh1 > *, .framer-lzb2O .framer-1fapnh9 > *, .framer-lzb2O .framer-1ohu7oa > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lzb2O .framer-ymfqtn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-lzb2O .framer-vjmo6l > *, .framer-lzb2O .framer-vjmo6l > :first-child, .framer-lzb2O .framer-vjmo6l > :last-child, .framer-lzb2O .framer-rguum3 > *, .framer-lzb2O .framer-rguum3 > :first-child, .framer-lzb2O .framer-rguum3 > :last-child, .framer-lzb2O .framer-1kckhkc > *, .framer-lzb2O .framer-1kckhkc > :first-child, .framer-lzb2O .framer-1kckhkc > :last-child, .framer-lzb2O .framer-mvz7hu > *, .framer-lzb2O .framer-mvz7hu > :first-child, .framer-lzb2O .framer-mvz7hu > :last-child, .framer-lzb2O .framer-1m73rz0 > *, .framer-lzb2O .framer-1m73rz0 > :first-child, .framer-lzb2O .framer-1m73rz0 > :last-child, .framer-lzb2O .framer-4786we > *, .framer-lzb2O .framer-4786we > :first-child, .framer-lzb2O .framer-4786we > :last-child, .framer-lzb2O .framer-q0sneo > *, .framer-lzb2O .framer-q0sneo > :first-child, .framer-lzb2O .framer-q0sneo > :last-child, .framer-lzb2O .framer-1vnths9 > *, .framer-lzb2O .framer-1vnths9 > :first-child, .framer-lzb2O .framer-1vnths9 > :last-child, .framer-lzb2O .framer-121qe9g > *, .framer-lzb2O .framer-121qe9g > :first-child, .framer-lzb2O .framer-121qe9g > :last-child, .framer-lzb2O .framer-fkbsp2 > *, .framer-lzb2O .framer-fkbsp2 > :first-child, .framer-lzb2O .framer-fkbsp2 > :last-child, .framer-lzb2O .framer-1l5wl20 > *, .framer-lzb2O .framer-1l5wl20 > :first-child, .framer-lzb2O .framer-1l5wl20 > :last-child, .framer-lzb2O .framer-1otq7oq > *, .framer-lzb2O .framer-1otq7oq > :first-child, .framer-lzb2O .framer-1otq7oq > :last-child, .framer-lzb2O .framer-1ifk8ps > *, .framer-lzb2O .framer-1ifk8ps > :first-child, .framer-lzb2O .framer-1ifk8ps > :last-child, .framer-lzb2O .framer-1yqv6vd > *, .framer-lzb2O .framer-1yqv6vd > :first-child, .framer-lzb2O .framer-1yqv6vd > :last-child, .framer-lzb2O .framer-1hga7ln > *, .framer-lzb2O .framer-1hga7ln > :first-child, .framer-lzb2O .framer-1hga7ln > :last-child, .framer-lzb2O .framer-47anf1 > *, .framer-lzb2O .framer-47anf1 > :first-child, .framer-lzb2O .framer-47anf1 > :last-child, .framer-lzb2O .framer-7og1cf > *, .framer-lzb2O .framer-7og1cf > :first-child, .framer-lzb2O .framer-7og1cf > :last-child, .framer-lzb2O .framer-18juto2 > *, .framer-lzb2O .framer-18juto2 > :first-child, .framer-lzb2O .framer-18juto2 > :last-child, .framer-lzb2O .framer-pstjmf > *, .framer-lzb2O .framer-pstjmf > :first-child, .framer-lzb2O .framer-pstjmf > :last-child, .framer-lzb2O .framer-gyadzo > *, .framer-lzb2O .framer-gyadzo > :first-child, .framer-lzb2O .framer-gyadzo > :last-child, .framer-lzb2O .framer-1f532lh > *, .framer-lzb2O .framer-1f532lh > :first-child, .framer-lzb2O .framer-1f532lh > :last-child, .framer-lzb2O .framer-1i3t3gw > *, .framer-lzb2O .framer-1i3t3gw > :first-child, .framer-lzb2O .framer-1i3t3gw > :last-child, .framer-lzb2O .framer-de18d4 > *, .framer-lzb2O .framer-de18d4 > :first-child, .framer-lzb2O .framer-de18d4 > :last-child, .framer-lzb2O .framer-69s09z > *, .framer-lzb2O .framer-69s09z > :first-child, .framer-lzb2O .framer-69s09z > :last-child, .framer-lzb2O .framer-17hernw > *, .framer-lzb2O .framer-17hernw > :first-child, .framer-lzb2O .framer-17hernw > :last-child, .framer-lzb2O .framer-1c9xous > *, .framer-lzb2O .framer-1c9xous > :first-child, .framer-lzb2O .framer-1c9xous > :last-child, .framer-lzb2O .framer-j0jaa9 > *, .framer-lzb2O .framer-j0jaa9 > :first-child, .framer-lzb2O .framer-j0jaa9 > :last-child, .framer-lzb2O .framer-1hjuox6 > *, .framer-lzb2O .framer-1hjuox6 > :first-child, .framer-lzb2O .framer-1hjuox6 > :last-child, .framer-lzb2O .framer-12yxpg8 > *, .framer-lzb2O .framer-12yxpg8 > :first-child, .framer-lzb2O .framer-12yxpg8 > :last-child, .framer-lzb2O .framer-9sp59 > *, .framer-lzb2O .framer-9sp59 > :first-child, .framer-lzb2O .framer-9sp59 > :last-child, .framer-lzb2O .framer-1iehfqc > *, .framer-lzb2O .framer-1iehfqc > :first-child, .framer-lzb2O .framer-1iehfqc > :last-child, .framer-lzb2O .framer-8m65bx > *, .framer-lzb2O .framer-8m65bx > :first-child, .framer-lzb2O .framer-8m65bx > :last-child, .framer-lzb2O .framer-1lo2hqb > *, .framer-lzb2O .framer-1lo2hqb > :first-child, .framer-lzb2O .framer-1lo2hqb > :last-child, .framer-lzb2O .framer-11rjakf > *, .framer-lzb2O .framer-11rjakf > :first-child, .framer-lzb2O .framer-11rjakf > :last-child, .framer-lzb2O .framer-1yncudu > *, .framer-lzb2O .framer-1yncudu > :first-child, .framer-lzb2O .framer-1yncudu > :last-child, .framer-lzb2O .framer-11ekazb > *, .framer-lzb2O .framer-11ekazb > :first-child, .framer-lzb2O .framer-11ekazb > :last-child, .framer-lzb2O .framer-1ra05zq > *, .framer-lzb2O .framer-1ra05zq > :first-child, .framer-lzb2O .framer-1ra05zq > :last-child, .framer-lzb2O .framer-1a8qtr2 > *, .framer-lzb2O .framer-1a8qtr2 > :first-child, .framer-lzb2O .framer-1a8qtr2 > :last-child, .framer-lzb2O .framer-51m8l1 > *, .framer-lzb2O .framer-51m8l1 > :first-child, .framer-lzb2O .framer-51m8l1 > :last-child, .framer-lzb2O .framer-w4gm3c > *, .framer-lzb2O .framer-w4gm3c > :first-child, .framer-lzb2O .framer-w4gm3c > :last-child, .framer-lzb2O .framer-1iw9up3 > *, .framer-lzb2O .framer-1iw9up3 > :first-child, .framer-lzb2O .framer-1iw9up3 > :last-child, .framer-lzb2O .framer-1jh3ehq > *, .framer-lzb2O .framer-1jh3ehq > :first-child, .framer-lzb2O .framer-1jh3ehq > :last-child { margin: 0px; } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2763\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uidt59zP_\":{\"layout\":[\"fixed\",\"auto\"]},\"CiwV903E0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const Framerc_enuWZBK=withCSS(Component,css,\"framer-lzb2O\");export default Framerc_enuWZBK;Framerc_enuWZBK.displayName=\"Kariera 2\";Framerc_enuWZBK.defaultProps={height:2763,width:1440};addFonts(Framerc_enuWZBK,[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},...NavBarFonts,...TabFonts,...StronaWwwFonts,...SlideshowFonts,...EmbedFonts,...FooterFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc_enuWZBK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uidt59zP_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CiwV903E0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"2763\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "usBAQmB,SAARA,GAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,CAAI,EAAE,CAAC,OAAGF,IAAO,OAAOC,EAA0BE,EAAKC,GAAS,CAAC,IAAIH,CAAG,CAAC,EAAMD,IAAO,QAAQE,EAA2BC,EAAKE,GAAU,CAAC,KAAKH,CAAI,CAAC,EAAwBC,EAAKG,GAAa,CAAC,CAAC,CAAE,CAAEC,GAAoBR,GAAM,CAAC,KAAK,CAAC,KAAKS,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,gBAAgB,GAAK,KAAKD,EAAY,OAAO,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,IAAc,CAAC,OAAqBH,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGO,GAAgB,SAAS,QAAQ,EAAE,SAAuBP,EAAK,MAAM,CAAC,MAAMQ,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASP,GAAS,CAAC,IAAAH,CAAG,EAAE,CACr4B,cAAc,KAAKA,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMW,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,GAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBnB,CAAG,CAAC,EAAE,GAAGmB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,MAAQ,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,EAAG,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACjB,CAAG,CAAC,EAAK,CAACA,EAAI,WAAW,UAAU,EAAG,OAAqBE,EAAKqB,GAAa,CAAC,QAAQ,uBAAuB,CAAC,EAAG,GAAGV,IAAQ,OAAW,OAAqBX,EAAKsB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAqBX,EAAKqB,GAAa,CAAC,QAAQV,EAAM,OAAO,CAAC,EAAG,GAAGA,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,eAAerB,wCAA0C,OAAqBE,EAAKqB,GAAa,CAAC,QAAQF,CAAO,CAAC,EAAG,OAAqBnB,EAAK,SAAS,CAAC,IAAIF,EAAI,MAAMyB,GAAY,QAAQ,OACv+B,cAAcd,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASvB,GAAU,CAAC,KAAAH,CAAI,EAAE,CAAC,IAAM2B,EAAIC,GAAO,EAIhkBC,EAAU7B,EAAK,SAAS,YAAW,EAAE,OAAAe,GAAU,IAAI,CAAC,GAAG,CAACc,EAAU,OAAO,IAAMC,EAAIH,EAAI,QAAQ,OAAAG,EAAI,UAAU9B,EAAK+B,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAC9B,EAAK6B,CAAS,CAAC,EAAuB5B,EAAK,MAAM,CAAC,IAAI0B,EAAI,MAAMK,GAAU,wBAAyBH,EAAwB,OAAd,CAAC,OAAO7B,CAAI,CAAW,CAAC,CAAE,CAAC,IAAMgC,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAElb,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,MAAQ,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAASd,IAAkB,CAAC,OAAqBtB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGqC,GAAgB,SAAS,QAAQ,EAAE,SAAuBrC,EAAK,MAAM,CAAC,MAAMQ,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASa,GAAa,CAAC,QAAAF,CAAO,EAAE,CAAC,OAAqBnB,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGqC,GAAgB,SAAS,QAAQ,EAAE,SAAuBC,EAAM,MAAM,CAAC,MAAM9B,GAAgB,SAAS,CAAC,UAAUW,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMX,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,ECtBhf,IAAM+B,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAA0B,CAAC,GAAID,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAC1L,MAAM,mBAAyB,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,qBAA2B,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,yBAA0B,CAAQ,SAASE,IAA8B,CAAC,GAAIF,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAAa,MAAM,SAAe,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,WAAiB,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,eAAgB,CAAQ,SAASG,IAAqB,CAAC,GAAIH,GAAU,EAAS,MAAM,CAAC,SAASE,GAA6B,CAAC,CAAE,CAAQ,SAASE,IAAmB,CAAC,GAAG,CAACJ,GAAU,EAAE,OAAO,GAAK,CAACK,EAAUC,CAAY,EAAEC,GAASJ,GAAoB,CAAC,EAAQK,EAAmB,IAAIF,EAAaH,GAAoB,CAAC,EAAE,OAAAM,GAAU,IAAI,CAAC,IAAMC,EAAiBT,GAAyB,EAAE,gBAAS,iBAAiBS,EAAiBF,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoBE,EAAiBF,CAAkB,CAAE,CAAE,CAAC,EAASH,CAAU,CCYt8B,SAARM,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,GAAW,aAAAC,GAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,GAAgB,kBAAAC,EAAkB,aAAAC,GAAa,aAAAC,GAAa,gBAAAC,GAAgB,MAAAC,EAAK,EAAEtB,EAAW,CAAC,eAAAuB,GAAe,aAAAC,GAAa,cAAAC,GAAc,mBAAAC,GAAmB,aAAAC,EAAY,EAAEvB,EAAoB,CAAC,YAAAwB,GAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,GAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,EAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,GAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,EAAW,YAAAC,GAAY,QAAAC,EAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,EAAY,SAAAC,CAAQ,EAAErC,GAAsBsC,EAAajD,EAAe,GAAGC,QAAgBC,QAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM9D,CAAK,EAAE,EAAQ+D,EAAa7D,IAAY,QAAQA,IAAY,QAAc8D,EAAW9D,IAAY,SAASA,IAAY,SAEnN,GAAG,CAAC2D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,EAAUC,GAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAY1E,EAAM,IAAI2E,GAAoBC,GAAU,CAAC,EAAI,CAAC5E,CAAK,CAAC,EAAQ6E,GAAWL,GAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS5E,CAAe,EAA+B,CAACiF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAE1hBS,GAAc,CAAC,EAAMC,GAAY,EAAK/B,KAAU+B,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAACC,GAAK,KAAK,IAAI,CAAC,GAAGhC,IAAaU,EAAU,QAAQ,CAAC,IAAMuB,EAAM9F,EAAM,OAAO,EAAQ+F,GAAahC,EAAaQ,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmByB,GAAMvB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNwB,IAA1MxB,EAAYqB,CAAK,EAAE,QAAQ/B,EAAaU,EAAYqB,CAAK,EAAE,QAAQ,WAAWrB,EAAYqB,CAAK,EAAE,QAAQ,YAAYrB,EAAYqB,CAAK,EAAE,QAAQ,UAAUrB,EAAYqB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAMzF,EAAU2F,EAASzB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQ0B,EAAU1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ2B,GAAW3B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAEM,GAAQ,CAAC,OAAOgB,GAAa,SAASE,GAAe,KAAKC,EAAS,UAAAC,EAAU,WAAAC,EAAU,CAAC,EAAG,CAAC,CAAE,EAAE,CAACvC,EAAW,CAAC,EAGl7BwC,GAAgB,IAAI,CAAIxC,IAAY8B,GAAQ,CAAE,EAAE,CAAC9B,GAAY/C,CAAU,CAAC,EAGxE,IAAIwF,GAAc9B,GAAO,EAAI,EAAE+B,GAAU,IAAYC,GAAOjC,EAAU,QAAQ,CAAC,CAAC,YAAAkC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASd,GAAQ,EAAEH,GAAc,EAAI,GAAGc,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGhB,GAAW,CAAC,IAAMmB,EAAM,WAAW,IAAIlB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAakB,CAAK,EAAG,EAAE,CAACnB,EAAU,CAAC,EAExW,IAAMoB,GAA+C3G,GAAM,OAAa4G,GAAajD,GAAS,EAAoCmB,GAAK,SAAe+B,GAA+C/B,GAAK,KAAMvE,EAAUuG,GAAW7G,EAAU4G,GAAiB,CAACE,GAAYC,EAAc,EAAEhC,GAAS/E,EAAU0G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAElC,GAAS,EAAK,EAAyGmC,GAAUC,GAAkB,EAAQC,GAAOrD,EAAW,EAAE,GAA+CsD,GAAKC,GAAeX,EAAY,EAAuEY,GAAezD,EAAa,CAAC9D,GAA8C6E,GAAK,UAAWvE,GAAK,CAACN,GAA8C6E,GAAK,WAAYvE,GAAsDkH,GAAY,IAAIJ,GAAON,GAAYF,GAAwIa,GAAc/D,GAA8H,EAArHgE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,GAAQC,GAAK,CAAClB,GAAa,CAACA,GAAa,EAAEgB,CAAK,EAAE,OAAO,MAAMC,EAAO,EAAE,EAAEA,EAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEnB,GAAWI,EAAW,EAAQiB,GAAqBF,GAAK,EAAE,CAACnB,GAAWI,EAAW,EAAqHV,GAAgB,IAAI,CAAuCvB,GAAK,WAAY,MAGngD,CAACwB,GAAc,SAASf,IAAY+B,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAAC3C,EAAK8B,GAAaS,GAAOP,GAAWC,GAAYF,GAAYtB,EAAU,CAAC,EAG3G,IAAM0C,GAAY,IAAI,CAAItE,IAAU,CAACE,IAAa,CAACiB,EAAK,QAAQmC,KAAqBK,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAExG,CAAiB,EAAMb,GAAiB+E,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACmC,GAAeD,GAAY,CAAC,EAAEkB,GAAY,CAAE,EAAEjH,GAAgB,GAAG,GAAG,EAAuCmH,GAASC,GAAO,CAAyDpB,GAApDhD,EAAmE+C,GAAYqB,EAApDrB,GAAYqB,CAA6C,CAAG,EAAQC,GAAQ1D,GAAO,CAAC,IAAM2D,GAAmBR,GAAK,EAAEnB,GAAWI,EAAW,EAAQwB,GAAyBT,GAAK,EAAE,CAACnB,GAAWI,EAAW,EAAQyB,GAAK7D,EAAM2D,GAAyBG,GAAa9D,EAAM,KAAK,IAAI4D,EAAwB,EAAyDvB,GAAnDhD,EAAkE+C,GAAY0B,GAAnD1B,GAAYyB,EAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAACxB,GAAc,EAAI,CAAE,EAAQyB,GAAc,CAACC,EAAM,CAAC,OAAAC,GAAO,SAAAC,EAAQ,IAAI,CAAC5B,GAAc,EAAK,EAAE,IAAM6B,GAAWhF,EAAa8E,GAAO,EAAEA,GAAO,EAAQG,GAAkB,IAC9LC,EAAalF,EAAa+E,GAAS,EAAEA,GAAS,EAAQI,EAAaH,GAAW,CAACjE,EAAK,KAAK,EAAQqE,GAAaJ,GAAWjE,EAAK,KAAK,EAA6DsE,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiBtE,EAAK,IAAI,EAAqFwE,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,EAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,EAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,GAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgE9C,GAAU,IAAI,CAAC,GAAG,GAACY,IAAW5B,IAAkB,OAAA0C,GAAY,EAAQ,IAAIpD,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAc0B,GAAU5B,EAAU,CAAC,EAA8D,IAAIgE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAI1I,QAAiBP,SAAWA,EAAIO,OAInE,QAAQ6D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAI9D,EAAM,CAACyJ,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAIlF,EAAY,CAAC,GAAMiF,KAAa1J,EAAM,OAAO,IAAG2J,GAAIlF,EAAY,CAAC,GAAuBN,EAAKyF,GAAM,CAAC,IAAInF,EAAYiF,EAAU,EAAE,SAAS/E,EAAM+E,GAAW,KAAK,MAAM/E,EAAM,MAAMZ,GAAajD,EAAW,EAAE0I,GAAwB,OAAO,OAAQzF,EAAkD,OAArCjD,EAAW,EAAE0I,GAAiB,OAAc,KAAK1E,EAAK,MAAM2E,GAAM,YAAgDzJ,GAAM,OAAO,aAAa0H,GAAa,aAAa6B,KAAe,IAAIhJ,EAAI,SAASoD,GAAS,aAAaI,EAAa,eAAezC,GAAe,aAAaC,GAAa,cAAcC,GAAc,SAASmD,EAAM+E,EAAU,EAAE/E,EAAM+E,GAAW,IAAI,CAAE,CAAC,CAAC,EAExvB,IAAMG,GAAc9F,EAAa,WAAW,YAAkB+F,GAAejI,GAAU,EAAQkI,GAAa,IAAIlI,GAAU,EAAQmI,GAAeC,GAAMnI,GAAU,EAAEgI,EAAc,EAAQI,GAAa,IAAIpI,GAAgBqI,GAAS,mBAAmBN,qBAAgC9H,OAAciI,yBAAqCF,yBAAqCC,sBAAgChI,OAAcmI,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGtH,GAAiB,CAAC,QAAQuH,EAAE,EAAEA,EAAuCtK,GAAM,OAAQsK,IAAKF,GAAK,KAAkBjG,EAAKoG,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMxH,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAYoH,GAAiB,gBAAgBlH,GAAkB,QAAQC,EAAY,QAAQ,IAAI6E,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMrB,GAAW,MAAM2D,EAAE,IAAIlH,EAAQ,QAAQD,GAAY,aAAaY,EAAa,WAAWC,CAAU,EAAEsG,CAAC,CAAC,EAAM7G,EAAS,IAAG4G,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ5G,QAAgB,IAAMiH,GAAUrK,EAAY,CAAC,KAAK0D,EAAa,IAAI,IAAI,YAAY2E,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAYnI,KAAgB,YAAYA,KAAgB,WAAWA,KAAgB,YAAkBoI,GAAepI,KAAgB,eAAeA,KAAgB,cAAcA,KAAgB,eAAqBqI,GAAarI,KAAgB,YAAYA,KAAgB,cAAoBsI,GAActI,KAAgB,aAAaA,KAAgB,eAAqBuI,EAAYvI,KAAgB,WAAWA,KAAgB,cAAcA,KAAgB,OAAO,OAAoByB,EAAM,UAAU,CAAC,MAAM,CAAC,GAAG+G,GAAe,QAAQtH,EAAa,gBAAgB/B,GAAYwI,GAAS,OAAU,aAAaxI,GAAYwI,GAAS,OAAU,UAAUxI,GAAYwI,GAAS,OAAU,QAA2CrF,GAAK,OAAQ,KAAK,EAAE,EAAE,WAAW,MAAM,EAAE,aAAa,IAAI,CAACI,GAAc,EAAI,EAAMxD,IAAa0D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMxD,IAAa0D,GAAqB,EAAI,CAAE,EAAE,YAAYwD,GAAO,CACtwDA,EAAM,eAAe,EAAEtD,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,SAAS,CAAcnB,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASvC,GAAS,UAAU,SAAS,aAAaT,GAAa,WAAW,OAAO,YAAYwC,GAAS,OAAOlC,EAAkB,EAAE,SAAsB0C,EAAK8G,EAAO,GAAG,CAAC,IAAI1G,EAAU,GAAGmG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIzK,EAAI,WAAWD,EAAU,EAAEyD,EAAaJ,GAAS6D,GAAeE,GAAa,EAAE,EAAG3D,EAAkD,EAArCJ,GAAS6D,GAAeE,GAAe,cAAc3D,EAAa,MAAM,SAAS,eAAevC,KAAgB,GAAG,CAACmC,GAAS,cAAc,OAAU,OAAOtD,EAAYgF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGhE,EAAK,EAAE,SAASoE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGiH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcjH,EAAMgH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAclH,EAAa,MAAM,SAAS,eAAezB,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB,EAAE,EAAE,WAAW,SAAS,MAAME,GAAa,IAAIH,GAAiBG,GAAakI,GAAYhI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAaoI,GAAa/H,GAAiBiI,EAAY,EAAE,QAAQ,MAAMzI,GAAiBG,GAAaqI,GAAclI,EAAkBmI,EAAY,EAAE,QAAQ,OAAOzI,GAAiBG,GAAamI,GAAe/H,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ0C,GAAW,EAAE,CAAC,EAAE,WAAWhE,EAAkB,SAAS,CAAckD,EAAK8G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBtI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ6B,EAAgB,EAAH,GAAK,QAAQ/B,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAImG,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBhE,EAAK,MAAM,CAAC,MAAMlC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAe+B,EAAK8G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBtI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ6B,EAAgB,EAAH,GAAK,QAAQ/B,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAImG,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBhE,EAAK,MAAM,CAAC,MAAMlC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+H,GAAK,OAAO,EAAejG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgH,GAAmB,KAAKpH,EAAa,MAAMd,GAAU,IAAKc,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAad,GAAU,QAAQ,aAAaC,EAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAG+G,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBtK,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyBsL,GAAoBtL,EAAU,CAAC,MAAM,CAAC,KAAKuL,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAavL,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKuL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAOtL,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAKsL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAavL,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKuL,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAavL,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,aAAavL,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKuL,EAAY,OAAO,MAAM,cAAc,aAAavL,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKuL,EAAY,OAAO,MAAM,SAAS,aAAavL,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKuL,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAavL,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKuL,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAavL,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKuL,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAavL,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKuL,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOtL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKsL,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOtL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKsL,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOtL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKsL,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOtL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKsL,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAavL,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKuL,EAAY,MAAM,MAAM,OAAO,OAAOtL,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKuL,EAAY,MAAM,MAAM,WAAW,OAAOtL,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKsL,EAAY,MAAM,MAAM,OAAO,OAAOtL,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKsL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAavL,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKsL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOtL,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAKsL,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAOtL,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAKsL,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAavL,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAKsL,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAKsL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAKsL,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAKsL,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAKsL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAKsL,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAKsL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKsL,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKsL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKsL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKsL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKsL,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKsL,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKsL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKsL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKsL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKsL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOtL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMiL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8B9G,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA4BmG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmB1L,EAAM4J,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAA3E,EAAK,IAAAvE,EAAI,aAAAmH,GAAa,YAAAqE,GAAY,aAAAxC,EAAa,SAAA5F,EAAS,QAAAqI,EAAQ,eAAA1K,EAAe,aAAAC,GAAa,cAAAC,EAAc,aAAAuC,GAAa,OAAAkI,GAAO,MAAAtH,EAAK,EAAE5E,EAEriamM,IAAgDpH,GAAK,KAAMvE,GAAKgJ,EAAmB4C,GAAY,CAAC,CAAoCrH,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMvE,EAAsCuE,GAAK,MAAM,EAAE,IAAIsH,IAAKA,GAAIF,EAAW,EAE1TG,GAAQ,CAAC1I,GAAUgE,GAAaD,GAAayE,GAAY,CAAC,CAAC3K,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQ8K,GAAQ,CAAC3I,GAAUgE,GAAaD,GAAayE,GAAY,CAAC3K,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQ+K,GAAQ,CAAC5I,GAAUgE,GAAaD,GAAayE,GAAY,CAAC7K,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQkL,GAAM,CAAC7I,GAAUgE,GAAaD,GAAayE,GAAY,CAAC5K,GAAa,EAAE,EAAEA,EAAY,CAAC,EAAQkL,GAAW,CAAC9I,GAAUgE,GAAaD,GAAayE,GAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,GAAU,CAACxD,GAAUgE,GAAaD,GAAagF,IAAQA,IAAQP,GAAY,CAAC,GAAGO,IAAQP,GAAY,CAAC,CAAC,EAAE,OAAA5F,GAAU,IAAI,CAAC,GAAIY,GAAiB,OAAOA,GAAU,SAASwF,IAAU,CAAC,IAAIC,IAAcA,GAAajD,EAAI,WAAW,MAAMiD,KAAe,QAAcA,GAAa,aAAa,cAAc,CAACD,EAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAsBxI,EAAK0I,GAAY,CAAC,QAAQ,KAAK,SAAsB1I,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,KAAQ,EAAa,SAAsBmI,GAAarD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQzI,GAAa0I,GAAW,GAAG,QAAS1I,GAAwB,GAAX0I,GAAc,QAAQ1I,GAAasI,GAAQ,EAAE,QAAStI,GAAqB,EAARuI,EAAS,EAAE,SAAS7C,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAa9E,GAAM,MAAS,GAAGgH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAAwC,EAAgB,QAAAR,EAAQ,MAAAzG,EAAM,MAAAnB,EAAM,aAAAoD,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAAwC,EAAY,IAAAzM,EAAI,QAAAC,EAAQ,aAAAuD,EAAa,WAAAC,GAAW,GAAGjE,EAAK,EAAE,CAA8C,IAAIkN,EAAWlF,IAAepD,EAAuDX,KAAYiJ,EAAW,KAAK,IAAIjF,CAAoB,IAAIrD,GAAO,IAAMuI,EAAc3M,EAAI,EAAM4M,EAAI,CAACpJ,GAAcY,EAAM,EAAEuI,EAAc1M,EAAY4M,EAAO,CAACrJ,GAAcY,IAAQmB,EAAM,EAAEoH,EAAc1M,EAAY6M,GAAMtJ,GAAcY,IAAQmB,EAAM,EAAEoH,EAAc1M,EAAY8M,EAAKvJ,GAAcY,EAAM,EAAEuI,EAAc1M,EAAQ,OAAoB2D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG5E,GAAM,MAAM,CAAC,GAAGiN,EAAY,QAAQ,GAAGG,OAASE,QAAWD,OAAYE,KAAQ,EAAE,SAAsBnJ,EAAK8G,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQyC,EAAWF,EAAgBR,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECxDr6E,IAAM+C,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,UAAUH,GAAgCG,EAAM,UAAU,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,YAAY,CAAE,EAAQC,GAAuB,CAACF,EAAMG,IAAWA,EAAS,KAAK,GAAG,EAAEH,EAAM,iBAAuBI,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,GAAY,WAAAC,GAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA/B,EAAW,SAAAa,EAAQ,EAAEmB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAAxC,GAAY,QAAA8B,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBF,EAAMG,EAAQ,EAAQuB,GAAWC,GAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAE,OAAoBrC,EAAKsC,GAAY,CAAC,GAAGnB,GAA4CgB,GAAgB,SAAsBnC,EAAKuC,EAAO,IAAI,CAAC,QAAQnB,EAAQ,QAAQV,GAAS,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsBV,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKwC,GAAK,CAAC,KAAKlB,EAAU,aAAa,GAAK,SAAsBtB,EAAKuC,EAAO,EAAE,CAAC,GAAGhB,EAAU,UAAU,GAAGkB,GAAGC,GAAkB,GAAGL,GAAsB,iBAAiBnB,EAAUO,EAAU,mBAAmB,mBAAmB,YAAY,iBAAiBO,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAId,GAA6BoB,GAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAKuC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,UAAU,0BAA0B,QAAQ,2BAA2B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,mBAAmB,EAAE,iBAAiBP,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,oSAAoS,sKAAsK,8WAA8W,EAOvxJC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,aAAa,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,OAAO,aAAa,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,CAAC,CAAC,ECP7P,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,SAAAC,EAAS,IAAAC,EAAI,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKL,GAA4CI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,+BAAqB,WAAWC,EAAMJ,GAAmCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,uBAAkB,UAAUL,GAA6BG,EAAM,UAAU,WAAWG,EAAMR,GAAmCK,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,uFAAuF,OAAO,kQAAkQ,CAAC,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBK,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,GAAGC,EAAS,EAAE1B,GAASQ,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,GAAW,WAAAnC,EAAW,SAAAX,EAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,GAAiBrB,GAAuBJ,EAAMvB,EAAQ,EAAO,CAAC,sBAAAiD,GAAsB,MAAAC,EAAK,EAAEC,GAAyBT,CAAW,EAAQU,GAAYH,GAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,IAAqB,MAAMA,GAAU,GAAGa,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQZ,IAAiB,kBAAmDa,GAAa,IAAQb,IAAiB,kBAAmDc,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAE,OAAoB9C,EAAK+C,GAAY,CAAC,GAAGzB,GAA4CsB,GAAgB,SAAsB5C,EAAKR,GAAW,CAAC,MAAMK,EAAW,SAAsBmD,EAAMC,EAAO,IAAI,CAAC,GAAGtB,GAAU,QAAQzC,GAAS,UAAUgE,GAAGpE,GAAkB,GAAGgE,GAAsB,gBAAgBzB,EAAUQ,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,QAAQzC,EAAQ,iBAAiB8C,GAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAMO,GAAY,YAAY,IAAIP,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIf,GAA6BwB,GAAK,MAAM,CAAC,gBAAgB,uBAAuB,GAAGpB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGpC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE4C,EAAYE,CAAc,EAAE,SAAS,CAAc9B,EAAKmD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,iCAAiC,GAAG7D,GAAkBiC,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qCAAqC,iBAAiBW,GAAiB,SAAS,WAAW,CAAC,EAAec,EAAMC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBf,GAAiB,SAAS,YAAY,SAAS,CAAcc,EAAMC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBf,GAAiB,SAAS,YAAY,SAAS,CAAclC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWqD,EAAS,CAAC,SAAsBrD,EAAKiD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,UAAU,uBAAuB,MAAM,uBAAuB,OAAO,EAAE,SAAS,sBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAkB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBf,GAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKV,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBgB,EAAWqD,EAAS,CAAC,SAAsBrD,EAAKiD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,UAAU,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,sBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAErB,EAAYE,CAAc,CAAC,CAAC,EAAe9B,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWqD,EAAS,CAAC,SAAsBrD,EAAKiD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,UAAU,uBAAuB,MAAM,uBAAuB,OAAO,EAAE,SAAS,8BAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAAqB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBf,GAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKT,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBgB,EAAWqD,EAAS,CAAC,SAAsBrD,EAAKiD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,UAAU,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,8BAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAErB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEY,GAAY,GAAgB1C,EAAKsD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBpB,GAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkZ,mBAAmB,EAAI,CAAC,EAAES,GAAa,GAAgB3C,EAAKsD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBpB,GAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAoZ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,wSAAwS,2KAA2K,oRAAoR,6RAA6R,mMAAmM,4HAA4H,8kBAA8kB,EAQxrVC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,oIAAoI,MAAM,QAAQ,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,uBAAkB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+BAAqB,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,OAAO,aAAa,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,CAAC,CAAC,ECRhnB,IAAMM,GAAsBC,GAASC,CAAgB,EAAQC,EAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,EAAkB,CAACC,EAAEC,IAAI,uBAAuBA,IAAUC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,qBAAqB,YAAY,4BAA4B,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,SAAS,YAAY,OAAO,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,SAAAC,EAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,SAAAC,GAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,SAAAC,GAAS,SAAAC,GAAS,SAAAC,GAAS,SAAAC,GAAS,SAAAC,GAAS,SAAAC,GAAS,OAAAC,GAAO,QAAAC,GAAQ,QAAAC,GAAQ,GAAAC,GAAG,wBAAAC,GAAwB,MAAAC,GAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,GAAuCC,GAAK,MAAM,CAAC,GAAGF,EAAM,UAAU/B,GAA+C+B,EAAM,UAAU,UAAU3C,GAA+C2C,EAAM,UAAU,UAAUhC,GAA+CgC,EAAM,UAAU,UAAUzC,GAA+CyC,EAAM,UAAU,UAAUtB,IAA+CsB,EAAM,UAAU,UAAU7B,GAA+C6B,EAAM,UAAU,UAAUtC,GAA4CsC,EAAM,UAAU,UAAUjC,IAA+CiC,EAAM,UAAU,UAAU1C,GAA+C0C,EAAM,UAAU,UAAUrC,GAA+CqC,EAAM,UAAU,UAAU9B,GAA+C8B,EAAM,UAAU,UAAUb,IAA+Ca,EAAM,UAAU,UAAU5C,GAA+C4C,EAAM,UAAU,UAAUV,IAA4CU,EAAM,UAAU,UAAU5B,IAA+C4B,EAAM,UAAU,UAAUhB,IAA4CgB,EAAM,UAAU,UAAUJ,IAAyCI,EAAM,UAAU,UAAUd,IAA+Cc,EAAM,UAAU,UAAUvB,IAA+CuB,EAAM,UAAU,UAAUzB,IAA+CyB,EAAM,UAAU,UAAUnC,GAA+CmC,EAAM,UAAU,UAAUjB,IAA+CiB,EAAM,UAAU,UAAUnB,IAA+CmB,EAAM,UAAU,UAAU1B,IAA+C0B,EAAM,UAAU,UAAUR,IAA4CQ,EAAM,UAAU,UAAUlB,IAA+CkB,EAAM,UAAU,UAAUT,IAA4CS,EAAM,UAAU,UAAUP,IAA4CO,EAAM,UAAU,UAAUxC,GAA+CwC,EAAM,UAAU,UAAUlC,IAA+CkC,EAAM,UAAU,UAAUxB,IAA+CwB,EAAM,UAAU,UAAUvC,GAA+CuC,EAAM,UAAU,UAAU7C,GAA+C6C,EAAM,UAAU,UAAUrB,IAA+CqB,EAAM,UAAU,UAAU3B,GAA4C2B,EAAM,UAAU,SAASE,IAAMD,GAAuChD,GAAwB+C,EAAM,OAAO,KAAK,MAAMC,KAAyC,OAAOA,GAAuCD,EAAM,WAAW,MAAME,KAAO,OAAOA,GAAK,YAAY,UAAUjB,IAA+Ce,EAAM,UAAU,UAAUL,IAAyCK,EAAM,UAAU,UAAUZ,IAA4CY,EAAM,UAAU,UAAUpB,IAA+CoB,EAAM,UAAU,UAAUX,IAA4CW,EAAM,UAAU,UAAUF,IAAyFE,EAAM,UAAU,UAAUpC,GAA+CoC,EAAM,SAAS,CAAE,EAAQG,GAAuB,CAACH,EAAM1E,IAAWA,EAAS,KAAK,GAAG,EAAE0E,EAAM,iBAAuBI,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApF,EAAQ,UAAAqF,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,EAAS,EAAErG,GAAS8C,CAAK,EAAO,CAAC,YAAAwD,EAAY,WAAAC,GAAW,eAAAC,EAAe,gBAAAC,GAAgB,WAAAC,GAAW,WAAA/G,GAAW,SAAAvB,CAAQ,EAAEuI,GAAgB,CAAC,WAAA5I,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2I,EAAiB3D,GAAuBH,EAAM1E,CAAQ,EAAO,CAAC,sBAAAyI,EAAsB,MAAAC,EAAK,EAAEC,GAAyBT,CAAW,EAAQU,GAAaH,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQU,EAAaP,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQY,GAAaT,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQa,EAAaV,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQc,GAAYX,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQe,GAAgBZ,EAAsB,SAASI,IAAO,CAAC,GAAGtD,GAAqB,MAAMA,EAAU,GAAGsD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQS,GAAiBb,EAAsB,SAASI,IAAO,CAAC,GAAGpD,GAAqB,MAAMA,EAAU,GAAGoD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQU,GAAgBd,EAAsB,SAASI,IAAO,CAAC,GAAG7C,IAAqB,MAAMA,GAAU,GAAG6C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQW,GAAgBf,EAAsB,SAASI,IAAO,CAAC,GAAG5C,GAAqB,MAAMA,EAAU,GAAG4C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQY,GAAiBhB,EAAsB,SAASI,IAAO,CAAC,GAAGrD,GAAqB,MAAMA,EAAU,GAAGqD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQa,GAAgBjB,EAAsB,SAASI,IAAO,CAAC,GAAGnD,IAAqB,MAAMA,GAAU,GAAGmD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQc,GAAiBlB,EAAsB,SAASI,IAAO,CAAC,GAAG3C,IAAqB,MAAMA,GAAU,GAAG2C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQe,GAAgBnB,EAAsB,SAASI,IAAO,CAAC,GAAGlD,IAAqB,MAAMA,GAAU,GAAGkD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQgB,GAAiBpB,EAAsB,SAASI,IAAO,CAAC,GAAG1C,IAAqB,MAAMA,GAAU,GAAG0C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQiB,GAAgBrB,EAAsB,SAASI,IAAO,CAAC,GAAGjD,GAAqB,MAAMA,EAAU,GAAGiD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQkB,GAAiBtB,EAAsB,SAASI,IAAO,CAAC,GAAGzC,IAAqB,MAAMA,GAAU,GAAGyC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQmB,GAAiBvB,EAAsB,SAASI,IAAO,CAAC,GAAGhD,GAAqB,MAAMA,EAAU,GAAGgD,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQoB,GAAgBxB,EAAsB,SAASI,IAAO,CAAC,GAAGxC,IAAqB,MAAMA,GAAU,GAAGwC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQqB,GAAiBzB,EAAsB,SAASI,IAAO,CAAC,GAAG/C,GAAqB,MAAMA,EAAU,GAAG+C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQsB,GAAiB1B,EAAsB,SAASI,IAAO,CAAC,GAAG9C,GAAqB,MAAMA,EAAU,GAAG8C,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQuB,GAAgB3B,EAAsB,SAASI,IAAO,CAAC,GAAGvC,IAAqB,MAAMA,GAAU,GAAGuC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQwB,GAAgB5B,EAAsB,SAASI,IAAO,CAAC,GAAGtC,IAAqB,MAAMA,GAAU,GAAGsC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQyB,GAAiB7B,EAAsB,SAASI,IAAO,CAAC,GAAGrC,IAAqB,MAAMA,GAAU,GAAGqC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ0B,GAAgB9B,EAAsB,SAASI,IAAO,CAAC,GAAGpC,IAAqB,MAAMA,GAAU,GAAGoC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ2B,GAAgB/B,EAAsB,SAASI,IAAO,CAAC,GAAGnC,IAAqB,MAAMA,GAAU,GAAGmC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ4B,GAAgBhC,EAAsB,SAASI,IAAO,CAAC,GAAGlC,IAAqB,MAAMA,GAAU,GAAGkC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ6B,GAAiBjC,EAAsB,SAASI,IAAO,CAAC,GAAGjC,IAAqB,MAAMA,GAAU,GAAGiC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ8B,GAAiBlC,EAAsB,SAASI,IAAO,CAAC,GAAGhC,IAAqB,MAAMA,GAAU,GAAGgC,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ+B,GAAiBnC,EAAsB,SAASI,IAAO,CAAC,GAAG/B,IAAqB,MAAMA,GAAU,GAAG+B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQgC,GAAiBpC,EAAsB,SAASI,IAAO,CAAC,GAAG9B,IAAqB,MAAMA,GAAU,GAAG8B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQiC,GAAgBrC,EAAsB,SAASI,IAAO,CAAC,GAAG7B,IAAqB,MAAMA,GAAU,GAAG6B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQkC,GAAgBtC,EAAsB,SAASI,IAAO,CAAC,GAAG5B,IAAqB,MAAMA,GAAU,GAAG4B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQmC,GAAgBvC,EAAsB,SAASI,IAAO,CAAC,GAAG3B,IAAqB,MAAMA,GAAU,GAAG2B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQoC,GAAiBxC,EAAsB,SAASI,IAAO,CAAC,GAAG1B,IAAqB,MAAMA,GAAU,GAAG0B,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQqC,GAAiBzC,EAAsB,SAASI,IAAO,CAAC,GAAGzB,IAAqB,MAAMA,GAAU,GAAGyB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQsC,GAAgB1C,EAAsB,SAASI,IAAO,CAAC,GAAGxB,IAAqB,MAAMA,GAAU,GAAGwB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQuC,GAAiB3C,EAAsB,SAASI,IAAO,CAAC,GAAGvB,IAAqB,MAAMA,GAAU,GAAGuB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQwC,GAAiB5C,EAAsB,SAASI,IAAO,CAAC,GAAGtB,IAAqB,MAAMA,GAAU,GAAGsB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQyC,GAAgB7C,EAAsB,SAASI,IAAO,CAAC,GAAGrB,IAAqB,MAAMA,GAAU,GAAGqB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ0C,GAAgB9C,EAAsB,SAASI,IAAO,CAAC,GAAGpB,IAAqB,MAAMA,GAAU,GAAGoB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ2C,GAAgB/C,EAAsB,SAASI,IAAO,CAAC,GAAGnB,IAAqB,MAAMA,GAAU,GAAGmB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ4C,GAAiBhD,EAAsB,SAASI,IAAO,CAAC,GAAGlB,IAAqB,MAAMA,GAAU,GAAGkB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ6C,GAAgBjD,EAAsB,SAASI,IAAO,CAAC,GAAGjB,GAAqB,MAAMA,EAAU,GAAGiB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ8C,GAAgBlD,EAAsB,SAASI,IAAO,CAAC,GAAGhB,IAAqB,MAAMA,GAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQ+C,GAAiBnD,EAAsB,SAASI,IAAO,CAAC,GAAGf,IAAqB,MAAMA,GAAU,GAAGe,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQgD,GAAgBpD,EAAsB,SAASI,IAAO,CAAC,GAAGd,IAAqB,MAAMA,GAAU,GAAGc,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQiD,GAAgBrD,EAAsB,SAASI,IAAO,CAAC,GAAGb,IAAqB,MAAMA,GAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQkD,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAS/D,CAAW,EAAmCgE,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAShE,CAAW,EAAmCiE,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASjE,CAAW,EAAmCkE,GAAa,IAAQlE,IAAc,YAA6CmE,GAAa,IAAQnE,IAAc,YAA6CoE,EAAa,IAAQpE,IAAc,YAA6CqE,EAAa,IAAQrE,IAAc,YAA6CsE,GAAa,IAAQtE,IAAc,YAA6CuE,GAAa,IAAQvE,IAAc,YAA6CwE,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAE,OAAoBlL,EAAKmL,GAAY,CAAC,GAAGvH,GAA4CoH,GAAgB,SAAsBhL,EAAKT,GAAW,CAAC,MAAMM,GAAW,SAAsBuL,EAAMpN,EAAO,IAAI,CAAC,GAAGuI,GAAU,QAAQjI,EAAS,UAAU+M,GAAGnN,GAAkB,GAAGgN,GAAsB,gBAAgBvH,EAAU8C,EAAU,EAAE,mBAAmB,SAAS,QAAQjI,EAAQ,iBAAiBsI,EAAiB,SAAS,YAAY,WAAW,IAAIH,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,GAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,GAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIrD,GAA6B+G,GAAK,MAAM,CAAC,GAAG3G,CAAK,EAAE,GAAGtF,EAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,2BAA2B,CAAC,EAAEoI,EAAYE,CAAc,EAAE,SAAS,CAAc0E,EAAMpN,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAS,CAAc9G,EAAKsL,EAAS,CAAC,sBAAsB,GAAK,SAAsBtL,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,mBAAmB,EAAE,iBAAiB8I,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1I,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,SAAsB4B,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMoJ,CAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,SAAsBpH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMkJ,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,SAAsBlH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMoJ,CAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,SAAsBpH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMkJ,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,SAAsBlH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMoJ,CAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,SAAsBpH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,uBAAuB,EAAE,MAAMkJ,EAAY,CAAC,EAAEV,EAAYE,CAAc,CAAC,CAAC,EAAe1G,EAAKsL,EAAS,CAAC,sBAAsB,GAAK,SAAsBtL,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB,GAAK,MAAM,CAAC,uBAAuB,EAAE,iBAAiB8I,EAAiB,SAAS,YAAY,MAAMO,EAAa,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjJ,EAAqB,CAAC,UAAU,CAAC,MAAMkJ,CAAY,EAAE,UAAU,CAAC,SAAsBtH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,iBAAiB,OAAU,SAAsBgC,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,MAAS,EAAE,UAAU,CAAC,MAAMsJ,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,CAAC,EAAEd,EAAYE,CAAc,CAAC,CAAC,EAAe1G,EAAKsL,EAAS,CAAC,sBAAsB,GAAK,SAAsBtL,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiB,GAAK,MAAM,CAAC,uBAAuB,EAAE,iBAAiB8I,EAAiB,SAAS,YAAY,MAAMS,EAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnJ,EAAqB,CAAC,UAAU,CAAC,iBAAiB,OAAU,SAAsB4B,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,MAAS,EAAE,UAAU,CAAC,MAAMwJ,EAAY,EAAE,UAAU,CAAC,SAAsBxH,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,MAAMwJ,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAEhB,EAAYE,CAAc,CAAC,CAAC,EAAe1G,EAAKsL,EAAS,CAAC,sBAAsB,GAAK,SAAsBtL,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,sBAAsB,6CAA6C,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,iBAAiB,GAAK,MAAM,CAAC,uBAAuB,EAAE,iBAAiB8I,EAAiB,SAAS,YAAY,MAAMW,EAAa,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrJ,EAAqB,CAAC,UAAU,CAAC,MAAMsJ,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,iBAAiB,OAAU,SAAsB1H,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,EAAE,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM0J,EAAW,EAAE,UAAU,CAAC,SAAsB1H,EAAWuL,EAAS,CAAC,SAAsBvL,EAAKhC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,2BAA2B,WAAW,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAEwI,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6D,GAAY,GAAgBa,EAAMpN,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAS,CAAC0D,GAAa,GAAgBxK,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAe,UAAU8J,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU3I,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,yBAAyB,UAAUwJ,GAAiB,UAAU5I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAU8I,GAAgB,UAAU9I,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAU,wBAAwB,UAAU6I,GAAgB,UAAU7I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAE+D,GAAa,GAAgBzK,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,eAAe,UAAUkK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU/I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,sCAAiC,UAAU4J,GAAgB,UAAUhJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAUiJ,GAAiB,UAAUjJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAE+D,GAAa,GAAgBzK,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,wBAAwB,UAAU8J,GAAgB,UAAUlJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAUmJ,GAAiB,UAAUnJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEgE,GAAa,GAAgB1K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,uBAAuB,UAAU8J,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU3I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,mBAAmB,UAAUgK,GAAgB,UAAUpJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAU,uBAAuB,UAAUqJ,GAAiB,UAAUrJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEgE,GAAa,GAAgB1K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,yBAAyB,UAAUkK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU/I,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAoB,UAAUkK,GAAiB,UAAUtJ,EAAY,CAAC,IAAI,qEAAqE,OAAO,kQAAkQ,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,UAAU,gBAAgB,UAAUuJ,GAAgB,UAAUvJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEiE,GAAa,GAAgB3K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,CAAC,EAAE,kBAAkBjI,EAAkB,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAGT,EAAqB,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,EAAEoI,EAAYE,CAAc,EAAE,SAAsB1G,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,cAAc,UAAUoK,GAAiB,UAAUxJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAE+D,GAAa,GAAgBzK,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,0BAA0B,UAAU4K,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUzJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,wBAAwB,UAAUsK,EAAe,CAAC,EAAElC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB0H,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,CAAC,EAAE,kBAAkBjI,EAAkB,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAGT,EAAqB,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,EAAEoI,EAAYE,CAAc,EAAE,SAAsB1G,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,qEAAqE,OAAO,kQAAkQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,eAAe,UAAUuK,GAAgB,UAAU3J,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,yBAAyB,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,uBAAkB,UAAUwK,GAAiB,UAAU5J,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,0BAA0B,UAAUyK,GAAgB,UAAU7J,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,mDAA8C,UAAU0K,GAAgB,UAAU9J,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,cAAc,UAAU2K,GAAgB,UAAU/J,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,gCAAgC,UAAU4K,GAAiB,UAAUhK,EAAY,CAAC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAe,UAAU6K,GAAiB,UAAUjK,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,wBAAwB,UAAU8K,GAAiB,UAAUlK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,mBAAmB,UAAU+K,GAAiB,UAAUnK,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,eAAe,UAAUgL,GAAgB,UAAUpK,EAAY,CAAC,IAAI,oEAAoE,OAAO,+PAA+P,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,iBAAiB,UAAUiL,GAAgB,UAAUrK,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,eAAe,UAAUkL,GAAgB,UAAUtK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,cAAc,UAAUmL,GAAiB,UAAUvK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,2BAAiB,UAAUoL,GAAiB,UAAUxK,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAe,UAAUqL,GAAgB,UAAUzK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,aAAa,UAAUsL,GAAiB,UAAU1K,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAoB,UAAUuL,GAAiB,UAAU3K,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,kCAAwB,UAAUwL,GAAgB,UAAU5K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,uCAAkC,UAAUyL,GAAgB,UAAU7K,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,yBAAyB,UAAU0L,GAAgB,UAAU9K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,SAAS,UAAU2L,GAAiB,UAAU/K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,0BAA0B,UAAU4L,GAAgB,UAAUhL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,aAAa,UAAU6L,GAAgB,UAAUjL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,gBAAgB,UAAU8L,GAAiB,UAAUlL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmB,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGZ,EAAqB,CAAC,UAAU,CAAC,UAAU,+BAA0B,UAAU+L,GAAgB,UAAUnL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,CAAC,CAAC,EAAEwH,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAa,GAAgB5K,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,sBAAsB,UAAUuM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUpL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6L,EAAa,GAAgB7K,EAAKhC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8I,EAAiB,SAAS,WAAW,CAAC,EAAE+D,EAAa,GAAgBO,EAAMpN,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAS,CAAc9G,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,yBAAyB,UAAU+J,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU5I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,sCAAiC,UAAUmK,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUhJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,wBAAwB,UAAUqK,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUlJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6L,EAAa,GAAgBO,EAAMpN,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAS,CAAc9G,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mBAAmB,UAAUuK,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUpJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAoB,UAAUyK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUtJ,EAAY,CAAC,IAAI,qEAAqE,OAAO,kQAAkQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,UAAU2K,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUxJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8L,GAAa,GAAgB9K,EAAKhC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAsB9G,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,wBAAwB,UAAUgK,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU7I,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+L,GAAa,GAAgBK,EAAMpN,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8I,EAAiB,SAAS,YAAY,SAAS,CAAc9G,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAe,UAAUiK,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU9I,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,eAAe,UAAUoK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUjJ,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mBAAc,UAAUsK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,uBAAuB,UAAUwK,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUrJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,gBAAgB,UAAU0K,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUvJ,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBkI,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,wBAAwB,UAAU6K,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU1J,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAU,eAAeU,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB0H,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,eAAe,UAAU8K,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU3J,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,uBAAkB,UAAU+K,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU5J,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,0BAA0B,UAAUgL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU7J,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mDAA8C,UAAUiL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU9J,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,UAAUkL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU/J,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,gCAAgC,UAAUmL,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUhK,EAAY,CAAC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAe,UAAUoL,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUjK,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,wBAAwB,UAAUqL,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUlK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,mBAAmB,UAAUsL,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnK,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,eAAe,UAAUuL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUpK,EAAY,CAAC,IAAI,oEAAoE,OAAO,+PAA+P,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,iBAAiB,UAAUwL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUrK,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,yBAAyB,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,eAAe,UAAUyL,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUtK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,cAAc,UAAU0L,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUvK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,2BAAiB,UAAU2L,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUxK,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAe,UAAU4L,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUzK,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,aAAa,UAAU6L,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU1K,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,oBAAoB,UAAU8L,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU3K,EAAY,CAAC,IAAI,sEAAsE,OAAO,qQAAqQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,kCAAwB,UAAU+L,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU5K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,uCAAkC,UAAUgM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU7K,EAAY,CAAC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,yBAAyB,UAAUiM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU9K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,SAAS,UAAUkM,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU/K,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,0BAA0B,UAAUmM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUhL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,aAAa,UAAUoM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUjL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,gBAAgB,UAAUqM,GAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUlL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,+BAA0B,UAAUsM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAegB,EAAKlC,EAAgB,CAAC,kBAAkB,CAAC,WAAWuB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBX,EAAU,eAAeY,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiBwH,EAAiB,SAAS,sBAAsB,kBAAkBjI,EAAkB,SAAsBmB,EAAKnC,EAAiB,CAAC,UAAU,+BAAqB,UAAU,sBAAsB,UAAUuM,GAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUpL,EAAY,CAAC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwM,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,qRAAqR,2RAA2R,+EAA+E,qFAAqF,gHAAgH,+LAA+L,qUAAqU,mrFAAmrF,6SAA6S,2TAA2T,yVAAyV,2RAA2R,oUAAoU,g4CAAg4C,8SAA8S,gHAAgH,yEAAyE,wKAAwK,uHAAuH,yEAAyE,yEAAyE,wEAAwE,yEAAyE,iVAAiV,2IAA2I,qHAAqH,6UAA6U,oMAAoM,kKAAkK,sFAAsF,mbAAmb,iVAAiV,8GAA8G,EAQ3vuHC,GAAgBC,GAAQtI,GAAUoI,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,WAAW,4BAA4B,MAAM,YAAY,YAAY,qBAAqB,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,4BAA4B,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,E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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "LPPjqlWaf", "cFCRkR2qV", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "Link", "cx", "serializationHash", "RichText2", "x", "css", "FramerhxZi_mWHb", "withCSS", "hxZi_mWHb_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "subTitle", "tap", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "r2JZ9PY2A", "dkS4mZNNL", "ABhNGg0SY", "G0NGEBMap", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapoxssai", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "RichText2", "x", "SVG", "css", "Framery1V7w8BfW", "withCSS", "y1V7w8BfW_default", "addPropertyControls", "ControlType", "addFonts", "OfertyPrarcyCardFonts", "getFonts", "y1V7w8BfW_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "animation", "transition1", "animation1", "transformTemplate", "_", "t", "addImageAlt", "image", "alt", "transition2", "animation2", "transition3", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "biurowce1", "biurowce2", "biurowce3", "biurowce4", "biurowce5", "biurowce6", "biurowce7", "budynki1", "budynki10", "budynki11", "budynki12", "budynki13", "budynki14", "budynki15", "budynki16", "budynki17", "budynki18", "budynki19", "budynki2", "budynki20", "budynki21", "budynki22", "budynki23", "budynki24", "budynki25", "budynki26", "budynki27", "budynki28", "budynki29", "budynki3", "budynki30", "budynki31", "budynki32", "budynki4", "budynki5", "budynki6", "budynki7", "budynki8", "budynki9", "height", "hotele1", "hotele2", "id", "obiektyUslugowoHandlowe", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "veSHs8nfu", "k6jxy5spQ", "Swc5GsVZO", "IeeokCgUx", "b1CypAnKJ", "F77fSM3mf", "BZzX86Xzz", "rNzGkB5Xs", "SGzRTR81j", "ztxSt0dQ1", "eWeudtBJf", "UR9cBY25S", "iQJmzJBfX", "W0pM4NXaL", "Zsp9kdf7R", "ikTBZOYi1", "qK7MUUUXY", "pnM5QLBpI", "R6wx_nrOl", "fm6U8WOap", "zvKEj_KWv", "mITaFyoM2", "rTGojpZOR", "F2f5QPEoX", "BY5wC4PX7", "AH6fm3VDY", "fOKXAMEgV", "E9HbiKh0F", "IOQwbWAjD", "pbaroXTwu", "MCxdsVko4", "rwfvc0bsa", "lNOBtelB2", "CpUTIxAq3", "tnTG1XvvI", "xrm1eCFmH", "OVxTfWvJQ", "qdC6VRUNQ", "mmcAo6kls", "vbftuOlqC", "KO5sd9BHz", "HkJaeIfD_", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1jnxtel", "args", "onTap18cou3l", "onTap109v27q", "onTap16bmw2a", "onTapel85xs", "onTap1i0m5jy", "onTap1g4ddsu", "onTapegc7y1", "G0NGEBMapmppdh7", "G0NGEBMap1ezftiy", "G0NGEBMap1yhgb3", "G0NGEBMaph12km0", "G0NGEBMap1iimw5k", "G0NGEBMapsvy6bd", "G0NGEBMap1012mdy", "G0NGEBMapc274vq", "G0NGEBMap1fex7e9", "G0NGEBMaplrjppa", "G0NGEBMap14t9eeq", "G0NGEBMap1hr1un7", "G0NGEBMap8iloa0", "G0NGEBMap1daszon", "G0NGEBMap1wtz4gw", "G0NGEBMap6a0sw3", "G0NGEBMapu8iudr", "G0NGEBMap1ta0lmq", "G0NGEBMapsju6ku", "G0NGEBMapgz116b", "G0NGEBMap2pagyk", "G0NGEBMap1769tod", "G0NGEBMap1lw7gac", "G0NGEBMap1n1q54s", "G0NGEBMap16ots11", "G0NGEBMapauiohy", "G0NGEBMap8kodra", "G0NGEBMaphiap27", "G0NGEBMap1fhpf82", "G0NGEBMap19duvok", "G0NGEBMap2bkqnh", "G0NGEBMap13e70w2", "G0NGEBMap1ezws3f", "G0NGEBMapiw0cux", "G0NGEBMapwriqmy", "G0NGEBMapv2xzga", "G0NGEBMap12u5g3x", "G0NGEBMapz8sixl", "G0NGEBMapy0z2ie", "G0NGEBMap1o1eeoh", "G0NGEBMaplxz5ry", "G0NGEBMap5etjpf", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "RichText2", "x", "css", "Framers5sTQv3Kg", "withCSS", "s5sTQv3Kg_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "JVZRMH6Rf_default", "RichTextWithFX", "withFX", "RichText2", "TabFonts", "s5sTQv3Kg_default", "StronaWwwFonts", "hxZi_mWHb_default", "SlideshowFonts", "Slideshow", "EmbedFonts", "Embed", "FooterFonts", "JOiMPCDbl_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "transformTemplate2", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "veSHs8nfu42m929", "overlay", "args", "k6jxy5spQ42m929", "Swc5GsVZO42m929", "IeeokCgUx42m929", "b1CypAnKJ42m929", "F77fSM3mf42m929", "BZzX86Xzz42m929", "rNzGkB5Xs42m929", "SGzRTR81j42m929", "ztxSt0dQ142m929", "eWeudtBJf42m929", "UR9cBY25S42m929", "iQJmzJBfX42m929", "W0pM4NXaL42m929", "Zsp9kdf7R42m929", "ikTBZOYi142m929", "qK7MUUUXY42m929", "pnM5QLBpI42m929", "R6wx_nrOl42m929", "fm6U8WOap42m929", "zvKEj_KWv42m929", "mITaFyoM242m929", "rTGojpZOR42m929", "F2f5QPEoX42m929", "BY5wC4PX742m929", "AH6fm3VDY42m929", "fOKXAMEgV42m929", "E9HbiKh0F42m929", "IOQwbWAjD42m929", "pbaroXTwu42m929", "MCxdsVko442m929", "rwfvc0bsa42m929", "lNOBtelB242m929", "CpUTIxAq342m929", "tnTG1XvvI42m929", "xrm1eCFmH42m929", "OVxTfWvJQ42m929", "qdC6VRUNQ42m929", "mmcAo6kls42m929", "vbftuOlqC42m929", "KO5sd9BHz42m929", "HkJaeIfD_42m929", "onTapzn6atv", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides2", "JVZRMH6Rf_default", "Image2", "SVG", "x", "RichTextWithFX", "overlay41", "overlay40", "overlay39", "overlay38", "overlay37", "overlay36", "overlay35", "overlay34", "overlay33", "overlay32", "overlay31", "overlay30", "overlay29", "overlay28", "overlay27", "overlay26", "overlay25", "overlay24", "overlay23", "overlay22", "overlay21", "overlay20", "overlay19", "overlay18", "overlay17", "overlay16", "overlay15", "overlay14", "overlay13", "overlay12", "overlay11", "overlay10", "overlay9", "overlay8", "overlay7", "overlay6", "overlay5", "overlay4", "overlay3", "overlay2", "overlay1", "l", "s5sTQv3Kg_default", "AnimatePresence", "Ga", "RichText2", "hxZi_mWHb_default", "Slideshow", "Link", "Embed", "JOiMPCDbl_default", "css", "Framerc_enuWZBK", "withCSS", "c_enuWZBK_default", "addFonts", "NavBarFonts", "TabFonts", "StronaWwwFonts", "SlideshowFonts", "EmbedFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
