{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/OqSUi4sNHo1Fp9XXgo31/g72D7xn38Cif3h5yxdCj/IHH1sHmgV.js", "ssg:https://framerusercontent.com/modules/BkVaDbMM5xcbWgWG6HtY/0T80auVKe4ZaXRuitYYq/MBWIHIt8N.js", "ssg:https://framerusercontent.com/modules/IcPwXdYQLQd1gtMZv39N/RuKkVMKmrrfYu2FAXxRX/CNMP_9AJd.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/Uh5nQwB8tb5duFL0B85f/M3zyWuoien8gSIp1GfiA/favfMgdex.js", "ssg:https://framerusercontent.com/modules/yjQMHpxblfn9R7jL1HRL/NZJybqg0afWndlIQaFsc/Kalkis.js", "ssg:https://framerusercontent.com/modules/yqJUh6IkpigX8qQ88ngY/mzGCxbTth4VtciMokV5O/aHPQcRPH5.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.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:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){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?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);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?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.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;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (06534cb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-semibold\",\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-bold italic\",\"FS;Plus Jakarta Sans-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZLH2B3SFZRQ3US4ZUYG2367OYUMTVTGK/RSOPFK2EORTGBCOBZRY42GDLXFFB4IQW/JZ35FM4UJSKC7X2PM65RH75Q5KLE552S.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DG3FNZZAXTT6HZWYCQT3SK2X2XDKA6XH/KWXXWQ4T72VNT2BQDELHDOCDISYUBIWM/XMNYCZFXUH3EYMLHCQEDXUTZTCNGZHL5.woff2\",weight:\"600\"}]}];export const css=['.framer-Lklj6 .framer-styles-preset-1veh332:not(.rich-text-wrapper), .framer-Lklj6 .framer-styles-preset-1veh332.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-1052ca4f-ba09-4d6f-8c1e-08365edf7916, #5141a0); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Lklj6 .framer-styles-preset-1veh332:not(.rich-text-wrapper), .framer-Lklj6 .framer-styles-preset-1veh332.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-1052ca4f-ba09-4d6f-8c1e-08365edf7916, #5141a0); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Lklj6 .framer-styles-preset-1veh332:not(.rich-text-wrapper), .framer-Lklj6 .framer-styles-preset-1veh332.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-1052ca4f-ba09-4d6f-8c1e-08365edf7916, #5141a0); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Lklj6\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (af3ebb8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-medium\",\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-bold italic\",\"FS;Plus Jakarta Sans-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UABF25CCX23LBLOOMOCUSPFEXYUNKOIQ/NGF5IU7BZUA2FUOVWECHGUFSHNEIX4YK/QDINYT7WQXBD2IDFQGGJ74DWIUFHOOZD.woff2\",weight:\"500\"}]}];export const css=['.framer-JygkH .framer-styles-preset-qbqxb4:not(.rich-text-wrapper), .framer-JygkH .framer-styles-preset-qbqxb4.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6da5892d-3765-48b5-a375-06cacb6ba7bd, #402b87); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-JygkH\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2aa011)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/OqSUi4sNHo1Fp9XXgo31/g72D7xn38Cif3h5yxdCj/IHH1sHmgV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/BkVaDbMM5xcbWgWG6HtY/0T80auVKe4ZaXRuitYYq/MBWIHIt8N.js\";const cycleOrder=[\"K9TInKUph\",\"UtcAGL1SX\",\"uFcRdHpqq\"];const serializationHash=\"framer-hYfoD\";const variantClassNames={K9TInKUph:\"framer-v-1b64j23\",uFcRdHpqq:\"framer-v-1ga8k8t\",UtcAGL1SX:\"framer-v-iz1nr5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={horizontalLeft:\"UtcAGL1SX\",horizontalRight:\"K9TInKUph\",vertical:\"uFcRdHpqq\"};const getProps=({height,id,image,navn,sitat,width,...props})=>{return{...props,k7JZ4Pkcm:sitat??props.k7JZ4Pkcm??\"Dette er boligmodellen jeg skulle \\xf8nske fantes da jeg skulle inn p\\xe5 boligmarkedet.\",pq6YzXNw2:image??props.pq6YzXNw2??{alt:\"\",src:\"https://framerusercontent.com/images/cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg 2000w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"K9TInKUph\",WtXT9BilM:navn??props.WtXT9BilM??\"\u2013 Lasse Matberg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,pq6YzXNw2,k7JZ4Pkcm,WtXT9BilM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K9TInKUph\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1b64j23\",className,classNames),\"data-framer-name\":\"horizontalRight\",layoutDependency:layoutDependency,layoutId:\"K9TInKUph\",ref:refBinding,style:{...style},...addPropertyOverrides({uFcRdHpqq:{\"data-framer-name\":\"vertical\"},UtcAGL1SX:{\"data-framer-name\":\"horizontalLeft\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||240)-0-240)/2)),pixelHeight:1333,pixelWidth:2e3,sizes:`min(240px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(pq6YzXNw2)},className:\"framer-6do27h\",\"data-framer-name\":\"Lasse Matberg\",layoutDependency:layoutDependency,layoutId:\"M4h7uGY0c\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"6px 6px 0px 0px var(--token-3f6ad58a-ad1f-4dfa-9edd-f6d17b4dd0ab, rgb(176, 174, 255))\"},...addPropertyOverrides({uFcRdHpqq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||526.5)-0-490.4)/2+220.4+30)),pixelHeight:1333,pixelWidth:2e3,sizes:`min(240px, ${componentViewport?.width||\"100vw\"})`,...toResponsiveImage(pq6YzXNw2)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19aq19a\",layoutDependency:layoutDependency,layoutId:\"RgSB_IKid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1veh332\",\"data-styles-preset\":\"IHH1sHmgV\",children:\"Dette er boligmodellen jeg skulle \\xf8nske fantes da jeg skulle inn p\\xe5 boligmarkedet.\"})}),className:\"framer-1m2j2u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uzwFdgT4Y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:k7JZ4Pkcm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qbqxb4\",\"data-styles-preset\":\"MBWIHIt8N\",children:\"\u2013 Lasse Matberg\"})}),className:\"framer-1jewl55\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pvRUETtOO\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WtXT9BilM,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hYfoD.framer-188fkcz, .framer-hYfoD .framer-188fkcz { display: block; }\",\".framer-hYfoD.framer-1b64j23 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 700px; }\",\".framer-hYfoD .framer-6do27h { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: var(--framer-aspect-ratio-supported, 240px); justify-content: flex-end; max-width: 100%; overflow: hidden; padding: 16px; position: relative; width: 240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hYfoD .framer-19aq19a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-hYfoD .framer-1m2j2u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hYfoD .framer-1jewl55 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hYfoD.framer-1b64j23, .framer-hYfoD .framer-6do27h, .framer-hYfoD .framer-19aq19a { gap: 0px; } .framer-hYfoD.framer-1b64j23 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-hYfoD.framer-1b64j23 > :first-child { margin-left: 0px; } .framer-hYfoD.framer-1b64j23 > :last-child { margin-right: 0px; } .framer-hYfoD .framer-6do27h > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-hYfoD .framer-6do27h > :first-child, .framer-hYfoD .framer-19aq19a > :first-child { margin-top: 0px; } .framer-hYfoD .framer-6do27h > :last-child, .framer-hYfoD .framer-19aq19a > :last-child { margin-bottom: 0px; } .framer-hYfoD .framer-19aq19a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-hYfoD.framer-v-iz1nr5 .framer-6do27h, .framer-hYfoD.framer-v-1ga8k8t .framer-6do27h { order: 1; }\",\".framer-hYfoD.framer-v-iz1nr5 .framer-19aq19a { order: 0; }\",\".framer-hYfoD.framer-v-1ga8k8t.framer-1b64j23 { flex-direction: column; }\",\".framer-hYfoD.framer-v-1ga8k8t .framer-19aq19a { order: 0; width: 240px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hYfoD.framer-v-1ga8k8t.framer-1b64j23 { gap: 0px; } .framer-hYfoD.framer-v-1ga8k8t.framer-1b64j23 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hYfoD.framer-v-1ga8k8t.framer-1b64j23 > :first-child { margin-top: 0px; } .framer-hYfoD.framer-v-1ga8k8t.framer-1b64j23 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UtcAGL1SX\":{\"layout\":[\"fixed\",\"auto\"]},\"uFcRdHpqq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pq6YzXNw2\":\"image\",\"k7JZ4Pkcm\":\"sitat\",\"WtXT9BilM\":\"navn\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCNMP_9AJd=withCSS(Component,css,\"framer-hYfoD\");export default FramerCNMP_9AJd;FramerCNMP_9AJd.displayName=\"QuoteComponent\";FramerCNMP_9AJd.defaultProps={height:240,width:700};addPropertyControls(FramerCNMP_9AJd,{variant:{options:[\"K9TInKUph\",\"UtcAGL1SX\",\"uFcRdHpqq\"],optionTitles:[\"horizontalRight\",\"horizontalLeft\",\"vertical\"],title:\"Variant\",type:ControlType.Enum},pq6YzXNw2:{__defaultAssetReference:\"data:framer/asset-reference,cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg?originalFilename=0ce5bde1-4f55-5db2-8f94-c67359808986.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,cAwpMEGYyw9ZHagOP3WNZz8O2M.jpg?originalFilename=0ce5bde1-4f55-5db2-8f94-c67359808986.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},k7JZ4Pkcm:{defaultValue:\"Dette er boligmodellen jeg skulle \\xf8nske fantes da jeg skulle inn p\\xe5 boligmarkedet.\",displayTextArea:false,title:\"Sitat\",type:ControlType.String},WtXT9BilM:{defaultValue:\"\u2013 Lasse Matberg\",displayTextArea:false,title:\"Navn\",type:ControlType.String}});addFonts(FramerCNMP_9AJd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCNMP_9AJd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UtcAGL1SX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uFcRdHpqq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"700\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"240\",\"framerVariables\":\"{\\\"pq6YzXNw2\\\":\\\"image\\\",\\\"k7JZ4Pkcm\\\":\\\"sitat\\\",\\\"WtXT9BilM\\\":\\\"navn\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CNMP_9AJd.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-OXKu9\";const variantClassNames={YMtM_sEQY:\"framer-v-116y70q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YMtM_sEQY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-116y70q\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YMtM_sEQY\",ref:refBinding,style:{backgroundColor:\"var(--token-e2866daa-6be9-4265-941e-7a616a5c867d, rgb(252, 151, 131))\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ktf4to-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W9MqBwHmp-container\",nodeId:\"W9MqBwHmp\",rendersWithMotion:true,scopeId:\"favfMgdex\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:120,height:\"100%\",hoverFactor:1,id:\"W9MqBwHmp\",layoutId:\"W9MqBwHmp\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3lvn4a\",\"data-framer-name\":\"Redd Barna\",layoutDependency:layoutDependency,layoutId:\"QWkP8vrp0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x095gt\",\"data-framer-name\":\"Redd barna\",fill:\"black\",intrinsicHeight:428,intrinsicWidth:1516,layoutDependency:layoutDependency,layoutId:\"maENfg2IS\",svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1515.71 427.58\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M1515.71 221.57v65.79l-19.75-.2-6.72-9.99c-18.57 18.16-62.29 18.18-61.78-15.29.31-20.12 27.17-31.97 44.16-31.97H1486c.44-50.07-44.61 10.03-53.41-28.76 19.84-17.7 63.11-24.21 77.69 3.12l5.42 17.29Zm-29.69 25.94c-8.67-.47-29.2.82-29.75 12.52-.82 17.56 29.75 6.42 29.75.91V247.5ZM328.44 394.52c-7.69 9.12-55.58 24.76-68.52 27.49C73.44 461.32-65.7 285.77 32.3 118.78c-3.02-7.31-14.43-13.54-7.94-22.77 4.45-3.98 8.91-6.09 14.67-7.6 5.47-1.43 15.24-.81 17.78-1.63 1.44-.46 18.03-17.81 21.89-20.85 15.43-12.15 30.47-21.19 48.07-29.84 6.11-3 21.36-6.62 25.38-9.41C167.49 16.02 166.98 1.75 194.7.14c28.55-1.65 29.34 11.44 46.9 19.83 5.23 2.5 18.11 3.32 24.99 5.63 31.33 10.51 59.5 24.95 82.21 49.53 12.67-11.33 12.64-21.75 32.68-16.91 33.93 8.19.13 32.5-8.13 47.07 40.81 63.91 39.23 148.35.71 212.93-4.32 7.24-21.33 38.52-25.56 16.7 44.79-60.36 46.44-142.41 6.26-205.54l-1.86-.95c-55.14 61.49-66.12 120.32-42.92 199.49 6.19 21.12 17.43 40.7 21.38 61.63-.73 1.75-1.68 3.53-2.9 4.98ZM142.22 48.3c-29.24 7.71-55.39 24.98-76.06 46.79 39.14 37.15 88.81 74.35 146.16 69.99 43.77-3.33 86.77-38.47 116.42-68.13-19.03-19.11-42.09-34.9-67.72-44.01 9.43 33.37-2.31 81.68-39.41 92.7-54.75 16.25-93.21-50.1-79.39-97.33Zm-16.7 331.71c-1.88-20.52-2.96-41.97-1.88-62.57 1.84-35.1 20.58-75.55-.54-105.03-21.32-29.76-56.32-57.1-82.01-83.49-49.38 90.11-7.32 208.45 84.43 251.1Zm876.06-237.2c30.99 2.47 106.06-12.25 108.6 35.64.97 18.35-7.97 27.03-23.21 34.76 47.38 10.11 24.96 74.14-15.32 74.14h-70.07V142.8Zm33.41 61.15h24.59c10.6 0 17.46-8.84 17.18-18.93-.61-22.09-26.99-16.25-41.78-17.21v36.14Zm0 58.38h30.16c18.1 0 22.57-36.14-1.86-36.14h-28.3v36.14ZM492.1 142.81c30.75 1.56 96.55-9.66 104.64 33.12 4.51 23.82-6.85 41.52-27.61 52.11 18.72 13.44 27.8 40.43 40.83 59.32h-34.8c-8.58 0-29.99-52.82-36.19-52.82h-13.46v52.82H492.1V142.81Zm34.8 25.02-1.39 1.39v40.77l1.39 1.39h15.78c27.57 0 31.74-43.55-1.86-43.55H526.9Zm406.01-24.09v143.62h-22.74l-5.12-11.11c-87.5 62.88-92.38-127.47-1.84-83.4v-49.11h29.7Zm-47.54 64.16c-31.32 3.34-17.82 91.48 17.89 46.61l-.21-39.72c-4.75-4.95-10.64-7.64-17.67-6.89Z\"/><path class=\"cls-1\" d=\"M817.83 143.74v143.62h-21.81l-6.04-12.04c-47.87 42.04-81.18-16.84-63.11-62.56 9.9-25.04 39.23-35.47 61.27-18.98v-50.04h29.7ZM770.3 207.9c-31.37 3.35-17.59 91.44 17.89 46.61l-.21-39.72c-4.75-4.95-10.64-7.64-17.67-6.89Zm638.69 79.46h-29.7v-68.1c0-13.75-24.39-12.19-30.62-2.78v70.88h-29.7v-99.15h21.81l5.12 10.19c16.71-21.22 63.09-12.96 63.09 16.22v72.74Zm-765.16-44.48-1.23 2.11c5.71 29.86 29.64 22.92 50.33 13.66l13.3 13.43c-37.72 36.09-98.22 14.89-93.51-41.73 5.48-65.82 111.67-54.79 91.44 12.54h-60.32Zm-.46-16.68h35.73l1.22-2.98c-3.52-24.12-36.57-20.47-36.95 2.98Zm571.66 61.16h-19.02l-6.05-10.19c-17.42 16.21-59.79 19.57-62.19-11.55s35.49-36.55 58.5-35.7c.91-34.14-23.26-17.03-42.17-13.96-6.04-1.08-9.09-9.34-11.51-14.16 17.3-17.07 55.88-23.65 73.18-3.87 3.32 3.79 9.26 14.68 9.26 19.48v69.96Zm-28.77-39.85c-9.86-.12-29.43.05-29.78 13.44.38 17.1 29.78 4.21 29.78 0v-13.44Zm74.71-59.3 5.12 14.82c9.15-11.53 22.84-23.01 38.08-14.17l-4.69 24.82c-3.24 3.24-15.72-3.01-25.54 5.08-1.42 1.17-6.01 6.48-6.01 7.9v60.69h-29.7V188.2h22.74Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vu4rix\",\"data-framer-name\":\"NAF\",layoutDependency:layoutDependency,layoutId:\"X89cezH1E\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-49d4av\",\"data-framer-name\":\"NAF\",fill:\"black\",intrinsicHeight:461,intrinsicWidth:462,layoutDependency:layoutDependency,layoutId:\"PHILN6zak\",svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 461.79 461.48\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M458.99 6.06c.96 1.06 2.59 3.62 2.79 5.08v439.21c-.65 5.67-7.5 9.82-12.62 11.14H14.1c-7.25-1.79-12.69-7.69-14.1-15V15.89C1.26 7.6 8.44.77 16.78 0H445.9c4.3.38 10.14 2.8 13.09 6.06ZM295.63 315.67h32.66c1.35 0 13.89-19.44 16.61-21.4 2.22-16.13-11.38-28.15-16.01-42.46-.52-1.61-3.68-14.04-2.81-14.53.39-.22 7.26 1.39 8.73 1.49 20.12 1.35 39.2-9.78 36.65-32.19-3.91-34.41-77.6-44.34-77.13-76.91.15-10.71 11.75-25.86 23.53-20.04s-1.81 12.8-2.76 18.84c-1.19 7.51 2.48 13.46 10.07 14.55 1.35-4.45 4.54-7.91 6.29-12.14 12.43-30.1-28.73-41.63-42.86-13.46-18.83 37.54 39.23 56.7 60.62 75.76 14.92 13.3 10.8 34.49-11.06 31.55-21.03-2.82-53.68-30.22-65.98-47.16-4.24-5.83-13.05-21.07-12.87-28.12.06-2.43 5.62-16.33 6.62-20.54 7.75-32.63-.21-69-35.26-80.57-5.29-1.75-25.06-5.72-28.88-1.69-1.78 1.88-3.2 11.19-5.08 13.93-2.3 3.35-11.2 7.39-14.38 12.64-1.35 2.22-1.18 4.23-2.55 6.36-2.43 3.77-15.22 13.81-14.26 18.73.28 1.45 6.51 7.89 7.77 8.02s2.55-2.47 3.69-3.42c12.54-10.54 25.39 8.06 9.79 13.36-1.25.42-6.59 1.09-6.82 1.35-.42.46 7 9.48 7.63 9.76 2.25 1.02 9.16-12.19 13.9-8.87 1.13.79 1.24 1.78 1.02 3.1s-10.83 13.79-12.57 16.23c-10.84 15.15-19.69 31.54-13.62 50.69.52 1.63 3.19 6.61 3.29 7.4.12.96-.68 2.4-.99 3.34-1.83 5.45-15.34 36.08-18.24 39.07-3.56 3.66-18.62 9.29-19.14 10.26-.47.87-1.33 6.9-1.37 8.14-.73 22.69 29.38 21.74 30.01 2.69.06-1.87-1.12-4.91-.57-6.2l37.67-39.25c5.26-2.78.67-17.14 6.84-15.75 4.87 1.1.81 16.52 2.8 18.31.52.47 11.41 1.21 13.31 1.53 11.09 1.87 21.68 5.71 31.88 10.31 1.77.09 5.77-2.86 6.94-2.23 2.85 1.53 8.43 31.44 10.37 35.96 13.67 8.65 31.31 14.15 44.82 22.59 4.64 2.9 5.36 4.57 2.77 9.52-.77 1.47-6.9 9.31-8.08 9.74-2.89 1.06-15.48-2.78-17.97-1.64-1.98.91-6.15 11.09-5.77 12.9.04.17.6.44.74.47Zm-126.8-200.14c-1.81.33-4.47-.24-6.38 0 9.6 13.62 15.45-6.42 24.65-8.02-6.55-3.4-13.25 7.11-18.26 8.02Zm-41.32 119.48c5.12-5.84 13.73-10.84 21.45-11.96 2.21-.32 12.16.03 12.72-.35 1.41-.95 6.56-16.24 8.45-18.61.12-1.5-4.58-2.22-5.78-2.43-51.94-9.03-88 52.47-54.45 93.65 38.79 47.63 115.83 9.73 101.11-50.92-.6-2.49-5.84-16.39-7.64-17.15-.75-.32-1.48.24-2.03.67-4.46 3.48-9.06 10.8-13.59 14.64 5.53 14.17 4.15 29.92-6.58 41.21-32.18 33.89-84.38-13.67-53.65-48.75Zm136.92 1.54c-1.32-1.27-6.78-4.88-8.55-4-2.13 1.06-4.98 9.92-5.24 12.3-1.57 14.48 15.2 39.73 10.54 50.93-.82 1.98-7.1 7.77-8.98 8.25-3.84.97-15.66-2.66-18.2-1.57-1.75.75-6.49 12.05-5.47 12.95 1.24 1.1 29.3-.26 33.19.2l20.5-23.14 1.6-21.13c-.42-1.38-6.88-3.56-8.35-4.72-3.2-2.54-4.97-17.72-6.72-22.68-1-2.81-2.14-5.28-4.34-7.39Zm-133.46 90.11h-29.1v92.2s.41.45.45.45h23.76c.55 0 .7-1.2.76-1.61 1.45-9.37.6-35.17 0-45.47-.2-3.43-1.05-6.83-1.5-10.23 10.8 19.79 24.1 38.01 36.31 56.92l25.45.09v-91.9s-.41-.45-.45-.45H162.6c-1.36 0-.53 25.16-.46 27.18.08 2.24 2.69 22.01 1.64 22.41-.26.1-1.11-.59-1.33-.83l-31.47-48.77Zm125.16 92.64h29.7l-29.69-92.35-31.49-.32-1.42 2.75c-7.63 28.92-21.06 58.1-28.33 86.88-.22.85-1.2 3.03.06 3.03h23.16c1.45 0 4.95-15.4 6.16-17.3.64-1.01.72-.94 1.84-1.13 2.01-.33 23.1-.47 24.04.28s4.41 17.6 5.97 18.15Zm96.66-54.34h-30.44c-.61 0-1.22-.95-1.35-1.62-.18-.96-.18-12.63.01-13.38.12-.44.69-1.04 1.04-1.04h37.71s.45-.41.45-.45v-21.38s-.41-.45-.45-.45h-66.37v92.2s.41.45.45.45h26.73s.45-.41.45-.45v-32.07c0-.12 1.18-1.04 1.34-1.04h30.44c1.04 0 .02-19.28 0-20.79Z\"/><path class=\"cls-1\" d=\"M195.41 76.63c.31.27-5.46 5.53-5.86 5.65-1.07.3-2.6-1.62-2.72-2.3-.35-2.01 8.21-3.65 8.58-3.35ZM244.4 380.4h-14.1l6.83-24.64 7.27 24.64z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fmvzur\",\"data-framer-name\":\"Norwegian\",layoutDependency:layoutDependency,layoutId:\"p0RISCjJx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1377uyr\",\"data-framer-name\":\"Norwegian\",fill:\"black\",intrinsicHeight:279,intrinsicWidth:1798,layoutDependency:layoutDependency,layoutId:\"JMW7LmgTK\",svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1798.17 279.49\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M0 64.51h41.44v14.72c41.75-38.86 98.96-14.7 103.24 42.42 2.42 32.24-1.77 67.33.02 99.87h-42.15v-90.77c0-39.95-53.88-41.6-59.7-2.8-4.31 28.72 1.75 64.17-.71 93.57H0V64.51Zm511.36 0c2.79 39.17 9.62 77.9 20.02 115.66 13.19-37.57 22.96-76.26 28.86-115.71l54.99.13c5.66 39.42 15.39 78.16 28.87 115.56 9.82-37.89 17.32-76.43 19.68-115.65h42.85c-4.91 53.23-16.1 105.77-32.23 156.59l-53.84.48c-15.03-35.55-24.77-73.69-32.99-111.51-7.31 37.78-18.71 74.59-31.6 110.76l-55.07.61c-16.08-50.97-27.25-103.59-32.39-156.93h42.85Zm513.47 14.72V64.51h41.44l-.72 151.74c-5.32 81.72-132.34 83.56-151 9.48h49.52c13.27 25.53 59.35 15.67 59.35-13.67v-14.37c-25.97 26.18-70.98 20.33-94.84-5.94-28.27-31.11-26.19-86.82 6.34-114.27 25.02-21.13 66.96-23.81 89.91 1.76Zm1.94 58.48c0-20.86-16.95-37.77-37.85-37.77s-37.85 16.91-37.85 37.77 16.95 37.77 37.85 37.77 37.85-16.91 37.85-37.77Zm624.61 8.82-105.03-69.4c3.95-5.19 9.66-9.68 16.39-10.36l155.68 50.32 3.89-3.17c-9.96-6.61-25.59-24.04-16.14-35.75 6.8-8.42 32.93-28.11 43.19-31.91s48.4-10.67 48.81 7.37c.56 24.39-52.53 60.97-68.73 77.25l43.12 77.3c1.93 6.03-3.88 9.93-7.38 13.71l-69.93-45.95 11.32-20.27-2.21-2.17c-27.44 21.74-51.99 47.17-84.83 61.13-92.35 39.26-98.47-39.02-49.63-93.73l3.41 2.7c-9.82 13.25-22.76 39.51-9.73 54.1 20.1 22.52 73.8-13.27 87.78-31.16Zm-762.82 10.5H766.34c5.51 28.28 39.41 36.99 62.46 22.73 1.39-.86 6.25-6.61 6.73-6.61h49.52c-18.45 43.17-65.21 61.28-109.42 47.16-74.81-23.89-71.2-139.2 6.88-156.85 63.48-14.35 111.94 29.77 106.06 93.57Zm-44.96-31.54c-10.18-35.4-65.98-34.74-76.56 0h76.56Z\"/><path class=\"cls-1\" d=\"M242.2 61.22c122.96-9.39 124.75 167.48 5.38 163.83-105.49-3.23-107.62-156.02-5.38-163.83Zm2.79 39.23c-52.47 6.11-44.65 95.06 15.07 84.43 48.68-8.66 42.43-91.13-15.07-84.43ZM1307.2 221.52h-41.44V206.1c-33.65 37.34-101.45 17.76-95.44-38.11 4.66-43.26 53.01-37 82.12-44.22 10.17-2.52 15.6-8.55 9.79-18.95-11.48-11.91-35.19-8.03-41.78 7.35h-46.01c6.74-29.64 31.34-48.94 61.48-51.15 34.46-2.53 65.54 9.19 70.48 46.69 4.69 35.65-1.85 77.52.8 113.8Zm-42.85-70.09c-12.61 5.53-51.7.65-52.03 19.97-.45 25.54 52.03 18.9 52.03-9.1v-10.86Zm219.16 70.09h-42.15v-92.87c0-40.87-59.71-34.52-59.71-.7v93.58h-42.15V64.51h41.44v14.72c22.59-27.97 72.38-23.13 91.59 6.38 21.47 32.97 6.34 97.43 10.96 135.91Z\"/><path class=\"cls-1\" d=\"M446.74 62.41v39.25c-23.45.32-44.95 17.07-44.95 41.71v78.15h-42.15V64.51h41.44v18.93c10.75-13.69 28.24-21.24 45.66-21.03Zm652.55 2.1h42.85v157.01h-42.85z\"/><ellipse class=\"cls-1\" cx=\"1120.83\" cy=\"26.9\" rx=\"26.95\" ry=\"26.9\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kwpj47\",\"data-framer-name\":\"Strawberry\",layoutDependency:layoutDependency,layoutId:\"zdXWO7wog\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wruy0v\",\"data-framer-name\":\"Strawberry\",fill:\"black\",intrinsicHeight:244,intrinsicWidth:1816,layoutDependency:layoutDependency,layoutId:\"FseV7nkln\",svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1815.57 244.23\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path class=\"cls-1\" d=\"M151.73 60.15h-26.61c-1.83-33.09-37.69-38.08-63.95-32.3-19.74 4.35-32.5 18.99-24.78 39.89 13.04 35.3 108.74 11.43 117.85 73.2C168.11 235.05-4.06 231.8.07 142.12h26.07c1.34 37.03 38.79 47.43 69.82 41.9 20.22-3.6 34.65-18.34 30.06-39.88-8.82-41.39-109.36-13.67-118.89-78.02-12.42-84.02 145.25-87.89 144.6-5.97Zm636.94 18.89 3.17 1.04c43.05-46.06 119.2-15.28 122.97 47.37 4.12 68.64-72.79 110.08-122.97 61.24l-3.17 1.07v15.44l-.8.8h-24.74V0h24.74l.8.8v78.24Zm42.47 4.16c-56.18 5.54-56.77 92.98-3.11 101.25 77.98 12.02 81.72-109.01 3.11-101.25ZM559.06 62.81l33.52 103.8 32.85-101.82 2.25-2.01 21.11.35 34.25 102.94 31.4-103.26h24.74l-42.65 143.1-25.41-.76-33.3-99.23-33.51 100.11-25.04-.56-45.48-142.66h25.27zm520.68 80.37H962.67c2.83 47.23 66.87 56.54 90.77 20.24l17.7 13.37-.2 1.49c-35.07 51.15-121.59 39.04-133.56-25.5-22.04-118.85 152.4-128.09 142.36-9.6Zm-26.61-23.42c-3.99-50.71-82.48-47.71-89.4 0h89.4Zm-536.9 86.23h-24.74l-.8-.8v-20.23l-2.96-.3c-24.14 37.34-101.26 34.77-96.56-20.48 3.74-44.09 68.28-40.5 99.51-47.1 6.91-43.2-67.75-46.36-69.96-6.38h-24.74c-2.61-66.53 118.74-70.47 120.24-3.45v98.72Zm-25.55-68.66c-17.67 5.24-66 2.36-72.77 23.28-4.95 15.29 5.12 25.06 19.84 26.2 30.91 2.4 50.64-20.32 52.93-49.48Zm836.23-74.52 42.3 106.99 40.71-106.99h26.87l-59.88 150.61c-9.53 30.56-36.55 32.01-64.1 30.36V219.3h23.15c9.64 0 18.18-7.94 19.85-17.16l-55.77-139.33h26.87ZM224.63 26.08v36.73h40.44v24.48h-40.44v72.66c0 12.54 8.13 22.09 21.02 22.09h19.42v24.48c-32.22.82-62.96.44-66-39.1-1.98-25.78 1.52-54.08.02-80.13h-30.86V63.87h19.42c5.04 0 11.44-5.75 11.44-10.91V26.08h25.54Zm76.09 36.73h25.54v143.18h-25.54zm806.69 0h25.54v143.18h-25.54zm102.7 0h25.54v143.18h-25.54z\"/><circle class=\"cls-1\" cx=\"1733.25\" cy=\"182.85\" r=\"27.47\"/><ellipse class=\"cls-1\" cx=\"1662.15\" cy=\"182.84\" rx=\"27.44\" ry=\"27.45\"/><circle class=\"cls-1\" cx=\"1669.59\" cy=\"118.6\" r=\"23.01\"/><ellipse class=\"cls-1\" cx=\"1614.77\" cy=\"44.3\" rx=\"23\" ry=\"23.01\"/><circle class=\"cls-1\" cx=\"1725.78\" cy=\"118.56\" r=\"23\"/><ellipse class=\"cls-1\" cx=\"1780.62\" cy=\"44.3\" rx=\"22.99\" ry=\"23\"/><ellipse class=\"cls-1\" cx=\"1774.81\" cy=\"137.73\" rx=\"20.54\" ry=\"20.55\"/><circle class=\"cls-1\" cx=\"1620.61\" cy=\"137.73\" r=\"20.54\"/><ellipse class=\"cls-1\" cx=\"1163.58\" cy=\"80.77\" rx=\"20.21\" ry=\"20.22\"/><ellipse class=\"cls-1\" cx=\"356.62\" cy=\"80.78\" rx=\"20.2\" ry=\"20.21\"/><circle class=\"cls-1\" cx=\"1266.27\" cy=\"80.77\" r=\"20.21\"/><circle class=\"cls-1\" cx=\"1697.7\" cy=\"24.37\" r=\"19.96\"/><ellipse class=\"cls-1\" cx=\"1731.88\" cy=\"60.46\" rx=\"18.3\" ry=\"18.31\"/><circle class=\"cls-1\" cx=\"1663.55\" cy=\"60.49\" r=\"18.3\"/><circle class=\"cls-1\" cx=\"1798.1\" cy=\"93.56\" r=\"17.48\"/><circle class=\"cls-1\" cx=\"1597.29\" cy=\"93.58\" r=\"17.46\"/><circle class=\"cls-1\" cx=\"1697.69\" cy=\"224.41\" r=\"15.36\"/><circle class=\"cls-1\" cx=\"1758.81\" cy=\"89.27\" r=\"11.54\"/><circle class=\"cls-1\" cx=\"1636.61\" cy=\"89.22\" r=\"11.53\"/><circle class=\"cls-1\" cx=\"1697.72\" cy=\"82.76\" r=\"11.53\"/><circle class=\"cls-1\" cx=\"1655.18\" cy=\"22.13\" r=\"11.51\"/><circle class=\"cls-1\" cx=\"1740.25\" cy=\"22.12\" r=\"11.5\"/><circle class=\"cls-1\" cx=\"1697.69\" cy=\"151.23\" r=\"10.17\"/></g></svg>',withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OXKu9.framer-69qlqp, .framer-OXKu9 .framer-69qlqp { display: block; }\",\".framer-OXKu9.framer-116y70q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-OXKu9 .framer-ktf4to-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-OXKu9 .framer-3lvn4a { align-content: center; align-items: center; aspect-ratio: 3.541935483870968 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 78px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 276px; }\",\".framer-OXKu9 .framer-1x095gt { aspect-ratio: 3.542056074766355 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 1px; }\",\".framer-OXKu9 .framer-1vu4rix { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90px; }\",\".framer-OXKu9 .framer-49d4av { aspect-ratio: 1.002169197396963 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 1px; }\",\".framer-OXKu9 .framer-fmvzur { align-content: center; align-items: center; aspect-ratio: 6.445544554455446 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 54px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 348px; }\",\".framer-OXKu9 .framer-1377uyr { aspect-ratio: 6.444444444444445 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 101px); position: relative; width: 1px; }\",\".framer-OXKu9 .framer-kwpj47 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 49px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 360px; }\",\".framer-OXKu9 .framer-1wruy0v { aspect-ratio: 7.442622950819672 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 89px); position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OXKu9.framer-116y70q, .framer-OXKu9 .framer-3lvn4a, .framer-OXKu9 .framer-1vu4rix, .framer-OXKu9 .framer-fmvzur, .framer-OXKu9 .framer-kwpj47 { gap: 0px; } .framer-OXKu9.framer-116y70q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OXKu9.framer-116y70q > :first-child { margin-top: 0px; } .framer-OXKu9.framer-116y70q > :last-child { margin-bottom: 0px; } .framer-OXKu9 .framer-3lvn4a > *, .framer-OXKu9 .framer-1vu4rix > *, .framer-OXKu9 .framer-fmvzur > *, .framer-OXKu9 .framer-kwpj47 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OXKu9 .framer-3lvn4a > :first-child, .framer-OXKu9 .framer-1vu4rix > :first-child, .framer-OXKu9 .framer-fmvzur > :first-child, .framer-OXKu9 .framer-kwpj47 > :first-child { margin-left: 0px; } .framer-OXKu9 .framer-3lvn4a > :last-child, .framer-OXKu9 .framer-1vu4rix > :last-child, .framer-OXKu9 .framer-fmvzur > :last-child, .framer-OXKu9 .framer-kwpj47 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfavfMgdex=withCSS(Component,css,\"framer-OXKu9\");export default FramerfavfMgdex;FramerfavfMgdex.displayName=\"Partnerlogoer\";FramerfavfMgdex.defaultProps={height:120,width:1200};addFonts(FramerfavfMgdex,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfavfMgdex\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"120\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./favfMgdex.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import*as React from\"react\";export function Calculator({gap}){const[value,setValue]=React.useState(2e6);const minValue=2e6;const maxValue=7e6;const step=1e5;const lineSpacing=12// Space between lines in each section\n;const savedValue=Math.round(value*.125);const expectedPrice=value-savedValue;// Calculate the left position as a percentage of the track width\nconst sliderPercent=(value-minValue)/(maxValue-minValue)*100;const handleDragStart=(e,isTouch=false)=>{e.preventDefault()// Prevents ghost image effect\n;const sliderTrack=e.currentTarget.parentElement;const rect=sliderTrack.getBoundingClientRect();const handleMove=event=>{let clientX=isTouch?event.touches[0].clientX:event.clientX;const newX=clientX-rect.left;let newValue=Math.round(minValue+newX/rect.width*(maxValue-minValue));newValue=Math.round(newValue/step)*step// Snap to 100,000 steps\n;if(newValue>=minValue&&newValue<=maxValue){setValue(newValue);}};const handleEnd=()=>{window.removeEventListener(isTouch?\"touchmove\":\"mousemove\",handleMove);window.removeEventListener(isTouch?\"touchend\":\"mouseup\",handleEnd);};window.addEventListener(isTouch?\"touchmove\":\"mousemove\",handleMove);window.addEventListener(isTouch?\"touchend\":\"mouseup\",handleEnd);};return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:gap,fontFamily:\"'Plus Jakarta Sans', sans-serif\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{textAlign:\"center\",width:\"100%\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:lineSpacing},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:20,fontWeight:500,margin:0},children:\"Hva koster boligen?\"}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",width:\"90%\",height:12,background:\"white\",borderRadius:6,margin:0},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:`${sliderPercent}%`,transform:\"translate(-50%, -50%)\",width:36,height:36,background:\"#B0AEFF\",borderRadius:\"50%\",cursor:\"pointer\",top:\"50%\",userSelect:\"none\",touchAction:\"none\"},onMouseDown:e=>handleDragStart(e,false),onTouchStart:e=>handleDragStart(e,true)})}),/*#__PURE__*/_jsxs(\"p\",{style:{fontSize:30,fontWeight:700,margin:0},children:[value.toLocaleString(),\" kr\"]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{textAlign:\"center\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:lineSpacing},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:20,fontWeight:500,margin:0},children:\"Forventet pris for samme bolig gjennom Eier:\"}),/*#__PURE__*/_jsxs(\"p\",{style:{fontSize:30,fontWeight:600,margin:0},children:[expectedPrice.toLocaleString(),\" kr\"]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{textAlign:\"center\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:lineSpacing},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:28,fontWeight:600,margin:0},children:\"Du kan spare:\"}),/*#__PURE__*/_jsx(\"div\",{style:{background:\"white\",borderRadius:\"9999px\",padding:\"20px 30px\",display:\"inline-block\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{fontSize:36,fontWeight:700,margin:0},children:[savedValue.toLocaleString(),\" kr\"]})})]})]});}// Property Controls\naddPropertyControls(Calculator,{gap:{type:ControlType.Number,title:\"Gap\",defaultValue:20,min:0,max:50}});\nexport const __FramerMetadata__ = {\"exports\":{\"Calculator\":{\"type\":\"reactComponent\",\"name\":\"Calculator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kalkis.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import QuoteComponent from\"#framer/local/canvasComponent/CNMP_9AJd/CNMP_9AJd.js\";import Partnerlogoer from\"#framer/local/canvasComponent/favfMgdex/favfMgdex.js\";import Accordion from\"#framer/local/canvasComponent/HTbyWJcv_/HTbyWJcv_.js\";import Knapp from\"#framer/local/canvasComponent/nD3Ln7B3E/nD3Ln7B3E.js\";import Navbar from\"#framer/local/canvasComponent/PWPb9RSR1/PWPb9RSR1.js\";import Footer from\"#framer/local/canvasComponent/vv9N7Y8gH/vv9N7Y8gH.js\";import{Calculator}from\"#framer/local/codeFile/JBNoTxh/Kalkis.js\";import Aktuelt from\"#framer/local/collection/gDhxtgb0E/gDhxtgb0E.js\";import*as sharedStyle from\"#framer/local/css/pFenEe_Q_/pFenEe_Q_.js\";import*as sharedStyle2 from\"#framer/local/css/pkDQBYsNW/pkDQBYsNW.js\";import*as sharedStyle1 from\"#framer/local/css/s1OWeekTH/s1OWeekTH.js\";import metadataProvider from\"#framer/local/webPageMetadata/aHPQcRPH5/aHPQcRPH5.js\";const NavbarFonts=getFonts(Navbar);const KnappFonts=getFonts(Knapp);const PartnerlogoerFonts=getFonts(Partnerlogoer);const QuoteComponentFonts=getFonts(QuoteComponent);const SlideshowFonts=getFonts(Slideshow);const CalculatorFonts=getFonts(Calculator);const EmbedFonts=getFonts(Embed);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={HwW0Zc7x8:\"(min-width: 810px) and (max-width: 1199px)\",nznh8Zzex:\"(max-width: 809px)\",oj9SdLRBS:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xrUCg\";const variantClassNames={HwW0Zc7x8:\"framer-v-1lp2m1z\",nznh8Zzex:\"framer-v-1cg3yhw\",oj9SdLRBS:\"framer-v-12isqbh\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"oj9SdLRBS\",Phone:\"nznh8Zzex\",Tablet:\"HwW0Zc7x8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oj9SdLRBS\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vfzXGYtIPiME0Qb2xD,UKDjAe_z6iME0Qb2xD,AKc9VuZENiME0Qb2xD,idiME0Qb2xD,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"nznh8Zzex\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"nznh8Zzex\")return false;return true;};const elementId=useRouteElementId(\"YPOQosrR2\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"oj9SdLRBS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12isqbh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v3kntg-container\",layoutScroll:true,nodeId:\"oGJlwrbnd\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{variant:\"rUVGnqrNK\"},nznh8Zzex:{variant:\"rUVGnqrNK\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"oGJlwrbnd\",layoutId:\"oGJlwrbnd\",style:{width:\"100%\"},variant:\"pmKRTc2b4\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgoson\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-804tgx\",\"data-framer-name\":\"Navbar-plass\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ry85q5\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnzv8b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xzhni5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Bli med n\\xe5r vi snur boligmarkedet p\\xe5 hodet!\"})}),className:\"framer-ka3yjb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:\"N\\xe5 kan du spare opp til 1 million kr ved ditt neste boligkj\\xf8p, og bruke besparelsen som egenkapital.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:\"Sikre deg en plass, og bidra til at vi kan realisere dr\\xf8mmen om et rettferdig boligmarked.\"})]}),className:\"framer-t4hun3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyq47\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nznh8Zzex:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+0+0+84+30+0+0+408+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+0+84+120+0+408+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nzifia-container\",nodeId:\"xGStz6Zkv\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"xGStz6Zkv\",j4nIBBhLl:resolvedLinks[0],layoutId:\"xGStz6Zkv\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Registrer n\\xe5\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YPOQosrR2\",webPageId:\"aHPQcRPH5\"},implicitPathVariables:undefined},{href:{hash:\":YPOQosrR2\",webPageId:\"aHPQcRPH5\"},implicitPathVariables:undefined},{href:{hash:\":YPOQosrR2\",webPageId:\"aHPQcRPH5\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nznh8Zzex:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+0+0+84+30+0+0+408+0+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+0+84+120+0+408+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsn5k0-container\",nodeId:\"J9Cp2CNmH\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks1[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks1[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:false,id:\"J9Cp2CNmH\",j4nIBBhLl:resolvedLinks1[0],layoutId:\"J9Cp2CNmH\",variant:\"Uk_IsMqUO\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"L\\xe6r mer\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 237 233\"><path d=\"M 37.103 215.437 C 37.103 206.005 71.157 198.359 113.164 198.359 C 155.172 198.359 189.226 206.005 189.226 215.437 C 189.226 224.869 155.172 232.515 113.164 232.515 C 71.157 232.515 37.103 224.869 37.103 215.437 Z\" fill=\"rgb(223,104,76)\" opacity=\"0.2\"></path><path d=\"M 29.171 145.446 L 36.911 126.656 C 39.315 120.813 46.43 118.582 51.745 121.992 L 65.27 130.672 C 70.63 134.112 71.52 141.585 67.115 146.184 L 53.028 160.898 C 49.677 164.397 44.315 165.033 40.237 162.415 L 33.063 157.811 C 28.947 155.171 27.309 149.966 29.173 145.446 Z M 136.6 171.337 L 127.703 153.067 C 124.936 147.387 127.998 140.591 134.082 138.894 L 149.562 134.57 C 155.696 132.857 161.874 137.161 162.383 143.508 L 164.01 163.808 C 164.397 168.635 161.308 173.06 156.64 174.362 L 148.43 176.655 C 143.719 177.972 138.739 175.733 136.6 171.337 Z M 16.844 19.696 C 33.34 11.641 53.275 18.485 61.336 34.97 L 31.448 49.565 L 16.844 19.697 Z\" fill=\"rgb(250,115,91)\"></path><path d=\"M 228.047 75.605 C 229.629 84.652 223.573 93.259 214.525 94.839 C 205.476 96.417 196.859 90.367 195.279 81.325 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 152.39 28.505 L 86.013 23.915 C 49.355 21.38 17.58 49.02 15.044 85.654 C 12.507 122.288 40.167 154.041 76.825 156.576 L 143.201 161.167 C 179.859 163.703 211.633 136.06 214.171 99.427 C 216.708 62.794 189.048 31.041 152.39 28.505 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 39.42 90.007 L 22.822 88.86 C 13.659 88.226 5.716 95.136 5.082 104.293 C 4.448 113.452 11.362 121.389 20.527 122.023 L 37.123 123.171 C 46.288 123.805 54.231 116.894 54.865 107.737 C 55.499 98.579 48.585 90.642 39.42 90.007 Z\" fill=\"rgb(255,213,201)\"></path><path d=\"M 20.167 107.999 L 20.397 104.684 C 20.496 102.869 19.119 101.312 17.305 101.186 C 15.492 101.061 13.913 102.414 13.76 104.224 L 13.529 107.54 C 13.431 109.354 14.808 110.911 16.622 111.037 C 18.435 111.162 20.014 109.81 20.167 107.999 Z M 36.759 109.146 L 36.989 105.831 C 37.069 104.028 35.696 102.49 33.895 102.366 C 32.094 102.241 30.522 103.575 30.353 105.371 L 30.122 108.687 C 30.009 109.889 30.557 111.058 31.553 111.74 C 32.55 112.423 33.838 112.512 34.919 111.974 C 36 111.435 36.704 110.353 36.758 109.146 Z\" fill=\"rgb(141,11,0)\"></path><path d=\"M 26.032 81.081 L 26.261 77.766 C 26.374 76.564 25.826 75.396 24.83 74.713 C 23.834 74.031 22.546 73.941 21.465 74.48 C 20.384 75.018 19.68 76.099 19.625 77.305 L 19.394 80.622 C 19.314 82.424 20.687 83.962 22.488 84.087 C 24.289 84.212 25.861 82.878 26.03 81.081 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 27.61 85.471 L 27.839 82.156 C 27.966 80.325 25.893 78.689 23.211 78.503 C 20.527 78.317 18.249 79.651 18.122 81.483 L 17.892 84.799 C 17.766 86.631 19.839 88.266 22.521 88.452 C 25.204 88.637 27.483 87.303 27.61 85.471 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 46.56 83.167 L 46.789 79.851 C 46.89 78.036 45.513 76.476 43.698 76.35 C 41.883 76.224 40.303 77.579 40.152 79.39 L 39.921 82.707 C 39.794 84.539 41.177 86.127 43.01 86.254 C 44.844 86.381 46.433 84.999 46.56 83.167 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 48.083 87.056 L 48.313 83.74 C 48.439 81.91 46.283 80.267 43.495 80.075 C 40.708 79.882 38.345 81.211 38.218 83.041 L 37.988 86.357 C 37.862 88.189 40.018 89.83 42.806 90.024 C 45.594 90.216 47.956 88.888 48.083 87.056 Z M 68.054 4.011 C 86.37 5.278 100.21 21.166 98.942 39.47 L 65.758 37.175 L 68.055 4.011 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 149.137 36.947 L 104.662 33.871 C 102.463 33.718 100.557 35.376 100.405 37.573 L 100.405 37.578 C 100.252 39.775 101.911 41.68 104.11 41.832 L 148.586 44.909 C 150.785 45.06 152.691 43.402 152.843 41.205 L 152.843 41.201 C 152.916 40.146 152.567 39.105 151.872 38.307 C 151.177 37.509 150.193 37.02 149.137 36.947 Z\" fill=\"rgb(246,85,52)\"></path><path d=\"M 158.324 175.527 L 150.624 156.722 C 148.229 150.874 151.725 144.291 157.905 142.988 L 173.633 139.673 C 179.864 138.358 185.75 143.053 185.849 149.418 L 186.163 169.781 C 186.237 174.623 182.868 178.839 178.127 179.839 L 169.784 181.597 C 164.998 182.607 160.174 180.052 158.324 175.527 Z M 53.908 163.703 L 57.456 143.696 C 58.558 137.474 65.033 133.777 70.953 135.976 L 86.019 141.572 C 91.989 143.79 94.455 150.901 91.135 156.334 L 80.511 173.713 C 77.984 177.844 72.883 179.609 68.341 177.922 L 60.348 174.954 C 55.763 173.251 53.051 168.516 53.907 163.703 Z\" fill=\"rgb(252,151,131)\"></path></svg>',svgContentId:11947644022},nznh8Zzex:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 272 268\"><path d=\"M 42.582 247.798 C 42.582 236.95 81.665 228.155 129.876 228.155 C 178.088 228.155 217.171 236.95 217.171 247.798 C 217.171 258.647 178.088 267.442 129.876 267.442 C 81.665 267.442 42.582 258.647 42.582 247.798 Z\" fill=\"rgb(223,104,76)\" opacity=\"0.2\"></path><path d=\"M 33.48 167.294 L 42.361 145.682 C 45.121 138.961 53.287 136.394 59.387 140.317 L 74.909 150.301 C 81.06 154.258 82.082 162.853 77.026 168.143 L 60.859 185.067 C 57.013 189.092 50.859 189.823 46.18 186.812 L 37.946 181.517 C 33.222 178.479 31.342 172.493 33.481 167.294 Z M 156.773 197.074 L 146.562 176.06 C 143.387 169.526 146.901 161.71 153.883 159.757 L 171.65 154.785 C 178.689 152.814 185.779 157.765 186.364 165.064 L 188.231 188.414 C 188.675 193.967 185.13 199.056 179.773 200.554 L 170.35 203.191 C 164.943 204.706 159.228 202.131 156.773 197.074 Z M 19.331 22.655 C 38.264 13.39 61.143 21.262 70.394 40.224 L 36.092 57.01 L 19.331 22.656 Z\" fill=\"rgb(250,115,91)\"></path><path d=\"M 261.724 86.962 C 263.54 97.368 256.59 107.268 246.206 109.085 C 235.821 110.9 225.931 103.941 224.118 93.541 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 174.895 32.787 L 98.715 27.507 C 56.644 24.591 20.177 56.383 17.265 98.521 C 14.354 140.657 46.099 177.18 88.171 180.096 L 164.348 185.376 C 206.42 188.294 242.887 156.499 245.8 114.362 C 248.711 72.226 216.966 35.704 174.895 32.787 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 45.242 103.528 L 26.193 102.208 C 15.676 101.479 6.56 109.426 5.833 119.959 C 5.105 130.494 13.04 139.624 23.558 140.352 L 42.605 141.673 C 53.124 142.402 62.239 134.454 62.967 123.921 C 63.695 113.388 55.76 104.258 45.242 103.528 Z\" fill=\"rgb(255,213,201)\"></path><path d=\"M 23.145 124.222 L 23.41 120.409 C 23.523 118.322 21.943 116.531 19.861 116.386 C 17.779 116.242 15.967 117.798 15.792 119.88 L 15.528 123.694 C 15.414 125.78 16.995 127.572 19.076 127.716 C 21.158 127.861 22.97 126.305 23.145 124.222 Z M 42.188 125.542 L 42.451 121.728 C 42.543 119.655 40.968 117.886 38.901 117.743 C 36.833 117.599 35.029 119.133 34.835 121.199 L 34.57 125.013 C 34.441 126.396 35.069 127.74 36.213 128.525 C 37.356 129.311 38.835 129.413 40.076 128.794 C 41.317 128.174 42.125 126.929 42.186 125.542 Z\" fill=\"rgb(141,11,0)\"></path><path d=\"M 29.876 93.261 L 30.139 89.447 C 30.268 88.065 29.64 86.721 28.497 85.936 C 27.353 85.151 25.875 85.048 24.635 85.667 C 23.394 86.287 22.586 87.53 22.523 88.917 L 22.258 92.732 C 22.166 94.806 23.742 96.574 25.809 96.718 C 27.876 96.861 29.68 95.327 29.874 93.261 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 31.687 98.31 L 31.95 94.497 C 32.096 92.391 29.717 90.509 26.638 90.295 C 23.558 90.082 20.944 91.616 20.798 93.723 L 20.534 97.537 C 20.39 99.644 22.769 101.525 25.847 101.738 C 28.926 101.952 31.542 100.418 31.687 98.31 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 53.435 95.66 L 53.699 91.846 C 53.814 89.758 52.234 87.964 50.151 87.819 C 48.068 87.674 46.255 89.232 46.081 91.316 L 45.817 95.131 C 45.671 97.238 47.258 99.065 49.362 99.211 C 51.466 99.357 53.29 97.767 53.435 95.66 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 55.184 100.133 L 55.448 96.319 C 55.592 94.214 53.118 92.325 49.919 92.104 C 46.719 91.881 44.008 93.41 43.863 95.515 L 43.598 99.329 C 43.454 101.437 45.928 103.324 49.128 103.547 C 52.327 103.768 55.038 102.241 55.184 100.133 Z M 78.104 4.613 C 99.126 6.071 115.009 24.345 113.553 45.399 L 75.469 42.759 L 78.105 4.613 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 171.162 42.497 L 120.118 38.959 C 117.595 38.783 115.407 40.69 115.232 43.217 L 115.232 43.223 C 115.057 45.75 116.961 47.941 119.484 48.116 L 170.529 51.655 C 173.053 51.829 175.24 49.922 175.415 47.395 L 175.415 47.39 C 175.499 46.177 175.098 44.979 174.3 44.061 C 173.503 43.144 172.374 42.581 171.162 42.497 Z\" fill=\"rgb(246,85,52)\"></path><path d=\"M 181.705 201.894 L 172.869 180.264 C 170.119 173.537 174.131 165.966 181.224 164.467 L 199.275 160.654 C 206.426 159.142 213.182 164.542 213.295 171.863 L 213.655 195.285 C 213.74 200.854 209.874 205.703 204.432 206.853 L 194.858 208.875 C 189.365 210.037 183.828 207.099 181.705 201.894 Z M 61.869 188.294 L 65.942 165.281 C 67.206 158.124 74.637 153.872 81.431 156.402 L 98.723 162.838 C 105.574 165.39 108.404 173.568 104.594 179.818 L 92.401 199.807 C 89.5 204.559 83.646 206.589 78.433 204.649 L 69.26 201.234 C 63.998 199.276 60.886 193.829 61.868 188.294 Z\" fill=\"rgb(252,151,131)\"></path></svg>',svgContentId:10078904833}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7kjc55\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 392 386\"><path d=\"M 61.368 356.904 C 61.368 341.278 117.694 328.611 187.175 328.611 C 256.656 328.611 312.981 341.278 312.981 356.904 C 312.981 372.529 256.656 385.196 187.175 385.196 C 117.694 385.196 61.368 372.529 61.368 356.904 Z\" fill=\"rgb(223,104,76)\" opacity=\"0.2\"></path><path d=\"M 48.25 240.953 L 61.05 209.825 C 65.028 200.145 76.796 196.449 85.587 202.099 L 107.957 216.478 C 116.822 222.177 118.295 234.557 111.008 242.177 L 87.708 266.552 C 82.166 272.349 73.297 273.402 66.553 269.065 L 54.687 261.439 C 47.878 257.064 45.17 248.441 48.252 240.953 Z M 225.938 283.846 L 211.222 253.579 C 206.645 244.168 211.71 232.911 221.772 230.098 L 247.377 222.936 C 257.523 220.098 267.74 227.229 268.584 237.742 L 271.275 271.373 C 271.915 279.37 266.804 286.7 259.084 288.857 L 245.504 292.656 C 237.712 294.838 229.476 291.129 225.938 283.846 Z M 27.86 32.63 C 55.145 19.285 88.117 30.623 101.45 57.934 L 52.015 82.112 L 27.86 32.632 Z\" fill=\"rgb(250,115,91)\"></path><path d=\"M 377.191 125.251 C 379.808 140.239 369.792 154.498 354.826 157.115 C 339.86 159.73 325.606 149.706 322.993 134.727 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 252.054 47.223 L 142.266 39.618 C 81.633 35.419 29.078 81.208 24.882 141.9 C 20.687 202.588 66.437 255.193 127.069 259.392 L 236.855 266.997 C 297.488 271.199 350.043 225.405 354.241 164.716 C 358.436 104.027 312.687 51.425 252.054 47.223 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 65.201 149.111 L 37.749 147.21 C 22.592 146.16 9.455 157.607 8.406 172.777 C 7.357 187.95 18.793 201.1 33.951 202.149 L 61.402 204.052 C 76.561 205.102 89.698 193.653 90.747 178.483 C 91.796 163.312 80.36 150.162 65.201 149.111 Z\" fill=\"rgb(255,213,201)\"></path><path d=\"M 33.356 178.917 L 33.737 173.424 C 33.901 170.419 31.623 167.839 28.623 167.631 C 25.623 167.423 23.012 169.664 22.759 172.663 L 22.378 178.156 C 22.215 181.161 24.492 183.741 27.492 183.95 C 30.492 184.158 33.103 181.917 33.356 178.917 Z M 60.8 180.818 L 61.18 175.325 C 61.313 172.338 59.042 169.791 56.063 169.584 C 53.083 169.378 50.483 171.587 50.204 174.563 L 49.822 180.056 C 49.635 182.048 50.541 183.984 52.189 185.115 C 53.837 186.246 55.968 186.394 57.757 185.501 C 59.545 184.609 60.709 182.816 60.798 180.818 Z\" fill=\"rgb(141,11,0)\"></path><path d=\"M 43.056 134.324 L 43.436 128.831 C 43.622 126.84 42.716 124.905 41.069 123.774 C 39.421 122.643 37.291 122.495 35.503 123.387 C 33.715 124.278 32.55 126.07 32.46 128.067 L 32.078 133.562 C 31.945 136.549 34.216 139.096 37.195 139.303 C 40.174 139.509 42.775 137.3 43.054 134.324 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 45.667 141.596 L 46.046 136.103 C 46.256 133.07 42.828 130.36 38.391 130.052 C 33.951 129.745 30.184 131.955 29.974 134.99 L 29.593 140.483 C 29.385 143.518 32.814 146.226 37.251 146.534 C 41.688 146.841 45.457 144.631 45.667 141.596 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 77.01 137.779 L 77.389 132.286 C 77.556 129.278 75.278 126.695 72.276 126.486 C 69.274 126.277 66.662 128.521 66.411 131.522 L 66.03 137.017 C 65.82 140.052 68.107 142.683 71.14 142.893 C 74.172 143.103 76.8 140.814 77.01 137.779 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 79.529 144.222 L 79.911 138.729 C 80.118 135.696 76.552 132.975 71.942 132.657 C 67.331 132.336 63.423 134.538 63.214 137.571 L 62.832 143.064 C 62.625 146.099 66.191 148.818 70.802 149.138 C 75.412 149.456 79.32 147.257 79.529 144.222 Z M 112.561 6.645 C 142.858 8.744 165.748 35.064 163.65 65.389 L 108.764 61.586 L 112.563 6.645 Z\" fill=\"rgb(252,151,131)\"></path><path d=\"M 246.674 61.209 L 173.111 56.112 C 169.475 55.86 166.323 58.606 166.07 62.246 L 166.07 62.254 C 165.818 65.894 168.562 69.049 172.198 69.302 L 245.763 74.398 C 249.4 74.649 252.552 71.903 252.804 68.263 L 252.804 68.256 C 252.925 66.508 252.347 64.783 251.198 63.461 C 250.048 62.14 248.421 61.329 246.674 61.209 Z\" fill=\"rgb(246,85,52)\"></path><path d=\"M 261.869 290.787 L 249.134 259.634 C 245.172 249.946 250.954 239.04 261.176 236.881 L 287.19 231.39 C 297.496 229.212 307.233 236.989 307.396 247.534 L 307.915 281.269 C 308.037 289.29 302.465 296.274 294.623 297.93 L 280.825 300.842 C 272.909 302.516 264.929 298.284 261.869 290.787 Z M 89.164 271.199 L 95.034 238.054 C 96.856 227.746 107.565 221.621 117.356 225.265 L 142.277 234.535 C 152.151 238.211 156.23 249.99 150.738 258.991 L 133.166 287.782 C 128.986 294.626 120.548 297.549 113.036 294.756 L 99.816 289.837 C 92.232 287.017 87.747 279.172 89.162 271.199 Z\" fill=\"rgb(252,151,131)\"></path></svg>',svgContentId:10267562518,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-147wb6z\",\"data-framer-name\":\"Seksjon (logoer)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nznh8Zzex:{y:(componentViewport?.y||0)+0+1068+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+786+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kbgak8-container\",nodeId:\"mUoDHuEG9\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Partnerlogoer,{height:\"100%\",id:\"mUoDHuEG9\",layoutId:\"mUoDHuEG9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rfvagc\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p8ktdy\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzkuqp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Se hvorfor disse profilene st\\xf8tter Eier\"})}),className:\"framer-1lc6bqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6osgv4 hidden-12isqbh hidden-1lp2m1z\",\"data-framer-name\":\"Karusell mobil\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1wsxw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y9KWoI3nE\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",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:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"y9KWoI3nE\",intervalControl:3,itemAmount:1,layoutId:\"y9KWoI3nE\",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(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wyaqcv-container\",\"data-framer-name\":\"Quote Mats 2\",inComponentSlot:true,name:\"Quote Mats 2\",nodeId:\"zQ9_IdTSk\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"zQ9_IdTSk\",k7JZ4Pkcm:\"Jeg heier p\\xe5 l\\xf8sninger som gir flere mennesker en trygg fremtid.\",layoutId:\"zQ9_IdTSk\",name:\"Quote Mats 2\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/ZUyUmVFXwcmxjugcIeGutNpW74.png\"},\"\"),style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"\u2013 Mats Zuccarello\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9yshn-container\",\"data-framer-name\":\"Quote Siv 2\",inComponentSlot:true,name:\"Quote Siv 2\",nodeId:\"WdDCPMw_e\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"WdDCPMw_e\",k7JZ4Pkcm:\"Jeg har alltid likt de som t\\xf8r \\xe5 utfordre det etablerte.\",layoutId:\"WdDCPMw_e\",name:\"Quote Siv 2\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/I6oI6GEnaTO17Fn7ZGmaMVFslU.png\"},\"\"),style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"\u2013 Siv Jensen\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t3bwo0-container\",\"data-framer-name\":\"Quote Lasse 2\",inComponentSlot:true,name:\"Quote Lasse 2\",nodeId:\"umaBNwyJl\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"umaBNwyJl\",k7JZ4Pkcm:\"Dette er boligmodellen jeg skulle \\xf8nske fantes da jeg skulle inn p\\xe5 boligmarkedet.\",layoutId:\"umaBNwyJl\",name:\"Quote Lasse 2\",style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"\u2013 Lasse Matberg\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8v6mi-container\",\"data-framer-name\":\"Quote Sander 2\",inComponentSlot:true,name:\"Quote Sander 2\",nodeId:\"T330E1jRR\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"T330E1jRR\",k7JZ4Pkcm:\"Dette er boligmarkedet slik det burde v\\xe6rt \u2013 rettferdig og b\\xe6rekraftig.\",layoutId:\"T330E1jRR\",name:\"Quote Sander 2\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/WgVvnRNdPTSVAs054QOvkzwrcg.png\"},\"\"),style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"\u2013 Sander Sagosen\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f939cy-container\",\"data-framer-name\":\"Quote Silje 2\",inComponentSlot:true,name:\"Quote Silje 2\",nodeId:\"oSrH0vHqB\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"oSrH0vHqB\",k7JZ4Pkcm:\"Jeg st\\xf8tter Eier fordi jeg mener flere fortjener \\xe5 eie sitt eget hjem.\",layoutId:\"oSrH0vHqB\",name:\"Quote Silje 2\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/Kn6JnIGPJvPdI6KHaLBbkQCoRQw.png\"},\"\"),style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"\u2013 Silje Norendal\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yj5ibu-container\",\"data-framer-name\":\"Quote Asyllandslaget 2\",inComponentSlot:true,name:\"Quote Asyllandslaget 2\",nodeId:\"pLQDLSico\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"pLQDLSico\",k7JZ4Pkcm:\"Eier \u2014 s\\xe5 du slipper \\xe5 leie for alltid.\",layoutId:\"pLQDLSico\",name:\"Quote Asyllandslaget 2\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/YBmLQEIvrTLRnsSSG9xdgjVkcs.png\"},\"\"),style:{width:\"100%\"},variant:\"uFcRdHpqq\",width:\"100%\",WtXT9BilM:\"Asyllandslaget\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r00DT1z_l\"},implicitPathVariables:undefined},{href:{webPageId:\"r00DT1z_l\"},implicitPathVariables:undefined},{href:{webPageId:\"r00DT1z_l\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nznh8Zzex:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 60px)`,y:(componentViewport?.y||0)+0+1188+0+0+60+0+0+615}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+906+0+0+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-txihwa-container\",nodeId:\"pQ_2R05xa\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks2[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks2[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"pQ_2R05xa\",j4nIBBhLl:resolvedLinks2[0],layoutId:\"pQ_2R05xa\",variant:\"YBtCFXnLK\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-b5e7ea1b-8938-4f1b-b000-7ec987c74684, rgb(26, 26, 26))\",Z3eKIoNtC:\"Alle ambassad\\xf8rer\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11cv6dz hidden-1cg3yhw\",\"data-framer-name\":\"Karusell desktop\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18jr6iw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N1zmyhbwdCrkT4rqfX\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",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:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"N1zmyhbwdCrkT4rqfX\",intervalControl:3,itemAmount:1,layoutId:\"N1zmyhbwdCrkT4rqfX\",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(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3uenyh-container\",\"data-framer-name\":\"Quote Mats 1\",inComponentSlot:true,name:\"Quote Mats 1\",nodeId:\"hizEvnFgZ\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"hizEvnFgZ\",k7JZ4Pkcm:\"Jeg heier p\\xe5 l\\xf8sninger som gir flere mennesker en trygg fremtid.\",layoutId:\"hizEvnFgZ\",name:\"Quote Mats 1\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/ZUyUmVFXwcmxjugcIeGutNpW74.png\"},\"\"),style:{width:\"100%\"},variant:\"UtcAGL1SX\",width:\"100%\",WtXT9BilM:\"\u2013 Mats Zuccarello\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yr2o89-container\",\"data-framer-name\":\"Quote Siv 1\",inComponentSlot:true,name:\"Quote Siv 1\",nodeId:\"Z4iqjbXHn\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"Z4iqjbXHn\",k7JZ4Pkcm:\"Jeg har alltid likt de som t\\xf8r \\xe5 utfordre det etablerte.\",layoutId:\"Z4iqjbXHn\",name:\"Quote Siv 1\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/I6oI6GEnaTO17Fn7ZGmaMVFslU.png\"},\"\"),style:{width:\"100%\"},variant:\"K9TInKUph\",width:\"100%\",WtXT9BilM:\"\u2013 Siv Jensen\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pa3u6o-container\",\"data-framer-name\":\"Quote Lasse 1\",inComponentSlot:true,name:\"Quote Lasse 1\",nodeId:\"QUjS1LA1h\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"QUjS1LA1h\",k7JZ4Pkcm:\"Dette er boligmodellen jeg skulle \\xf8nske fantes da jeg skulle inn p\\xe5 boligmarkedet.\",layoutId:\"QUjS1LA1h\",name:\"Quote Lasse 1\",style:{width:\"100%\"},variant:\"UtcAGL1SX\",width:\"100%\",WtXT9BilM:\"\u2013 Lasse Matberg\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4ddnu-container\",\"data-framer-name\":\"Quote Sander 1\",inComponentSlot:true,name:\"Quote Sander 1\",nodeId:\"i6Crh6MF6\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"i6Crh6MF6\",k7JZ4Pkcm:\"Dette er boligmarkedet slik det burde v\\xe6rt \u2013 rettferdig og b\\xe6rekraftig.\",layoutId:\"i6Crh6MF6\",name:\"Quote Sander 1\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/WgVvnRNdPTSVAs054QOvkzwrcg.png\"},\"\"),style:{width:\"100%\"},variant:\"K9TInKUph\",width:\"100%\",WtXT9BilM:\"\u2013 Sander Sagosen\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11pp5af-container\",\"data-framer-name\":\"Quote Silje 1\",inComponentSlot:true,name:\"Quote Silje 1\",nodeId:\"xRlI0Zkn1\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"xRlI0Zkn1\",k7JZ4Pkcm:\"Jeg st\\xf8tter Eier fordi jeg mener flere fortjener \\xe5 eie sitt eget hjem.\",layoutId:\"xRlI0Zkn1\",name:\"Quote Silje 1\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/Kn6JnIGPJvPdI6KHaLBbkQCoRQw.png\"},\"\"),style:{width:\"100%\"},variant:\"UtcAGL1SX\",width:\"100%\",WtXT9BilM:\"\u2013 Silje Norendal\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ds5z88-container\",\"data-framer-name\":\"Quote Asyllandslaget 1\",inComponentSlot:true,name:\"Quote Asyllandslaget 1\",nodeId:\"f0SqzkoZh\",rendersWithMotion:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(QuoteComponent,{height:\"100%\",id:\"f0SqzkoZh\",k7JZ4Pkcm:\"Eier \u2014 s\\xe5 du slipper \\xe5 leie for alltid.\",layoutId:\"f0SqzkoZh\",name:\"Quote Asyllandslaget 1\",pq6YzXNw2:addImageAlt({src:\"https://framerusercontent.com/images/YBmLQEIvrTLRnsSSG9xdgjVkcs.png\"},\"\"),style:{width:\"100%\"},variant:\"K9TInKUph\",width:\"100%\",WtXT9BilM:\"Asyllandslaget\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lter4e\",\"data-framer-name\":\"Seksjon\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dau82\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16erm1v\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:608,intrinsicWidth:503,svg:'<svg width=\"503\" height=\"608\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"19\" y=\"46.522\" width=\"186.082\" height=\"74.433\" rx=\"18.608\" fill=\"#F7F7FF\"/><rect x=\"84.13\" y=\"120.953\" width=\"120.953\" height=\"74.433\" rx=\"18.608\" transform=\"rotate(-90 84.13 120.953)\" fill=\"#F7F7FF\"/><rect x=\"301\" y=\"97.52\" width=\"186.082\" height=\"93.041\" rx=\"18.608\" fill=\"#F7F7FF\"/><rect x=\"347.52\" y=\"190.562\" width=\"139.562\" height=\"93.041\" rx=\"18.608\" transform=\"rotate(-90 347.52 190.562)\" fill=\"#F7F7FF\"/><path fill=\"#FAE7A3\" d=\"M.378 354.433h125.131v253.241H.378z\"/><path fill=\"#E8C257\" d=\"M125.509 354.433h59.586v253.241h-59.586zM24.213 364.86h23.834v35.752H24.213zm0 55.118h23.834v35.752H24.213zm0 55.117h23.834v35.752H24.213zm0 55.117h23.834v35.752H24.213zm46.18-165.352h23.834v35.752H70.393zm0 55.118h23.834v35.752H70.393zm0 55.117h23.834v35.752H70.393zm0 55.117h23.834v35.752H70.393z\"/><path fill=\"#FAE7A3\" d=\"M132.958 364.86h13.692v35.752h-13.692zm0 55.118h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692zm26.533-165.352h13.692v35.752h-13.692zm0 55.118h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692zM.378 229.302h125.131v125.131H.378z\"/><path fill=\"#E8C257\" d=\"M125.509 229.302h59.586v125.131h-59.586zM24.213 254.626h23.834v35.752H24.213zm0 55.117h23.834v35.752H24.213zm46.179-55.117h23.834v35.752H70.392zm0 55.117h23.834v35.752H70.392z\"/><path fill=\"#FAE7A3\" d=\"M132.958 254.626h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692zm26.534-55.117h13.692v35.752h-13.692zm0 55.117h13.692v35.752h-13.692z\"/><path fill=\"#E8C257\" d=\"M.378 214.405h125.131v14.897H.378z\"/><path fill=\"#FAE7A3\" d=\"M125.509 214.405h59.586v14.897h-59.586z\"/><path stroke=\"#B38A18\" stroke-width=\"2.979\" d=\"m238.723 607.677-.222-93.674m.009-63.007.213-93.587m-10.426-1.487h19.365m-19.365 250.262h19.365\"/><path d=\"M211.122 499.199v-26.635h9.402c5.292 0 8.902 3.182 8.902 8.223s-3.61 8.222-8.902 8.222h-5.899v10.19h-3.503Zm3.503-13.407h6.007c3.181 0 5.255-1.931 5.255-5.005 0-3.075-2.074-5.006-5.255-5.006h-6.007v10.011Zm19.146 13.407v-19.27h3.254v2.288c1.001-1.681 2.753-2.503 5.112-2.503h1.18v3.146h-1.68c-2.717 0-4.541 1.788-4.541 4.862v11.477h-3.325Zm12.5-22.345v-4.29h3.324v4.29h-3.324Zm0 22.345v-19.27h3.324v19.27h-3.324Zm15.384.429c-3.861 0-6.9-2.038-8.08-5.292l2.645-1.287c1.109 2.324 3.111 3.719 5.435 3.719 2.073 0 3.646-1.073 3.646-2.718 0-1.68-1.716-2.323-2.895-2.645l-2.896-.822c-3.468-.966-5.006-2.896-5.006-5.399 0-3.432 2.896-5.684 6.686-5.684 3.361 0 6.292 1.823 7.436 4.898l-2.717 1.251c-.858-2.002-2.717-3.254-4.826-3.254-1.931 0-3.182 1.073-3.182 2.575 0 1.68 1.501 2.252 2.645 2.574l3.147.929c3.11.894 4.969 2.896 4.969 5.542 0 3.289-2.896 5.613-7.007 5.613Z\" fill=\"#B38A18\"/><path opacity=\".5\" fill=\"#F0F0FF\" d=\"M0 214.405h184.717v140.028H0z\"/><rect x=\"34.642\" y=\"142.902\" width=\"120.662\" height=\"53.628\" rx=\"26.814\" fill=\"#fff\"/><path d=\"M64.916 181.216h-15.81v-23.12h15.81v4.42h-10.71v4.862h9.01v4.25h-9.01v5.168h10.71v4.42Zm19.877 0h-15.3v-3.74h5.372v-9.86h-5.372v-3.74h15.3v3.74H79.42v9.86h5.372v3.74Zm-5.678-19.788H75.17v-4.964h3.944v4.964Zm26.88 12.682H94.027v3.808a74.015 74.015 0 0 0 5.372-.238c1.61-.136 3.525-.34 5.746-.612l-.204 4.148a54.676 54.676 0 0 1-4.08.374 67.235 67.235 0 0 1-3.842.136c-1.904 0-3.422-.272-4.556-.816-1.133-.544-1.96-1.394-2.482-2.55-.521-1.156-.782-2.708-.782-4.658v-2.21c0-2.788.658-4.839 1.972-6.154 1.338-1.314 3.457-1.972 6.358-1.972 2.947 0 5.089.658 6.426 1.972 1.36 1.315 2.04 3.366 2.04 6.154v2.618Zm-4.828-6.596a46.297 46.297 0 0 0-3.638-.17c-1.156 0-2.323.057-3.502.17v3.196h7.14v-3.196Zm24.569-4.148c.544 0 .997.046 1.36.136v4.318a6.13 6.13 0 0 0-.85-.068c-1.065 0-2.233.329-3.502.986-1.247.658-2.686 1.632-4.318 2.924v5.814h7.344v3.74h-16.354v-3.74h4.25v-9.86h-4.25v-3.74h7.888l.816 3.264c1.496-1.269 2.845-2.21 4.046-2.822 1.224-.634 2.414-.952 3.57-.952Zm9.983 17.85h-5.032v-6.188h5.032v6.188Z\" fill=\"#F13A15\"/><path fill=\"#E8C257\" d=\"M70.394 196.53h5.959v17.876h-5.959zm44.688 0h5.959v17.876h-5.959z\"/><path d=\"m366.22 601.155-2.734-14.988c-.851-4.66 2.731-8.949 7.463-8.949h12.044c4.773 0 8.362 4.354 7.449 9.039l-2.922 14.988a7.587 7.587 0 0 1-7.448 6.135h-6.389a7.585 7.585 0 0 1-7.463-6.225Zm63.521 0-2.734-14.988c-.852-4.66 2.73-8.949 7.463-8.949h12.044c4.772 0 8.361 4.354 7.449 9.039l-2.922 14.988a7.588 7.588 0 0 1-7.449 6.135h-6.388a7.583 7.583 0 0 1-7.463-6.225Zm-90.073-104.523c11.914-6.878 27.17-2.791 34.048 9.124l-21.585 12.462-12.463-21.586Z\" fill=\"#FA735B\"/><path d=\"M502.265 534.097c0 6.886-5.58 12.462-12.463 12.462-6.882 0-12.462-5.58-12.462-12.462h24.925Z\" fill=\"#FC9783\"/><path d=\"M441.445 496.211h-49.854c-27.533 0-49.854 22.32-49.854 49.854s22.321 49.854 49.854 49.854h49.854c27.534 0 49.854-22.32 49.854-49.854s-22.32-49.854-49.854-49.854Z\" fill=\"#FC9783\"/><path d=\"M360.181 548.058h-12.466c-6.883 0-12.463 5.579-12.463 12.462s5.58 12.463 12.463 12.463h12.466c6.883 0 12.462-5.58 12.462-12.463 0-6.883-5.579-12.462-12.462-12.462Z\" fill=\"#FFD5C9\"/><path d=\"M346.716 562.51v-2.492a2.493 2.493 0 1 0-4.985 0v2.492a2.493 2.493 0 1 0 4.985 0Zm12.466 0v-2.492a2.493 2.493 0 1 0-4.985 0v2.492a2.493 2.493 0 1 0 4.985 0Z\" fill=\"#B01200\"/><path d=\"M349.709 542.074v-2.493a2.493 2.493 0 0 0-4.985 0v2.493a2.492 2.492 0 0 0 4.985 0Zm15.452.496v-2.493a2.492 2.492 0 0 0-4.985 0v2.493a2.493 2.493 0 1 0 4.985 0Z\" fill=\"#000\"/><path d=\"M377.128 482.25c13.757 0 24.925 11.167 24.925 24.925h-24.925V482.25Z\" fill=\"#FC9783\"/><path d=\"M439.451 502.693h-33.406a2.99 2.99 0 0 0-2.99 2.991v.003a2.99 2.99 0 0 0 2.99 2.991h33.406a2.99 2.99 0 0 0 2.99-2.991v-.003a2.99 2.99 0 0 0-2.99-2.991Z\" fill=\"#F65534\"/><path d=\"m444.159 601.155-2.734-14.988c-.852-4.66 2.73-8.949 7.463-8.949h12.044c4.772 0 8.361 4.354 7.449 9.039l-2.922 14.988a7.588 7.588 0 0 1-7.449 6.135h-6.388a7.583 7.583 0 0 1-7.463-6.225Zm-63.522 0-2.734-14.988c-.851-4.66 2.731-8.949 7.463-8.949h12.044c4.773 0 8.362 4.354 7.449 9.039l-2.922 14.988a7.587 7.587 0 0 1-7.448 6.135H388.1a7.585 7.585 0 0 1-7.463-6.225Z\" fill=\"#FC9783\"/><rect x=\"406.115\" y=\"471.865\" width=\"32.772\" height=\"32.772\" rx=\"16.386\" fill=\"#FCE6A8\" stroke=\"#EFC047\" stroke-width=\"2.979\"/><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"196\" y=\"270\" width=\"244\" height=\"186\"><path fill=\"#D9D9D9\" d=\"M196 270h105v25H196zm186 86h58v100h-58z\"/></mask><g mask=\"url(#a)\"><path d=\"M199.993 272.503a1.489 1.489 0 0 0 0 2.979v-2.979Zm220.905 179.811a1.49 1.49 0 0 0 2.107 0l9.48-9.48a1.488 1.488 0 1 0-2.106-2.106l-8.427 8.426-8.427-8.426a1.49 1.49 0 0 0-2.107 2.106l9.48 9.48ZM203.049 275.496a1.49 1.49 0 0 0 .027-2.979l-.027 2.979Zm6.133-2.868a1.49 1.49 0 0 0-.082 2.979l.082-2.979Zm5.939 3.201a1.49 1.49 0 1 0 .138-2.976l-.138 2.976Zm6.249-2.633a1.489 1.489 0 1 0-.196 2.973l.196-2.973Zm5.8 3.426a1.49 1.49 0 1 0 .255-2.968l-.255 2.968Zm6.357-2.384a1.49 1.49 0 0 0-.314 2.963l.314-2.963Zm5.653 3.658a1.49 1.49 0 0 0 .375-2.956l-.375 2.956Zm6.453-2.119a1.49 1.49 0 0 0-.438 2.947l.438-2.947Zm5.493 3.893a1.49 1.49 0 1 0 .501-2.937l-.501 2.937Zm6.539-1.837a1.489 1.489 0 1 0-.567 2.925l.567-2.925Zm5.319 4.133a1.49 1.49 0 0 0 .632-2.912l-.632 2.912Zm6.611-1.542a1.49 1.49 0 0 0-.7 2.896l.7-2.896Zm5.13 4.376a1.49 1.49 0 1 0 .767-2.879l-.767 2.879Zm6.668-1.23a1.49 1.49 0 0 0-.837 2.86l.837-2.86Zm4.922 4.621a1.49 1.49 0 1 0 .906-2.838l-.906 2.838Zm6.709-.905a1.489 1.489 0 1 0-.977 2.815l.977-2.815Zm4.696 4.866a1.49 1.49 0 1 0 1.048-2.789l-1.048 2.789Zm6.733-.566a1.49 1.49 0 1 0-1.121 2.76l1.121-2.76Zm4.446 5.108a1.49 1.49 0 0 0 1.195-2.729l-1.195 2.729Zm6.739-.214a1.489 1.489 0 1 0-1.267 2.696l1.267-2.696Zm4.175 5.346a1.489 1.489 0 1 0 1.342-2.66l-1.342 2.66Zm6.749.162a1.49 1.49 0 1 0-1.415 2.621l1.415-2.621Zm3.856 5.564a1.489 1.489 0 1 0 1.489-2.58l-1.489 2.58Zm6.742.554a1.49 1.49 0 1 0-1.564 2.536l1.564-2.536Zm3.508 5.766a1.49 1.49 0 0 0 1.637-2.489l-1.637 2.489Zm6.71.957a1.489 1.489 0 1 0-1.711 2.439l1.711-2.439Zm3.162 5.968a1.49 1.49 0 1 0 1.784-2.386l-1.784 2.386Zm6.628 1.353a1.49 1.49 0 0 0-1.857 2.33l1.857-2.33Zm2.801 6.162a1.489 1.489 0 1 0 1.928-2.271l-1.928 2.271Zm6.519 1.753a1.49 1.49 0 0 0-1.999 2.209l1.999-2.209Zm2.409 6.329a1.49 1.49 0 1 0 2.069-2.144l-2.069 2.144Zm6.404 2.178a1.49 1.49 0 0 0-2.138 2.076l2.138-2.076Zm1.977 6.455a1.49 1.49 0 0 0 2.205-2.004l-2.205 2.004Zm6.254 2.602a1.49 1.49 0 0 0-2.27 1.929l2.27-1.929Zm1.552 6.583a1.489 1.489 0 1 0 2.334-1.852l-2.334 1.852Zm6.05 3a1.489 1.489 0 1 0-2.396 1.771l2.396-1.771Zm1.104 6.68a1.49 1.49 0 0 0 2.455-1.687l-2.455 1.687Zm5.835 3.422a1.489 1.489 0 1 0-2.513 1.6l2.513-1.6Zm.625 6.727a1.49 1.49 0 1 0 2.568-1.51l-2.568 1.51Zm5.578 3.828a1.49 1.49 0 1 0-2.621 1.417l2.621-1.417Zm.145 6.765a1.49 1.49 0 0 0 2.671-1.32l-2.671 1.32Zm5.283 4.219a1.49 1.49 0 0 0-2.718 1.22l2.718-1.22Zm-.358 6.748a1.49 1.49 0 1 0 2.761-1.118l-2.761 1.118Zm4.956 4.611a1.491 1.491 0 0 0-2.802 1.013l2.802-1.013Zm-.867 6.708a1.49 1.49 0 0 0 2.839-.904l-2.839.904Zm4.583 4.967a1.49 1.49 0 1 0-2.872.792l2.872-.792Zm-1.388 6.619a1.49 1.49 0 0 0 2.901-.678l-2.901.678Zm4.177 5.323a1.489 1.489 0 1 0-2.926.561l2.926-.561Zm-1.916 6.485a1.49 1.49 0 1 0 2.946-.44l-2.946.44Zm3.727 5.64a1.49 1.49 0 0 0-2.963.317l2.963-.317Zm-2.448 6.305a1.49 1.49 0 1 0 2.973-.193l-2.973.193Zm3.238 5.94a1.49 1.49 0 1 0-2.978.064l2.978-.064ZM199.993 275.482c1.022 0 2.041.005 3.056.014l.027-2.979c-1.024-.01-2.052-.014-3.083-.014v2.979Zm9.107.125c2.02.055 4.027.13 6.021.222l.138-2.976a333.393 333.393 0 0 0-6.077-.225l-.082 2.979Zm12.074.562c2.014.132 4.012.283 5.996.453l.255-2.968a306.671 306.671 0 0 0-6.055-.458l-.196 2.973Zm12.039 1.032c2.004.213 3.993.444 5.967.695l.375-2.956a297.035 297.035 0 0 0-6.028-.702l-.314 2.963Zm11.982 1.523c1.994.296 3.971.612 5.931.946l.501-2.937c-1.982-.338-3.98-.657-5.994-.956l-.438 2.947Zm11.903 2.034c1.98.383 3.942.786 5.886 1.208l.632-2.912c-1.966-.427-3.95-.834-5.951-1.221l-.567 2.925Zm11.797 2.562c1.962.474 3.905.967 5.83 1.48l.767-2.879a259.066 259.066 0 0 0-5.897-1.497l-.7 2.896Zm11.661 3.11c1.939.567 3.859 1.154 5.759 1.761l.906-2.838a244.626 244.626 0 0 0-5.828-1.783l-.837 2.86Zm11.491 3.671c1.912.663 3.802 1.347 5.673 2.051l1.048-2.789a239.626 239.626 0 0 0-5.744-2.077l-.977 2.815Zm11.285 4.245a229.45 229.45 0 0 1 5.567 2.348l1.195-2.729a233.245 233.245 0 0 0-5.641-2.379l-1.121 2.76Zm11.039 4.83a221.24 221.24 0 0 1 5.442 2.65l1.342-2.66a223.727 223.727 0 0 0-5.517-2.686l-1.267 2.696Zm10.776 5.433c1.781.962 3.538 1.943 5.271 2.943l1.489-2.58a215.603 215.603 0 0 0-5.345-2.984l-1.415 2.621Zm10.449 6.033a205.673 205.673 0 0 1 5.072 3.23l1.637-2.489a205.728 205.728 0 0 0-5.145-3.277l-1.564 2.536Zm10.071 6.626a200.307 200.307 0 0 1 4.873 3.529l1.784-2.386a203.62 203.62 0 0 0-4.946-3.582l-1.711 2.439Zm9.644 7.212a193.714 193.714 0 0 1 4.658 3.832l1.928-2.271a195.293 195.293 0 0 0-4.729-3.891l-1.857 2.33Zm9.178 7.794a188.313 188.313 0 0 1 4.408 4.12l2.069-2.144a192.289 192.289 0 0 0-4.478-4.185l-1.999 2.209Zm8.674 8.374a181.253 181.253 0 0 1 4.115 4.379l2.205-2.004a185.32 185.32 0 0 0-4.182-4.451l-2.138 2.076Zm8.099 8.91a179.83 179.83 0 0 1 3.822 4.654l2.334-1.852a182.054 182.054 0 0 0-3.886-4.731l-2.27 1.929Zm7.476 9.425c1.2 1.623 2.367 3.26 3.5 4.909l2.455-1.687a176.411 176.411 0 0 0-3.559-4.993l-2.396 1.771Zm6.822 9.931a173.354 173.354 0 0 1 3.138 5.127l2.568-1.51a171.87 171.87 0 0 0-3.193-5.217l-2.513 1.6Zm6.095 10.372c.958 1.773 1.88 3.556 2.766 5.348l2.671-1.32a167.21 167.21 0 0 0-2.816-5.445l-2.621 1.417Zm5.331 10.787a162.87 162.87 0 0 1 2.36 5.528l2.761-1.118a163.132 163.132 0 0 0-2.403-5.63l-2.718 1.22Zm4.514 11.152a155.187 155.187 0 0 1 1.935 5.695l2.839-.904a160.519 160.519 0 0 0-1.972-5.804l-2.802 1.013Zm3.646 11.454c.535 1.939 1.03 3.881 1.484 5.827l2.901-.678a153.853 153.853 0 0 0-1.513-5.941l-2.872.792Zm2.735 11.711c.378 1.974.715 3.949 1.01 5.924l2.946-.44a149.006 149.006 0 0 0-1.03-6.045l-2.926.561Zm1.774 11.881c.215 1.997.386 3.994.515 5.988l2.973-.193a145.018 145.018 0 0 0-.525-6.112l-2.963.317Zm.775 11.992c.021 1 .032 2 .032 2.998h2.979c0-1.02-.011-2.041-.033-3.062l-2.978.064Z\" fill=\"#B38A18\"/></g><path d=\"M318.164 307.399v-17.756h6.268c3.528 0 5.935 2.121 5.935 5.482 0 3.36-2.407 5.482-5.935 5.482H320.5v6.792h-2.336Zm2.336-8.938h4.004c2.121 0 3.503-1.287 3.503-3.336 0-2.05-1.382-3.337-3.503-3.337H320.5v6.673Zm12.764 8.938v-12.846h2.169v1.525c.667-1.12 1.835-1.668 3.408-1.668h.787v2.097h-1.121c-1.811 0-3.027 1.192-3.027 3.242v7.65h-2.216Zm14.434.286c-3.694 0-6.626-2.836-6.626-6.721 0-3.837 2.86-6.697 6.626-6.697 3.718 0 6.602 2.836 6.602 6.697 0 3.933-2.979 6.721-6.602 6.721Zm0-2.145c2.384 0 4.243-1.954 4.243-4.576 0-2.598-1.859-4.552-4.243-4.552-2.431 0-4.29 1.954-4.29 4.552 0 2.622 1.859 4.576 4.29 4.576Zm10.433 1.859v-10.725h-2.455v-2.121h2.455v-.906c0-2.765 2.002-4.29 4.481-4.29.333 0 .834.047 1.12.119v1.978a5.618 5.618 0 0 0-.858-.071c-1.478 0-2.503.619-2.503 2.264v.906h7.508v12.846h-2.216v-10.725h-5.292v10.725h-2.24Zm18.059.143c-2.502 0-3.909-1.477-3.909-4.099v-6.769h-2.335v-2.121h.476c1.144 0 1.859-.739 1.859-1.907v-1.049h2.217v2.956h2.884v2.121h-2.884v6.697c0 1.311.572 2.145 2.145 2.145.239 0 .596-.023.882-.071v1.954a6.654 6.654 0 0 1-1.335.143Zm9.45 0c-2.502 0-3.909-1.477-3.909-4.099v-6.769h-2.335v-2.121h.476c1.144 0 1.859-.739 1.859-1.907v-1.049h2.217v2.956h2.884v2.121h-2.884v6.697c0 1.311.572 2.145 2.145 2.145.239 0 .596-.023.882-.071v1.954a6.654 6.654 0 0 1-1.335.143Zm9.792.143c-3.694 0-6.435-2.884-6.435-6.745s2.693-6.673 6.245-6.673c3.789 0 6.03 2.979 6.03 6.173 0 .357-.048.81-.119 1.191h-9.82c.119 2.479 1.954 4.028 4.123 4.028 1.716 0 2.86-.881 3.599-2.121l1.859.954c-.786 1.787-2.86 3.193-5.482 3.193Zm-.19-11.44c-1.931 0-3.552 1.311-3.861 3.48h7.484c-.072-2.05-1.645-3.48-3.623-3.48Zm8.92 11.154v-12.846h2.169v1.573c.763-1.192 2.074-1.859 3.67-1.859 2.741 0 4.815 2.049 4.815 4.814v8.318h-2.24v-7.603c0-2.121-1.264-3.384-3.075-3.384-1.812 0-3.122 1.287-3.122 3.384v7.603h-2.217Zm24.071 5.244c-2.741 0-4.886-1.359-5.744-3.361l2.074-.953c.452 1.216 1.74 2.169 3.646 2.169 2.169 0 3.933-1.287 3.933-3.647v-1.787c-.953 1.311-2.526 2.026-4.266 2.026-3.623 0-6.293-2.789-6.293-6.412 0-3.623 2.646-6.411 6.269-6.411 1.811 0 3.337.762 4.361 2.073v-1.787h2.169v12.298c0 3.337-2.574 5.792-6.149 5.792Zm-.167-7.699c2.288 0 4.076-1.906 4.076-4.266 0-2.36-1.788-4.266-4.076-4.266-2.359 0-4.147 1.906-4.147 4.266 0 2.384 1.764 4.266 4.147 4.266Zm15.068-12.155c-1.502 0-2.741-1.025-2.741-2.646 0-1.62 1.216-2.669 2.741-2.669 1.502 0 2.717 1.049 2.717 2.669 0 1.597-1.215 2.646-2.717 2.646Zm0-1.478c.643 0 1.144-.477 1.144-1.168 0-.715-.501-1.191-1.144-1.191-.644 0-1.168.452-1.168 1.191 0 .691.477 1.168 1.168 1.168Zm-1.549 16.374c-2.527 0-4.29-1.477-4.29-3.646 0-2.026 1.287-3.575 4.194-4.052l4.386-.715v-.596c0-1.382-1.144-2.36-2.813-2.36-1.501 0-2.669.835-3.193 2.05l-1.931-1.001c.715-1.764 2.884-3.098 5.172-3.098 2.932 0 4.982 1.811 4.982 4.409v8.723h-2.169v-1.668c-.906 1.192-2.455 1.954-4.338 1.954Zm-1.955-3.718c0 1.049.93 1.836 2.217 1.836 2.407 0 4.028-1.693 4.028-3.862v-.81l-3.885.643c-1.669.286-2.36 1.097-2.36 2.193Zm11.898 3.432v-12.846h2.169v1.525c.668-1.12 1.836-1.668 3.409-1.668h.786v2.097h-1.12c-1.811 0-3.027 1.192-3.027 3.242v7.65h-2.217Zm-128.407 30.143c-2.502 0-3.908-1.477-3.908-4.099v-6.769h-2.336v-2.121h.476c1.144 0 1.86-.739 1.86-1.907v-1.049h2.216v2.956h2.884v2.121h-2.884v6.697c0 1.311.572 2.145 2.145 2.145.239 0 .596-.023.882-.071v1.954a6.654 6.654 0 0 1-1.335.143Zm4.231-15.039v-2.86h2.216v2.86h-2.216Zm0 14.896v-12.846h2.216v12.846h-2.216Zm5.656 0v-18.042h2.216v18.042h-2.216Zm9.776 0v-18.042H345v11.226l5.911-6.03h2.836l-4.933 5.172 5.267 7.674h-2.622l-4.266-6.173-2.193 2.312v3.861h-2.216Zm13.29-14.896v-2.86h2.217v2.86h-2.217Zm-2.193 20.14c-.286 0-.786-.024-1.025-.095v-2.002c.31.047.644.071.954.071 1.287 0 2.264-.715 2.264-2.217v-13.847h2.217V338.4c0 2.765-1.907 4.243-4.41 4.243Zm6.92-5.244 1.859-2.145c-.906-1.144-1.454-2.621-1.454-4.29 0-3.837 2.86-6.697 6.626-6.697 1.311 0 2.526.357 3.551.977l.596-.691h2.86l-1.859 2.121c.906 1.144 1.454 2.622 1.454 4.29 0 3.933-2.979 6.721-6.602 6.721a6.637 6.637 0 0 1-3.552-1.001l-.619.715h-2.86Zm2.74-6.435c0 .953.239 1.812.668 2.527l5.672-6.531a3.926 3.926 0 0 0-2.049-.548c-2.431 0-4.291 1.954-4.291 4.552Zm4.291 4.576c2.383 0 4.242-1.954 4.242-4.576 0-.929-.238-1.787-.643-2.479l-5.673 6.507c.596.358 1.311.548 2.074.548Zm9.493 6.626v-17.613h2.169v1.811c1.001-1.311 2.574-2.097 4.505-2.097 3.646 0 6.363 2.884 6.363 6.721 0 3.813-2.717 6.697-6.387 6.697-1.836 0-3.456-.738-4.433-2.073v6.554h-2.217Zm6.483-6.626c2.431 0 4.195-1.954 4.195-4.552 0-2.622-1.788-4.576-4.195-4.576s-4.266 1.978-4.266 4.576 1.859 4.552 4.266 4.552Zm15.372 2.145c-3.695 0-6.435-2.884-6.435-6.745s2.693-6.673 6.244-6.673c3.79 0 6.03 2.979 6.03 6.173 0 .357-.047.81-.119 1.191h-9.82c.119 2.479 1.955 4.028 4.124 4.028 1.716 0 2.86-.881 3.599-2.121l1.859.954c-.787 1.787-2.86 3.193-5.482 3.193Zm-.191-11.44c-1.93 0-3.551 1.311-3.861 3.48h7.484c-.072-2.05-1.645-3.48-3.623-3.48Zm8.92 11.154v-12.846h2.169v1.525c.668-1.12 1.836-1.668 3.409-1.668h.786v2.097h-1.12c-1.811 0-3.027 1.192-3.027 3.242v7.65h-2.217Z\" fill=\"#1A1A1A\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x1vhjo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fdkud6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"En revolusjonerende modell\"})}),className:\"framer-1jktd7d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:[\"Mens andre boligutviklere inkluderer en profitt i sin boligpris, lar Eier profitten g\\xe5 til kj\\xf8peren. S\\xe5 enkelt.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Besparelsen kan til og med brukes som egenkapital!\"]})}),className:\"framer-yqxh7l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7kd0y\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HrswZTOoj\"},implicitPathVariables:undefined},{href:{webPageId:\"HrswZTOoj\"},implicitPathVariables:undefined},{href:{webPageId:\"HrswZTOoj\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+1500+0+0+71+0+238+0+0},nznh8Zzex:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 60px)`,y:(componentViewport?.y||0)+0+1977+0+0+60+460+0+268+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1500+0+0+163+0+268+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrutum-container\",nodeId:\"ZIeKYUG9B\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks3[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks3[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"ZIeKYUG9B\",j4nIBBhLl:resolvedLinks3[0],layoutId:\"ZIeKYUG9B\",variant:\"KKvJo8bGj\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Se forklaring\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+1500+0+0+71+0+238+0+64},nznh8Zzex:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 60px)`,y:(componentViewport?.y||0)+0+1977+0+0+60+460+0+268+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1500+0+0+163+0+268+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ov4625-container\",nodeId:\"dMm1Herd4\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks4[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks4[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:false,id:\"dMm1Herd4\",j4nIBBhLl:resolvedLinks4[0],layoutId:\"dMm1Herd4\",variant:\"Uk_IsMqUO\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-f3952d2c-16fc-4d54-8e4b-cf9f0c8cb4cf, rgb(68, 68, 68))\",Z3eKIoNtC:\"Registrer n\\xe5\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xxn4\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12r3zgb\",\"data-framer-name\":\"Innhold\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bdp8hi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfuaz0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ltcbbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Se hvor mye du kan spare med Eier\"})}),className:\"framer-11jhoe4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:\"(Verdien kan variere utifra prosjekt og marked.)\"})}),className:\"framer-ju98wr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2xaz69\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-480g7x-container\",isAuthoredByUser:true,nodeId:\"IVuS3x5f6\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Calculator,{gap:30,height:\"100%\",id:\"IVuS3x5f6\",layoutId:\"IVuS3x5f6\",width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ilhn8\",\"data-framer-name\":\"Hund\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pp7snr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2ofh16\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:328,intrinsicWidth:527,svg:'<svg width=\"527\" height=\"328\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M387 111.01V193c0 23.2-18.8 42-42 42H195c-30.38 0-55-24.62-55-55V45c0-24.85 20.15-45 45-45h5v61h16V45c0-24.85 20.15-45 45-45h5v61h20c28.69 0 52.25 21.96 54.77 50H387v.01Z\" fill=\"#B0AEFF\"/><path d=\"M348 111h67v5.5c0 18.49-15.01 33.5-33.5 33.5-18.49 0-33.5-15.01-33.5-33.5V111Z\" fill=\"#000\"/><path d=\"M384.312 188.41c0 8.37-6.78 15.16-15.16 15.16-8.38 0-15.16-6.78-15.16-15.16\" stroke=\"#000\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\"/><path d=\"M237 109c0-9.941-8.059-18-18-18s-18 8.059-18 18 8.059 18 18 18 18-8.059 18-18Z\" fill=\"#EEECF0\"/><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"206\" y=\"91\" width=\"25\" height=\"36\"><path d=\"M231 91h-25v36h25V91Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><path d=\"M237 109c0-9.941-8.059-18-18-18s-18 8.059-18 18 8.059 18 18 18 18-8.059 18-18Z\" fill=\"#000\"/></g><path d=\"M319 109c0-9.941-8.059-18-18-18s-18 8.059-18 18 8.059 18 18 18 18-8.059 18-18Z\" fill=\"#EEECF0\"/><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"288\" y=\"91\" width=\"25\" height=\"36\"><path d=\"M313 91h-25v36h25V91Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M319 109c0-9.941-8.059-18-18-18s-18 8.059-18 18 8.059 18 18 18 18-8.059 18-18Z\" fill=\"#000\"/></g><path fill=\"#EFF0FF\" d=\"M0 164h527v164H0z\"/><path d=\"M30 164c0-5.523 4.477-10 10-10h70c5.523 0 10 4.477 10 10 0 22.091-17.909 40-40 40H70c-22.091 0-40-17.909-40-40Zm377 0c0-5.523 4.477-10 10-10h70c5.523 0 10 4.477 10 10 0 22.091-17.909 40-40 40h-10c-22.091 0-40-17.909-40-40Z\" fill=\"#B0AEFF\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1slqyav\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xdpvp2\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsq485\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1usftac\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oy3msv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Se v\\xe5re prosjekter\"})}),className:\"framer-1gqcme5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:\"Eier skal bygge spennende prosjekter over hele landet!\"})}),className:\"framer-fg97yh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ddpqf\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined},{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined},{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+2946+0+60+0+268+0+0},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+3741+0+60+400+0+268+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3066+0+69+0+268+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-131qfj2-container\",nodeId:\"gE_kSWycG\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks5[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks5[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"gE_kSWycG\",j4nIBBhLl:resolvedLinks5[0],layoutId:\"gE_kSWycG\",variant:\"KKvJo8bGj\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Se prosjekter\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined},{href:{webPageId:\"oOjZBKbTv\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+2946+0+60+0+268+0+64},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+3741+0+60+400+0+268+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3066+0+69+0+268+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13rnoj4-container\",nodeId:\"Jh09oOLqf\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks6[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks6[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:false,id:\"Jh09oOLqf\",j4nIBBhLl:resolvedLinks6[0],layoutId:\"Jh09oOLqf\",variant:\"Uk_IsMqUO\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-f3952d2c-16fc-4d54-8e4b-cf9f0c8cb4cf, rgb(68, 68, 68))\",Z3eKIoNtC:\"Registrer n\\xe5\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185.5,intrinsicWidth:188.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2946+0+128),pixelHeight:2400,pixelWidth:1920,sizes:\"308px\",src:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg 1920w\"}},nznh8Zzex:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185.5,intrinsicWidth:188.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3741+0+60+0),pixelHeight:2400,pixelWidth:1920,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,src:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185.5,intrinsicWidth:188.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3066+0+60),pixelHeight:2400,pixelWidth:1920,sizes:\"420px\",src:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/QIqSYwzUKVHqPP0twQs4gKn8.jpg 1920w\"},className:\"framer-1vr27bc\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11c45ce\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azu92t\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yljtj9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsmwv5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Hvor er din dr\\xf8mmebolig?\"})}),className:\"framer-1bxhl55\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17t97h6\",\"data-styles-preset\":\"s1OWeekTH\",children:\"Vi bygger prosjektene der ettersp\\xf8rselen fra v\\xe5re medlemmer er st\\xf8rst.\"})}),className:\"framer-4clsyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined},{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined},{href:{webPageId:\"UWiJT3l3M\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+3512+0+120+0+268},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+4707+0+60+358+0+238}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+3586+0+120+0+268,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8fr4y1-container\",nodeId:\"J7ZrrwN93\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks7[1]},nznh8Zzex:{hF90YqClE:false,j4nIBBhLl:resolvedLinks7[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"J7ZrrwN93\",j4nIBBhLl:resolvedLinks7[0],layoutId:\"J7ZrrwN93\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Meld interesse for omr\\xe5der\"})})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vyysen\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:168,intrinsicWidth:184,svg:'<svg width=\"184\" height=\"168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"61.586\" y=\"138.437\" width=\"67.534\" height=\"29.163\" rx=\"14.581\" fill=\"#E0DEFF\"/><rect x=\"78.085\" y=\"145.344\" width=\"34.535\" height=\"10.744\" rx=\"5.372\" fill=\"#CBC9FF\"/><path d=\"M57.582 37.878c20.754-20.755 54.404-20.755 75.158 0 20.754 20.754 20.754 54.404 0 75.158l-37.579 37.579-37.579-37.579c-20.754-20.754-20.754-54.404 0-75.158Z\" fill=\"#FA735B\"/><path d=\"M79.934 60.23c8.41-8.41 22.045-8.41 30.455 0 8.41 8.41 8.41 22.046 0 30.456s-22.045 8.41-30.455 0c-8.41-8.41-8.41-22.046 0-30.456Z\" fill=\"#8D0B00\"/><path d=\"m32.19 7.5 10.023 21.477L63.69 39 42.213 49.023 32.19 70.5 22.166 49.023.69 39l21.477-10.023L32.19 7.5Zm127.325 67 7.517 16.108 16.108 7.517-16.108 7.517-7.517 16.108-7.518-16.108-16.107-7.517 16.107-7.517 7.518-16.108Z\" fill=\"#FAE7A3\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k5hrkp\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vj00fz\",\"data-framer-name\":\"Innhold\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xcj2ma\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zawp64\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekl7oz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Aktuelt\"})}),className:\"framer-14ibfzm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bdVRoWgWA\"},implicitPathVariables:undefined},{href:{webPageId:\"bdVRoWgWA\"},implicitPathVariables:undefined},{href:{webPageId:\"bdVRoWgWA\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+4074+0+120+0+0+0+0+0},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+5537+0+60+0+0+0+0+0+0+78}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+4148+0+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eears-container\",nodeId:\"gMD2ItKF8\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks8[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks8[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"gMD2ItKF8\",j4nIBBhLl:resolvedLinks8[0],layoutId:\"gMD2ItKF8\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Se alle artikler\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oiu5sk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iME0Qb2xD\",data:Aktuelt,type:\"Collection\"},select:[{collection:\"iME0Qb2xD\",name:\"vfzXGYtIP\",type:\"Identifier\"},{collection:\"iME0Qb2xD\",name:\"UKDjAe_z6\",type:\"Identifier\"},{collection:\"iME0Qb2xD\",name:\"AKc9VuZEN\",type:\"Identifier\"},{collection:\"iME0Qb2xD\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({AKc9VuZEN:AKc9VuZENiME0Qb2xD,id:idiME0Qb2xD,UKDjAe_z6:UKDjAe_z6iME0Qb2xD,vfzXGYtIP:vfzXGYtIPiME0Qb2xD},index)=>{vfzXGYtIPiME0Qb2xD??=\"\";AKc9VuZENiME0Qb2xD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iME0Qb2xD-${idiME0Qb2xD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vfzXGYtIP:vfzXGYtIPiME0Qb2xD},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vfzXGYtIP:vfzXGYtIPiME0Qb2xD},webPageId:\"rUHu6mTq1\"},motionChild:true,nodeId:\"T2MYgj_aH\",openInNewTab:true,scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1v4h4nh framer-1y07eou\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4074+0+120+0+0+0+114+0+0+0+0),sizes:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 900px), 1px) - 48px) / 3, 50px)`,...toResponsiveImage(UKDjAe_z6iME0Qb2xD)}},nznh8Zzex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5537+0+60+0+0+0+0+192+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px, 50px)`,...toResponsiveImage(UKDjAe_z6iME0Qb2xD)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4148+0+120+0+0+0+114+0+0+0+0),sizes:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 900px), 1px) - 48px) / 3, 50px)`,...toResponsiveImage(UKDjAe_z6iME0Qb2xD)},className:\"framer-ykim7a\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1stxvgf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13kn4ws\",\"data-styles-preset\":\"pkDQBYsNW\",children:\"Velkommen til Eier: Din Guide til Boligkj\\xf8p\"})}),className:\"framer-198xa4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:AKc9VuZENiME0Qb2xD,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idiME0Qb2xD);})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5t4db\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g01xkb\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Veien til et rettferdig boligmarked\"})}),className:\"framer-121kq3q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kz9iqy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqhamy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4956+0+120+108+0+0+0+0),pixelHeight:3744,pixelWidth:5616,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 900px)`,src:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg\",srcSet:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg 5616w\"}},nznh8Zzex:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6125+0+120+78+0+0+0+0),pixelHeight:3744,pixelWidth:5616,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,src:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg\",srcSet:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg 5616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5030+0+120+108+0+0+0+0),pixelHeight:3744,pixelWidth:5616,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 900px)`,src:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg\",srcSet:\"https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WRUjuif9jXBgGFOgz368nWnw1U.jpg 5616w\"},className:\"framer-g1u1fm\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5z5l2\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"elt8ldquG\"},implicitPathVariables:undefined},{href:{webPageId:\"elt8ldquG\"},implicitPathVariables:undefined},{href:{webPageId:\"elt8ldquG\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+4956+0+848-147+0},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+6125+0+120+608+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5030+0+848-147+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4lliv-container\",nodeId:\"Uzhh3wTPE\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks9[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks9[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"Uzhh3wTPE\",j4nIBBhLl:resolvedLinks9[0],layoutId:\"Uzhh3wTPE\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Samfunnsansvar\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Zg51Kq9i1\"},implicitPathVariables:undefined},{href:{webPageId:\"Zg51Kq9i1\"},implicitPathVariables:undefined},{href:{webPageId:\"Zg51Kq9i1\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+4956+0+848-147+0},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+6125+0+120+608+0+74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5030+0+848-147+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m19zvr-container\",nodeId:\"KRow9SFP6\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks10[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks10[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"KRow9SFP6\",j4nIBBhLl:resolvedLinks10[0],layoutId:\"KRow9SFP6\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Egenkapital\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fZZVRHxDf\"},implicitPathVariables:undefined},{href:{webPageId:\"fZZVRHxDf\"},implicitPathVariables:undefined},{href:{webPageId:\"fZZVRHxDf\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+4956+0+848-147+0},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+6125+0+120+608+0+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5030+0+848-147+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5tefe1-container\",nodeId:\"awsnEjsKj\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{j4nIBBhLl:resolvedLinks11[1]},nznh8Zzex:{j4nIBBhLl:resolvedLinks11[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Knapp,{height:\"100%\",hF90YqClE:true,id:\"awsnEjsKj\",j4nIBBhLl:resolvedLinks11[0],layoutId:\"awsnEjsKj\",variant:\"jPkDOmSCf\",Vn1BCP_J0:\"ArrowRight\",width:\"100%\",wzdjzMjrZ:\"var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, rgb(255, 255, 255))\",Z3eKIoNtC:\"Innkj\\xf8pspris\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7i20s\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ab9xpw\",\"data-framer-name\":\"Innhold\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hlndqz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1legqdh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"H\\xf8r podcast-episoden med gr\\xfcnder Jan Olav Frestad\"})}),className:\"framer-1tvnrps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mu7add-container\",isModuleExternal:true,nodeId:\"puyTYoOk6\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe sandbox=\"allow-same-origin allow-scripts allow-popups\" \\nstyle=\"border-radius:20px; transform: translateZ(0); backface-visibility: hidden;\"\\nsrc=\"https://open.spotify.com/embed/episode/0E7pTRoJozYQAFJPoEHpKk?utm_source=generator\" \\nwidth=\"100%\" height=\"352\" frameBorder=\"0\" allowfullscreen=\"\" \\nallow=\"autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture\" loading=\"lazy\">\\n</iframe>',id:\"puyTYoOk6\",layoutId:\"puyTYoOk6\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gm9k83\",\"data-framer-name\":\"Seksjon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kq8q03\",\"data-framer-name\":\"Innhold\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8b3w23\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttxsjk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jeavd7\",\"data-styles-preset\":\"pFenEe_Q_\",children:\"Ofte stilte sp\\xf8rsm\\xe5l\"})}),className:\"framer-97l7z7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+6432+0+60+0+0+0+108},nznh8Zzex:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 900px) - 60px)`,y:(componentViewport?.y||0)+0+7803+0+60+0+0+0+0+108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 900px), 1px)`,y:(componentViewport?.y||0)+0+6506+0+60+0+0+0+108,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m8dodm-container\",nodeId:\"GOMtR9ufG\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"GOMtR9ufG\",layoutId:\"GOMtR9ufG\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwW0Zc7x8:{y:(componentViewport?.y||0)+0+7369},nznh8Zzex:{y:(componentViewport?.y||0)+0+8740}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:608,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7443,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ryzhg-container\",nodeId:\"Ccba2y_ml\",scopeId:\"aHPQcRPH5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nznh8Zzex:{variant:\"jCZCX0S3o\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Ccba2y_ml\",layoutId:\"Ccba2y_ml\",style:{width:\"100%\"},variant:\"uc4VSuVvU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xrUCg.framer-1y07eou, .framer-xrUCg .framer-1y07eou { display: block; }\",\".framer-xrUCg.framer-12isqbh { align-content: center; align-items: center; background-color: var(--token-1212b375-e858-496c-83bf-fa9cf97ed1b9, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-xrUCg .framer-v3kntg-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-xrUCg .framer-sgoson { align-content: center; align-items: center; background-color: var(--token-ee8857e2-f7cd-4483-b686-372f26220580, #ffe9e2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-804tgx { flex: none; height: 84px; overflow: hidden; position: relative; width: 100%; }\",\".framer-xrUCg .framer-ry85q5 { 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: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-tnzv8b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xrUCg .framer-xzhni5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xrUCg .framer-ka3yjb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 517px; word-break: break-word; word-wrap: break-word; }\",\".framer-xrUCg .framer-t4hun3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-xrUCg .framer-1xyq47 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-xrUCg .framer-nzifia-container, .framer-xrUCg .framer-1bsn5k0-container, .framer-xrUCg .framer-txihwa-container, .framer-xrUCg .framer-wrutum-container, .framer-xrUCg .framer-1ov4625-container, .framer-xrUCg .framer-480g7x-container, .framer-xrUCg .framer-131qfj2-container, .framer-xrUCg .framer-13rnoj4-container, .framer-xrUCg .framer-8fr4y1-container, .framer-xrUCg .framer-1eears-container, .framer-xrUCg .framer-l4lliv-container, .framer-xrUCg .framer-1m19zvr-container, .framer-xrUCg .framer-5tefe1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xrUCg .framer-7kjc55 { flex: none; height: 386px; position: relative; width: 392px; }\",\".framer-xrUCg .framer-147wb6z { align-content: center; align-items: center; background-color: var(--token-e2866daa-6be9-4265-941e-7a616a5c867d, #fc9783); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-kbgak8-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1rfvagc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-p8ktdy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1pzkuqp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1lc6bqd, .framer-xrUCg .framer-14ibfzm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xrUCg .framer-6osgv4 { align-content: center; align-items: center; background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 900 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xrUCg .framer-1n1wsxw-container, .framer-xrUCg .framer-18jr6iw-container { flex: 1 0 0px; height: 300px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-1wyaqcv-container, .framer-xrUCg .framer-1v9yshn-container, .framer-xrUCg .framer-t3bwo0-container, .framer-xrUCg .framer-y8v6mi-container, .framer-xrUCg .framer-1f939cy-container, .framer-xrUCg .framer-1yj5ibu-container, .framer-xrUCg .framer-3uenyh-container, .framer-xrUCg .framer-1yr2o89-container, .framer-xrUCg .framer-pa3u6o-container, .framer-xrUCg .framer-1j4ddnu-container, .framer-xrUCg .framer-11pp5af-container, .framer-xrUCg .framer-1ds5z88-container { height: auto; position: relative; width: 700px; }\",\".framer-xrUCg .framer-11cv6dz { align-content: center; align-items: center; background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xrUCg .framer-lter4e { align-content: center; align-items: center; background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-13dau82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-16erm1v { aspect-ratio: 0.8273026315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 528px); position: relative; width: 437px; }\",\".framer-xrUCg .framer-1x1vhjo, .framer-xrUCg .framer-1bdp8hi, .framer-xrUCg .framer-1usftac, .framer-xrUCg .framer-1yljtj9, .framer-xrUCg .framer-1xcj2ma, .framer-xrUCg .framer-8b3w23 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-1fdkud6, .framer-xrUCg .framer-1oy3msv, .framer-xrUCg .framer-1hsmwv5, .framer-xrUCg .framer-1legqdh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1jktd7d, .framer-xrUCg .framer-yqxh7l, .framer-xrUCg .framer-11jhoe4, .framer-xrUCg .framer-ju98wr, .framer-xrUCg .framer-1gqcme5, .framer-xrUCg .framer-fg97yh, .framer-xrUCg .framer-1bxhl55, .framer-xrUCg .framer-4clsyx, .framer-xrUCg .framer-121kq3q, .framer-xrUCg .framer-1tvnrps, .framer-xrUCg .framer-97l7z7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-12ilhn8, .framer-xrUCg .framer-19ddpqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-17xxn4, .framer-xrUCg .framer-11c45ce, .framer-xrUCg .framer-1t5t4db, .framer-xrUCg .framer-1k7i20s, .framer-xrUCg .framer-gm9k83 { 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 60px 0px 60px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-12r3zgb, .framer-xrUCg .framer-1azu92t, .framer-xrUCg .framer-vj00fz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-1pfuaz0 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-ltcbbs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-2xaz69 { align-content: center; align-items: center; background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xrUCg .framer-1pp7snr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 180px; position: relative; width: min-content; }\",\".framer-xrUCg .framer-2ofh16 { aspect-ratio: 1.6067073170731707 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 193px; z-index: 2; }\",\".framer-xrUCg .framer-1slqyav { background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); bottom: 0px; flex: none; height: 60px; left: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-xrUCg .framer-1xdpvp2 { align-content: center; align-items: center; background-color: var(--token-3b4b3ab8-4623-488d-bd41-ca3d1b8fe41f, #eff0ff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1rsq485 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 60px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-1vr27bc { aspect-ratio: 1.2352941176470589 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 12px 12px 0px 0px var(--token-3f6ad58a-ad1f-4dfa-9edd-f6d17b4dd0ab, #b0aeff); flex: none; height: var(--framer-aspect-ratio-supported, 340px); overflow: visible; position: relative; width: 420px; }\",\".framer-xrUCg .framer-1vyysen { aspect-ratio: 1.0952380952380953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); position: relative; width: 351px; }\",\".framer-xrUCg .framer-1k5hrkp { align-content: center; align-items: center; background-color: var(--token-ee8857e2-f7cd-4483-b686-372f26220580, #ffe9e2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-zawp64, .framer-xrUCg .framer-hlndqz, .framer-xrUCg .framer-1ttxsjk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1ekl7oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1oiu5sk { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1v4h4nh { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xrUCg .framer-ykim7a { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-1stxvgf { 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; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-198xa4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xrUCg .framer-g01xkb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-1kz9iqy, .framer-xrUCg .framer-1uqhamy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xrUCg .framer-g1u1fm { aspect-ratio: 1.8 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 12px 12px 0px 0px var(--token-3f6ad58a-ad1f-4dfa-9edd-f6d17b4dd0ab, #b0aeff); flex: none; height: var(--framer-aspect-ratio-supported, 500px); position: relative; width: 100%; }\",\".framer-xrUCg .framer-1b5z5l2 { align-content: center; align-items: center; bottom: 93px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 900px; z-index: 1; }\",\".framer-xrUCg .framer-ab9xpw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-mu7add-container, .framer-xrUCg .framer-1m8dodm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xrUCg .framer-kq8q03 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 60px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-xrUCg .framer-16ryzhg-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xrUCg.framer-12isqbh, .framer-xrUCg .framer-sgoson, .framer-xrUCg .framer-ry85q5, .framer-xrUCg .framer-tnzv8b, .framer-xrUCg .framer-xzhni5, .framer-xrUCg .framer-1xyq47, .framer-xrUCg .framer-147wb6z, .framer-xrUCg .framer-1rfvagc, .framer-xrUCg .framer-p8ktdy, .framer-xrUCg .framer-1pzkuqp, .framer-xrUCg .framer-6osgv4, .framer-xrUCg .framer-11cv6dz, .framer-xrUCg .framer-lter4e, .framer-xrUCg .framer-13dau82, .framer-xrUCg .framer-1x1vhjo, .framer-xrUCg .framer-1fdkud6, .framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-17xxn4, .framer-xrUCg .framer-12r3zgb, .framer-xrUCg .framer-1bdp8hi, .framer-xrUCg .framer-1pfuaz0, .framer-xrUCg .framer-ltcbbs, .framer-xrUCg .framer-2xaz69, .framer-xrUCg .framer-12ilhn8, .framer-xrUCg .framer-1pp7snr, .framer-xrUCg .framer-1xdpvp2, .framer-xrUCg .framer-1rsq485, .framer-xrUCg .framer-1usftac, .framer-xrUCg .framer-1oy3msv, .framer-xrUCg .framer-19ddpqf, .framer-xrUCg .framer-11c45ce, .framer-xrUCg .framer-1azu92t, .framer-xrUCg .framer-1yljtj9, .framer-xrUCg .framer-1hsmwv5, .framer-xrUCg .framer-1k5hrkp, .framer-xrUCg .framer-vj00fz, .framer-xrUCg .framer-1xcj2ma, .framer-xrUCg .framer-zawp64, .framer-xrUCg .framer-1ekl7oz, .framer-xrUCg .framer-1v4h4nh, .framer-xrUCg .framer-1stxvgf, .framer-xrUCg .framer-1t5t4db, .framer-xrUCg .framer-g01xkb, .framer-xrUCg .framer-1kz9iqy, .framer-xrUCg .framer-1uqhamy, .framer-xrUCg .framer-1b5z5l2, .framer-xrUCg .framer-1k7i20s, .framer-xrUCg .framer-ab9xpw, .framer-xrUCg .framer-hlndqz, .framer-xrUCg .framer-1legqdh, .framer-xrUCg .framer-gm9k83, .framer-xrUCg .framer-kq8q03, .framer-xrUCg .framer-8b3w23, .framer-xrUCg .framer-1ttxsjk { gap: 0px; } .framer-xrUCg.framer-12isqbh > *, .framer-xrUCg .framer-sgoson > *, .framer-xrUCg .framer-147wb6z > *, .framer-xrUCg .framer-lter4e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xrUCg.framer-12isqbh > :first-child, .framer-xrUCg .framer-sgoson > :first-child, .framer-xrUCg .framer-tnzv8b > :first-child, .framer-xrUCg .framer-xzhni5 > :first-child, .framer-xrUCg .framer-147wb6z > :first-child, .framer-xrUCg .framer-1rfvagc > :first-child, .framer-xrUCg .framer-p8ktdy > :first-child, .framer-xrUCg .framer-lter4e > :first-child, .framer-xrUCg .framer-1x1vhjo > :first-child, .framer-xrUCg .framer-1fdkud6 > :first-child, .framer-xrUCg .framer-1bdp8hi > :first-child, .framer-xrUCg .framer-1pfuaz0 > :first-child, .framer-xrUCg .framer-ltcbbs > :first-child, .framer-xrUCg .framer-2xaz69 > :first-child, .framer-xrUCg .framer-1usftac > :first-child, .framer-xrUCg .framer-1oy3msv > :first-child, .framer-xrUCg .framer-1yljtj9 > :first-child, .framer-xrUCg .framer-1hsmwv5 > :first-child, .framer-xrUCg .framer-1xcj2ma > :first-child, .framer-xrUCg .framer-zawp64 > :first-child, .framer-xrUCg .framer-1v4h4nh > :first-child, .framer-xrUCg .framer-1stxvgf > :first-child, .framer-xrUCg .framer-g01xkb > :first-child, .framer-xrUCg .framer-1kz9iqy > :first-child, .framer-xrUCg .framer-1uqhamy > :first-child, .framer-xrUCg .framer-ab9xpw > :first-child, .framer-xrUCg .framer-hlndqz > :first-child, .framer-xrUCg .framer-1legqdh > :first-child, .framer-xrUCg .framer-8b3w23 > :first-child, .framer-xrUCg .framer-1ttxsjk > :first-child { margin-top: 0px; } .framer-xrUCg.framer-12isqbh > :last-child, .framer-xrUCg .framer-sgoson > :last-child, .framer-xrUCg .framer-tnzv8b > :last-child, .framer-xrUCg .framer-xzhni5 > :last-child, .framer-xrUCg .framer-147wb6z > :last-child, .framer-xrUCg .framer-1rfvagc > :last-child, .framer-xrUCg .framer-p8ktdy > :last-child, .framer-xrUCg .framer-lter4e > :last-child, .framer-xrUCg .framer-1x1vhjo > :last-child, .framer-xrUCg .framer-1fdkud6 > :last-child, .framer-xrUCg .framer-1bdp8hi > :last-child, .framer-xrUCg .framer-1pfuaz0 > :last-child, .framer-xrUCg .framer-ltcbbs > :last-child, .framer-xrUCg .framer-2xaz69 > :last-child, .framer-xrUCg .framer-1usftac > :last-child, .framer-xrUCg .framer-1oy3msv > :last-child, .framer-xrUCg .framer-1yljtj9 > :last-child, .framer-xrUCg .framer-1hsmwv5 > :last-child, .framer-xrUCg .framer-1xcj2ma > :last-child, .framer-xrUCg .framer-zawp64 > :last-child, .framer-xrUCg .framer-1v4h4nh > :last-child, .framer-xrUCg .framer-1stxvgf > :last-child, .framer-xrUCg .framer-g01xkb > :last-child, .framer-xrUCg .framer-1kz9iqy > :last-child, .framer-xrUCg .framer-1uqhamy > :last-child, .framer-xrUCg .framer-ab9xpw > :last-child, .framer-xrUCg .framer-hlndqz > :last-child, .framer-xrUCg .framer-1legqdh > :last-child, .framer-xrUCg .framer-8b3w23 > :last-child, .framer-xrUCg .framer-1ttxsjk > :last-child { margin-bottom: 0px; } .framer-xrUCg .framer-ry85q5 > *, .framer-xrUCg .framer-6osgv4 > *, .framer-xrUCg .framer-11cv6dz > *, .framer-xrUCg .framer-i7kd0y > *, .framer-xrUCg .framer-17xxn4 > *, .framer-xrUCg .framer-12ilhn8 > *, .framer-xrUCg .framer-1pp7snr > *, .framer-xrUCg .framer-1xdpvp2 > *, .framer-xrUCg .framer-19ddpqf > *, .framer-xrUCg .framer-11c45ce > *, .framer-xrUCg .framer-1k5hrkp > *, .framer-xrUCg .framer-1t5t4db > *, .framer-xrUCg .framer-1k7i20s > *, .framer-xrUCg .framer-gm9k83 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xrUCg .framer-ry85q5 > :first-child, .framer-xrUCg .framer-1xyq47 > :first-child, .framer-xrUCg .framer-1pzkuqp > :first-child, .framer-xrUCg .framer-6osgv4 > :first-child, .framer-xrUCg .framer-11cv6dz > :first-child, .framer-xrUCg .framer-13dau82 > :first-child, .framer-xrUCg .framer-i7kd0y > :first-child, .framer-xrUCg .framer-17xxn4 > :first-child, .framer-xrUCg .framer-12r3zgb > :first-child, .framer-xrUCg .framer-12ilhn8 > :first-child, .framer-xrUCg .framer-1pp7snr > :first-child, .framer-xrUCg .framer-1xdpvp2 > :first-child, .framer-xrUCg .framer-1rsq485 > :first-child, .framer-xrUCg .framer-19ddpqf > :first-child, .framer-xrUCg .framer-11c45ce > :first-child, .framer-xrUCg .framer-1azu92t > :first-child, .framer-xrUCg .framer-1k5hrkp > :first-child, .framer-xrUCg .framer-vj00fz > :first-child, .framer-xrUCg .framer-1ekl7oz > :first-child, .framer-xrUCg .framer-1t5t4db > :first-child, .framer-xrUCg .framer-1b5z5l2 > :first-child, .framer-xrUCg .framer-1k7i20s > :first-child, .framer-xrUCg .framer-gm9k83 > :first-child, .framer-xrUCg .framer-kq8q03 > :first-child { margin-left: 0px; } .framer-xrUCg .framer-ry85q5 > :last-child, .framer-xrUCg .framer-1xyq47 > :last-child, .framer-xrUCg .framer-1pzkuqp > :last-child, .framer-xrUCg .framer-6osgv4 > :last-child, .framer-xrUCg .framer-11cv6dz > :last-child, .framer-xrUCg .framer-13dau82 > :last-child, .framer-xrUCg .framer-i7kd0y > :last-child, .framer-xrUCg .framer-17xxn4 > :last-child, .framer-xrUCg .framer-12r3zgb > :last-child, .framer-xrUCg .framer-12ilhn8 > :last-child, .framer-xrUCg .framer-1pp7snr > :last-child, .framer-xrUCg .framer-1xdpvp2 > :last-child, .framer-xrUCg .framer-1rsq485 > :last-child, .framer-xrUCg .framer-19ddpqf > :last-child, .framer-xrUCg .framer-11c45ce > :last-child, .framer-xrUCg .framer-1azu92t > :last-child, .framer-xrUCg .framer-1k5hrkp > :last-child, .framer-xrUCg .framer-vj00fz > :last-child, .framer-xrUCg .framer-1ekl7oz > :last-child, .framer-xrUCg .framer-1t5t4db > :last-child, .framer-xrUCg .framer-1b5z5l2 > :last-child, .framer-xrUCg .framer-1k7i20s > :last-child, .framer-xrUCg .framer-gm9k83 > :last-child, .framer-xrUCg .framer-kq8q03 > :last-child { margin-right: 0px; } .framer-xrUCg .framer-tnzv8b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xrUCg .framer-xzhni5 > *, .framer-xrUCg .framer-1fdkud6 > *, .framer-xrUCg .framer-ltcbbs > *, .framer-xrUCg .framer-1oy3msv > *, .framer-xrUCg .framer-1hsmwv5 > *, .framer-xrUCg .framer-1legqdh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xrUCg .framer-1xyq47 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-xrUCg .framer-1rfvagc > *, .framer-xrUCg .framer-2xaz69 > *, .framer-xrUCg .framer-1stxvgf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xrUCg .framer-p8ktdy > *, .framer-xrUCg .framer-1x1vhjo > *, .framer-xrUCg .framer-1bdp8hi > *, .framer-xrUCg .framer-1usftac > *, .framer-xrUCg .framer-1yljtj9 > *, .framer-xrUCg .framer-1xcj2ma > *, .framer-xrUCg .framer-zawp64 > *, .framer-xrUCg .framer-g01xkb > *, .framer-xrUCg .framer-1kz9iqy > *, .framer-xrUCg .framer-1uqhamy > *, .framer-xrUCg .framer-ab9xpw > *, .framer-xrUCg .framer-hlndqz > *, .framer-xrUCg .framer-8b3w23 > *, .framer-xrUCg .framer-1ttxsjk > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-xrUCg .framer-1pzkuqp > *, .framer-xrUCg .framer-1b5z5l2 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-xrUCg .framer-13dau82 > *, .framer-xrUCg .framer-12r3zgb > *, .framer-xrUCg .framer-1rsq485 > *, .framer-xrUCg .framer-1azu92t > *, .framer-xrUCg .framer-vj00fz > *, .framer-xrUCg .framer-1ekl7oz > *, .framer-xrUCg .framer-kq8q03 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-xrUCg .framer-1pfuaz0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xrUCg .framer-1v4h4nh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-xrUCg.framer-12isqbh { width: 810px; } .framer-xrUCg .framer-sgoson { padding: 0px 60px 0px 60px; } .framer-xrUCg .framer-ka3yjb { width: 435px; } .framer-xrUCg .framer-7kjc55 { height: 233px; width: 237px; } .framer-xrUCg .framer-p8ktdy { padding: 60px; } .framer-xrUCg .framer-1lc6bqd { flex: none; width: 435px; } .framer-xrUCg .framer-13dau82 { gap: 30px; padding: 60px; } .framer-xrUCg .framer-16erm1v { height: var(--framer-aspect-ratio-supported, 408px); width: 338px; } .framer-xrUCg .framer-1x1vhjo { gap: 30px; padding: 0px 0px 30px 0px; } .framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-19ddpqf { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-xrUCg .framer-1pp7snr { padding: 0px 0px 0px 60px; } .framer-xrUCg .framer-1rsq485 { padding: 60px 60px 120px 60px; } .framer-xrUCg .framer-1vr27bc { height: var(--framer-aspect-ratio-supported, 249px); width: 308px; } .framer-xrUCg .framer-1vyysen { height: var(--framer-aspect-ratio-supported, 255px); width: 280px; } .framer-xrUCg .framer-g1u1fm { height: var(--framer-aspect-ratio-supported, 384px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xrUCg .framer-13dau82, .framer-xrUCg .framer-1x1vhjo, .framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-19ddpqf { gap: 0px; } .framer-xrUCg .framer-13dau82 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-xrUCg .framer-13dau82 > :first-child { margin-left: 0px; } .framer-xrUCg .framer-13dau82 > :last-child { margin-right: 0px; } .framer-xrUCg .framer-1x1vhjo > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xrUCg .framer-1x1vhjo > :first-child, .framer-xrUCg .framer-i7kd0y > :first-child, .framer-xrUCg .framer-19ddpqf > :first-child { margin-top: 0px; } .framer-xrUCg .framer-1x1vhjo > :last-child, .framer-xrUCg .framer-i7kd0y > :last-child, .framer-xrUCg .framer-19ddpqf > :last-child { margin-bottom: 0px; } .framer-xrUCg .framer-i7kd0y > *, .framer-xrUCg .framer-19ddpqf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-xrUCg.framer-12isqbh { width: 390px; } .framer-xrUCg .framer-sgoson { justify-content: flex-start; } .framer-xrUCg .framer-ry85q5 { flex-direction: column; gap: 30px; padding: 30px 30px 120px 30px; } .framer-xrUCg .framer-tnzv8b, .framer-xrUCg .framer-xzhni5, .framer-xrUCg .framer-ka3yjb, .framer-xrUCg .framer-nzifia-container, .framer-xrUCg .framer-1bsn5k0-container, .framer-xrUCg .framer-txihwa-container, .framer-xrUCg .framer-wrutum-container, .framer-xrUCg .framer-1ov4625-container, .framer-xrUCg .framer-131qfj2-container, .framer-xrUCg .framer-13rnoj4-container, .framer-xrUCg .framer-8fr4y1-container, .framer-xrUCg .framer-1eears-container { width: 100%; } .framer-xrUCg .framer-t4hun3 { align-self: unset; width: 100%; } .framer-xrUCg .framer-1xyq47 { align-self: unset; flex-direction: column; width: 100%; } .framer-xrUCg .framer-7kjc55 { height: 268px; width: 272px; } .framer-xrUCg .framer-p8ktdy { gap: 30px; padding: 60px 30px 60px 30px; } .framer-xrUCg .framer-1pzkuqp, .framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-19ddpqf { flex-direction: column; } .framer-xrUCg .framer-1lc6bqd, .framer-xrUCg .framer-6osgv4, .framer-xrUCg .framer-14ibfzm { flex: none; width: 100%; } .framer-xrUCg .framer-1n1wsxw-container { height: 447px; } .framer-xrUCg .framer-13dau82 { flex-direction: column; order: 0; padding: 60px 30px 60px 30px; } .framer-xrUCg .framer-16erm1v { height: var(--framer-aspect-ratio-supported, 400px); order: 0; width: 331px; } .framer-xrUCg .framer-1x1vhjo, .framer-xrUCg .framer-1usftac { flex: none; order: 1; width: 100%; } .framer-xrUCg .framer-17xxn4, .framer-xrUCg .framer-11c45ce, .framer-xrUCg .framer-1k5hrkp, .framer-xrUCg .framer-1t5t4db, .framer-xrUCg .framer-1k7i20s, .framer-xrUCg .framer-gm9k83 { padding: 0px; } .framer-xrUCg .framer-12r3zgb, .framer-xrUCg .framer-vj00fz { flex-direction: column; padding: 60px 30px 60px 30px; } .framer-xrUCg .framer-1bdp8hi { flex: none; gap: 30px; order: 0; width: 100%; } .framer-xrUCg .framer-2xaz69 { padding: 60px 20px 60px 20px; } .framer-xrUCg .framer-1pp7snr { padding: 0px 0px 0px 60px; } .framer-xrUCg .framer-1rsq485, .framer-xrUCg .framer-1azu92t, .framer-xrUCg .framer-kq8q03 { flex-direction: column; padding: 60px 30px 120px 30px; } .framer-xrUCg .framer-1vr27bc { height: var(--framer-aspect-ratio-supported, 267px); order: 0; width: 100%; } .framer-xrUCg .framer-1yljtj9 { flex: none; gap: 30px; order: 1; width: 100%; } .framer-xrUCg .framer-1vyysen { height: var(--framer-aspect-ratio-supported, 298px); order: 0; width: 327px; } .framer-xrUCg .framer-1xcj2ma, .framer-xrUCg .framer-8b3w23 { flex: none; order: 0; width: 100%; } .framer-xrUCg .framer-1ekl7oz { flex-direction: column; gap: 30px; } .framer-xrUCg .framer-1oiu5sk { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-xrUCg .framer-1v4h4nh { height: min-content; } .framer-xrUCg .framer-1stxvgf { min-width: unset; } .framer-xrUCg .framer-g01xkb { gap: 30px; padding: 120px 30px 120px 30px; } .framer-xrUCg .framer-121kq3q, .framer-xrUCg .framer-hlndqz { order: 0; } .framer-xrUCg .framer-1kz9iqy, .framer-xrUCg .framer-mu7add-container { order: 1; } .framer-xrUCg .framer-g1u1fm { height: var(--framer-aspect-ratio-supported, 184px); } .framer-xrUCg .framer-1b5z5l2 { bottom: unset; flex-direction: column; gap: 20px; left: unset; order: 3; position: relative; transform: unset; width: 100%; } .framer-xrUCg .framer-l4lliv-container { order: 0; width: 100%; } .framer-xrUCg .framer-1m19zvr-container { order: 1; width: 100%; } .framer-xrUCg .framer-5tefe1-container { order: 2; width: 100%; } .framer-xrUCg .framer-ab9xpw { padding: 60px 30px 60px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xrUCg .framer-ry85q5, .framer-xrUCg .framer-1xyq47, .framer-xrUCg .framer-p8ktdy, .framer-xrUCg .framer-1pzkuqp, .framer-xrUCg .framer-13dau82, .framer-xrUCg .framer-i7kd0y, .framer-xrUCg .framer-12r3zgb, .framer-xrUCg .framer-1bdp8hi, .framer-xrUCg .framer-1rsq485, .framer-xrUCg .framer-19ddpqf, .framer-xrUCg .framer-1azu92t, .framer-xrUCg .framer-1yljtj9, .framer-xrUCg .framer-vj00fz, .framer-xrUCg .framer-1ekl7oz, .framer-xrUCg .framer-g01xkb, .framer-xrUCg .framer-1b5z5l2, .framer-xrUCg .framer-kq8q03 { gap: 0px; } .framer-xrUCg .framer-ry85q5 > *, .framer-xrUCg .framer-p8ktdy > *, .framer-xrUCg .framer-1pzkuqp > *, .framer-xrUCg .framer-1bdp8hi > *, .framer-xrUCg .framer-1yljtj9 > *, .framer-xrUCg .framer-1ekl7oz > *, .framer-xrUCg .framer-g01xkb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xrUCg .framer-ry85q5 > :first-child, .framer-xrUCg .framer-1xyq47 > :first-child, .framer-xrUCg .framer-p8ktdy > :first-child, .framer-xrUCg .framer-1pzkuqp > :first-child, .framer-xrUCg .framer-13dau82 > :first-child, .framer-xrUCg .framer-i7kd0y > :first-child, .framer-xrUCg .framer-12r3zgb > :first-child, .framer-xrUCg .framer-1bdp8hi > :first-child, .framer-xrUCg .framer-1rsq485 > :first-child, .framer-xrUCg .framer-19ddpqf > :first-child, .framer-xrUCg .framer-1azu92t > :first-child, .framer-xrUCg .framer-1yljtj9 > :first-child, .framer-xrUCg .framer-vj00fz > :first-child, .framer-xrUCg .framer-1ekl7oz > :first-child, .framer-xrUCg .framer-g01xkb > :first-child, .framer-xrUCg .framer-1b5z5l2 > :first-child, .framer-xrUCg .framer-kq8q03 > :first-child { margin-top: 0px; } .framer-xrUCg .framer-ry85q5 > :last-child, .framer-xrUCg .framer-1xyq47 > :last-child, .framer-xrUCg .framer-p8ktdy > :last-child, .framer-xrUCg .framer-1pzkuqp > :last-child, .framer-xrUCg .framer-13dau82 > :last-child, .framer-xrUCg .framer-i7kd0y > :last-child, .framer-xrUCg .framer-12r3zgb > :last-child, .framer-xrUCg .framer-1bdp8hi > :last-child, .framer-xrUCg .framer-1rsq485 > :last-child, .framer-xrUCg .framer-19ddpqf > :last-child, .framer-xrUCg .framer-1azu92t > :last-child, .framer-xrUCg .framer-1yljtj9 > :last-child, .framer-xrUCg .framer-vj00fz > :last-child, .framer-xrUCg .framer-1ekl7oz > :last-child, .framer-xrUCg .framer-g01xkb > :last-child, .framer-xrUCg .framer-1b5z5l2 > :last-child, .framer-xrUCg .framer-kq8q03 > :last-child { margin-bottom: 0px; } .framer-xrUCg .framer-1xyq47 > *, .framer-xrUCg .framer-1b5z5l2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xrUCg .framer-13dau82 > *, .framer-xrUCg .framer-12r3zgb > *, .framer-xrUCg .framer-1rsq485 > *, .framer-xrUCg .framer-1azu92t > *, .framer-xrUCg .framer-vj00fz > *, .framer-xrUCg .framer-kq8q03 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-xrUCg .framer-i7kd0y > *, .framer-xrUCg .framer-19ddpqf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8388\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HwW0Zc7x8\":{\"layout\":[\"fixed\",\"auto\"]},\"nznh8Zzex\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YPOQosrR2\":{\"pattern\":\":YPOQosrR2\",\"name\":\"modell\"}}\n * @framerResponsiveScreen\n */const FrameraHPQcRPH5=withCSS(Component,css,\"framer-xrUCg\");export default FrameraHPQcRPH5;FrameraHPQcRPH5.displayName=\"Page\";FrameraHPQcRPH5.defaultProps={height:8388,width:1200};addFonts(FrameraHPQcRPH5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavbarFonts,...KnappFonts,...PartnerlogoerFonts,...QuoteComponentFonts,...SlideshowFonts,...CalculatorFonts,...EmbedFonts,...AccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraHPQcRPH5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HwW0Zc7x8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nznh8Zzex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8388\",\"framerScrollSections\":\"{\\\"YPOQosrR2\\\":{\\\"pattern\\\":\\\":YPOQosrR2\\\",\\\"name\\\":\\\"modell\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "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", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "navn", "sitat", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pq6YzXNw2", "k7JZ4Pkcm", "WtXT9BilM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCNMP_9AJd", "withCSS", "CNMP_9AJd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "SVG", "css", "FramerfavfMgdex", "withCSS", "favfMgdex_default", "addFonts", "TickerFonts", "Calculator", "gap", "value", "setValue", "ye", "minValue", "maxValue", "step", "lineSpacing", "savedValue", "expectedPrice", "sliderPercent", "handleDragStart", "e", "isTouch", "rect", "handleMove", "event", "newX", "newValue", "handleEnd", "window", "u", "p", "addPropertyControls", "ControlType", "NavbarFonts", "getFonts", "PWPb9RSR1_default", "KnappFonts", "nD3Ln7B3E_default", "PartnerlogoerFonts", "favfMgdex_default", "QuoteComponentFonts", "CNMP_9AJd_default", "SlideshowFonts", "Slideshow", "CalculatorFonts", "Calculator", "EmbedFonts", "Embed", "AccordionFonts", "HTbyWJcv_default", "FooterFonts", "vv9N7Y8gH_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "vfzXGYtIPiME0Qb2xD", "UKDjAe_z6iME0Qb2xD", "AKc9VuZENiME0Qb2xD", "idiME0Qb2xD", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks7", "resolvedLinks8", "ChildrenCanSuspend", "gDhxtgb0E_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "css", "FrameraHPQcRPH5", "withCSS", "aHPQcRPH5_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
