{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/Nd23y5AAcqUCgJrx44yl/IdtPfDSFrWo9NVMFaYGP/Bz7rYeAeo.js", "ssg:https://framerusercontent.com/modules/gow7eDNPUePuPYP7sHGN/oLnhE1Eso3Lyim4mrRTD/DSo7O6yhB.js", "ssg:https://framerusercontent.com/modules/LQYPrxV7los7vv7pxIHb/jlkJ4hEkFr1xAGtD4P5d/EMBOKCMyZ.js", "ssg:https://framerusercontent.com/modules/bq1W6VrAzQJNOVdx9iwC/QDhIqOc2bideJ48fqRAv/NU_bgxQ4F.js", "ssg:https://framerusercontent.com/modules/LKCnFZN8ZnpM3MSjasg2/cyraeCAwKYXfvaQTBX5U/oMJ6nEQj2.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/3MdfeTqEKhak5WZmi6iF/0i8OUfYXQBFZCcMp1lZV/ouDNq7o1p.js", "ssg:https://framerusercontent.com/modules/Xmb6GfK4UdXkDS6qPolg/DMt8KlV8lPpoodVdYkBu/q2znbFNKn.js", "ssg:https://framerusercontent.com/modules/RqEMkXap8vil0Syy798c/HU3SvZeoJ76rr5ZS20Gr/WvHzx9f19.js", "ssg:https://framerusercontent.com/modules/409qTTvDcJAuPLewBWcc/6LnneC8CdEuTEI1to9C2/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "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\";// 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;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;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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     */const 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();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>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){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */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.push(...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();setIsMouseDown(true);},onMouseUp:()=>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),\"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),\"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},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/w2E6V9h6z2eMzxgKOD2y/1XW1FQoDFX21Ie9uKu8b/lqXXPdN3k.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wZHiyztmAj99U6puFPpD/TU27pYG1n9mh0LFbxDXh/tH_FWHn8W.js\";const HeroFonts=getFonts(Hero);const serializationHash=\"framer-kdSmd\";const variantClassNames={xxUX5E8ZT:\"framer-v-1f0dm7y\"};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,text,title,width,...props})=>{return{...props,S7PBXT8sO:title??props.S7PBXT8sO??\"Nate S.\",xpB4CyCSQ:text??props.xpB4CyCSQ??\"Dr. Bodily and his team provided exceptional care during my recent visit. The staff was friendly and attentive, making me feel comfortable throughout the entire process.\"};};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,S7PBXT8sO,xpB4CyCSQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xxUX5E8ZT\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1f0dm7y\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xxUX5E8ZT\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 230, 230, 0.45)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,boxShadow:\"-0.18065619053231785px 0.18065619053231785px 0.86865387824337px -0.8333333333333333px rgba(0, 0, 0, 0.125), -0.6865599909730371px 0.6865599909730371px 3.3012043320971833px -1.6666666666666665px rgba(0, 0, 0, 0.125), -3px 3px 14.424978336205566px -2.5px rgba(0, 0, 0, 0.125)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fz7qbo\",layoutDependency:layoutDependency,layoutId:\"pBITBtjjj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jjpg2w\",layoutDependency:layoutDependency,layoutId:\"jrxPUvVxy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-165mb6p\",\"data-styles-preset\":\"tH_FWHn8W\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41)))\"},children:\"Nate S.\"})}),className:\"framer-1c3man6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QiZQAn1j6\",style:{\"--extracted-r6o4lv\":\"var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:S7PBXT8sO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-knedua\",\"data-styles-preset\":\"lqXXPdN3k\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3490c2c7-9800-4e6d-8a04-f9e5a8d7583b, rgb(89, 89, 89)))\"},children:\"Dr. Bodily and his team provided exceptional care during my recent visit. The staff was friendly and attentive, making me feel comfortable throughout the entire process.\"})}),className:\"framer-1stf0ws\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pstIYh4oA\",style:{\"--extracted-r6o4lv\":\"var(--token-3490c2c7-9800-4e6d-8a04-f9e5a8d7583b, rgb(89, 89, 89))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xpB4CyCSQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h159wo\",layoutDependency:layoutDependency,layoutId:\"eYRf0Ngwu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o3wmwe-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sbQ4AjBGx-container\",nodeId:\"sbQ4AjBGx\",rendersWithMotion:true,scopeId:\"Bz7rYeAeo\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(83, 83, 189))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"sbQ4AjBGx\",layoutId:\"sbQ4AjBGx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9klxnd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WRfHPpeq9-container\",nodeId:\"WRfHPpeq9\",rendersWithMotion:true,scopeId:\"Bz7rYeAeo\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(83, 83, 189))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"WRfHPpeq9\",layoutId:\"WRfHPpeq9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12ls08u-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SFGBYGqtG-container\",nodeId:\"SFGBYGqtG\",rendersWithMotion:true,scopeId:\"Bz7rYeAeo\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(83, 83, 189))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"SFGBYGqtG\",layoutId:\"SFGBYGqtG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ps44wn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RfJyUUDDi-container\",nodeId:\"RfJyUUDDi\",rendersWithMotion:true,scopeId:\"Bz7rYeAeo\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(83, 83, 189))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"RfJyUUDDi\",layoutId:\"RfJyUUDDi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ve86kz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mMaO9Axcx-container\",nodeId:\"mMaO9Axcx\",rendersWithMotion:true,scopeId:\"Bz7rYeAeo\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(83, 83, 189))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"mMaO9Axcx\",layoutId:\"mMaO9Axcx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kdSmd.framer-1rkr4n0, .framer-kdSmd .framer-1rkr4n0 { display: block; }\",\".framer-kdSmd.framer-1f0dm7y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 278px; justify-content: center; min-height: 278px; overflow: visible; padding: 40px; position: relative; width: 482px; }\",\".framer-kdSmd .framer-fz7qbo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kdSmd .framer-1jjpg2w { 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-kdSmd .framer-1c3man6, .framer-kdSmd .framer-1stf0ws { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kdSmd .framer-1h159wo { 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: min-content; }\",\".framer-kdSmd .framer-1o3wmwe-container, .framer-kdSmd .framer-9klxnd-container, .framer-kdSmd .framer-12ls08u-container, .framer-kdSmd .framer-ps44wn-container, .framer-kdSmd .framer-ve86kz-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kdSmd.framer-1f0dm7y, .framer-kdSmd .framer-1jjpg2w, .framer-kdSmd .framer-1h159wo { gap: 0px; } .framer-kdSmd.framer-1f0dm7y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-kdSmd.framer-1f0dm7y > :first-child, .framer-kdSmd .framer-1jjpg2w > :first-child { margin-top: 0px; } .framer-kdSmd.framer-1f0dm7y > :last-child, .framer-kdSmd .framer-1jjpg2w > :last-child { margin-bottom: 0px; } .framer-kdSmd .framer-1jjpg2w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-kdSmd .framer-1h159wo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kdSmd .framer-1h159wo > :first-child { margin-left: 0px; } .framer-kdSmd .framer-1h159wo > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-kdSmd[data-border=\"true\"]::after, .framer-kdSmd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 278\n * @framerIntrinsicWidth 482\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,\"278px\",null]}}}\n * @framerVariables {\"S7PBXT8sO\":\"title\",\"xpB4CyCSQ\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBz7rYeAeo=withCSS(Component,css,\"framer-kdSmd\");export default FramerBz7rYeAeo;FramerBz7rYeAeo.displayName=\"Testimonial Card\";FramerBz7rYeAeo.defaultProps={height:278,width:482};addPropertyControls(FramerBz7rYeAeo,{S7PBXT8sO:{defaultValue:\"Nate S.\",displayTextArea:false,title:\"Title\",type:ControlType.String},xpB4CyCSQ:{defaultValue:\"Dr. Bodily and his team provided exceptional care during my recent visit. The staff was friendly and attentive, making me feel comfortable throughout the entire process.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerBz7rYeAeo,[{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\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBz7rYeAeo\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"278\",\"framerIntrinsicWidth\":\"482\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"S7PBXT8sO\\\":\\\"title\\\",\\\"xpB4CyCSQ\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,\\\"278px\\\",null]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Bz7rYeAeo.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js\";import TestimonialCard from\"https://framerusercontent.com/modules/Nd23y5AAcqUCgJrx44yl/IdtPfDSFrWo9NVMFaYGP/Bz7rYeAeo.js\";const TestimonialCardFonts=getFonts(TestimonialCard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"DuJSNL9V7\",\"JJHrYBoNW\",\"MsCovhFsR\"];const serializationHash=\"framer-7o4Y0\";const variantClassNames={DuJSNL9V7:\"framer-v-bsa82q\",JJHrYBoNW:\"framer-v-1yucibu\",MsCovhFsR:\"framer-v-1h8cvym\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"MsCovhFsR\",Desktop:\"DuJSNL9V7\",Phone:\"JJHrYBoNW\"};const getProps=({height,id,text,width,...props})=>{return{...props,NUnsdEKe0:text??props.NUnsdEKe0??\"Ett helt fantastiskt professionellt f\\xf6retag med underbara och trevliga medarbetare. Mycket trevlig och fin upplevelse. Jag kan skarpt rekommendera Sluta Riv.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DuJSNL9V7\"};};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,NUnsdEKe0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DuJSNL9V7\",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-bsa82q\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"DuJSNL9V7\",ref:refBinding,style:{...style},...addPropertyOverrides({JJHrYBoNW:{\"data-framer-name\":\"Phone\"},MsCovhFsR:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-erad21-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u0POICpkj-container\",nodeId:\"u0POICpkj\",rendersWithMotion:true,scopeId:\"DSo7O6yhB\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(23, 45, 24))\",arrowGap:20,arrowPadding:20,arrowPaddingBottom:20,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"u0POICpkj\",intervalControl:4,itemAmount:3,layoutId:\"u0POICpkj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dferg4-container\",\"data-framer-name\":\"Testimonial Card 1\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FOkiMdQZ3-container\",name:\"Testimonial Card 1\",nodeId:\"FOkiMdQZ3\",rendersWithMotion:true,scopeId:\"DSo7O6yhB\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"FOkiMdQZ3\",layoutId:\"FOkiMdQZ3\",name:\"Testimonial Card 1\",S7PBXT8sO:\"Pelle Fredriksson\",style:{width:\"100%\"},width:\"100%\",xpB4CyCSQ:NUnsdEKe0})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wj7ent-container\",\"data-framer-name\":\"Testimonial Card 1\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qxc0OqniG-container\",name:\"Testimonial Card 1\",nodeId:\"qxc0OqniG\",rendersWithMotion:true,scopeId:\"DSo7O6yhB\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"qxc0OqniG\",layoutId:\"qxc0OqniG\",name:\"Testimonial Card 1\",S7PBXT8sO:\" Isabell Axelsson\",style:{width:\"100%\"},width:\"100%\",xpB4CyCSQ:\"Vi har efter 1 \\xe5r kunnat m\\xe4ta av v\\xe5ra fuktsensorer som installerades i v\\xe5rt nya badrum och vet d\\xe4rmed att allting h\\xe5ller t\\xe4tt, rekommenderar \uD83D\uDC4D\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8g2ld6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qRCNbpEuY-container\",nodeId:\"qRCNbpEuY\",rendersWithMotion:true,scopeId:\"DSo7O6yhB\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"qRCNbpEuY\",layoutId:\"qRCNbpEuY\",S7PBXT8sO:\"Jonas Borgstr\\xf6m\",style:{width:\"100%\"},width:\"100%\",xpB4CyCSQ:\"Sluta Riv \\xe4r trevliga och har v\\xe4ldigt goda kunskaper inom reparation av badrum!\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qsc85i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ui7R51oA1-container\",nodeId:\"ui7R51oA1\",rendersWithMotion:true,scopeId:\"DSo7O6yhB\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ui7R51oA1\",layoutId:\"ui7R51oA1\",S7PBXT8sO:\"Peter Gudmundsson\",style:{width:\"100%\"},width:\"100%\",xpB4CyCSQ:\"Jag beh\\xf6vde inte riva ut hela mitt badrum, tack vare att Sluta Riv kunde laga min golvbrunn. Jag \\xe4r supern\\xf6jd!\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({JJHrYBoNW:{arrowOptions:{arrowFill:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(23, 45, 24))\",arrowGap:20,arrowPadding:20,arrowPaddingBottom:10,arrowPaddingLeft:0,arrowPaddingRight:150,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},itemAmount:1},MsCovhFsR:{arrowOptions:{arrowFill:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(23, 45, 24))\",arrowGap:20,arrowPadding:20,arrowPaddingBottom:20,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-60,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},gap:22,itemAmount:2}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7o4Y0.framer-eo2s89, .framer-7o4Y0 .framer-eo2s89 { display: block; }\",\".framer-7o4Y0.framer-bsa82q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 24px; height: 472px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-7o4Y0 .framer-erad21-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-7o4Y0 .framer-dferg4-container, .framer-7o4Y0 .framer-1wj7ent-container, .framer-7o4Y0 .framer-8g2ld6-container, .framer-7o4Y0 .framer-qsc85i-container { height: auto; position: relative; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7o4Y0.framer-bsa82q { gap: 0px; } .framer-7o4Y0.framer-bsa82q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-7o4Y0.framer-bsa82q > :first-child { margin-left: 0px; } .framer-7o4Y0.framer-bsa82q > :last-child { margin-right: 0px; } }\",\".framer-7o4Y0.framer-v-1yucibu.framer-bsa82q { height: min-content; width: 390px; }\",\".framer-7o4Y0.framer-v-1yucibu .framer-erad21-container { height: 360px; }\",\".framer-7o4Y0.framer-v-1h8cvym.framer-bsa82q { height: min-content; width: 708px; }\",\".framer-7o4Y0.framer-v-1h8cvym .framer-erad21-container { height: 370px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 472\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JJHrYBoNW\":{\"layout\":[\"fixed\",\"auto\"]},\"MsCovhFsR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NUnsdEKe0\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDSo7O6yhB=withCSS(Component,css,\"framer-7o4Y0\");export default FramerDSo7O6yhB;FramerDSo7O6yhB.displayName=\"Testimonial Slideshow 2\";FramerDSo7O6yhB.defaultProps={height:472,width:1300};addPropertyControls(FramerDSo7O6yhB,{variant:{options:[\"DuJSNL9V7\",\"JJHrYBoNW\",\"MsCovhFsR\"],optionTitles:[\"Desktop\",\"Phone\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},NUnsdEKe0:{defaultValue:\"Ett helt fantastiskt professionellt f\\xf6retag med underbara och trevliga medarbetare. Mycket trevlig och fin upplevelse. Jag kan skarpt rekommendera Sluta Riv.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerDSo7O6yhB,[{explicitInter:true,fonts:[]},...TestimonialCardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDSo7O6yhB\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NUnsdEKe0\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JJHrYBoNW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MsCovhFsR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1300\",\"framerIntrinsicHeight\":\"472\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DSo7O6yhB.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9XQ2ZaX9nfULcDpu6BdM/PU8HXRyvONzj975ZEJCd/UQGG828IN.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={c9roK05LK:{hover:true},kEhzONBqf:{hover:true},KKI6LLdgM:{hover:true},OKEoudjmY:{hover:true},PJ6RhG3rP:{hover:true}};const cycleOrder=[\"PJ6RhG3rP\",\"kEhzONBqf\",\"c9roK05LK\",\"KKI6LLdgM\",\"OKEoudjmY\"];const serializationHash=\"framer-qjgVk\";const variantClassNames={c9roK05LK:\"framer-v-11kd1q3\",kEhzONBqf:\"framer-v-1ha56vq\",KKI6LLdgM:\"framer-v-1mubp4t\",OKEoudjmY:\"framer-v-1mapvuj\",PJ6RhG3rP:\"framer-v-1or7ys0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:80,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Primary Black\":\"PJ6RhG3rP\",\"Primary Brand Blue\":\"c9roK05LK\",\"Text Button - Black\":\"KKI6LLdgM\",\"Text Button - Brand\":\"OKEoudjmY\",Secondary:\"kEhzONBqf\"};const getProps=({buttonRadius,height,id,link,newTab,rightIcon,rightIconName,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,B5PTj2R73:(_ref=rightIconName!==null&&rightIconName!==void 0?rightIconName:props.B5PTj2R73)!==null&&_ref!==void 0?_ref:\"arrow-right\",CJwkcCfE5:link!==null&&link!==void 0?link:props.CJwkcCfE5,GR68CgLTN:(_ref1=title!==null&&title!==void 0?title:props.GR68CgLTN)!==null&&_ref1!==void 0?_ref1:\"Button Default\",LG5CSJpvD:rightIcon!==null&&rightIcon!==void 0?rightIcon:props.LG5CSJpvD,ot18wTv79:newTab!==null&&newTab!==void 0?newTab:props.ot18wTv79,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"PJ6RhG3rP\",w5Hgz19ND:(_ref3=buttonRadius!==null&&buttonRadius!==void 0?buttonRadius:props.w5Hgz19ND)!==null&&_ref3!==void 0?_ref3:10};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GR68CgLTN,CJwkcCfE5,ot18wTv79,LG5CSJpvD,B5PTj2R73,w5Hgz19ND,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PJ6RhG3rP\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CJwkcCfE5,nodeId:\"PJ6RhG3rP\",openInNewTab:ot18wTv79,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1or7ys0\",className,classNames)} framer-bqvigt`,\"data-border\":true,\"data-framer-name\":\"Primary Black\",layoutDependency:layoutDependency,layoutId:\"PJ6RhG3rP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgb(108, 117, 127) 0%, rgb(37, 43, 49) 100%)\",borderBottomLeftRadius:radiusForCorner(w5Hgz19ND,3),borderBottomRightRadius:radiusForCorner(w5Hgz19ND,2),borderTopLeftRadius:radiusForCorner(w5Hgz19ND,0),borderTopRightRadius:radiusForCorner(w5Hgz19ND,1),boxShadow:\"0px 0px 0px 1px rgb(48, 55, 59)\",...style},variants:{\"c9roK05LK-hover\":{background:\"linear-gradient(180deg, rgb(15, 171, 255) 0%, rgb(0, 107, 161) 100%)\",boxShadow:\"0px 0px 0px 1px rgb(0, 123, 194)\"},\"kEhzONBqf-hover\":{\"--border-color\":\"rgb(217, 222, 226)\",background:\"linear-gradient(180deg, rgb(255, 255, 255) 20%, rgb(232, 237, 243) 100%)\"},\"KKI6LLdgM-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},\"OKEoudjmY-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},\"PJ6RhG3rP-hover\":{\"--border-color\":\"rgba(255, 255, 255, 0.24)\",background:\"linear-gradient(180deg, rgb(56, 62, 66) 0%, rgb(4, 5, 6) 100%)\"},c9roK05LK:{background:\"linear-gradient(180deg, rgb(87, 189, 244) 0%, rgb(6, 132, 195) 100%)\",boxShadow:\"0px 0px 0px 1px rgb(0, 136, 214)\"},kEhzONBqf:{\"--border-color\":\"var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233))\",background:\"linear-gradient(180deg, rgb(255, 255, 255) 15.000000000000002%, rgb(255, 255, 255) 100%)\",boxShadow:\"0px 1px 2px 0px rgba(82, 88, 102, 0.11)\"},KKI6LLdgM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},OKEoudjmY:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({\"c9roK05LK-hover\":{\"data-framer-name\":undefined},\"kEhzONBqf-hover\":{\"data-framer-name\":undefined},\"KKI6LLdgM-hover\":{\"data-framer-name\":undefined},\"OKEoudjmY-hover\":{\"data-framer-name\":undefined},\"PJ6RhG3rP-hover\":{\"data-framer-name\":undefined},c9roK05LK:{\"data-framer-name\":\"Primary Brand Blue\"},kEhzONBqf:{\"data-framer-name\":\"Secondary\"},KKI6LLdgM:{\"data-framer-name\":\"Text Button - Black\"},OKEoudjmY:{\"data-framer-name\":\"Text Button - Brand\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Button Default\"})}),className:\"framer-bxkifn\",\"data-framer-name\":\"content\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"vszl3PrCi\",style:{\"--extracted-r6o4lv\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"},text:GR68CgLTN,variants:{kEhzONBqf:{\"--extracted-r6o4lv\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},KKI6LLdgM:{\"--extracted-r6o4lv\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},OKEoudjmY:{\"--extracted-1w1cjl5\":\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(238, 36, 45))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kEhzONBqf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Button Default\"})})},KKI6LLdgM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Button Default\"})})},OKEoudjmY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-15ts8um\",\"data-styles-preset\":\"UQGG828IN\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(238, 36, 45)))\"},children:\"Button Default\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),LG5CSJpvD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cf3cai-container\",\"data-framer-name\":\"Right icon\",layoutDependency:layoutDependency,layoutId:\"RPFPWq445-container\",name:\"Right icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",height:\"100%\",iconSearch:B5PTj2R73,iconSelection:\"House\",id:\"RPFPWq445\",layoutId:\"RPFPWq445\",mirrored:false,name:\"Right icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({kEhzONBqf:{color:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},KKI6LLdgM:{color:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},OKEoudjmY:{color:\"var(--token-0d0bdf16-58da-4598-847e-1259eb1fa899, rgb(238, 36, 45))\",weight:\"regular\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qjgVk.framer-bqvigt, .framer-qjgVk .framer-bqvigt { display: block; }\",\".framer-qjgVk.framer-1or7ys0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qjgVk .framer-bxkifn { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-qjgVk .framer-cf3cai-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qjgVk.framer-1or7ys0 { gap: 0px; } .framer-qjgVk.framer-1or7ys0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qjgVk.framer-1or7ys0 > :first-child { margin-left: 0px; } .framer-qjgVk.framer-1or7ys0 > :last-child { margin-right: 0px; } }\",\".framer-qjgVk.framer-v-1ha56vq.framer-1or7ys0 { padding: 10px 16px 10px 16px; }\",\".framer-qjgVk.framer-v-1mubp4t.framer-1or7ys0, .framer-qjgVk.framer-v-1mapvuj.framer-1or7ys0 { gap: 6px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qjgVk.framer-v-1mubp4t.framer-1or7ys0 { gap: 0px; } .framer-qjgVk.framer-v-1mubp4t.framer-1or7ys0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-qjgVk.framer-v-1mubp4t.framer-1or7ys0 > :first-child { margin-left: 0px; } .framer-qjgVk.framer-v-1mubp4t.framer-1or7ys0 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qjgVk.framer-v-1mapvuj.framer-1or7ys0 { gap: 0px; } .framer-qjgVk.framer-v-1mapvuj.framer-1or7ys0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-qjgVk.framer-v-1mapvuj.framer-1or7ys0 > :first-child { margin-left: 0px; } .framer-qjgVk.framer-v-1mapvuj.framer-1or7ys0 > :last-child { margin-right: 0px; } }\",\".framer-qjgVk.framer-v-1mubp4t.hover.framer-1or7ys0, .framer-qjgVk.framer-v-1mapvuj.hover.framer-1or7ys0 { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qjgVk.framer-v-1mubp4t.hover.framer-1or7ys0 { gap: 0px; } .framer-qjgVk.framer-v-1mubp4t.hover.framer-1or7ys0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qjgVk.framer-v-1mubp4t.hover.framer-1or7ys0 > :first-child { margin-left: 0px; } .framer-qjgVk.framer-v-1mubp4t.hover.framer-1or7ys0 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qjgVk.framer-v-1mapvuj.hover.framer-1or7ys0 { gap: 0px; } .framer-qjgVk.framer-v-1mapvuj.hover.framer-1or7ys0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qjgVk.framer-v-1mapvuj.hover.framer-1or7ys0 > :first-child { margin-left: 0px; } .framer-qjgVk.framer-v-1mapvuj.hover.framer-1or7ys0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-qjgVk[data-border=\"true\"]::after, .framer-qjgVk [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 165.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kEhzONBqf\":{\"layout\":[\"auto\",\"auto\"]},\"c9roK05LK\":{\"layout\":[\"auto\",\"auto\"]},\"KKI6LLdgM\":{\"layout\":[\"auto\",\"auto\"]},\"OKEoudjmY\":{\"layout\":[\"auto\",\"auto\"]},\"k_EY75ijr\":{\"layout\":[\"auto\",\"auto\"]},\"SMthHFAeX\":{\"layout\":[\"auto\",\"auto\"]},\"DaXQLMtl8\":{\"layout\":[\"auto\",\"auto\"]},\"G9FkKl8Qj\":{\"layout\":[\"auto\",\"auto\"]},\"mRIES9wwv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GR68CgLTN\":\"title\",\"CJwkcCfE5\":\"link\",\"ot18wTv79\":\"newTab\",\"LG5CSJpvD\":\"rightIcon\",\"B5PTj2R73\":\"rightIconName\",\"w5Hgz19ND\":\"buttonRadius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEMBOKCMyZ=withCSS(Component,css,\"framer-qjgVk\");export default FramerEMBOKCMyZ;FramerEMBOKCMyZ.displayName=\"Button 2\";FramerEMBOKCMyZ.defaultProps={height:40,width:165.5};addPropertyControls(FramerEMBOKCMyZ,{variant:{options:[\"PJ6RhG3rP\",\"kEhzONBqf\",\"c9roK05LK\",\"KKI6LLdgM\",\"OKEoudjmY\"],optionTitles:[\"Primary Black\",\"Secondary\",\"Primary Brand Blue\",\"Text Button - Black\",\"Text Button - Brand\"],title:\"Variant\",type:ControlType.Enum},GR68CgLTN:{defaultValue:\"Button Default\",displayTextArea:false,title:\"Title\",type:ControlType.String},CJwkcCfE5:{title:\"Link\",type:ControlType.Link},ot18wTv79:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},LG5CSJpvD:{defaultValue:false,title:\"Right Icon\",type:ControlType.Boolean},B5PTj2R73:{defaultValue:\"arrow-right\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"Right Icon Name\",type:ControlType.String},w5Hgz19ND:{defaultValue:10,title:\"Button Radius\",type:ControlType.Number}});addFonts(FramerEMBOKCMyZ,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEMBOKCMyZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"165.5\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"GR68CgLTN\\\":\\\"title\\\",\\\"CJwkcCfE5\\\":\\\"link\\\",\\\"ot18wTv79\\\":\\\"newTab\\\",\\\"LG5CSJpvD\\\":\\\"rightIcon\\\",\\\"B5PTj2R73\\\":\\\"rightIconName\\\",\\\"w5Hgz19ND\\\":\\\"buttonRadius\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kEhzONBqf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c9roK05LK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KKI6LLdgM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OKEoudjmY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"k_EY75ijr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SMthHFAeX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DaXQLMtl8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G9FkKl8Qj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mRIES9wwv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EMBOKCMyZ.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import DropdownItemImgCard2 from\"https://framerusercontent.com/modules/sY8QVYAKJJlTjVTBJTtx/GzxAGQfoMLYCSMdbQLMZ/RWoRwodhJ.js\";const DropdownItemImgCard2Fonts=getFonts(DropdownItemImgCard2);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"Z59NmBK4d\",\"DWLURmBQR\"];const serializationHash=\"framer-I9Dkw\";const variantClassNames={DWLURmBQR:\"framer-v-v3me2t\",Z59NmBK4d:\"framer-v-19yxr0f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Dator:\"Z59NmBK4d\",Laptop:\"DWLURmBQR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Z59NmBK4d\"};};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({cycleOrder,defaultVariant:\"Z59NmBK4d\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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-19yxr0f\",className,classNames),\"data-framer-name\":\"Dator\",layoutDependency:layoutDependency,layoutId:\"Z59NmBK4d\",ref:refBinding,style:{...style},...addPropertyOverrides({DWLURmBQR:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16m30rv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"V8FiWGjfO-container\",nodeId:\"V8FiWGjfO\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-0de3bbb2-94d4-4a81-b428-75acbc4d68e0, rgb(221, 167, 165))\",arrowPadding:40,arrowRadius:40,arrowSize:60,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"V8FiWGjfO\",layoutId:\"V8FiWGjfO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MKbaBdsYy\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4qc24o-container\",\"data-framer-name\":\"Badrumsrenovering utan att riva\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AY9T3qaqX-container\",name:\"Badrumsrenovering utan att riva\",nodeId:\"AY9T3qaqX\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"AY9T3qaqX\",Jd4EdSF_6:\"Badrumsrenovering utan att riva\",L9MPnNBJb:\"Sluta Riv monterar ett nytt badrum \\xf6ver den gamla plastmattan, utan att riva\\n\",layoutId:\"AY9T3qaqX\",MNhLpt7Yd:resolvedLinks[0],name:\"Badrumsrenovering utan att riva\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"49.5%\",positionY:\"73.3%\",src:\"https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg\",srcSet:\"https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg 3442w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gtwofl-container\",\"data-framer-name\":\"Vattenl\\xe4ckage i v\\xe4gg\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"g55BeD0jh-container\",name:\"Vattenl\\xe4ckage i v\\xe4gg\",nodeId:\"g55BeD0jh\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"g55BeD0jh\",Jd4EdSF_6:\"Vattenl\\xe4ckage i v\\xe4gg\",L9MPnNBJb:\"Sluta Riv l\\xe4cks\\xf6ker omr\\xe5det runt vattenl\\xe4ckaget och markerar innan delreparation p\\xe5b\\xf6rjas\",layoutId:\"g55BeD0jh\",MNhLpt7Yd:resolvedLinks1[0],name:\"Vattenl\\xe4ckage i v\\xe4gg\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"46%\",positionY:\"56.8%\",src:\"https://framerusercontent.com/images/45xsAm9ez9llc4wkd58hl4N2TM.jpg\",srcSet:\"https://framerusercontent.com/images/45xsAm9ez9llc4wkd58hl4N2TM.jpg?scale-down-to=2048 631w,https://framerusercontent.com/images/45xsAm9ez9llc4wkd58hl4N2TM.jpg 849w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G5495Tkn6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vci4df-container\",\"data-framer-name\":\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Qj3Hhmneg-container\",name:\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",nodeId:\"Qj3Hhmneg\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"Qj3Hhmneg\",Jd4EdSF_6:\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",L9MPnNBJb:\"Sluta Riv lokaliserar vattenl\\xe4ckaget i den inbyggda toaletten f\\xf6r att reparera, utan att byta ut n\\xe5got\\n\",layoutId:\"Qj3Hhmneg\",MNhLpt7Yd:resolvedLinks2[0],name:\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"51%\",positionY:\"34.6%\",src:\"https://framerusercontent.com/images/26cpib1rpW1PrvetoKAjg4Jal0o.png\",srcSet:\"https://framerusercontent.com/images/26cpib1rpW1PrvetoKAjg4Jal0o.png?scale-down-to=1024 672w,https://framerusercontent.com/images/26cpib1rpW1PrvetoKAjg4Jal0o.png?scale-down-to=2048 1344w,https://framerusercontent.com/images/26cpib1rpW1PrvetoKAjg4Jal0o.png 1418w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WlWZ2uZfr\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d72omo-container\",\"data-framer-name\":\"Laga skadad golvbrunn / t\\xe4tskikt\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VpFW_a9Mw-container\",name:\"Laga skadad golvbrunn / t\\xe4tskikt\",nodeId:\"VpFW_a9Mw\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"VpFW_a9Mw\",Jd4EdSF_6:\"Laga skadad golvbrunn / t\\xe4tskikt\",L9MPnNBJb:\"Sluta Riv anv\\xe4nder egna patenterade material och verktyg f\\xf6r att dellaga den skadade golvbrunnen\",layoutId:\"VpFW_a9Mw\",MNhLpt7Yd:resolvedLinks3[0],name:\"Laga skadad golvbrunn / t\\xe4tskikt\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"46.8%\",positionY:\"67.1%\",src:\"https://framerusercontent.com/images/hAc1RkvGKMrNCt4xCiqZxicZ8w.png\",srcSet:\"https://framerusercontent.com/images/hAc1RkvGKMrNCt4xCiqZxicZ8w.png?scale-down-to=2048 705w,https://framerusercontent.com/images/hAc1RkvGKMrNCt4xCiqZxicZ8w.png 744w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P5_8Txbzp\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wjkiyb-container\",\"data-framer-name\":\"Laga skadad kakel / klinker\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Lr4zhcnR8-container\",name:\"Laga skadad kakel / klinker\",nodeId:\"Lr4zhcnR8\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"Lr4zhcnR8\",Jd4EdSF_6:\"Laga skadad kakel / klinker\",L9MPnNBJb:\"Sluta Riv byter ut kakelplattan fackmannam\\xe4ssigt utan att skada membranet och riva hela golvet \\n\",layoutId:\"Lr4zhcnR8\",MNhLpt7Yd:resolvedLinks4[0],name:\"Laga skadad kakel / klinker\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({src:\"https://framerusercontent.com/images/2O19XC6qQsmdPFgHks3PZDfU.png\",srcSet:\"https://framerusercontent.com/images/2O19XC6qQsmdPFgHks3PZDfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/2O19XC6qQsmdPFgHks3PZDfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2O19XC6qQsmdPFgHks3PZDfU.png 1095w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y2hve3-container\",\"data-framer-name\":\"Laga skadad avloppsr\\xf6r\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gvHugb6QM-container\",name:\"Laga skadad avloppsr\\xf6r\",nodeId:\"gvHugb6QM\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"gvHugb6QM\",Jd4EdSF_6:\"Laga skadad avloppsr\\xf6r\",L9MPnNBJb:\"Sluta Riv anv\\xe4nder egna patenterade material och verktyg f\\xf6r att reparera det skadade avloppsr\\xf6ret\\n\",layoutId:\"gvHugb6QM\",MNhLpt7Yd:resolvedLinks5[0],name:\"Laga skadad avloppsr\\xf6r\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({src:\"https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg\",srcSet:\"https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg 1300w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FtLXbq6f4\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cxkcd-container\",\"data-framer-name\":\"Vattenl\\xe4ckage i golv\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bqFtzlzOB-container\",name:\"Vattenl\\xe4ckage i golv\",nodeId:\"bqFtzlzOB\",rendersWithMotion:true,scopeId:\"NU_bgxQ4F\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"bqFtzlzOB\",Jd4EdSF_6:\"Vattenl\\xe4ckage i golv\",L9MPnNBJb:\"Sluta Riv lokaliserar vattenl\\xe4ckaget f\\xf6r att p\\xe5b\\xf6rja reparationen av golv och t\\xe4tskikt\",layoutId:\"bqFtzlzOB\",MNhLpt7Yd:resolvedLinks6[0],name:\"Vattenl\\xe4ckage i golv\",style:{height:\"100%\",width:\"100%\"},variant:\"X7EKGox2H\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"50.9%\",positionY:\"100%\",src:\"https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg\",srcSet:\"https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg?scale-down-to=1024 1023w,https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg 1170w\"},\"\"),YmS6TKh0B:\"NEW\"})})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({DWLURmBQR:{align:\"center\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:false},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:50,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:200,showProgressDots:false,showScrollbar:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I9Dkw.framer-khjxhw, .framer-I9Dkw .framer-khjxhw { display: block; }\",\".framer-I9Dkw.framer-19yxr0f { 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: 1400px; }\",\".framer-I9Dkw .framer-16m30rv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-I9Dkw .framer-4qc24o-container, .framer-I9Dkw .framer-gtwofl-container, .framer-I9Dkw .framer-vci4df-container, .framer-I9Dkw .framer-1d72omo-container, .framer-I9Dkw .framer-wjkiyb-container, .framer-I9Dkw .framer-y2hve3-container, .framer-I9Dkw .framer-cxkcd-container { height: 350px; position: relative; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I9Dkw.framer-19yxr0f { gap: 0px; } .framer-I9Dkw.framer-19yxr0f > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-I9Dkw.framer-19yxr0f > :first-child { margin-left: 0px; } .framer-I9Dkw.framer-19yxr0f > :last-child { margin-right: 0px; } }\",\".framer-I9Dkw.framer-v-v3me2t.framer-19yxr0f { width: 878px; }\",\".framer-I9Dkw.framer-v-v3me2t .framer-16m30rv-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DWLURmBQR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNU_bgxQ4F=withCSS(Component,css,\"framer-I9Dkw\");export default FramerNU_bgxQ4F;FramerNU_bgxQ4F.displayName=\"Testimonial Copy 5\";FramerNU_bgxQ4F.defaultProps={height:350,width:1400};addPropertyControls(FramerNU_bgxQ4F,{variant:{options:[\"Z59NmBK4d\",\"DWLURmBQR\"],optionTitles:[\"Dator\",\"Laptop\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNU_bgxQ4F,[{explicitInter:true,fonts:[]},...DropdownItemImgCard2Fonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNU_bgxQ4F\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DWLURmBQR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NU_bgxQ4F.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import DropdownItemImgCard2 from\"https://framerusercontent.com/modules/sY8QVYAKJJlTjVTBJTtx/GzxAGQfoMLYCSMdbQLMZ/RWoRwodhJ.js\";const DropdownItemImgCard2Fonts=getFonts(DropdownItemImgCard2);const CarouselFonts=getFonts(Carousel);const serializationHash=\"framer-GuN8V\";const variantClassNames={kzbgVz0Qn:\"framer-v-18au20d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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:\"kzbgVz0Qn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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-18au20d\",className,classNames),\"data-framer-name\":\"Mobil\",layoutDependency:layoutDependency,layoutId:\"kzbgVz0Qn\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tpot8e-container\",\"data-framer-name\":\"Karusell\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PR4rEp2jp-container\",name:\"Karusell\",nodeId:\"PR4rEp2jp\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-0de3bbb2-94d4-4a81-b428-75acbc4d68e0, rgb(221, 167, 165))\",arrowPadding:40,arrowRadius:40,arrowSize:60,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:12,height:\"100%\",id:\"PR4rEp2jp\",layoutId:\"PR4rEp2jp\",name:\"Karusell\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k03f2p-container\",\"data-framer-name\":\"Renovering utan att riva\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"G3WVtBrGX-container\",name:\"Renovering utan att riva\",nodeId:\"G3WVtBrGX\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"G3WVtBrGX\",Jd4EdSF_6:\"Renovering utan att riva\",L9MPnNBJb:\"Monterar ett nytt badrum ovanp\\xe5 den gamla plastmattan \u2013 utan rivning\",layoutId:\"G3WVtBrGX\",MNhLpt7Yd:resolvedLinks[0],name:\"Renovering utan att riva\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"50.3%\",positionY:\"72.1%\",src:\"https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg\",srcSet:\"https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QMNgCJqf5fzPPPqt4WVXdGpo21I.jpg 3442w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a941if-container\",\"data-framer-name\":\"Vattenl\\xe4ckage i v\\xe4gg\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YvPEf3rnI-container\",name:\"Vattenl\\xe4ckage i v\\xe4gg\",nodeId:\"YvPEf3rnI\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"YvPEf3rnI\",Jd4EdSF_6:\"Vattenl\\xe4ckage i v\\xe4gg\",L9MPnNBJb:\"Vi l\\xe4cks\\xf6ker omr\\xe5det och markerar innan delreperation p\\xe5b\\xf6rjas\",layoutId:\"YvPEf3rnI\",MNhLpt7Yd:resolvedLinks1[0],name:\"Vattenl\\xe4ckage i v\\xe4gg\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"49%\",positionY:\"55.4%\",src:\"https://framerusercontent.com/images/TvyKvXUYjG0KvPTItMr04a9LzQ.jpg\",srcSet:\"https://framerusercontent.com/images/TvyKvXUYjG0KvPTItMr04a9LzQ.jpg?scale-down-to=2048 610w,https://framerusercontent.com/images/TvyKvXUYjG0KvPTItMr04a9LzQ.jpg 821w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G5495Tkn6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ma5svj-container\",\"data-framer-name\":\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"e1Vo2oBnr-container\",name:\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",nodeId:\"e1Vo2oBnr\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"e1Vo2oBnr\",Jd4EdSF_6:\"Vattenl\\xe4ckage fr\\xe5n toalett\",L9MPnNBJb:\"Unders\\xf6k och lokalisera problemet f\\xf6r att laga utan att beh\\xf6va byta ut\",layoutId:\"e1Vo2oBnr\",MNhLpt7Yd:resolvedLinks2[0],name:\"Vattenl\\xe4ckage fr\\xe5n inbyggt toalett\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"52%\",positionY:\"33.9%\",src:\"https://framerusercontent.com/images/H5cCjLnY8yFOOWYYfpOmLmd00M.png\",srcSet:\"https://framerusercontent.com/images/H5cCjLnY8yFOOWYYfpOmLmd00M.png?scale-down-to=1024 655w,https://framerusercontent.com/images/H5cCjLnY8yFOOWYYfpOmLmd00M.png?scale-down-to=2048 1311w,https://framerusercontent.com/images/H5cCjLnY8yFOOWYYfpOmLmd00M.png 1383w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ykrk5e-container\",\"data-framer-name\":\"Laga skadad golvbrunn / t\\xe4tskikt\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KD5Y1JTyE-container\",name:\"Laga skadad golvbrunn / t\\xe4tskikt\",nodeId:\"KD5Y1JTyE\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"KD5Y1JTyE\",Jd4EdSF_6:\"Laga golvbrunn / t\\xe4tskikt\",L9MPnNBJb:\"Vi anv\\xe4nder v\\xe5ra egna patenterade material f\\xf6r att dellaga skadan\",layoutId:\"KD5Y1JTyE\",MNhLpt7Yd:resolvedLinks3[0],name:\"Laga skadad golvbrunn / t\\xe4tskikt\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"49%\",positionY:\"66.6%\",src:\"https://framerusercontent.com/images/6I8TSAXGnBJ4NOnLjxI5qtWtY.png\",srcSet:\"https://framerusercontent.com/images/6I8TSAXGnBJ4NOnLjxI5qtWtY.png?scale-down-to=2048 733w,https://framerusercontent.com/images/6I8TSAXGnBJ4NOnLjxI5qtWtY.png 774w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P5_8Txbzp\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9kl6wa-container\",\"data-framer-name\":\"Laga skadad kakel / klinker\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pMMWhKC_I-container\",name:\"Laga skadad kakel / klinker\",nodeId:\"pMMWhKC_I\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"pMMWhKC_I\",Jd4EdSF_6:\"Laga skadad kakel / klinker\",L9MPnNBJb:\"Vi byter ut plattan fackmannam\\xe4ssigt utan att skada membranet \",layoutId:\"pMMWhKC_I\",MNhLpt7Yd:resolvedLinks4[0],name:\"Laga skadad kakel / klinker\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"58%\",positionY:\"95.4%\",src:\"https://framerusercontent.com/images/rkDfVHDMlxfdnpB49JDSVHe2Aq0.png\",srcSet:\"https://framerusercontent.com/images/rkDfVHDMlxfdnpB49JDSVHe2Aq0.png?scale-down-to=1024 515w,https://framerusercontent.com/images/rkDfVHDMlxfdnpB49JDSVHe2Aq0.png?scale-down-to=2048 1031w,https://framerusercontent.com/images/rkDfVHDMlxfdnpB49JDSVHe2Aq0.png 1088w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yigg83-container\",\"data-framer-name\":\"Laga skadad avloppsr\\xf6r\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CMNRYdVvz-container\",name:\"Laga skadad avloppsr\\xf6r\",nodeId:\"CMNRYdVvz\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"CMNRYdVvz\",Jd4EdSF_6:\"Laga skadad avloppsr\\xf6r\",L9MPnNBJb:\"Vi anv\\xe4nder v\\xe5ra egna patenterade material f\\xf6r att laga avloppsr\\xf6ret\",layoutId:\"CMNRYdVvz\",MNhLpt7Yd:resolvedLinks5[0],name:\"Laga skadad avloppsr\\xf6r\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({src:\"https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg\",srcSet:\"https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2fHS5YCqXHLj6qMf6wLS8XDeKAg.jpg 1300w\"},\"\"),YmS6TKh0B:\"NEW\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-49q9ic\",\"data-framer-name\":\"Vattenl\\xe4ckage i golv\",layoutDependency:layoutDependency,layoutId:\"xwZjHjsbR\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MKbaBdsYy\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:326,width:\"250px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1njgd24-container\",\"data-framer-name\":\"Vattenl\\xe4ckage i golv\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pHfUAf3ES-container\",name:\"Vattenl\\xe4ckage i golv\",nodeId:\"pHfUAf3ES\",rendersWithMotion:true,scopeId:\"oMJ6nEQj2\",children:/*#__PURE__*/_jsx(DropdownItemImgCard2,{bKkHQEQ74:\"0px\",height:\"100%\",id:\"pHfUAf3ES\",Jd4EdSF_6:\"Vattenl\\xe4ckage i golv\",L9MPnNBJb:\"Vi lokliserar vattenl\\xe4ckaget f\\xf6r att p\\xe5b\\xf6rja reperationen av t\\xe4tskikt\",layoutId:\"pHfUAf3ES\",MNhLpt7Yd:resolvedLinks6[0],name:\"Vattenl\\xe4ckage i golv\",style:{width:\"100%\"},variant:\"wppHAgo5V\",vpMEYGy50:false,width:\"100%\",y4bIQ9Aht:addImageAlt({positionX:\"46.7%\",positionY:\"100%\",src:\"https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg\",srcSet:\"https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg?scale-down-to=1024 1023w,https://framerusercontent.com/images/8l6wmNq3FkEEr7omDPtF33LdIpM.jpeg 1170w\"},\"\"),YmS6TKh0B:\"NEW\"})})})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GuN8V.framer-119yz27, .framer-GuN8V .framer-119yz27 { display: block; }\",\".framer-GuN8V.framer-18au20d { 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: 1400px; }\",\".framer-GuN8V .framer-1tpot8e-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-GuN8V .framer-k03f2p-container, .framer-GuN8V .framer-a941if-container, .framer-GuN8V .framer-ma5svj-container, .framer-GuN8V .framer-1ykrk5e-container, .framer-GuN8V .framer-9kl6wa-container, .framer-GuN8V .framer-1yigg83-container { height: auto; position: relative; width: 250px; }\",\".framer-GuN8V .framer-49q9ic { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 270px; }\",\".framer-GuN8V .framer-1njgd24-container { flex: none; height: auto; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GuN8V.framer-18au20d, .framer-GuN8V .framer-49q9ic { gap: 0px; } .framer-GuN8V.framer-18au20d > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-GuN8V.framer-18au20d > :first-child, .framer-GuN8V .framer-49q9ic > :first-child { margin-left: 0px; } .framer-GuN8V.framer-18au20d > :last-child, .framer-GuN8V .framer-49q9ic > :last-child { margin-right: 0px; } .framer-GuN8V .framer-49q9ic > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 311.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroMJ6nEQj2=withCSS(Component,css,\"framer-GuN8V\");export default FrameroMJ6nEQj2;FrameroMJ6nEQj2.displayName=\"Tj\\xe4nster Mobil\";FrameroMJ6nEQj2.defaultProps={height:311.5,width:1400};addFonts(FrameroMJ6nEQj2,[{explicitInter:true,fonts:[]},...DropdownItemImgCard2Fonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroMJ6nEQj2\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1400\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"311.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oMJ6nEQj2.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9XQ2ZaX9nfULcDpu6BdM/PU8HXRyvONzj975ZEJCd/UQGG828IN.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-5A2dg\";const variantClassNames={fyfUfldwh:\"framer-v-m8djjp\"};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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fyfUfldwh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-m8djjp\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fyfUfldwh\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bojyu3\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xYi15Qyal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-15ts8um\",\"data-styles-preset\":\"UQGG828IN\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:\"Branschkedja med 100+ medlemmar\"})}),className:\"framer-puon4p\",\"data-framer-name\":\"Trusted by 40+ worldwide clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d8I_899ci\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4rxznu-container\",\"data-framer-name\":\"Logos Ticker\",layoutDependency:layoutDependency,layoutId:\"Bra_ozyLw-container\",name:\"Logos Ticker\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:80,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"Bra_ozyLw\",layoutId:\"Bra_ozyLw\",name:\"Logos Ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xqt39m\",layoutDependency:layoutDependency,layoutId:\"gjDOLCfaX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1titrf0\",\"data-framer-name\":\"Vesala\",fill:\"black\",intrinsicHeight:58,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"fqfE2ddiP\",svg:'<svg width=\"300\" height=\"58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.913 44.235h9.977l14.19-27.258h-8.849l-10.32 20.27-10.32-20.27h-8.849l14.171 27.258Zm28.15 0h29.328v-6.547h-21.238v-4.37h19.683v-5.652h-19.683V23.3h20.767v-6.324h-28.857v27.258Zm34.807-7.02c-.009 1.952.329 3.457 1.034 4.525.696 1.07 1.808 1.811 3.319 2.224 1.528.399 3.499.602 5.955.586h9.804c3.552.029 6.28-.17 8.194-.586 1.897-.413 3.226-1.24 3.939-2.483.727-1.242 1.07-3.064 1.029-5.465.041-2.609-.372-4.551-1.229-5.808-.859-1.256-2.415-2.069-4.657-2.441-2.253-.373-5.465-.515-9.62-.471-2.837.03-4.962 0-6.35-.087-1.399-.069-2.297-.282-2.725-.641-.43-.342-.615-.912-.572-1.698 0-.744.287-1.271.841-1.629.559-.344 1.289-.5 2.215-.5h8.966c1.236 0 2.123.101 2.694.287.57.2.926.501 1.085.928.14.429.213.969.199 1.64h8.063v-.871c.06-1.61-.126-3.025-.567-4.238-.432-1.197-1.357-2.127-2.828-2.798-1.456-.666-3.726-1.011-6.795-1.024h-11.318c-2.54 0-4.522.228-5.979.668-1.442.441-2.494 1.057-3.165 1.838a5.508 5.508 0 0 0-1.271 2.772 18.598 18.598 0 0 0-.23 3.455c-.032 1.668.111 3.039.416 4.124a4.188 4.188 0 0 0 1.797 2.513c.909.586 2.281 1.014 4.094 1.259 1.813.241 4.24.354 7.254.341 2.582 0 4.634.014 6.178.057 1.525.042 2.669.141 3.411.315.742.156 1.24.411 1.47.753.228.345.343.815.315 1.401-.046 1.027-.4 1.67-1.103 1.941-.683.282-1.484.402-2.366.367h-9.92c-1.155.044-2.042-.114-2.614-.486-.567-.354-.868-1.255-.884-2.651h-8.08l.001 1.883ZM207.181 23.3l5.266 10.249h-10.358l5.092-10.248Zm-19.529 20.935h9.053l2.355-4.834h16.399l2.513 4.834h9.005l-14.504-27.26h-10.53l-14.291 27.26Zm43.277 0h26.275v-6.988h-18.198v-20.27h-8.077v27.258ZM278.646 23.3l5.251 10.249h-10.349l5.098-10.248Zm-19.544 20.935h9.051l2.371-4.834h16.399l2.516 4.834h9.005l-14.502-27.26h-10.535l-14.305 27.26ZM32.105 57.124c.222-.076.843-.415.843-.415L58.74 30.906s.338-.619.414-.84c.087-.256.22-.79.213-1.06-.005-.216-.14-.637-.213-.84-.082-.225-.414-.86-.414-.86L32.948 1.29s-.62-.338-.843-.414c-.254-.086-.782-.22-1.05-.213-.218.005-.643.138-.848.213-.22.081-.838.414-.838.414L3.359 27.307s-.326.635-.408.86c-.074.203-.213.623-.218.84-.007.27.13.803.218 1.06.075.22.409.84.409.84L29.369 56.71s.619.334.838.415c.205.076.629.21.848.214.269.005.797-.128 1.05-.215Zm-4.006-30.656h-8.465s-.812-.1-1.057-.213c-.238-.109-.66-.44-.827-.643-.151-.182-.347-.62-.43-.84-.077-.205-.213-.847-.213-.847v-6.138s.193-1.939.43-2.539c.208-.529 1.254-1.897 1.254-1.897l8.68-8.665s.455-.352.628-.43c.198-.089.628-.246.843-.213.306.046.856.408 1.057.643.183.214.427 1.041.427 1.041v18.198s-.143.641-.218.846c-.081.22-.26.66-.41.841-.17.207-.614.528-.856.643-.196.094-.843.213-.843.213Zm13.528 13.53c-.333.022-.993-.067-1.27-.415-.42-.525-.427-1.284-.427-1.284V13.352s.117-.372.427-.627c.259-.213.8-.456 1.27-.43.514.028 1.057.43 1.057.43l11.619 11.617s.52.612.627.854c.109.247.22.79.213 1.06-.005.215-.121.644-.213.84-.113.24-.627.857-.627.857L42.897 39.374s-.553.573-1.27.623ZM10.126 35.13c-.333.01-1.271-.413-1.271-.413l-4.011-3.812s-.35-.618-.427-.84c-.09-.256-.221-.79-.214-1.06.006-.217.138-.638.214-.84.083-.226.427-.86.427-.86l3.797-3.809s.455-.34.627-.416c.202-.089.639-.246.857-.214.304.045.857.395 1.057.63.184.215.416 1.054.416 1.054v9.52s-.267.524-.416.646c-.22.18-.772.406-1.056.414Zm18.603 18.826c-.331 0-1.257-.414-1.257-.414l-8.681-8.679s-1.038-1.536-1.254-2.11c-.208-.555-.43-2.33-.43-2.33v-6.136s.126-.79.213-1.04c.078-.228.26-.688.43-.857.164-.165.606-.352.827-.428.254-.088 1.057-.199 1.057-.199h8.249s.804.113 1.059.2c.227.075.689.256.857.427.166.17.333.632.409.856.085.251.218 1.041.218 1.041V52.47s-.216.874-.427 1.072c-.244.228-.936.414-1.27.414Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18k8sd4\",\"data-framer-name\":\"Geberit\",layoutDependency:layoutDependency,layoutId:\"IETSU_qbb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lv2w28\",\"data-framer-name\":\"Group 6\",fill:\"black\",intrinsicHeight:55,intrinsicWidth:400,layoutDependency:layoutDependency,layoutId:\"Pbc7XaqIu\",svg:'<svg width=\"400\" height=\"55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M119.968 52.708c-8.731 2.264-15.522 2.264-20.696 2.264-14.228 0-30.719-7.114-30.719-27.163C68.553 7.761 82.781 0 102.183 0c3.557 0 10.994.323 16.168 2.587v11.641c-4.204-2.587-10.994-3.557-14.228-3.557-11.641 0-21.019 4.85-21.019 17.462 0 10.347 7.438 16.814 17.785 16.814 1.94 0 3.881-.646 5.174-.97v-10.67h-8.407V22.958h21.988v29.75M132.256.97h37.186v10.024H146.16V21.99h21.989v10.024H146.16V44.3h24.252v10.024h-38.156V.97Zm63.055 30.72h4.204c4.851 0 10.671.646 10.671 6.143 0 5.498-5.497 6.144-10.671 6.144h-4.204V31.69Zm-13.904 22.635h22.635c9.378 0 20.695-2.587 20.695-15.521 0-6.468-3.557-10.348-10.994-11.642v-.323c5.821-1.94 9.378-5.82 9.378-12.611 0-9.054-7.438-13.581-17.462-13.581h-24.252v53.678Zm13.904-43.33h4.204c4.851 0 9.378.323 9.378 5.173 0 4.527-4.851 5.82-9.378 5.82h-4.204V10.995ZM234.762.97h37.51v10.024H248.99V21.99h21.988v10.024H248.99V44.3h24.252v10.024h-38.48V.97Zm63.379 10.024h3.557c5.497 0 10.671.97 10.671 5.82 0 6.145-5.821 6.145-10.671 6.145h-3.557V10.994Zm-14.552 43.331h14.228V33.306h2.91c5.174 0 7.114 2.587 9.701 11.641l3.234 9.378h14.551l-5.173-14.228c-2.587-6.467-2.911-10.671-7.438-11.964 7.114-1.617 10.348-6.468 10.348-13.582 0-9.054-7.438-13.58-17.138-13.58h-25.546v53.354h.323Z\" fill=\"#000\"/><path d=\"M351.819.97h-14.228v53.355h14.228V.97Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M372.838 11.318H359.58V.97H400v10.348h-13.258v43.007h-13.904V11.318Z\" fill=\"#000\"/><path d=\"M53.355.97H0v53.355h53.355V.97Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fghckb\",\"data-framer-name\":\"Grohe\",layoutDependency:layoutDependency,layoutId:\"xIqZQe4J7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4nq2t\",\"data-framer-name\":\"Group 7\",fill:\"black\",intrinsicHeight:231,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"pGogPXYdC\",svg:'<svg width=\"300\" height=\"231\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 2h296v226.769H2V2Z\" stroke=\"#000\" stroke-width=\"4\"/><mask id=\"a\" fill=\"#fff\"><path d=\"M137.573 88.855c-.002 8.195 5.578 13.943 13.535 13.943 7.961 0 13.537-5.743 13.537-13.94 0-8.22-5.56-13.953-13.537-13.953-7.976 0-13.535 5.73-13.535 13.95Zm-10.945 0c0-12.397 10.336-21.459 24.48-21.459 14.146 0 24.487 9.062 24.487 21.46 0 12.362-10.362 21.44-24.487 21.44-14.121 0-24.48-9.076-24.48-21.44Zm106.578-19.913v39.806h29.871v-7.8h-19.502v-9.46h14.337v-7.497h-14.337V76.74h17.229v-7.798h-27.598Zm-50.208 0v39.806h10.382V91.731h18.351v17.017h10.387V68.942h-10.387v14.716H193.38V68.942h-10.382Zm-96.66 0v39.806h10.389V76.451h4.477c5.873 0 8.504 1.877 8.504 6.051 0 4.265-2.943 6.702-8.112 6.702l-2.282-.06h-1.168l14.432 19.604h13.277l-13.233-16.007c4.913-2.217 7.533-6.152 7.533-11.326 0-8.432-5.463-12.473-16.86-12.473H86.338ZM67.034 88.761v11.935c-2.726 1.14-5.446 1.71-8.158 1.71-6.99 0-11.905-5.398-11.905-13.08 0-8.278 5.873-14.047 14.303-14.047 4.712 0 9.378 1.316 15.04 4.233v-7.934c-7.23-2.957-10.799-3.799-16.143-3.799-14.758 0-24.185 8.35-24.185 21.422 0 12.437 9.148 20.707 22.9 20.707 6.13 0 13.402-1.973 18.7-5.067v-16.08H67.035Zm155.661 64.396-1-.362-2.725-.912c-7.908-2.384-14.236-3.575-19.068-3.575-4.046 0-10.897 1.166-16.33 2.774l-2.711.801c-1.376.455-2.296.755-2.742.912l-2.725.939-2.707.918-2.728.928c-8.277 2.679-14.169 3.875-19.066 3.875-4.218 0-10.472-1.154-16.345-3.014l-2.728-.861-2.721-.928-2.716-.918-2.725-.939-2.737-.912c-7.897-2.384-14.241-3.575-19.046-3.575-4.075.005-10.915 1.161-16.354 2.774l-2.71.801c-1.933.623-2.33.764-3.726 1.274l5.48 2.843 1.23-.372c6.39-1.975 11.892-3.004 16.092-3.004 3.533 0 9.053.9 13.595 2.211l2.727.793 2.712.877 2.737.905 2.725.942 2.716.92 2.721.91c8.183 2.51 14.206 3.666 19.075 3.664 4.18-.002 10.565-1.115 16.339-2.845l2.725-.819 2.728-.91 2.707-.92 2.725-.942 2.742-.905 2.711-.877c6.953-2.065 12.079-3.004 16.339-3.002 4.197 0 9.692 1.029 16.077 3.002l1.228.372 5.479-2.843Zm17.762-10.329-15.87-4.872c-7.135-2.192-9.895-2.963-13.701-3.803-4.027-.891-8.063-1.403-10.982-1.403-4.604 0-13.382 1.638-19.043 3.554l-10.902 3.694c-7.377 2.5-14.169 3.877-19.124 3.877-4.982 0-11.707-1.363-19.121-3.877l-10.902-3.694c-5.644-1.913-14.457-3.554-19.066-3.554-2.903 0-6.976.519-10.973 1.403-3.761.835-6.743 1.662-13.703 3.803l-15.851 4.872c1.693 1.541 2.146 1.897 4.042 3.182l8.811-2.682 7.281-2.148 2.924-.865c7.747-2.285 13.001-3.266 17.478-3.266 4.069 0 11.426 1.346 16.33 2.996l13.629 4.571c6.383 2.139 14.287 3.649 19.124 3.649 4.818 0 12.794-1.519 19.121-3.649l13.613-4.571c4.886-1.641 12.286-3 16.339-2.996 4.493 0 9.701.974 17.469 3.266l2.924.865 7.283 2.148 8.827 2.682c1.888-1.295 2.338-1.648 4.043-3.182Zm16.258-15.335-.453.757c-1.015 1.696-1.477 2.326-2.997 4.131-1.932.263-2.705.321-4.235.321-4.855 0-12.805-1.524-19.158-3.665l-10.902-3.683c-7.405-2.492-14.169-3.87-19.059-3.875-4.119 0-11.338 1.325-16.339 3l-13.613 4.558c-6.417 2.146-14.294 3.665-19.064 3.665-4.765 0-12.648-1.517-19.075-3.665l-13.611-4.558c-5.003-1.675-12.21-3-16.334-3-4.883 0-11.665 1.383-19.064 3.875l-10.901 3.683c-6.358 2.141-14.303 3.665-19.17 3.665-1.53 0-2.296-.058-4.207-.321-1.415-1.627-1.968-2.384-3.016-4.131l-.45-.757c3.69.6 5.753.817 7.777.817 4.85 0 11.79-1.412 19.066-3.875l10.901-3.697c5.76-1.952 14.361-3.558 19.064-3.56 4.68 0 13.288 1.613 19.046 3.56l10.899 3.697c7.274 2.463 14.22 3.875 19.073 3.875 4.849 0 11.795-1.412 19.066-3.875l10.902-3.697c5.751-1.947 14.363-3.56 19.036-3.56 4.715 0 13.299 1.608 19.073 3.56l10.902 3.697c7.273 2.463 14.213 3.875 19.063 3.875 2.024 0 4.087-.217 7.78-.817Z\"/></mask><path d=\"M137.573 88.855c-.002 8.195 5.578 13.943 13.535 13.943 7.961 0 13.537-5.743 13.537-13.94 0-8.22-5.56-13.953-13.537-13.953-7.976 0-13.535 5.73-13.535 13.95Zm-10.945 0c0-12.397 10.336-21.459 24.48-21.459 14.146 0 24.487 9.062 24.487 21.46 0 12.362-10.362 21.44-24.487 21.44-14.121 0-24.48-9.076-24.48-21.44Zm106.578-19.913v39.806h29.871v-7.8h-19.502v-9.46h14.337v-7.497h-14.337V76.74h17.229v-7.798h-27.598Zm-50.208 0v39.806h10.382V91.731h18.351v17.017h10.387V68.942h-10.387v14.716H193.38V68.942h-10.382Zm-96.66 0v39.806h10.389V76.451h4.477c5.873 0 8.504 1.877 8.504 6.051 0 4.265-2.943 6.702-8.112 6.702l-2.282-.06h-1.168l14.432 19.604h13.277l-13.233-16.007c4.913-2.217 7.533-6.152 7.533-11.326 0-8.432-5.463-12.473-16.86-12.473H86.338ZM67.034 88.761v11.935c-2.726 1.14-5.446 1.71-8.158 1.71-6.99 0-11.905-5.398-11.905-13.08 0-8.278 5.873-14.047 14.303-14.047 4.712 0 9.378 1.316 15.04 4.233v-7.934c-7.23-2.957-10.799-3.799-16.143-3.799-14.758 0-24.185 8.35-24.185 21.422 0 12.437 9.148 20.707 22.9 20.707 6.13 0 13.402-1.973 18.7-5.067v-16.08H67.035Zm155.661 64.396-1-.362-2.725-.912c-7.908-2.384-14.236-3.575-19.068-3.575-4.046 0-10.897 1.166-16.33 2.774l-2.711.801c-1.376.455-2.296.755-2.742.912l-2.725.939-2.707.918-2.728.928c-8.277 2.679-14.169 3.875-19.066 3.875-4.218 0-10.472-1.154-16.345-3.014l-2.728-.861-2.721-.928-2.716-.918-2.725-.939-2.737-.912c-7.897-2.384-14.241-3.575-19.046-3.575-4.075.005-10.915 1.161-16.354 2.774l-2.71.801c-1.933.623-2.33.764-3.726 1.274l5.48 2.843 1.23-.372c6.39-1.975 11.892-3.004 16.092-3.004 3.533 0 9.053.9 13.595 2.211l2.727.793 2.712.877 2.737.905 2.725.942 2.716.92 2.721.91c8.183 2.51 14.206 3.666 19.075 3.664 4.18-.002 10.565-1.115 16.339-2.845l2.725-.819 2.728-.91 2.707-.92 2.725-.942 2.742-.905 2.711-.877c6.953-2.065 12.079-3.004 16.339-3.002 4.197 0 9.692 1.029 16.077 3.002l1.228.372 5.479-2.843Zm17.762-10.329-15.87-4.872c-7.135-2.192-9.895-2.963-13.701-3.803-4.027-.891-8.063-1.403-10.982-1.403-4.604 0-13.382 1.638-19.043 3.554l-10.902 3.694c-7.377 2.5-14.169 3.877-19.124 3.877-4.982 0-11.707-1.363-19.121-3.877l-10.902-3.694c-5.644-1.913-14.457-3.554-19.066-3.554-2.903 0-6.976.519-10.973 1.403-3.761.835-6.743 1.662-13.703 3.803l-15.851 4.872c1.693 1.541 2.146 1.897 4.042 3.182l8.811-2.682 7.281-2.148 2.924-.865c7.747-2.285 13.001-3.266 17.478-3.266 4.069 0 11.426 1.346 16.33 2.996l13.629 4.571c6.383 2.139 14.287 3.649 19.124 3.649 4.818 0 12.794-1.519 19.121-3.649l13.613-4.571c4.886-1.641 12.286-3 16.339-2.996 4.493 0 9.701.974 17.469 3.266l2.924.865 7.283 2.148 8.827 2.682c1.888-1.295 2.338-1.648 4.043-3.182Zm16.258-15.335-.453.757c-1.015 1.696-1.477 2.326-2.997 4.131-1.932.263-2.705.321-4.235.321-4.855 0-12.805-1.524-19.158-3.665l-10.902-3.683c-7.405-2.492-14.169-3.87-19.059-3.875-4.119 0-11.338 1.325-16.339 3l-13.613 4.558c-6.417 2.146-14.294 3.665-19.064 3.665-4.765 0-12.648-1.517-19.075-3.665l-13.611-4.558c-5.003-1.675-12.21-3-16.334-3-4.883 0-11.665 1.383-19.064 3.875l-10.901 3.683c-6.358 2.141-14.303 3.665-19.17 3.665-1.53 0-2.296-.058-4.207-.321-1.415-1.627-1.968-2.384-3.016-4.131l-.45-.757c3.69.6 5.753.817 7.777.817 4.85 0 11.79-1.412 19.066-3.875l10.901-3.697c5.76-1.952 14.361-3.558 19.064-3.56 4.68 0 13.288 1.613 19.046 3.56l10.899 3.697c7.274 2.463 14.22 3.875 19.073 3.875 4.849 0 11.795-1.412 19.066-3.875l10.902-3.697c5.751-1.947 14.363-3.56 19.036-3.56 4.715 0 13.299 1.608 19.073 3.56l10.902 3.697c7.273 2.463 14.213 3.875 19.063 3.875 2.024 0 4.087-.217 7.78-.817Z\" fill=\"#000\" stroke=\"#000\" stroke-width=\"8\" mask=\"url(#a)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2yxei\",layoutDependency:layoutDependency,layoutId:\"rueACA8N2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14r3m1f\",\"data-framer-name\":\"Vieser\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"MYJmRvV3i\",svg:'<svg width=\"124\" height=\"45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M34.79 5.73a5.73 5.73 0 1 0-11.46 0 5.73 5.73 0 1 0 11.46 0Zm87.99 10.31c-3.64 0-6.17 1.54-7.6 4.24v-4.24h-5.89v12.03c-.66-7.4-6.43-12.6-14.09-12.6-7.83-.08-14.25 6.21-14.32 14.04v.39c0 .82.07 1.64.19 2.46-1.44-3.38-5.46-4.5-9.09-5.29-3.97-.88-6.5-1.43-6.5-3.42 0-1.76 1.6-3.3 4.74-3.3 2.46-.09 4.8 1.1 6.17 3.14l4.9-2.7c-2.15-3.3-5.95-5.34-11.07-5.34-6.5-.05-10.63 3.97-10.63 8.32 0 .29.02.58.04.85-1.89-5.5-6.96-9.14-13.36-9.14-7.32-.08-13.5 5.44-14.23 12.73V16.06H20.77l-7.22 19.89-7.33-19.91H0l10.58 27.54h5.89l9.62-25.44v25.44h5.95V31.62c.78 7.14 6.38 12.48 14.45 12.48 4.8.12 9.34-2.18 12.08-6.13 2.33 3.93 6.31 6.16 11.93 6.16 7.82.05 11.13-5.07 11.13-8.87 0-.25-.01-.48-.03-.71 1.81 5.62 6.91 9.55 13.83 9.55s12.26-4.06 13.87-10.09v9.57h5.95V29.92c0-5.73 1.87-8.26 6.67-8.26h1.38v-5.62h-.52Zm-76.52 4.6c4.24 0 7.27 2.2 8.15 6.17H37.88a8.561 8.561 0 0 1 8.37-6.17h.01Zm29.52 14.74c0 1.93-1.71 3.64-5.01 3.64A7.819 7.819 0 0 1 63.72 35l-4.85 2.53c.68-1.12 1.2-2.34 1.53-3.61h-5.86c-1.18 3.23-4.23 4.97-8.04 4.97-4.79 0-8.1-2.81-8.87-7.05h22.81v-2.31c0-.89-.08-1.79-.23-2.67 1.44 3.21 5.23 4.34 8.92 5.12 3.47.72 6.67 1.21 6.67 3.42l-.02-.02Zm19.41-14.74c4.24 0 7.27 2.2 8.15 6.17H86.81a8.561 8.561 0 0 1 8.37-6.17h.01Zm14.1 13.27h-5.83c-1.18 3.23-4.23 4.97-8.04 4.97-4.79 0-8.1-2.81-8.87-7.05h22.74v2.08Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h123.28v44.14H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wqd8es\",\"data-framer-name\":\"Garbo\",layoutDependency:layoutDependency,layoutId:\"S0GZKY7mp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mdd7i5\",\"data-framer-name\":\"Group 5\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:270,layoutDependency:layoutDependency,layoutId:\"LrlS5_X_9\",svg:'<svg width=\"270\" height=\"72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64.996 64.704a54.131 54.131 0 0 1-13.787 4.982 70.114 70.114 0 0 1-14.644 1.53 41.775 41.775 0 0 1-14.646-2.49 33.46 33.46 0 0 1-11.579-7.13 32.314 32.314 0 0 1-7.61-11.248 41.157 41.157 0 0 1 0-29.483 32.342 32.342 0 0 1 7.61-11.242 33.551 33.551 0 0 1 11.58-7.137A41.775 41.775 0 0 1 36.565.002a54.254 54.254 0 0 1 14.98 1.963A29.381 29.381 0 0 1 63.561 8.71L53.028 20.199a21 21 0 0 0-6.89-4.8c-2.556-1.066-5.756-1.6-9.6-1.6-2.965-.05-5.91.494-8.662 1.6a19.508 19.508 0 0 0-6.613 4.56 19.962 19.962 0 0 0-4.266 6.933 26.48 26.48 0 0 0 0 17.499 20.053 20.053 0 0 0 4.266 6.89 19.423 19.423 0 0 0 6.65 4.544 22.13 22.13 0 0 0 8.662 1.627 28.472 28.472 0 0 0 8.426-1.1 31.62 31.62 0 0 0 5.649-2.25V43.073H38.489v-13.78h26.505v35.412h.002Zm37.919-1.05h-.191a13.485 13.485 0 0 1-6.363 5.36 21.955 21.955 0 0 1-8.379 1.627 21.66 21.66 0 0 1-6.266-.907 15.782 15.782 0 0 1-5.334-2.73 13.142 13.142 0 0 1-3.642-4.496 13.78 13.78 0 0 1-1.339-6.224 14.283 14.283 0 0 1 1.483-6.795 13.333 13.333 0 0 1 4.022-4.597 19.91 19.91 0 0 1 5.791-2.822 42.141 42.141 0 0 1 6.747-1.482c2.327-.32 4.67-.512 7.018-.577a239.83 239.83 0 0 1 6.459-.095 7.464 7.464 0 0 0-2.731-6.08 9.828 9.828 0 0 0-6.465-2.245c-2.24-.03-4.455.479-6.458 1.483a17.534 17.534 0 0 0-5.22 4.068l-7.654-7.85a26.255 26.255 0 0 1 9.376-5.6 33.565 33.565 0 0 1 11.103-1.867c4.214 0 7.677.534 10.39 1.6a15.124 15.124 0 0 1 6.507 4.64 17.897 17.897 0 0 1 3.397 7.515 49.204 49.204 0 0 1 .96 10.294v23.64h-13.211v-5.86Zm-3.541-14.549c-1.088 0-2.444.048-4.069.144a20.86 20.86 0 0 0-4.688.81 10.448 10.448 0 0 0-3.83 2.012 4.625 4.625 0 0 0-1.6 3.733 4.103 4.103 0 0 0 2.198 3.829 9.21 9.21 0 0 0 4.597 1.248 14.41 14.41 0 0 0 4.07-.576c1.24-.347 2.42-.887 3.493-1.6a7.837 7.837 0 0 0 2.437-2.667 7.684 7.684 0 0 0 .912-3.83v-3.06l-3.52-.043Zm24.117-26.133h14.363v7.466h.208c1.536-2.869 3.354-5.022 5.456-6.458 2.1-1.437 4.749-2.147 7.946-2.133.827 0 1.658.032 2.491.096a12.31 12.31 0 0 1 2.293.384v13.109a22.422 22.422 0 0 0-3.013-.715 19.517 19.517 0 0 0-3.11-.239c-2.745 0-4.915.382-6.512 1.146a8.656 8.656 0 0 0-3.685 3.2 12.248 12.248 0 0 0-1.675 4.928 47.942 47.942 0 0 0-.378 6.314v19.434h-14.384V22.972Zm37.961-21.248h25.269c2.962.002 5.92.21 8.853.625a24.242 24.242 0 0 1 8 2.485 15.425 15.425 0 0 1 5.744 5.216c1.468 2.233 2.201 5.202 2.198 8.906 0 3.826-1.067 6.999-3.2 9.52a17.603 17.603 0 0 1-8.47 5.408v.192c2.114.285 4.166.915 6.075 1.867a16.285 16.285 0 0 1 4.693 3.541 15.19 15.19 0 0 1 3.014 5.024 17.61 17.61 0 0 1 1.066 6.127c0 3.574-.766 6.557-2.298 8.95a18.02 18.02 0 0 1-5.937 5.792 25.97 25.97 0 0 1-8.181 3.157c-2.98.635-6.019.957-9.067.96h-27.732l-.027-67.77Zm14.934 27.089h10.815c1.144 0 2.283-.13 3.398-.385a9.245 9.245 0 0 0 3.013-1.242 6.472 6.472 0 0 0 2.133-2.299 6.858 6.858 0 0 0 .816-3.445 6.245 6.245 0 0 0-.911-3.494 6.366 6.366 0 0 0-2.347-2.133c-1.022-.53-2.119-.9-3.253-1.099a19.448 19.448 0 0 0-3.542-.336h-10.134l.012 14.433Zm0 28.047h13.407a16.426 16.426 0 0 0 3.494-.384 9.344 9.344 0 0 0 3.2-1.339 7.657 7.657 0 0 0 2.341-2.49 7.185 7.185 0 0 0 .912-3.734 6.011 6.011 0 0 0-1.195-3.877 7.665 7.665 0 0 0-3.018-2.25 15.65 15.65 0 0 0-3.926-1.068 29.017 29.017 0 0 0-3.92-.288h-11.295v15.43Zm41.919-10.624a24.402 24.402 0 0 1 2.011-10.054 23.21 23.21 0 0 1 5.503-7.706 24.373 24.373 0 0 1 8.241-4.928 30.46 30.46 0 0 1 20.196 0 24.363 24.363 0 0 1 8.23 4.928 23.126 23.126 0 0 1 5.503 7.706 26.114 26.114 0 0 1 0 20.102 23.083 23.083 0 0 1-5.503 7.706 24.288 24.288 0 0 1-8.235 4.934 30.462 30.462 0 0 1-20.191 0 24.289 24.289 0 0 1-8.235-4.929 23.15 23.15 0 0 1-5.504-7.706 24.366 24.366 0 0 1-2.016-10.053Zm14.362 0c0 3.509 1.005 6.353 3.014 8.534 2.009 2.179 4.831 3.263 8.469 3.252 3.637 0 6.461-1.084 8.474-3.253 2.012-2.168 3.017-5.014 3.013-8.534 0-3.509-1.004-6.353-3.013-8.532-2.009-2.18-4.834-3.264-8.474-3.253-3.638 0-6.46 1.084-8.469 3.253-2.009 2.168-3.014 5.013-3.014 8.533Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12784d8\",\"data-framer-name\":\"Sacpro\",layoutDependency:layoutDependency,layoutId:\"rvBGv687V\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xpvd4l\",\"data-framer-name\":\"Group 4\",fill:\"black\",intrinsicHeight:51,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"E6Qtuft6O\",svg:'<svg width=\"350\" height=\"51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M41.787 50.04H7.59a9.352 9.352 0 0 1-4.878-1.352C.904 47.643 0 46.335 0 44.764c0-.236.381-2.831 1.143-7.784h13.59l-.523 3.575H38.1l1.764-11.213h-29.09a9.708 9.708 0 0 1-4.878-1.352c-1.86-1.053-2.788-2.335-2.788-3.861a2.62 2.62 0 0 1 .07-.642L5.896 6.003c.286-1.93 1.575-3.443 3.854-4.558A13.293 13.293 0 0 1 15.82 0h32.91c1.807.002 3.59.416 5.213 1.213 2.048 1.004 3.073 2.307 3.073 3.93 0 .238-.39 2.851-1.143 7.855h-13.66l.579-3.485H18.914L17.381 19.87h28.971a9.2 9.2 0 0 1 6.238 2.258 3.653 3.653 0 0 1 1.428 2.857c.004.218-.02.436-.07.648l-2.787 18.49c-.237 1.714-1.45 3.156-3.638 4.348a11.764 11.764 0 0 1-5.736 1.568Zm67.03 0H95.234l3.164-20.768h-24.03L71.274 50.04H57.768l6.718-44.038c.279-1.91 1.563-3.434 3.854-4.572A13.13 13.13 0 0 1 74.403.036h32.909a11.652 11.652 0 0 1 5.282 1.213c2.003.952 3.004 2.288 3.004 4.007a5.823 5.823 0 0 1-.077.697l-6.704 44.087Zm-9.06-30.267 1.568-10.28h-23.8l-1.491 10.28h23.723Zm59.238 30.267H124.79a9.756 9.756 0 0 1-4.927-1.352c-1.807-.994-2.711-2.302-2.711-3.924.008-.233.033-.467.077-.697l5.847-38.044c.286-1.93 1.575-3.443 3.861-4.558a13.283 13.283 0 0 1 6.07-1.443h32.909a11.85 11.85 0 0 1 5.213 1.213c2.042 1.003 3.066 2.307 3.066 3.93 0 .237-.381 2.856-1.143 7.855h-13.639l.586-3.485h-23.946l-4.635 31.02h23.891l.606-3.575h13.499l-1.073 7.13c-.283 1.807-1.617 3.305-4 4.495a11.976 11.976 0 0 1-5.346 1.435Zm32.762-20.768-3.212 20.768h-13.5L182.614.001h41.899c1.81 0 3.596.418 5.22 1.22 2.044 1.003 3.066 2.316 3.066 3.938a2.67 2.67 0 0 1-.077.648l-2.634 17.68c-.293 1.743-1.498 3.179-3.638 4.3a11.958 11.958 0 0 1-5.701 1.485h-28.992Zm25.166-9.5 1.61-10.279h-23.695l-1.561 10.28h23.646Zm63.336 4.824c4.948.38 7.425 2.072 7.429 5.073a6.035 6.035 0 0 1-.076.697l-2.997 19.667h-13.569l3.164-20.761h-23.849l-3.212 20.768h-13.5L241.211.001h41.906a11.961 11.961 0 0 1 5.282 1.143c2.003.962 3.002 2.3 2.997 4.015a56.984 56.984 0 0 1-.85 6.739l-1.15 6.969c-.288 1.719-1.475 3.127-3.561 4.223a12.234 12.234 0 0 1-5.576 1.506Zm-4.655-4.823 1.561-10.28H253.47l-1.555 10.28h23.689Zm59.189 30.267h-34.197a9.701 9.701 0 0 1-4.921-1.352c-1.812-.994-2.718-2.302-2.718-3.924.008-.233.033-.467.077-.697l5.854-38.044c.286-1.93 1.568-3.443 3.854-4.558a13.242 13.242 0 0 1 6.063-1.443h32.916c1.807.001 3.59.416 5.213 1.213 2.039 1.003 3.062 2.316 3.066 3.937a6.01 6.01 0 0 1-.077.642l-5.777 38.33c-.237 1.715-1.45 3.157-3.645 4.349a11.764 11.764 0 0 1-5.708 1.547Zm-3.756-9.485 4.697-31.062h-23.737l-4.704 31.062h23.744Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2y8iwx\",layoutDependency:layoutDependency,layoutId:\"YNeAD8naB\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ibftk1\",\"data-framer-name\":\"Uponor\",fill:\"black\",intrinsicHeight:27,intrinsicWidth:105,layoutDependency:layoutDependency,layoutId:\"nMqUscvH5\",svg:'<svg width=\"105\" height=\"27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#000\"><path d=\"M27.304.624a8.17 8.17 0 0 0-8.17 8.171v2.923h-.001v12.709c0 1.004.815 1.817 1.815 1.817h1.814a1.817 1.817 0 0 0 1.819-1.817v-4.096a8.17 8.17 0 0 0 10.893-7.705V8.795a8.17 8.17 0 0 0-8.17-8.171Zm2.724 13.818a2.722 2.722 0 1 1-5.446 0V6.981a2.724 2.724 0 1 1 5.446 0v7.461ZM15.082.624h-1.815a1.814 1.814 0 0 0-1.813 1.816v12.002a2.724 2.724 0 0 1-5.448 0V2.44A1.815 1.815 0 0 0 4.19.624H2.376A1.816 1.816 0 0 0 .56 2.44v10.186a8.17 8.17 0 1 0 16.337 0V2.44A1.817 1.817 0 0 0 15.082.624Zm87.429 0h-.909a8.169 8.169 0 0 0-8.168 8.171v10.186c0 1.002.81 1.815 1.814 1.815h1.816a1.814 1.814 0 0 0 1.812-1.815v-12a2.727 2.727 0 0 1 2.726-2.726h.909a1.815 1.815 0 0 0 0-3.631Zm-19.483 0a8.173 8.173 0 0 0-8.172 8.171v3.831a8.172 8.172 0 0 0 16.342 0V8.795a8.172 8.172 0 0 0-8.17-8.171Zm2.72 13.818a2.722 2.722 0 1 1-5.446 0V6.981a2.724 2.724 0 1 1 5.446 0v7.461ZM64.452.624a8.17 8.17 0 0 0-8.17 8.171v10.186c0 1.002.813 1.815 1.817 1.815h1.814a1.816 1.816 0 0 0 1.816-1.815v-12a2.725 2.725 0 1 1 5.447 0v12c0 1.002.813 1.815 1.814 1.815h1.815a1.815 1.815 0 0 0 1.817-1.815V8.795a8.17 8.17 0 0 0-8.17-8.171Zm-18.574 0a8.17 8.17 0 0 0-8.168 8.171v3.831a8.17 8.17 0 1 0 16.339 0V8.795A8.17 8.17 0 0 0 45.878.624Zm2.724 13.818a2.724 2.724 0 0 1-5.448 0V6.981a2.726 2.726 0 0 1 2.724-2.726 2.726 2.726 0 0 1 2.724 2.726v7.461Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h105v27H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5A2dg.framer-1xf50c6, .framer-5A2dg .framer-1xf50c6 { display: block; }\",\".framer-5A2dg.framer-m8djjp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1300px; }\",\".framer-5A2dg .framer-1bojyu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5A2dg .framer-puon4p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5A2dg .framer-4rxznu-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-5A2dg .framer-1xqt39m, .framer-5A2dg .framer-18k8sd4, .framer-5A2dg .framer-fghckb, .framer-5A2dg .framer-1wqd8es, .framer-5A2dg .framer-12784d8, .framer-5A2dg .framer-2y8iwx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5A2dg .framer-1titrf0 { aspect-ratio: 5.172413793103448 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 88px; }\",\".framer-5A2dg .framer-lv2w28 { aspect-ratio: 7.2727272727272725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); position: relative; width: 73px; }\",\".framer-5A2dg .framer-1y4nq2t { aspect-ratio: 1.2987012987012987 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); position: relative; width: 70px; }\",\".framer-5A2dg .framer-1n2yxei { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 11px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5A2dg .framer-14r3m1f { aspect-ratio: 2.7555555555555555 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 47px; }\",\".framer-5A2dg .framer-mdd7i5 { aspect-ratio: 3.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 45px; }\",\".framer-5A2dg .framer-xpvd4l { aspect-ratio: 6.862745098039215 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); position: relative; width: 69px; }\",\".framer-5A2dg .framer-ibftk1 { aspect-ratio: 3.888888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 54px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5A2dg.framer-m8djjp, .framer-5A2dg .framer-1bojyu3, .framer-5A2dg .framer-1xqt39m, .framer-5A2dg .framer-18k8sd4, .framer-5A2dg .framer-fghckb, .framer-5A2dg .framer-1n2yxei, .framer-5A2dg .framer-1wqd8es, .framer-5A2dg .framer-12784d8, .framer-5A2dg .framer-2y8iwx { gap: 0px; } .framer-5A2dg.framer-m8djjp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5A2dg.framer-m8djjp > :first-child, .framer-5A2dg .framer-1bojyu3 > :first-child { margin-top: 0px; } .framer-5A2dg.framer-m8djjp > :last-child, .framer-5A2dg .framer-1bojyu3 > :last-child { margin-bottom: 0px; } .framer-5A2dg .framer-1bojyu3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5A2dg .framer-1xqt39m > *, .framer-5A2dg .framer-18k8sd4 > *, .framer-5A2dg .framer-fghckb > *, .framer-5A2dg .framer-1n2yxei > *, .framer-5A2dg .framer-1wqd8es > *, .framer-5A2dg .framer-12784d8 > *, .framer-5A2dg .framer-2y8iwx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5A2dg .framer-1xqt39m > :first-child, .framer-5A2dg .framer-18k8sd4 > :first-child, .framer-5A2dg .framer-fghckb > :first-child, .framer-5A2dg .framer-1n2yxei > :first-child, .framer-5A2dg .framer-1wqd8es > :first-child, .framer-5A2dg .framer-12784d8 > :first-child, .framer-5A2dg .framer-2y8iwx > :first-child { margin-left: 0px; } .framer-5A2dg .framer-1xqt39m > :last-child, .framer-5A2dg .framer-18k8sd4 > :last-child, .framer-5A2dg .framer-fghckb > :last-child, .framer-5A2dg .framer-1n2yxei > :last-child, .framer-5A2dg .framer-1wqd8es > :last-child, .framer-5A2dg .framer-12784d8 > :last-child, .framer-5A2dg .framer-2y8iwx > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 186.5\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerouDNq7o1p=withCSS(Component,css,\"framer-5A2dg\");export default FramerouDNq7o1p;FramerouDNq7o1p.displayName=\"Logos Mobile\";FramerouDNq7o1p.defaultProps={height:186.5,width:1300};addFonts(FramerouDNq7o1p,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerouDNq7o1p\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1300\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"186.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ouDNq7o1p.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={pgTTRXKKo:{hover:true}};const cycleOrder=[\"pgTTRXKKo\",\"wy7qafaKF\",\"rciwdsb_x\",\"fLAASD3T7\"];const serializationHash=\"framer-4JLoG\";const variantClassNames={fLAASD3T7:\"framer-v-14m71g1\",pgTTRXKKo:\"framer-v-1jzvs4o\",rciwdsb_x:\"framer-v-h3t952\",wy7qafaKF:\"framer-v-dynod\"};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 humanReadableVariantMap={\"Variant 3\":\"rciwdsb_x\",\"Variant 4\":\"fLAASD3T7\",Blurry:\"wy7qafaKF\",Primary:\"pgTTRXKKo\"};const getProps=({height,id,link,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pgTTRXKKo\",xG9n1YoKj:link??props.xG9n1YoKj,YZumv1zMk:text??props.YZumv1zMk??\"100% online\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YZumv1zMk,xG9n1YoKj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pgTTRXKKo\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:xG9n1YoKj,nodeId:\"pgTTRXKKo\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1jzvs4o\",className,classNames)} framer-jnmc7x`,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"pgTTRXKKo\",ref:ref??ref1,style:{backdropFilter:\"none\",backgroundColor:\"var(--token-5132758b-9935-4523-9d95-498e2b783c08, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 8px 24px 0px rgba(173, 173, 173, 0.08)\",WebkitBackdropFilter:\"none\",...style},variants:{\"pgTTRXKKo-hover\":{backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(255, 255, 255, 0.85)\",WebkitBackdropFilter:\"blur(4px)\"},wy7qafaKF:{backdropFilter:\"blur(4px)\",backgroundColor:\"rgba(255, 255, 255, 0.55)\",boxShadow:\"inset 3px 3px 15px 5px rgba(255, 255, 255, 0.15), inset -3px -3px 15px 5px rgba(217, 217, 217, 0.15)\",WebkitBackdropFilter:\"blur(4px)\"}},...addPropertyOverrides({\"pgTTRXKKo-hover\":{\"data-framer-name\":undefined,style:{backgroundColor:\"var(--token-5132758b-9935-4523-9d95-498e2b783c08, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 8px 24px 0px rgba(173, 173, 173, 0.08)\",...style}},fLAASD3T7:{\"data-framer-name\":\"Variant 4\",style:{backgroundColor:\"var(--token-5132758b-9935-4523-9d95-498e2b783c08, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 8px 24px 0px rgba(173, 173, 173, 0.08)\",...style}},rciwdsb_x:{\"data-framer-name\":\"Variant 3\",style:{backgroundColor:\"var(--token-5132758b-9935-4523-9d95-498e2b783c08, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 8px 24px 0px rgba(173, 173, 173, 0.08)\",...style}},wy7qafaKF:{\"data-framer-name\":\"Blurry\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41)))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% online\"})}),className:\"framer-6j7khw\",fonts:[\"FS;Montserrat-semibold\"],layoutDependency:layoutDependency,layoutId:\"AJSzLC4ZK\",style:{\"--extracted-r6o4lv\":\"var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41))\"},text:YZumv1zMk,variants:{wy7qafaKF:{\"--extracted-r6o4lv\":\"var(--token-3c56fd7c-c4a6-47c3-aaee-7de98122b4e3, rgb(38, 38, 38))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fLAASD3T7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41)))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% online\"})})},rciwdsb_x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-386c8f41-1de9-421c-9ee3-2ed242dfbd53, rgb(41, 41, 41)))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% online\"})})},wy7qafaKF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3c56fd7c-c4a6-47c3-aaee-7de98122b4e3, rgb(38, 38, 38)))\"},children:\"100% online\"})}),fonts:[\"FS;Satoshi-medium\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4JLoG.framer-jnmc7x, .framer-4JLoG .framer-jnmc7x { display: block; }\",\".framer-4JLoG.framer-1jzvs4o { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px 16px 6px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-4JLoG .framer-6j7khw { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4JLoG.framer-1jzvs4o { gap: 0px; } .framer-4JLoG.framer-1jzvs4o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4JLoG.framer-1jzvs4o > :first-child { margin-top: 0px; } .framer-4JLoG.framer-1jzvs4o > :last-child { margin-bottom: 0px; } }\",\".framer-4JLoG.framer-v-dynod.framer-1jzvs4o { cursor: unset; gap: 10px; overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-4JLoG.framer-v-dynod .framer-6j7khw { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4JLoG.framer-v-dynod.framer-1jzvs4o { gap: 0px; } .framer-4JLoG.framer-v-dynod.framer-1jzvs4o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4JLoG.framer-v-dynod.framer-1jzvs4o > :first-child { margin-top: 0px; } .framer-4JLoG.framer-v-dynod.framer-1jzvs4o > :last-child { margin-bottom: 0px; } }\",\".framer-4JLoG.framer-v-h3t952.framer-1jzvs4o, .framer-4JLoG.framer-v-14m71g1.framer-1jzvs4o { cursor: unset; padding: 5px 10px 5px 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26.5\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wy7qafaKF\":{\"layout\":[\"auto\",\"auto\"]},\"rciwdsb_x\":{\"layout\":[\"auto\",\"auto\"]},\"fLAASD3T7\":{\"layout\":[\"auto\",\"auto\"]},\"a0rkVnVBg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YZumv1zMk\":\"text\",\"xG9n1YoKj\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerq2znbFNKn=withCSS(Component,css,\"framer-4JLoG\");export default Framerq2znbFNKn;Framerq2znbFNKn.displayName=\"Badge\";Framerq2znbFNKn.defaultProps={height:26.5,width:115};addPropertyControls(Framerq2znbFNKn,{variant:{options:[\"pgTTRXKKo\",\"wy7qafaKF\",\"rciwdsb_x\",\"fLAASD3T7\"],optionTitles:[\"Primary\",\"Blurry\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},YZumv1zMk:{defaultValue:\"100% online\",displayTextArea:false,title:\"Text\",type:ControlType.String},xG9n1YoKj:{title:\"Link\",type:ControlType.Link}});addFonts(Framerq2znbFNKn,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq2znbFNKn\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"115\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YZumv1zMk\\\":\\\"text\\\",\\\"xG9n1YoKj\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wy7qafaKF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rciwdsb_x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fLAASD3T7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a0rkVnVBg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q2znbFNKn.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9XQ2ZaX9nfULcDpu6BdM/PU8HXRyvONzj975ZEJCd/UQGG828IN.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"TSd9hSfCJ\",\"GY8mXOVSJ\"];const serializationHash=\"framer-MZgrc\";const variantClassNames={GY8mXOVSJ:\"framer-v-1lzr32t\",TSd9hSfCJ:\"framer-v-129g0zd\"};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 humanReadableVariantMap={Desktop:\"TSd9hSfCJ\",Tablet:\"GY8mXOVSJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TSd9hSfCJ\"};};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({cycleOrder,defaultVariant:\"TSd9hSfCJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-129g0zd\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"TSd9hSfCJ\",ref:refBinding,style:{...style},...addPropertyOverrides({GY8mXOVSJ:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y8nmqe\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"imAdV0hjS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-15ts8um\",\"data-styles-preset\":\"UQGG828IN\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:\"Branschkedja med 100+ medlemsf\\xf6retag\"})}),className:\"framer-1ufa0dz\",\"data-framer-name\":\"Trusted by 40+ worldwide clients\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K8arINEy4\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-530j2a-container\",\"data-framer-name\":\"Logos Ticker\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mZRY79duh-container\",name:\"Logos Ticker\",nodeId:\"mZRY79duh\",rendersWithMotion:true,scopeId:\"WvHzx9f19\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:80,overflow:false},gap:120,height:\"100%\",hoverFactor:1,id:\"mZRY79duh\",layoutId:\"mZRY79duh\",name:\"Logos Ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zb6j\",layoutDependency:layoutDependency,layoutId:\"Fqw2F1pCu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4ne0w4\",\"data-framer-name\":\"Vesala\",fill:\"black\",intrinsicHeight:58,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"NM2tNndbQ\",svg:'<svg width=\"300\" height=\"58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.913 44.235h9.977l14.19-27.258h-8.849l-10.32 20.27-10.32-20.27h-8.849l14.171 27.258Zm28.15 0h29.328v-6.547h-21.238v-4.37h19.683v-5.652h-19.683V23.3h20.767v-6.324h-28.857v27.258Zm34.807-7.02c-.009 1.952.329 3.457 1.034 4.525.696 1.07 1.808 1.811 3.319 2.224 1.528.399 3.499.602 5.955.586h9.804c3.552.029 6.28-.17 8.194-.586 1.897-.413 3.226-1.24 3.939-2.483.727-1.242 1.07-3.064 1.029-5.465.041-2.609-.372-4.551-1.229-5.808-.859-1.256-2.415-2.069-4.657-2.441-2.253-.373-5.465-.515-9.62-.471-2.837.03-4.962 0-6.35-.087-1.399-.069-2.297-.282-2.725-.641-.43-.342-.615-.912-.572-1.698 0-.744.287-1.271.841-1.629.559-.344 1.289-.5 2.215-.5h8.966c1.236 0 2.123.101 2.694.287.57.2.926.501 1.085.928.14.429.213.969.199 1.64h8.063v-.871c.06-1.61-.126-3.025-.567-4.238-.432-1.197-1.357-2.127-2.828-2.798-1.456-.666-3.726-1.011-6.795-1.024h-11.318c-2.54 0-4.522.228-5.979.668-1.442.441-2.494 1.057-3.165 1.838a5.508 5.508 0 0 0-1.271 2.772 18.598 18.598 0 0 0-.23 3.455c-.032 1.668.111 3.039.416 4.124a4.188 4.188 0 0 0 1.797 2.513c.909.586 2.281 1.014 4.094 1.259 1.813.241 4.24.354 7.254.341 2.582 0 4.634.014 6.178.057 1.525.042 2.669.141 3.411.315.742.156 1.24.411 1.47.753.228.345.343.815.315 1.401-.046 1.027-.4 1.67-1.103 1.941-.683.282-1.484.402-2.366.367h-9.92c-1.155.044-2.042-.114-2.614-.486-.567-.354-.868-1.255-.884-2.651h-8.08l.001 1.883ZM207.181 23.3l5.266 10.249h-10.358l5.092-10.248Zm-19.529 20.935h9.053l2.355-4.834h16.399l2.513 4.834h9.005l-14.504-27.26h-10.53l-14.291 27.26Zm43.277 0h26.275v-6.988h-18.198v-20.27h-8.077v27.258ZM278.646 23.3l5.251 10.249h-10.349l5.098-10.248Zm-19.544 20.935h9.051l2.371-4.834h16.399l2.516 4.834h9.005l-14.502-27.26h-10.535l-14.305 27.26ZM32.105 57.124c.222-.076.843-.415.843-.415L58.74 30.906s.338-.619.414-.84c.087-.256.22-.79.213-1.06-.005-.216-.14-.637-.213-.84-.082-.225-.414-.86-.414-.86L32.948 1.29s-.62-.338-.843-.414c-.254-.086-.782-.22-1.05-.213-.218.005-.643.138-.848.213-.22.081-.838.414-.838.414L3.359 27.307s-.326.635-.408.86c-.074.203-.213.623-.218.84-.007.27.13.803.218 1.06.075.22.409.84.409.84L29.369 56.71s.619.334.838.415c.205.076.629.21.848.214.269.005.797-.128 1.05-.215Zm-4.006-30.656h-8.465s-.812-.1-1.057-.213c-.238-.109-.66-.44-.827-.643-.151-.182-.347-.62-.43-.84-.077-.205-.213-.847-.213-.847v-6.138s.193-1.939.43-2.539c.208-.529 1.254-1.897 1.254-1.897l8.68-8.665s.455-.352.628-.43c.198-.089.628-.246.843-.213.306.046.856.408 1.057.643.183.214.427 1.041.427 1.041v18.198s-.143.641-.218.846c-.081.22-.26.66-.41.841-.17.207-.614.528-.856.643-.196.094-.843.213-.843.213Zm13.528 13.53c-.333.022-.993-.067-1.27-.415-.42-.525-.427-1.284-.427-1.284V13.352s.117-.372.427-.627c.259-.213.8-.456 1.27-.43.514.028 1.057.43 1.057.43l11.619 11.617s.52.612.627.854c.109.247.22.79.213 1.06-.005.215-.121.644-.213.84-.113.24-.627.857-.627.857L42.897 39.374s-.553.573-1.27.623ZM10.126 35.13c-.333.01-1.271-.413-1.271-.413l-4.011-3.812s-.35-.618-.427-.84c-.09-.256-.221-.79-.214-1.06.006-.217.138-.638.214-.84.083-.226.427-.86.427-.86l3.797-3.809s.455-.34.627-.416c.202-.089.639-.246.857-.214.304.045.857.395 1.057.63.184.215.416 1.054.416 1.054v9.52s-.267.524-.416.646c-.22.18-.772.406-1.056.414Zm18.603 18.826c-.331 0-1.257-.414-1.257-.414l-8.681-8.679s-1.038-1.536-1.254-2.11c-.208-.555-.43-2.33-.43-2.33v-6.136s.126-.79.213-1.04c.078-.228.26-.688.43-.857.164-.165.606-.352.827-.428.254-.088 1.057-.199 1.057-.199h8.249s.804.113 1.059.2c.227.075.689.256.857.427.166.17.333.632.409.856.085.251.218 1.041.218 1.041V52.47s-.216.874-.427 1.072c-.244.228-.936.414-1.27.414Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k8adhp\",\"data-framer-name\":\"Geberit\",layoutDependency:layoutDependency,layoutId:\"ddYWidx7h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5c5svs\",\"data-framer-name\":\"Group 6\",fill:\"black\",intrinsicHeight:55,intrinsicWidth:400,layoutDependency:layoutDependency,layoutId:\"PcrhnNOY6\",svg:'<svg width=\"400\" height=\"55\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M119.968 52.708c-8.731 2.264-15.522 2.264-20.696 2.264-14.228 0-30.719-7.114-30.719-27.163C68.553 7.761 82.781 0 102.183 0c3.557 0 10.994.323 16.168 2.587v11.641c-4.204-2.587-10.994-3.557-14.228-3.557-11.641 0-21.019 4.85-21.019 17.462 0 10.347 7.438 16.814 17.785 16.814 1.94 0 3.881-.646 5.174-.97v-10.67h-8.407V22.958h21.988v29.75M132.256.97h37.186v10.024H146.16V21.99h21.989v10.024H146.16V44.3h24.252v10.024h-38.156V.97Zm63.055 30.72h4.204c4.851 0 10.671.646 10.671 6.143 0 5.498-5.497 6.144-10.671 6.144h-4.204V31.69Zm-13.904 22.635h22.635c9.378 0 20.695-2.587 20.695-15.521 0-6.468-3.557-10.348-10.994-11.642v-.323c5.821-1.94 9.378-5.82 9.378-12.611 0-9.054-7.438-13.581-17.462-13.581h-24.252v53.678Zm13.904-43.33h4.204c4.851 0 9.378.323 9.378 5.173 0 4.527-4.851 5.82-9.378 5.82h-4.204V10.995ZM234.762.97h37.51v10.024H248.99V21.99h21.988v10.024H248.99V44.3h24.252v10.024h-38.48V.97Zm63.379 10.024h3.557c5.497 0 10.671.97 10.671 5.82 0 6.145-5.821 6.145-10.671 6.145h-3.557V10.994Zm-14.552 43.331h14.228V33.306h2.91c5.174 0 7.114 2.587 9.701 11.641l3.234 9.378h14.551l-5.173-14.228c-2.587-6.467-2.911-10.671-7.438-11.964 7.114-1.617 10.348-6.468 10.348-13.582 0-9.054-7.438-13.58-17.138-13.58h-25.546v53.354h.323Z\" fill=\"#000\"/><path d=\"M351.819.97h-14.228v53.355h14.228V.97Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M372.838 11.318H359.58V.97H400v10.348h-13.258v43.007h-13.904V11.318Z\" fill=\"#000\"/><path d=\"M53.355.97H0v53.355h53.355V.97Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17kvt3h\",layoutDependency:layoutDependency,layoutId:\"qDPmzUsUo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12ybunp\",\"data-framer-name\":\"Vieser\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"pnh1vILHe\",svg:'<svg width=\"124\" height=\"45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M34.79 5.73a5.73 5.73 0 1 0-11.46 0 5.73 5.73 0 1 0 11.46 0Zm87.99 10.31c-3.64 0-6.17 1.54-7.6 4.24v-4.24h-5.89v12.03c-.66-7.4-6.43-12.6-14.09-12.6-7.83-.08-14.25 6.21-14.32 14.04v.39c0 .82.07 1.64.19 2.46-1.44-3.38-5.46-4.5-9.09-5.29-3.97-.88-6.5-1.43-6.5-3.42 0-1.76 1.6-3.3 4.74-3.3 2.46-.09 4.8 1.1 6.17 3.14l4.9-2.7c-2.15-3.3-5.95-5.34-11.07-5.34-6.5-.05-10.63 3.97-10.63 8.32 0 .29.02.58.04.85-1.89-5.5-6.96-9.14-13.36-9.14-7.32-.08-13.5 5.44-14.23 12.73V16.06H20.77l-7.22 19.89-7.33-19.91H0l10.58 27.54h5.89l9.62-25.44v25.44h5.95V31.62c.78 7.14 6.38 12.48 14.45 12.48 4.8.12 9.34-2.18 12.08-6.13 2.33 3.93 6.31 6.16 11.93 6.16 7.82.05 11.13-5.07 11.13-8.87 0-.25-.01-.48-.03-.71 1.81 5.62 6.91 9.55 13.83 9.55s12.26-4.06 13.87-10.09v9.57h5.95V29.92c0-5.73 1.87-8.26 6.67-8.26h1.38v-5.62h-.52Zm-76.52 4.6c4.24 0 7.27 2.2 8.15 6.17H37.88a8.561 8.561 0 0 1 8.37-6.17h.01Zm29.52 14.74c0 1.93-1.71 3.64-5.01 3.64A7.819 7.819 0 0 1 63.72 35l-4.85 2.53c.68-1.12 1.2-2.34 1.53-3.61h-5.86c-1.18 3.23-4.23 4.97-8.04 4.97-4.79 0-8.1-2.81-8.87-7.05h22.81v-2.31c0-.89-.08-1.79-.23-2.67 1.44 3.21 5.23 4.34 8.92 5.12 3.47.72 6.67 1.21 6.67 3.42l-.02-.02Zm19.41-14.74c4.24 0 7.27 2.2 8.15 6.17H86.81a8.561 8.561 0 0 1 8.37-6.17h.01Zm14.1 13.27h-5.83c-1.18 3.23-4.23 4.97-8.04 4.97-4.79 0-8.1-2.81-8.87-7.05h22.74v2.08Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h123.28v44.14H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzmdvb\",\"data-framer-name\":\"Grohe\",layoutDependency:layoutDependency,layoutId:\"WlrlYbUek\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15i4t7t\",\"data-framer-name\":\"Group 7\",fill:\"black\",intrinsicHeight:231,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"FXt9LsWTi\",svg:'<svg width=\"300\" height=\"231\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 2h296v226.769H2V2Z\" stroke=\"#000\" stroke-width=\"4\"/><mask id=\"a\" fill=\"#fff\"><path d=\"M137.573 88.855c-.002 8.195 5.578 13.943 13.535 13.943 7.961 0 13.537-5.743 13.537-13.94 0-8.22-5.56-13.953-13.537-13.953-7.976 0-13.535 5.73-13.535 13.95Zm-10.945 0c0-12.397 10.336-21.459 24.48-21.459 14.146 0 24.487 9.062 24.487 21.46 0 12.362-10.362 21.44-24.487 21.44-14.121 0-24.48-9.076-24.48-21.44Zm106.578-19.913v39.806h29.871v-7.8h-19.502v-9.46h14.337v-7.497h-14.337V76.74h17.229v-7.798h-27.598Zm-50.208 0v39.806h10.382V91.731h18.351v17.017h10.387V68.942h-10.387v14.716H193.38V68.942h-10.382Zm-96.66 0v39.806h10.389V76.451h4.477c5.873 0 8.504 1.877 8.504 6.051 0 4.265-2.943 6.702-8.112 6.702l-2.282-.06h-1.168l14.432 19.604h13.277l-13.233-16.007c4.913-2.217 7.533-6.152 7.533-11.326 0-8.432-5.463-12.473-16.86-12.473H86.338ZM67.034 88.761v11.935c-2.726 1.14-5.446 1.71-8.158 1.71-6.99 0-11.905-5.398-11.905-13.08 0-8.278 5.873-14.047 14.303-14.047 4.712 0 9.378 1.316 15.04 4.233v-7.934c-7.23-2.957-10.799-3.799-16.143-3.799-14.758 0-24.185 8.35-24.185 21.422 0 12.437 9.148 20.707 22.9 20.707 6.13 0 13.402-1.973 18.7-5.067v-16.08H67.035Zm155.661 64.396-1-.362-2.725-.912c-7.908-2.384-14.236-3.575-19.068-3.575-4.046 0-10.897 1.166-16.33 2.774l-2.711.801c-1.376.455-2.296.755-2.742.912l-2.725.939-2.707.918-2.728.928c-8.277 2.679-14.169 3.875-19.066 3.875-4.218 0-10.472-1.154-16.345-3.014l-2.728-.861-2.721-.928-2.716-.918-2.725-.939-2.737-.912c-7.897-2.384-14.241-3.575-19.046-3.575-4.075.005-10.915 1.161-16.354 2.774l-2.71.801c-1.933.623-2.33.764-3.726 1.274l5.48 2.843 1.23-.372c6.39-1.975 11.892-3.004 16.092-3.004 3.533 0 9.053.9 13.595 2.211l2.727.793 2.712.877 2.737.905 2.725.942 2.716.92 2.721.91c8.183 2.51 14.206 3.666 19.075 3.664 4.18-.002 10.565-1.115 16.339-2.845l2.725-.819 2.728-.91 2.707-.92 2.725-.942 2.742-.905 2.711-.877c6.953-2.065 12.079-3.004 16.339-3.002 4.197 0 9.692 1.029 16.077 3.002l1.228.372 5.479-2.843Zm17.762-10.329-15.87-4.872c-7.135-2.192-9.895-2.963-13.701-3.803-4.027-.891-8.063-1.403-10.982-1.403-4.604 0-13.382 1.638-19.043 3.554l-10.902 3.694c-7.377 2.5-14.169 3.877-19.124 3.877-4.982 0-11.707-1.363-19.121-3.877l-10.902-3.694c-5.644-1.913-14.457-3.554-19.066-3.554-2.903 0-6.976.519-10.973 1.403-3.761.835-6.743 1.662-13.703 3.803l-15.851 4.872c1.693 1.541 2.146 1.897 4.042 3.182l8.811-2.682 7.281-2.148 2.924-.865c7.747-2.285 13.001-3.266 17.478-3.266 4.069 0 11.426 1.346 16.33 2.996l13.629 4.571c6.383 2.139 14.287 3.649 19.124 3.649 4.818 0 12.794-1.519 19.121-3.649l13.613-4.571c4.886-1.641 12.286-3 16.339-2.996 4.493 0 9.701.974 17.469 3.266l2.924.865 7.283 2.148 8.827 2.682c1.888-1.295 2.338-1.648 4.043-3.182Zm16.258-15.335-.453.757c-1.015 1.696-1.477 2.326-2.997 4.131-1.932.263-2.705.321-4.235.321-4.855 0-12.805-1.524-19.158-3.665l-10.902-3.683c-7.405-2.492-14.169-3.87-19.059-3.875-4.119 0-11.338 1.325-16.339 3l-13.613 4.558c-6.417 2.146-14.294 3.665-19.064 3.665-4.765 0-12.648-1.517-19.075-3.665l-13.611-4.558c-5.003-1.675-12.21-3-16.334-3-4.883 0-11.665 1.383-19.064 3.875l-10.901 3.683c-6.358 2.141-14.303 3.665-19.17 3.665-1.53 0-2.296-.058-4.207-.321-1.415-1.627-1.968-2.384-3.016-4.131l-.45-.757c3.69.6 5.753.817 7.777.817 4.85 0 11.79-1.412 19.066-3.875l10.901-3.697c5.76-1.952 14.361-3.558 19.064-3.56 4.68 0 13.288 1.613 19.046 3.56l10.899 3.697c7.274 2.463 14.22 3.875 19.073 3.875 4.849 0 11.795-1.412 19.066-3.875l10.902-3.697c5.751-1.947 14.363-3.56 19.036-3.56 4.715 0 13.299 1.608 19.073 3.56l10.902 3.697c7.273 2.463 14.213 3.875 19.063 3.875 2.024 0 4.087-.217 7.78-.817Z\"/></mask><path d=\"M137.573 88.855c-.002 8.195 5.578 13.943 13.535 13.943 7.961 0 13.537-5.743 13.537-13.94 0-8.22-5.56-13.953-13.537-13.953-7.976 0-13.535 5.73-13.535 13.95Zm-10.945 0c0-12.397 10.336-21.459 24.48-21.459 14.146 0 24.487 9.062 24.487 21.46 0 12.362-10.362 21.44-24.487 21.44-14.121 0-24.48-9.076-24.48-21.44Zm106.578-19.913v39.806h29.871v-7.8h-19.502v-9.46h14.337v-7.497h-14.337V76.74h17.229v-7.798h-27.598Zm-50.208 0v39.806h10.382V91.731h18.351v17.017h10.387V68.942h-10.387v14.716H193.38V68.942h-10.382Zm-96.66 0v39.806h10.389V76.451h4.477c5.873 0 8.504 1.877 8.504 6.051 0 4.265-2.943 6.702-8.112 6.702l-2.282-.06h-1.168l14.432 19.604h13.277l-13.233-16.007c4.913-2.217 7.533-6.152 7.533-11.326 0-8.432-5.463-12.473-16.86-12.473H86.338ZM67.034 88.761v11.935c-2.726 1.14-5.446 1.71-8.158 1.71-6.99 0-11.905-5.398-11.905-13.08 0-8.278 5.873-14.047 14.303-14.047 4.712 0 9.378 1.316 15.04 4.233v-7.934c-7.23-2.957-10.799-3.799-16.143-3.799-14.758 0-24.185 8.35-24.185 21.422 0 12.437 9.148 20.707 22.9 20.707 6.13 0 13.402-1.973 18.7-5.067v-16.08H67.035Zm155.661 64.396-1-.362-2.725-.912c-7.908-2.384-14.236-3.575-19.068-3.575-4.046 0-10.897 1.166-16.33 2.774l-2.711.801c-1.376.455-2.296.755-2.742.912l-2.725.939-2.707.918-2.728.928c-8.277 2.679-14.169 3.875-19.066 3.875-4.218 0-10.472-1.154-16.345-3.014l-2.728-.861-2.721-.928-2.716-.918-2.725-.939-2.737-.912c-7.897-2.384-14.241-3.575-19.046-3.575-4.075.005-10.915 1.161-16.354 2.774l-2.71.801c-1.933.623-2.33.764-3.726 1.274l5.48 2.843 1.23-.372c6.39-1.975 11.892-3.004 16.092-3.004 3.533 0 9.053.9 13.595 2.211l2.727.793 2.712.877 2.737.905 2.725.942 2.716.92 2.721.91c8.183 2.51 14.206 3.666 19.075 3.664 4.18-.002 10.565-1.115 16.339-2.845l2.725-.819 2.728-.91 2.707-.92 2.725-.942 2.742-.905 2.711-.877c6.953-2.065 12.079-3.004 16.339-3.002 4.197 0 9.692 1.029 16.077 3.002l1.228.372 5.479-2.843Zm17.762-10.329-15.87-4.872c-7.135-2.192-9.895-2.963-13.701-3.803-4.027-.891-8.063-1.403-10.982-1.403-4.604 0-13.382 1.638-19.043 3.554l-10.902 3.694c-7.377 2.5-14.169 3.877-19.124 3.877-4.982 0-11.707-1.363-19.121-3.877l-10.902-3.694c-5.644-1.913-14.457-3.554-19.066-3.554-2.903 0-6.976.519-10.973 1.403-3.761.835-6.743 1.662-13.703 3.803l-15.851 4.872c1.693 1.541 2.146 1.897 4.042 3.182l8.811-2.682 7.281-2.148 2.924-.865c7.747-2.285 13.001-3.266 17.478-3.266 4.069 0 11.426 1.346 16.33 2.996l13.629 4.571c6.383 2.139 14.287 3.649 19.124 3.649 4.818 0 12.794-1.519 19.121-3.649l13.613-4.571c4.886-1.641 12.286-3 16.339-2.996 4.493 0 9.701.974 17.469 3.266l2.924.865 7.283 2.148 8.827 2.682c1.888-1.295 2.338-1.648 4.043-3.182Zm16.258-15.335-.453.757c-1.015 1.696-1.477 2.326-2.997 4.131-1.932.263-2.705.321-4.235.321-4.855 0-12.805-1.524-19.158-3.665l-10.902-3.683c-7.405-2.492-14.169-3.87-19.059-3.875-4.119 0-11.338 1.325-16.339 3l-13.613 4.558c-6.417 2.146-14.294 3.665-19.064 3.665-4.765 0-12.648-1.517-19.075-3.665l-13.611-4.558c-5.003-1.675-12.21-3-16.334-3-4.883 0-11.665 1.383-19.064 3.875l-10.901 3.683c-6.358 2.141-14.303 3.665-19.17 3.665-1.53 0-2.296-.058-4.207-.321-1.415-1.627-1.968-2.384-3.016-4.131l-.45-.757c3.69.6 5.753.817 7.777.817 4.85 0 11.79-1.412 19.066-3.875l10.901-3.697c5.76-1.952 14.361-3.558 19.064-3.56 4.68 0 13.288 1.613 19.046 3.56l10.899 3.697c7.274 2.463 14.22 3.875 19.073 3.875 4.849 0 11.795-1.412 19.066-3.875l10.902-3.697c5.751-1.947 14.363-3.56 19.036-3.56 4.715 0 13.299 1.608 19.073 3.56l10.902 3.697c7.273 2.463 14.213 3.875 19.063 3.875 2.024 0 4.087-.217 7.78-.817Z\" fill=\"#000\" stroke=\"#000\" stroke-width=\"8\" mask=\"url(#a)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e32aci\",\"data-framer-name\":\"Garbo\",layoutDependency:layoutDependency,layoutId:\"tvEMH3u78\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pp9u0p\",\"data-framer-name\":\"Group 5\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:270,layoutDependency:layoutDependency,layoutId:\"Ib2ULEep4\",svg:'<svg width=\"270\" height=\"72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64.996 64.704a54.131 54.131 0 0 1-13.787 4.982 70.114 70.114 0 0 1-14.644 1.53 41.775 41.775 0 0 1-14.646-2.49 33.46 33.46 0 0 1-11.579-7.13 32.314 32.314 0 0 1-7.61-11.248 41.157 41.157 0 0 1 0-29.483 32.342 32.342 0 0 1 7.61-11.242 33.551 33.551 0 0 1 11.58-7.137A41.775 41.775 0 0 1 36.565.002a54.254 54.254 0 0 1 14.98 1.963A29.381 29.381 0 0 1 63.561 8.71L53.028 20.199a21 21 0 0 0-6.89-4.8c-2.556-1.066-5.756-1.6-9.6-1.6-2.965-.05-5.91.494-8.662 1.6a19.508 19.508 0 0 0-6.613 4.56 19.962 19.962 0 0 0-4.266 6.933 26.48 26.48 0 0 0 0 17.499 20.053 20.053 0 0 0 4.266 6.89 19.423 19.423 0 0 0 6.65 4.544 22.13 22.13 0 0 0 8.662 1.627 28.472 28.472 0 0 0 8.426-1.1 31.62 31.62 0 0 0 5.649-2.25V43.073H38.489v-13.78h26.505v35.412h.002Zm37.919-1.05h-.191a13.485 13.485 0 0 1-6.363 5.36 21.955 21.955 0 0 1-8.379 1.627 21.66 21.66 0 0 1-6.266-.907 15.782 15.782 0 0 1-5.334-2.73 13.142 13.142 0 0 1-3.642-4.496 13.78 13.78 0 0 1-1.339-6.224 14.283 14.283 0 0 1 1.483-6.795 13.333 13.333 0 0 1 4.022-4.597 19.91 19.91 0 0 1 5.791-2.822 42.141 42.141 0 0 1 6.747-1.482c2.327-.32 4.67-.512 7.018-.577a239.83 239.83 0 0 1 6.459-.095 7.464 7.464 0 0 0-2.731-6.08 9.828 9.828 0 0 0-6.465-2.245c-2.24-.03-4.455.479-6.458 1.483a17.534 17.534 0 0 0-5.22 4.068l-7.654-7.85a26.255 26.255 0 0 1 9.376-5.6 33.565 33.565 0 0 1 11.103-1.867c4.214 0 7.677.534 10.39 1.6a15.124 15.124 0 0 1 6.507 4.64 17.897 17.897 0 0 1 3.397 7.515 49.204 49.204 0 0 1 .96 10.294v23.64h-13.211v-5.86Zm-3.541-14.549c-1.088 0-2.444.048-4.069.144a20.86 20.86 0 0 0-4.688.81 10.448 10.448 0 0 0-3.83 2.012 4.625 4.625 0 0 0-1.6 3.733 4.103 4.103 0 0 0 2.198 3.829 9.21 9.21 0 0 0 4.597 1.248 14.41 14.41 0 0 0 4.07-.576c1.24-.347 2.42-.887 3.493-1.6a7.837 7.837 0 0 0 2.437-2.667 7.684 7.684 0 0 0 .912-3.83v-3.06l-3.52-.043Zm24.117-26.133h14.363v7.466h.208c1.536-2.869 3.354-5.022 5.456-6.458 2.1-1.437 4.749-2.147 7.946-2.133.827 0 1.658.032 2.491.096a12.31 12.31 0 0 1 2.293.384v13.109a22.422 22.422 0 0 0-3.013-.715 19.517 19.517 0 0 0-3.11-.239c-2.745 0-4.915.382-6.512 1.146a8.656 8.656 0 0 0-3.685 3.2 12.248 12.248 0 0 0-1.675 4.928 47.942 47.942 0 0 0-.378 6.314v19.434h-14.384V22.972Zm37.961-21.248h25.269c2.962.002 5.92.21 8.853.625a24.242 24.242 0 0 1 8 2.485 15.425 15.425 0 0 1 5.744 5.216c1.468 2.233 2.201 5.202 2.198 8.906 0 3.826-1.067 6.999-3.2 9.52a17.603 17.603 0 0 1-8.47 5.408v.192c2.114.285 4.166.915 6.075 1.867a16.285 16.285 0 0 1 4.693 3.541 15.19 15.19 0 0 1 3.014 5.024 17.61 17.61 0 0 1 1.066 6.127c0 3.574-.766 6.557-2.298 8.95a18.02 18.02 0 0 1-5.937 5.792 25.97 25.97 0 0 1-8.181 3.157c-2.98.635-6.019.957-9.067.96h-27.732l-.027-67.77Zm14.934 27.089h10.815c1.144 0 2.283-.13 3.398-.385a9.245 9.245 0 0 0 3.013-1.242 6.472 6.472 0 0 0 2.133-2.299 6.858 6.858 0 0 0 .816-3.445 6.245 6.245 0 0 0-.911-3.494 6.366 6.366 0 0 0-2.347-2.133c-1.022-.53-2.119-.9-3.253-1.099a19.448 19.448 0 0 0-3.542-.336h-10.134l.012 14.433Zm0 28.047h13.407a16.426 16.426 0 0 0 3.494-.384 9.344 9.344 0 0 0 3.2-1.339 7.657 7.657 0 0 0 2.341-2.49 7.185 7.185 0 0 0 .912-3.734 6.011 6.011 0 0 0-1.195-3.877 7.665 7.665 0 0 0-3.018-2.25 15.65 15.65 0 0 0-3.926-1.068 29.017 29.017 0 0 0-3.92-.288h-11.295v15.43Zm41.919-10.624a24.402 24.402 0 0 1 2.011-10.054 23.21 23.21 0 0 1 5.503-7.706 24.373 24.373 0 0 1 8.241-4.928 30.46 30.46 0 0 1 20.196 0 24.363 24.363 0 0 1 8.23 4.928 23.126 23.126 0 0 1 5.503 7.706 26.114 26.114 0 0 1 0 20.102 23.083 23.083 0 0 1-5.503 7.706 24.288 24.288 0 0 1-8.235 4.934 30.462 30.462 0 0 1-20.191 0 24.289 24.289 0 0 1-8.235-4.929 23.15 23.15 0 0 1-5.504-7.706 24.366 24.366 0 0 1-2.016-10.053Zm14.362 0c0 3.509 1.005 6.353 3.014 8.534 2.009 2.179 4.831 3.263 8.469 3.252 3.637 0 6.461-1.084 8.474-3.253 2.012-2.168 3.017-5.014 3.013-8.534 0-3.509-1.004-6.353-3.013-8.532-2.009-2.18-4.834-3.264-8.474-3.253-3.638 0-6.46 1.084-8.469 3.253-2.009 2.168-3.014 5.013-3.014 8.533Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-paq2zv\",\"data-framer-name\":\"Sacpro\",layoutDependency:layoutDependency,layoutId:\"Um4Y_1OQR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15r32k2\",\"data-framer-name\":\"Group 4\",fill:\"black\",intrinsicHeight:51,intrinsicWidth:350,layoutDependency:layoutDependency,layoutId:\"PiCADOjLZ\",svg:'<svg width=\"350\" height=\"51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M41.787 50.04H7.59a9.352 9.352 0 0 1-4.878-1.352C.904 47.643 0 46.335 0 44.764c0-.236.381-2.831 1.143-7.784h13.59l-.523 3.575H38.1l1.764-11.213h-29.09a9.708 9.708 0 0 1-4.878-1.352c-1.86-1.053-2.788-2.335-2.788-3.861a2.62 2.62 0 0 1 .07-.642L5.896 6.003c.286-1.93 1.575-3.443 3.854-4.558A13.293 13.293 0 0 1 15.82 0h32.91c1.807.002 3.59.416 5.213 1.213 2.048 1.004 3.073 2.307 3.073 3.93 0 .238-.39 2.851-1.143 7.855h-13.66l.579-3.485H18.914L17.381 19.87h28.971a9.2 9.2 0 0 1 6.238 2.258 3.653 3.653 0 0 1 1.428 2.857c.004.218-.02.436-.07.648l-2.787 18.49c-.237 1.714-1.45 3.156-3.638 4.348a11.764 11.764 0 0 1-5.736 1.568Zm67.03 0H95.234l3.164-20.768h-24.03L71.274 50.04H57.768l6.718-44.038c.279-1.91 1.563-3.434 3.854-4.572A13.13 13.13 0 0 1 74.403.036h32.909a11.652 11.652 0 0 1 5.282 1.213c2.003.952 3.004 2.288 3.004 4.007a5.823 5.823 0 0 1-.077.697l-6.704 44.087Zm-9.06-30.267 1.568-10.28h-23.8l-1.491 10.28h23.723Zm59.238 30.267H124.79a9.756 9.756 0 0 1-4.927-1.352c-1.807-.994-2.711-2.302-2.711-3.924.008-.233.033-.467.077-.697l5.847-38.044c.286-1.93 1.575-3.443 3.861-4.558a13.283 13.283 0 0 1 6.07-1.443h32.909a11.85 11.85 0 0 1 5.213 1.213c2.042 1.003 3.066 2.307 3.066 3.93 0 .237-.381 2.856-1.143 7.855h-13.639l.586-3.485h-23.946l-4.635 31.02h23.891l.606-3.575h13.499l-1.073 7.13c-.283 1.807-1.617 3.305-4 4.495a11.976 11.976 0 0 1-5.346 1.435Zm32.762-20.768-3.212 20.768h-13.5L182.614.001h41.899c1.81 0 3.596.418 5.22 1.22 2.044 1.003 3.066 2.316 3.066 3.938a2.67 2.67 0 0 1-.077.648l-2.634 17.68c-.293 1.743-1.498 3.179-3.638 4.3a11.958 11.958 0 0 1-5.701 1.485h-28.992Zm25.166-9.5 1.61-10.279h-23.695l-1.561 10.28h23.646Zm63.336 4.824c4.948.38 7.425 2.072 7.429 5.073a6.035 6.035 0 0 1-.076.697l-2.997 19.667h-13.569l3.164-20.761h-23.849l-3.212 20.768h-13.5L241.211.001h41.906a11.961 11.961 0 0 1 5.282 1.143c2.003.962 3.002 2.3 2.997 4.015a56.984 56.984 0 0 1-.85 6.739l-1.15 6.969c-.288 1.719-1.475 3.127-3.561 4.223a12.234 12.234 0 0 1-5.576 1.506Zm-4.655-4.823 1.561-10.28H253.47l-1.555 10.28h23.689Zm59.189 30.267h-34.197a9.701 9.701 0 0 1-4.921-1.352c-1.812-.994-2.718-2.302-2.718-3.924.008-.233.033-.467.077-.697l5.854-38.044c.286-1.93 1.568-3.443 3.854-4.558a13.242 13.242 0 0 1 6.063-1.443h32.916c1.807.001 3.59.416 5.213 1.213 2.039 1.003 3.062 2.316 3.066 3.937a6.01 6.01 0 0 1-.077.642l-5.777 38.33c-.237 1.715-1.45 3.157-3.645 4.349a11.764 11.764 0 0 1-5.708 1.547Zm-3.756-9.485 4.697-31.062h-23.737l-4.704 31.062h23.744Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zj6st\",layoutDependency:layoutDependency,layoutId:\"Awb5JAc7y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p4586k\",\"data-framer-name\":\"Uponor\",fill:\"black\",intrinsicHeight:27,intrinsicWidth:105,layoutDependency:layoutDependency,layoutId:\"JL1IrZqMN\",svg:'<svg width=\"105\" height=\"27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#000\"><path d=\"M27.304.624a8.17 8.17 0 0 0-8.17 8.171v2.923h-.001v12.709c0 1.004.815 1.817 1.815 1.817h1.814a1.817 1.817 0 0 0 1.819-1.817v-4.096a8.17 8.17 0 0 0 10.893-7.705V8.795a8.17 8.17 0 0 0-8.17-8.171Zm2.724 13.818a2.722 2.722 0 1 1-5.446 0V6.981a2.724 2.724 0 1 1 5.446 0v7.461ZM15.082.624h-1.815a1.814 1.814 0 0 0-1.813 1.816v12.002a2.724 2.724 0 0 1-5.448 0V2.44A1.815 1.815 0 0 0 4.19.624H2.376A1.816 1.816 0 0 0 .56 2.44v10.186a8.17 8.17 0 1 0 16.337 0V2.44A1.817 1.817 0 0 0 15.082.624Zm87.429 0h-.909a8.169 8.169 0 0 0-8.168 8.171v10.186c0 1.002.81 1.815 1.814 1.815h1.816a1.814 1.814 0 0 0 1.812-1.815v-12a2.727 2.727 0 0 1 2.726-2.726h.909a1.815 1.815 0 0 0 0-3.631Zm-19.483 0a8.173 8.173 0 0 0-8.172 8.171v3.831a8.172 8.172 0 0 0 16.342 0V8.795a8.172 8.172 0 0 0-8.17-8.171Zm2.72 13.818a2.722 2.722 0 1 1-5.446 0V6.981a2.724 2.724 0 1 1 5.446 0v7.461ZM64.452.624a8.17 8.17 0 0 0-8.17 8.171v10.186c0 1.002.813 1.815 1.817 1.815h1.814a1.816 1.816 0 0 0 1.816-1.815v-12a2.725 2.725 0 1 1 5.447 0v12c0 1.002.813 1.815 1.814 1.815h1.815a1.815 1.815 0 0 0 1.817-1.815V8.795a8.17 8.17 0 0 0-8.17-8.171Zm-18.574 0a8.17 8.17 0 0 0-8.168 8.171v3.831a8.17 8.17 0 1 0 16.339 0V8.795A8.17 8.17 0 0 0 45.878.624Zm2.724 13.818a2.724 2.724 0 0 1-5.448 0V6.981a2.726 2.726 0 0 1 2.724-2.726 2.726 2.726 0 0 1 2.724 2.726v7.461Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h105v27H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MZgrc.framer-1f2lagk, .framer-MZgrc .framer-1f2lagk { display: block; }\",\".framer-MZgrc.framer-129g0zd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 1300px; }\",\".framer-MZgrc .framer-y8nmqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MZgrc .framer-1ufa0dz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MZgrc .framer-530j2a-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-MZgrc .framer-16zb6j, .framer-MZgrc .framer-k8adhp, .framer-MZgrc .framer-17kvt3h, .framer-MZgrc .framer-1vzmdvb, .framer-MZgrc .framer-1e32aci, .framer-MZgrc .framer-paq2zv, .framer-MZgrc .framer-11zj6st { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MZgrc .framer-4ne0w4 { aspect-ratio: 5.172413793103448 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 155px; }\",\".framer-MZgrc .framer-5c5svs { aspect-ratio: 7.2727272727272725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 131px; }\",\".framer-MZgrc .framer-12ybunp { aspect-ratio: 2.7555555555555555 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 83px; }\",\".framer-MZgrc .framer-15i4t7t { aspect-ratio: 1.2987012987012987 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 104px; }\",\".framer-MZgrc .framer-1pp9u0p { aspect-ratio: 3.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 86px; }\",\".framer-MZgrc .framer-15r32k2 { aspect-ratio: 6.862745098039215 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 110px; }\",\".framer-MZgrc .framer-p4586k { aspect-ratio: 3.888888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 97px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MZgrc.framer-129g0zd, .framer-MZgrc .framer-y8nmqe, .framer-MZgrc .framer-16zb6j, .framer-MZgrc .framer-k8adhp, .framer-MZgrc .framer-17kvt3h, .framer-MZgrc .framer-1vzmdvb, .framer-MZgrc .framer-1e32aci, .framer-MZgrc .framer-paq2zv, .framer-MZgrc .framer-11zj6st { gap: 0px; } .framer-MZgrc.framer-129g0zd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MZgrc.framer-129g0zd > :first-child, .framer-MZgrc .framer-y8nmqe > :first-child { margin-top: 0px; } .framer-MZgrc.framer-129g0zd > :last-child, .framer-MZgrc .framer-y8nmqe > :last-child { margin-bottom: 0px; } .framer-MZgrc .framer-y8nmqe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MZgrc .framer-16zb6j > *, .framer-MZgrc .framer-k8adhp > *, .framer-MZgrc .framer-17kvt3h > *, .framer-MZgrc .framer-1vzmdvb > *, .framer-MZgrc .framer-1e32aci > *, .framer-MZgrc .framer-paq2zv > *, .framer-MZgrc .framer-11zj6st > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MZgrc .framer-16zb6j > :first-child, .framer-MZgrc .framer-k8adhp > :first-child, .framer-MZgrc .framer-17kvt3h > :first-child, .framer-MZgrc .framer-1vzmdvb > :first-child, .framer-MZgrc .framer-1e32aci > :first-child, .framer-MZgrc .framer-paq2zv > :first-child, .framer-MZgrc .framer-11zj6st > :first-child { margin-left: 0px; } .framer-MZgrc .framer-16zb6j > :last-child, .framer-MZgrc .framer-k8adhp > :last-child, .framer-MZgrc .framer-17kvt3h > :last-child, .framer-MZgrc .framer-1vzmdvb > :last-child, .framer-MZgrc .framer-1e32aci > :last-child, .framer-MZgrc .framer-paq2zv > :last-child, .framer-MZgrc .framer-11zj6st > :last-child { margin-right: 0px; } }\",\".framer-MZgrc.framer-v-1lzr32t.framer-129g0zd { width: 999px; }\",\".framer-MZgrc.framer-v-1lzr32t .framer-y8nmqe { max-width: 999px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 246.5\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GY8mXOVSJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWvHzx9f19=withCSS(Component,css,\"framer-MZgrc\");export default FramerWvHzx9f19;FramerWvHzx9f19.displayName=\"Logos\";FramerWvHzx9f19.defaultProps={height:246.5,width:1300};addPropertyControls(FramerWvHzx9f19,{variant:{options:[\"TSd9hSfCJ\",\"GY8mXOVSJ\"],optionTitles:[\"Desktop\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWvHzx9f19,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWvHzx9f19\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"246.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1300\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GY8mXOVSJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WvHzx9f19.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Button from\"#framer/local/canvasComponent/cW6tAwIsA/cW6tAwIsA.js\";import Kontakta from\"#framer/local/canvasComponent/Di2bPz89w/Di2bPz89w.js\";import TestimonialSlideshow2 from\"#framer/local/canvasComponent/DSo7O6yhB/DSo7O6yhB.js\";import Button2 from\"#framer/local/canvasComponent/EMBOKCMyZ/EMBOKCMyZ.js\";import TestimonialCopy5 from\"#framer/local/canvasComponent/NU_bgxQ4F/NU_bgxQ4F.js\";import TjNsterMobil from\"#framer/local/canvasComponent/oMJ6nEQj2/oMJ6nEQj2.js\";import LogosMobile from\"#framer/local/canvasComponent/ouDNq7o1p/ouDNq7o1p.js\";import Badge from\"#framer/local/canvasComponent/q2znbFNKn/q2znbFNKn.js\";import TopNavigationBar from\"#framer/local/canvasComponent/sV6H1_XQ8/sV6H1_XQ8.js\";import VanligaFrGorSidfot from\"#framer/local/canvasComponent/tqeTzbAeU/tqeTzbAeU.js\";import Logos from\"#framer/local/canvasComponent/WvHzx9f19/WvHzx9f19.js\";import*as sharedStyle6 from\"#framer/local/css/lqXXPdN3k/lqXXPdN3k.js\";import*as sharedStyle5 from\"#framer/local/css/M8Ouz43uk/M8Ouz43uk.js\";import*as sharedStyle4 from\"#framer/local/css/NaN7qPstQ/NaN7qPstQ.js\";import*as sharedStyle3 from\"#framer/local/css/oTwlHqHoD/oTwlHqHoD.js\";import*as sharedStyle1 from\"#framer/local/css/oUme3dttL/oUme3dttL.js\";import*as sharedStyle from\"#framer/local/css/tH_FWHn8W/tH_FWHn8W.js\";import*as sharedStyle2 from\"#framer/local/css/tn2zjPu5v/tn2zjPu5v.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationBarFonts=getFonts(TopNavigationBar);const ButtonFonts=getFonts(Button);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const LogosFonts=getFonts(Logos);const LogosMobileFonts=getFonts(LogosMobile);const TestimonialCopy5Fonts=getFonts(TestimonialCopy5);const TjNsterMobilFonts=getFonts(TjNsterMobil);const Button2Fonts=getFonts(Button2);const PhosphorFonts=getFonts(Phosphor);const VideoFonts=getFonts(Video);const TestimonialSlideshow2Fonts=getFonts(TestimonialSlideshow2);const KontaktaFonts=getFonts(Kontakta);const VanligaFrGorSidfotFonts=getFonts(VanligaFrGorSidfot);const breakpoints={HgsMdGfjg:\"(min-width: 999px) and (max-width: 1299px)\",VmI24hxx5:\"(max-width: 998px)\",WQLkyLRf1:\"(min-width: 1300px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-19XnM\";const variantClassNames={HgsMdGfjg:\"framer-v-nnxylp\",VmI24hxx5:\"framer-v-1pa9h7h\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Dator:\"WQLkyLRf1\",Mobil:\"VmI24hxx5\",Surfplatta:\"HgsMdGfjg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"e6KSY9g1O\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"KJ3ebVFTE\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"VmI24hxx5\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"VmI24hxx5\")return true;return false;};const elementId2=useRouteElementId(\"RIoXdpYrL\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"Kmzn3lURL\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"MuEBOabhT\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"BYB9r8w4l\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"A3szgE25d\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfyqiq-container\",\"data-framer-name\":\"Nagivationsmeny\",id:elementId,layoutScroll:true,name:\"Nagivationsmeny\",nodeId:\"e6KSY9g1O\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{variant:\"Tz2seyJP1\"},VmI24hxx5:{variant:\"ykXb_hBw7\"}},children:/*#__PURE__*/_jsx(TopNavigationBar,{height:\"100%\",id:\"e6KSY9g1O\",layoutId:\"e6KSY9g1O\",name:\"Nagivationsmeny\",QC5fvS0rg:0,sG2_oXGa2:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"mAxCBshH6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-18cqpc4\",\"data-framer-name\":\"Hero Inneh\\xe5ll\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1tcf3an\",\"data-framer-name\":\"Inneh\\xe5ll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176c47h\",\"data-framer-name\":\"Text & Knappar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ar0qod\",\"data-framer-name\":\"Text\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t0mr8u hidden-1pa9h7h\",\"data-framer-name\":\"Stapel\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-165mb6p\",\"data-styles-preset\":\"tH_FWHn8W\",style:{\"--framer-text-color\":\"rgb(238, 36, 45)\"},children:\"Sveriges enda reparationskedja f\\xf6r bygg\"})}),className:\"framer-3jax8u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",children:\"Hitta vattenl\\xe4ckage & reparera badrum\"})})},VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Hitta vattenl\\xe4ckage och\",/*#__PURE__*/_jsx(\"br\",{}),\"b\\xf6rja reparera redan idag\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1vjzgbo\",\"data-styles-preset\":\"oUme3dttL\",children:\"Hitta vattenl\\xe4ckage & reparera badrum\"})}),className:\"framer-4l4p9s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqblwb\",\"data-styles-preset\":\"oTwlHqHoD\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Sluta Riv specialiserar sig p\\xe5 att lokalt reparera vattenl\\xe4ckage med inbyggda fuktsensorer, vilket g\\xf6r att vi kan r\\xe4dda badrum som annars skulle beh\\xf6va rivas p\\xe5 grund av skador p\\xe5 kakel, avlopp, cisterner eller r\\xf6r. V\\xe5r metod sparar ofta hundratusentals kronor och minskar reparationstiden avsev\\xe4rt.\"})})},VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sluta Riv \\xe4r specialister p\\xe5 att lokalt reparera vattenl\\xe4ckage med inbyggda fuktsensorer enligt v\\xe5ra egna branschreglar, vilket g\\xf6r att vi nu fackmannam\\xe4ssigt kan laga t\\xe4tskikt utan att riva allt. V\\xe5r Sluta Riv-metod sparar ofta flera hundratusentals kronor och minskar koldioxid-utsl\\xe4ppen avsev\\xe4rt!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqblwb\",\"data-styles-preset\":\"oTwlHqHoD\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Sluta Riv Sverige \\xe4r specialister p\\xe5 att lokalt reparera vattenl\\xe4ckage med inbyggda fuktsensorer enligt v\\xe5ra egna branschregler, vilket g\\xf6r att vi nu fackmannam\\xe4ssigt kan laga t\\xe4tskikt utan att riva allt. V\\xe5r Sluta Riv-metod sparar ofta v\\xe5ra kunder hundratusentals kronor och minskar koldioxidutsl\\xe4ppen avsev\\xe4rt!\"})}),className:\"framer-wodntq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r2mavp\",\"data-framer-name\":\"Knappar\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined},{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined},{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+0+140+0+0+0+0+280.7+0},VmI24hxx5:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1240px), 590px) - 40px)`,y:(componentViewport?.y||0)+0+0+80+0+0+300+50+228.7+0+59}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63kasr-container\",\"data-framer-name\":\"Knapp 1\",name:\"Knapp 1\",nodeId:\"C1J27k7K2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{QQwLM21zj:resolvedLinks[1]},VmI24hxx5:{QQwLM21zj:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"C1J27k7K2\",layoutId:\"C1J27k7K2\",name:\"Knapp 1\",QQwLM21zj:resolvedLinks[0],variant:\"wipCkAnoU\",width:\"100%\",YkzuxKMzm:\"L\\xe4s mer om oss\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+0+140+0+0+0+0+280.7+0},VmI24hxx5:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1240px), 590px) - 40px)`,y:(componentViewport?.y||0)+0+0+80+0+0+300+50+228.7+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6h1tj-container\",\"data-framer-name\":\"Knapp 2\",name:\"Knapp 2\",nodeId:\"U_oFw0ev3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{QQwLM21zj:resolvedLinks1[1]},VmI24hxx5:{QQwLM21zj:resolvedLinks1[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"U_oFw0ev3\",layoutId:\"U_oFw0ev3\",name:\"Knapp 2\",QQwLM21zj:resolvedLinks1[0],variant:\"KpumjY9It\",width:\"100%\",YkzuxKMzm:\"Kontakta oss\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1na0gtc\",\"data-framer-name\":\"Bild\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:1544,intrinsicWidth:1368,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0+417.7+-.9963),pixelHeight:2753,pixelWidth:3442,positionX:\"center\",positionY:\"top\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 940px), 1px)`,src:\"https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg 3442w\"}},VmI24hxx5:{background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:1544,intrinsicWidth:1368,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+0+0),pixelHeight:2753,pixelWidth:3360,sizes:`max(min(min(${componentViewport?.width||\"100vw\"}, 1240px), 550px), 1px)`,src:\"https://framerusercontent.com/images/u8GCBuoo8RL4zgnoOixF3cjFlM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/u8GCBuoo8RL4zgnoOixF3cjFlM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/u8GCBuoo8RL4zgnoOixF3cjFlM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8GCBuoo8RL4zgnoOixF3cjFlM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/u8GCBuoo8RL4zgnoOixF3cjFlM.jpg 3360w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:1544,intrinsicWidth:1368,pixelHeight:2753,pixelWidth:3442,positionX:\"center\",positionY:\"top\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1240px) * 0.55, 1px)`,src:\"https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RtemGmTPUc77N5lAhsMRN1kFw.jpg 3442w\"},className:\"framer-9ijeem\",\"data-framer-name\":\"Bild\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined},{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined},{href:{webPageId:\"e9Lh49peL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 60px, 940px), 1px) - 747px)`,y:(componentViewport?.y||0)+0+0+140+0+0+417.7+-.9963+314.8008},VmI24hxx5:{y:(componentViewport?.y||0)+0+0+80+0+0+0+0+113}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rfj1su-container\",\"data-framer-name\":\"R\\xf6r\",name:\"R\\xf6r\",nodeId:\"u5trObtIO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{xG9n1YoKj:resolvedLinks2[1]},VmI24hxx5:{variant:\"rciwdsb_x\",xG9n1YoKj:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"u5trObtIO\",layoutId:\"u5trObtIO\",name:\"R\\xf6r\",variant:\"pgTTRXKKo\",width:\"100%\",xG9n1YoKj:resolvedLinks2[0],YZumv1zMk:\"Vattenl\\xe4ckage i v\\xe4gg\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P5_8Txbzp\"},implicitPathVariables:undefined},{href:{webPageId:\"P5_8Txbzp\"},implicitPathVariables:undefined},{href:{webPageId:\"P5_8Txbzp\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+0+140+0+0+417.7+-.9963+739.9926-72},VmI24hxx5:{y:(componentViewport?.y||0)+0+0+80+0+0+0+0+256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-akpsw3-container\",\"data-framer-name\":\"Kakel\",name:\"Kakel\",nodeId:\"NkzOQOP4W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{xG9n1YoKj:resolvedLinks3[1]},VmI24hxx5:{variant:\"rciwdsb_x\",xG9n1YoKj:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"NkzOQOP4W\",layoutId:\"NkzOQOP4W\",name:\"Kakel\",variant:\"pgTTRXKKo\",width:\"100%\",xG9n1YoKj:resolvedLinks3[0],YZumv1zMk:\"Skadat kakel\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G5495Tkn6\"},implicitPathVariables:undefined},{href:{webPageId:\"G5495Tkn6\"},implicitPathVariables:undefined},{href:{webPageId:\"G5495Tkn6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+0+140+0+0+417.7+-.9963+739.9926-127.5},VmI24hxx5:{y:(componentViewport?.y||0)+0+0+80+0+0+0+0+300-35.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-30vsqh-container\",\"data-framer-name\":\"Toalett\",name:\"Toalett\",nodeId:\"GJBBngWUQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{xG9n1YoKj:resolvedLinks4[1]},VmI24hxx5:{variant:\"fLAASD3T7\",xG9n1YoKj:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"GJBBngWUQ\",layoutId:\"GJBBngWUQ\",name:\"Toalett\",variant:\"pgTTRXKKo\",width:\"100%\",xG9n1YoKj:resolvedLinks4[0],YZumv1zMk:\"Vattenl\\xe4ckage fr\\xe5n toalett\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined},{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined},{href:{webPageId:\"ejIuL2Rhq\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+0+140+0+0+417.7+-.9963+739.9926-239.5},VmI24hxx5:{y:(componentViewport?.y||0)+0+0+80+0+0+0+0+178}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-189tjd0-container\",\"data-framer-name\":\"Avlopp\",name:\"Avlopp\",nodeId:\"fQS8rcgPs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{xG9n1YoKj:resolvedLinks5[1]},VmI24hxx5:{variant:\"rciwdsb_x\",xG9n1YoKj:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"fQS8rcgPs\",layoutId:\"fQS8rcgPs\",name:\"Avlopp\",variant:\"pgTTRXKKo\",width:\"100%\",xG9n1YoKj:resolvedLinks5[0],YZumv1zMk:\"Skadad avloppsr\\xf6r\"})})})})})})})]})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+1385.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:246,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xupbgv-container hidden-1pa9h7h\",\"data-framer-name\":\"Samarbeten Dator\",name:\"Samarbeten Dator\",nodeId:\"JU6jF4jLc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{variant:\"GY8mXOVSJ\"}},children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"JU6jF4jLc\",layoutId:\"JU6jF4jLc\",name:\"Samarbeten Dator\",style:{width:\"100%\"},variant:\"TSd9hSfCJ\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{height:186,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+844.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7o6znw-container hidden-72rtr7 hidden-nnxylp\",\"data-framer-name\":\"Samarbeten Mobil\",name:\"Samarbeten Mobil\",nodeId:\"RNWfO4n63\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogosMobile,{height:\"100%\",id:\"RNWfO4n63\",layoutId:\"RNWfO4n63\",name:\"Samarbeten Mobil\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v4pt9t\",\"data-framer-name\":\"Tj\\xe4nster\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1pva6vl\",\"data-framer-name\":\"Inneh\\xe5ll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wuxrv3\",\"data-framer-name\":\"Titel & Knapp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4dly1d\",\"data-framer-name\":\"Stapel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",style:{\"--framer-text-alignment\":\"left\"},children:\"Utforska v\\xe5ra tj\\xe4nster\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",children:\"Utforska v\\xe5ra tj\\xe4nster\"})}),className:\"framer-1mhuauu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqblwb\",\"data-styles-preset\":\"oTwlHqHoD\",children:\"Oavsett tj\\xe4nst, har v\\xe5ra medlemsf\\xf6retag erfarenheten som kr\\xe4vs f\\xf6r att hj\\xe4lpa dig\"})}),className:\"framer-a7jnon hidden-1pa9h7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XMoPdQ5sV\"},implicitPathVariables:undefined},{href:{webPageId:\"XMoPdQ5sV\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+1631.7+120+0+0+0+69.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ugi4ee-container hidden-1pa9h7h\",\"data-framer-name\":\"Knapp\",name:\"Knapp\",nodeId:\"wfnXm2J63\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{QQwLM21zj:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"wfnXm2J63\",layoutId:\"wfnXm2J63\",name:\"Knapp\",QQwLM21zj:resolvedLinks6[0],variant:\"wipCkAnoU\",width:\"100%\",YkzuxKMzm:\"Se alla tj\\xe4nster\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 940px)`,y:(componentViewport?.y||0)+0+1631.7+120+0+0+225.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-138ihni-container hidden-1pa9h7h\",\"data-framer-name\":\"Tj\\xe4nster Dator\",name:\"Tj\\xe4nster Dator\",nodeId:\"FfaNhTlS9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCopy5,{height:\"100%\",id:\"FfaNhTlS9\",layoutId:\"FfaNhTlS9\",name:\"Tj\\xe4nster Dator\",style:{width:\"100%\"},variant:\"Z59NmBK4d\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{height:311,width:`min(${componentViewport?.width||\"100vw\"} - 20px, 570px)`,y:(componentViewport?.y||0)+0+1030.7+70+0+0+61.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4qqhv-container hidden-72rtr7 hidden-nnxylp\",nodeId:\"OI33EiGu4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TjNsterMobil,{height:\"100%\",id:\"OI33EiGu4\",layoutId:\"OI33EiGu4\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-x4mrww\",\"data-framer-name\":\"Om Sluta Riv\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-16fe233\",\"data-framer-name\":\"Inneh\\xe5ll\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n3hb40\",\"data-framer-name\":\"Stapel 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6id1z\",\"data-framer-name\":\"Text & Bild\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy8zb1\",\"data-framer-name\":\"Stapel Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x20xa0\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-5tbae8\",\"data-styles-preset\":\"M8Ouz43uk\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Du sparar b\\xe5de pengar & milj\\xf6\",/*#__PURE__*/_jsx(\"br\",{}),\"med en Sluta Riv reparation\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-5tbae8\",\"data-styles-preset\":\"M8Ouz43uk\",children:\"Du sparar b\\xe5de pengar och milj\\xf6 med en Sluta Riv reparation\"})}),className:\"framer-1yh5yro\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2tun6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"V\\xe5ra kunder sparar upp till en tredjedel av kostnaden j\\xe4mf\\xf6rt med traditionella metoder, samtidigt som Sluta Riv-metoden minimerar materialsvinn och byggavfall f\\xf6r en mer h\\xe5llbar framtid. Vi fokuserar p\\xe5 att lokalisera och reparera skadan ist\\xe4llet f\\xf6r att riva ut hela badrummet.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sluta Riv \\xe4r specialister p\\xe5 v\\xe5trum och anv\\xe4nder avancerade verktyg f\\xf6r att exakt identifiera l\\xe4ckage samt v\\xe4lja r\\xe4tt material f\\xf6r att reparera skadan p\\xe5 ett h\\xe5llbart och fackmannam\\xe4ssigt s\\xe4tt.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"justify\"},children:\"V\\xe5ra kunder sparar upp till en tredjedel av kostnaden j\\xe4mf\\xf6rt med traditionella metoder, samtidigt som Sluta Riv-metoden minimerar materialsvinn och byggavfall f\\xf6r en mer h\\xe5llbar framtid. Vi fokuserar p\\xe5 att lokalisera och reparera skadan ist\\xe4llet f\\xf6r att riva ut hela badrummet.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Sluta Riv \\xe4r specialister p\\xe5 v\\xe5trum och anv\\xe4nder avancerade verktyg f\\xf6r att exakt identifiera l\\xe4ckage samt v\\xe4lja r\\xe4tt material f\\xf6r att reparera skadan p\\xe5 ett h\\xe5llbart och fackmannam\\xe4ssigt s\\xe4tt.\"})]}),className:\"framer-ff80sa\",\"data-framer-name\":\"Bio\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tok8fr\",\"data-framer-name\":\"Stapel Knapp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined},{href:{webPageId:\"XjQs5Cy_Q\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+2436.9+0+0+0+0+140+0+610+0+72+0+325+0},VmI24hxx5:{y:(componentViewport?.y||0)+0+1542.9+100+0+0+0+0+0+260+0+62+0+325+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6d5uhx-container\",\"data-framer-name\":\"Knapp\",name:\"Knapp\",nodeId:\"wh8ZzbnK0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{CJwkcCfE5:resolvedLinks7[1]},VmI24hxx5:{CJwkcCfE5:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(Button2,{B5PTj2R73:\"arrow-right\",CJwkcCfE5:resolvedLinks7[0],GR68CgLTN:\"Kontakta oss\",height:\"100%\",id:\"wh8ZzbnK0\",layoutId:\"wh8ZzbnK0\",LG5CSJpvD:true,name:\"Knapp\",ot18wTv79:false,variant:\"OKEoudjmY\",w5Hgz19ND:10,width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2436.9+0+0+0+0+140+0+0),pixelHeight:3e3,pixelWidth:4e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 940px), 1px)`,src:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg\",srcSet:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg 4000w\"}},VmI24hxx5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1542.9+100+0+0+0+0+0+0),pixelHeight:3e3,pixelWidth:4e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 550px), 1px)`,src:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg\",srcSet:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:4e3,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1240px), 1px)`,src:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg\",srcSet:\"https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAKMLf0Jd5ceRyxa3VJtuB82SPA.jpg 4000w\"},className:\"framer-vwnlb4\",\"data-framer-name\":\"Stapel Bild\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpnw0v\",\"data-framer-name\":\"Text i bild\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ilvom-container\",\"data-framer-name\":\"Ikon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ikon\",nodeId:\"X9y_YQm4H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"leaf\",iconSelection:\"House\",id:\"X9y_YQm4H\",layoutId:\"X9y_YQm4H\",mirrored:false,name:\"Ikon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-knedua\",\"data-styles-preset\":\"lqXXPdN3k\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spara milj\\xf6n med reparationer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spara milj\\xf6n med reparationer\"})}),className:\"framer-bfj6la\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9vpga1\",\"data-border\":true,\"data-framer-name\":\"Stapel 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e1d5b2\",\"data-framer-name\":\"Stapel Text & Video\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1vacr\",\"data-framer-name\":\"Stapel Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkj46e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EcTe2jnQd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:true,height:\"100%\",id:\"EcTe2jnQd\",isMixedBorderRadius:false,layoutId:\"EcTe2jnQd\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/neC7UUoD0NL7Fmo8xnsBCfBYA.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/YXkLCcDUmI9KtAOzaqSfe5Qjlo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utpc67\",\"data-framer-name\":\"Stapel Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c0c70f\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-5tbae8\",\"data-styles-preset\":\"M8Ouz43uk\",style:{\"--framer-text-alignment\":\"center\"},children:\"Om Sluta Riv Sverige \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-5tbae8\",\"data-styles-preset\":\"M8Ouz43uk\",children:\"Om Sluta Riv Sverige \"})}),className:\"framer-1ppl3s4\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ko6qmd\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sluta Riv \\xe4r en rikst\\xe4ckande kedja som minskar on\\xf6dig rivning med innovativa produkter och tj\\xe4nster. Vi fr\\xe4mjar en h\\xe5llbar bygg- och renoveringsbransch genom att utbilda och st\\xf6tta v\\xe5ra medlemmar, som f\\xf6ljer v\\xe5ra branschregler och standarder.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:[\"F\\xf6r att h\\xf6ja kompetensen har vi introducerat tv\\xe5 yrkesroller: \",/*#__PURE__*/_jsx(\"strong\",{children:\"VALF-tekniker\"}),\", experter p\\xe5 l\\xe4cks\\xf6kning och skadeutredning, samt \",/*#__PURE__*/_jsx(\"strong\",{children:\"OPS-tekniker\"}),\", som utf\\xf6r lagningar med kirurgisk precision. Genom utbildning, delade resurser och marknadsf\\xf6ringsst\\xf6d st\\xe4rker vi v\\xe5ra medlemmars konkurrenskraft och skapar h\\xe5llbara aff\\xe4rsm\\xf6jligheter.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Sluta Riv \\xe4r en rikst\\xe4ckande kedja som minskar on\\xf6dig rivning med innovativa produkter och tj\\xe4nster. Vi fr\\xe4mjar en h\\xe5llbar bygg- och renoveringsbransch genom att utbilda och st\\xf6tta v\\xe5ra medlemmar, som f\\xf6ljer v\\xe5ra branschregler och standarder.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"justify\"},children:[\"F\\xf6r att h\\xf6ja kompetensen har vi introducerat tv\\xe5 yrkesroller: \",/*#__PURE__*/_jsx(\"strong\",{children:\"VALF-tekniker\"}),\", experter p\\xe5 l\\xe4cks\\xf6kning och skadeutredning, samt \",/*#__PURE__*/_jsx(\"strong\",{children:\"OPS-tekniker\"}),\", som utf\\xf6r lagningar med kirurgisk precision. Genom utbildning, delade resurser och marknadsf\\xf6ringsst\\xf6d st\\xe4rker vi v\\xe5ra medlemmars konkurrenskraft och skapar h\\xe5llbara aff\\xe4rsm\\xf6jligheter.\"]})]}),className:\"framer-muwnna\",\"data-framer-name\":\"Bio\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vz82u\",\"data-framer-name\":\"Stapel Knapp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined},{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined},{href:{webPageId:\"Tp81rLrJA\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+2436.9+0+0+0+1237+50+0+610+0+72+0+325+0},VmI24hxx5:{y:(componentViewport?.y||0)+0+1542.9+100+0+0+727+40+0+260+0+62+0+325+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kvbzig-container\",\"data-framer-name\":\"Knapp\",name:\"Knapp\",nodeId:\"YIN_hNjwS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{CJwkcCfE5:resolvedLinks8[1]},VmI24hxx5:{CJwkcCfE5:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(Button2,{B5PTj2R73:\"arrow-right\",CJwkcCfE5:resolvedLinks8[0],GR68CgLTN:\"L\\xe4s mer\",height:\"100%\",id:\"YIN_hNjwS\",layoutId:\"YIN_hNjwS\",LG5CSJpvD:true,name:\"Knapp\",ot18wTv79:false,variant:\"OKEoudjmY\",w5Hgz19ND:10,width:\"100%\"})})})})})})})]})]})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-aty0xt\",\"data-framer-name\":\"Recensioner\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1w3mz52\",\"data-framer-name\":\"Inneh\\xe5ll\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xmn52m\",\"data-framer-name\":\"Titel & Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0cnzf\",\"data-framer-name\":\"Stapel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",children:\"L\\xe4s v\\xe5ra recensioner\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rbulhl\",\"data-styles-preset\":\"tn2zjPu5v\",children:\"Vad kunder s\\xe4ger om Sluta Riv\"})}),className:\"framer-14b8wa5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VmI24hxx5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmos\",\"data-styles-preset\":\"NaN7qPstQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vi \\xe4r stolta \\xf6ver att \\xf6vertr\\xe4ffa kundernas f\\xf6rv\\xe4ntningar vid varje projekt.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pqblwb\",\"data-styles-preset\":\"oTwlHqHoD\",children:\"Vi \\xe4r stolta \\xf6ver att \\xf6vertr\\xe4ffa kundernas f\\xf6rv\\xe4ntningar vid varje projekt och bes\\xf6k.\"})}),className:\"framer-psz52g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{height:472,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 940px)`,y:(componentViewport?.y||0)+0+4875.9+110+0+0+110},VmI24hxx5:{height:472,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 550px)`,y:(componentViewport?.y||0)+0+3176.9+80+0+0+213.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:375,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1240px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hriovm-container\",\"data-framer-name\":\"Omd\\xf6men\",name:\"Omd\\xf6men\",nodeId:\"Xihicu2Hh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{style:{width:\"100%\"},variant:\"MsCovhFsR\"},VmI24hxx5:{NUnsdEKe0:\"Ett helt fantastiskt professionellt f\\xf6retag med underbara & trevliga medarbetare. Mycket trevlig och fin upplevelse. Jag kan v\\xe4ldigt skarpt rekommendera Sluta Riv.\",style:{width:\"100%\"},variant:\"JJHrYBoNW\"}},children:/*#__PURE__*/_jsx(TestimonialSlideshow2,{height:\"100%\",id:\"Xihicu2Hh\",layoutId:\"Xihicu2Hh\",name:\"Omd\\xf6men\",NUnsdEKe0:\"Ett helt fantastiskt professionellt f\\xf6retag med underbara och trevliga medarbetare. Mycket trevlig och fin upplevelse. Jag kan skarpt rekommendera Sluta Riv.\",style:{height:\"100%\",width:\"100%\"},variant:\"DuJSNL9V7\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+5667.9},VmI24hxx5:{y:(componentViewport?.y||0)+0+4012.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:683,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pgbblz-container\",id:elementId5,nodeId:\"BYB9r8w4l\",ref:ref6,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{lH7YHJhmE:\"0px 0px 110px 0px\",variant:\"fRy6gfRRJ\"},VmI24hxx5:{lH7YHJhmE:\"80px 20px 80px 20px\",variant:\"EhvdvcplQ\"}},children:/*#__PURE__*/_jsx(Kontakta,{GLGRrEtMj:{borderBottomWidth:1,borderColor:'var(--token-984cdf48-d0a3-4c0c-96d9-93183dc8cb3c, rgb(230, 230, 230)) /* {\"name\":\"Borders\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"BYB9r8w4l\",layoutId:\"BYB9r8w4l\",lH7YHJhmE:\"0px 0px 100px 0px\",style:{width:\"100%\"},variant:\"ZiFX_Wo5a\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{y:(componentViewport?.y||0)+0+6350.9},VmI24hxx5:{y:(componentViewport?.y||0)+0+4695.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1226,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ty0ws1-container\",\"data-framer-name\":\"Vanliga Fr\\xe5gor / Formul\\xe4r\",id:elementId6,name:\"Vanliga Fr\\xe5gor / Formul\\xe4r\",nodeId:\"A3szgE25d\",ref:ref7,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HgsMdGfjg:{variant:\"fwLyWzO6I\"},VmI24hxx5:{variant:\"A0OZCCwFR\"}},children:/*#__PURE__*/_jsx(VanligaFrGorSidfot,{A4nT9nfoa:\"Finns ni i hela Sverige?\",EU_wkLZ7O:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Det har alltid varit till\\xe5tet att reparera. Det \\xe4r en myt skapad f\\xf6r att s\\xe4lja mer material och arbetstimmar. Sluta Riv har nu slagit h\\xe5l p\\xe5 den missuppfattningen.\"})}),HdPYKAMHf:\"Hur vet jag att lagningen \\xe4r t\\xe4t om fem \\xe5r?\",height:\"100%\",id:\"A3szgE25d\",jj3OnOjJM:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Nej \u2013 p\\xe5 millimetern! Vi utbildar alla v\\xe5ra medlemmar till VALF-tekniker, och med l\\xe4cks\\xf6kningsverktyget Valfuum X523 kan de lokalisera l\\xe4ckage med millimeterprecision.\"})}),layoutId:\"A3szgE25d\",lvEZ5L8ez:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Vi b\\xf6rjar alltid med en l\\xe4cks\\xf6kning eller en Sluta Riv-besiktning f\\xf6r att identifiera skadeproblemet. D\\xe4refter tar vi fram en \\xe5tg\\xe4rdsplan och offert.\"})}),name:\"Vanliga Fr\\xe5gor / Formul\\xe4r\",po0t6bBfg:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sluta Riv installerar fuktsensorer i alla v\\xe5ra reparationer d\\xe4r det \\xe4r m\\xf6jligt. Dessa sensorer kr\\xe4ver inga batterier, har ingen m\\xe5nadsavgift och har en livsl\\xe4ngd p\\xe5 minst 50 \\xe5r. Vi f\\xf6ljer g\\xe4llande svensk lagstiftning.\"})}),Q5dGJ0cXu:\"Kan ni verkligen hitta l\\xe4ckage p\\xe5 centimetern?\",style:{width:\"100%\"},variant:\"RvFmmMfL0\",width:\"100%\",XZsoLTRoD:\"Hur g\\xe5r processen till n\\xe4r ni tar er an ett projekt?\",Y0T3q6V5z:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ja, vi \\xe4r rikst\\xe4ckande genom v\\xe5ra medlemsf\\xf6retag \\xf6ver hela Sverige, som vi utbildar till VALF- eller OPS-tekniker.\"})}),ztZA_zFoR:\"Jag har h\\xf6rt att man inte f\\xe5r laga n\\xe5got i byggbranschen, utan att man m\\xe5ste riva allt och bygga nytt?\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-19XnM.framer-lux5qc, .framer-19XnM .framer-lux5qc { display: block; }\",\".framer-19XnM.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-19XnM .framer-1nfyqiq-container { flex: none; height: auto; position: fixed; right: 0px; top: 0px; width: 100%; z-index: 10; }\",\".framer-19XnM .framer-18cqpc4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 150px 30px 90px 30px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1tcf3an { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-176c47h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.25 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 590px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-1ar0qod { 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-19XnM .framer-t0mr8u { align-content: center; align-items: center; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 4px; position: relative; width: min-content; }\",\".framer-19XnM .framer-3jax8u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.85; position: relative; white-space: pre; width: auto; }\",\".framer-19XnM .framer-4l4p9s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-mask: linear-gradient(115deg, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,1) 100%) add; flex: none; height: auto; mask: linear-gradient(115deg, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,1) 100%) add; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-19XnM .framer-wodntq, .framer-19XnM .framer-1mhuauu, .framer-19XnM .framer-a7jnon { --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-19XnM .framer-1r2mavp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-19XnM .framer-63kasr-container, .framer-19XnM .framer-1f6h1tj-container, .framer-19XnM .framer-ugi4ee-container, .framer-19XnM .framer-6d5uhx-container, .framer-19XnM .framer-kvbzig-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-19XnM .framer-1na0gtc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 55%; }\",\".framer-19XnM .framer-9ijeem { -webkit-user-select: none; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 8px 24px 0px rgba(173, 173, 173, 0.08); flex: 1 0 0px; height: 550px; overflow: visible; pointer-events: none; position: relative; user-select: none; width: 1px; z-index: 0; }\",\".framer-19XnM .framer-1rfj1su-container { flex: none; height: auto; position: absolute; right: 30px; top: 232px; width: auto; }\",\".framer-19XnM .framer-akpsw3-container { bottom: 22px; flex: none; height: auto; left: 354px; position: absolute; width: auto; }\",\".framer-19XnM .framer-30vsqh-container { bottom: 65px; flex: none; height: auto; left: 14px; position: absolute; width: auto; }\",\".framer-19XnM .framer-189tjd0-container { bottom: 161px; flex: none; height: auto; left: 138px; position: absolute; width: auto; }\",\".framer-19XnM .framer-xupbgv-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-19XnM .framer-7o6znw-container, .framer-19XnM .framer-138ihni-container, .framer-19XnM .framer-1v4qqhv-container, .framer-19XnM .framer-1pgbblz-container, .framer-19XnM .framer-ty0ws1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-19XnM .framer-1v4pt9t { align-content: center; align-items: center; background-color: #f9fafb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 140px 30px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1pva6vl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-wuxrv3, .framer-19XnM .framer-1xmn52m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-4dly1d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-x4mrww { 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 30px 0px 30px; position: relative; width: 100%; }\",\".framer-19XnM .framer-16fe233 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1n3hb40 { 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: 140px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1e1d5b2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-1fy8zb1, .framer-19XnM .framer-1utpc67 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-x20xa0, .framer-19XnM .framer-1c0c70f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1yh5yro, .framer-19XnM .framer-1ppl3s4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-19XnM .framer-n2tun6, .framer-19XnM .framer-ko6qmd { 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-19XnM .framer-ff80sa, .framer-19XnM .framer-muwnna { --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-19XnM .framer-1tok8fr, .framer-19XnM .framer-19vz82u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-vwnlb4 { -webkit-user-select: none; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; padding: 0px; pointer-events: none; position: relative; user-select: none; width: 1px; }\",\".framer-19XnM .framer-dpnw0v { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(71, 71, 71, 0.4); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 15px; overflow: hidden; padding: 6px 18px 6px 12px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-19XnM .framer-19ilvom-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-19XnM .framer-bfj6la, .framer-19XnM .framer-14b8wa5, .framer-19XnM .framer-psz52g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-19XnM .framer-9vpga1 { --border-bottom-width: 1px; --border-color: var(--token-984cdf48-d0a3-4c0c-96d9-93183dc8cb3c, #e6e6e6); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 50px 0px 115px 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-t1vacr { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-1hkj46e-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-19XnM .framer-aty0xt { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(245, 245, 245) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1w3mz52 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-19XnM .framer-1s0cnzf { align-content: center; align-items: center; display: flex; flex: 2.75 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-19XnM .framer-hriovm-container { flex: none; height: 375px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-19XnM.framer-72rtr7, .framer-19XnM .framer-18cqpc4, .framer-19XnM .framer-1tcf3an, .framer-19XnM .framer-176c47h, .framer-19XnM .framer-1ar0qod, .framer-19XnM .framer-t0mr8u, .framer-19XnM .framer-1r2mavp, .framer-19XnM .framer-1na0gtc, .framer-19XnM .framer-1v4pt9t, .framer-19XnM .framer-1pva6vl, .framer-19XnM .framer-wuxrv3, .framer-19XnM .framer-4dly1d, .framer-19XnM .framer-x4mrww, .framer-19XnM .framer-16fe233, .framer-19XnM .framer-1n3hb40, .framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1fy8zb1, .framer-19XnM .framer-x20xa0, .framer-19XnM .framer-n2tun6, .framer-19XnM .framer-1tok8fr, .framer-19XnM .framer-vwnlb4, .framer-19XnM .framer-dpnw0v, .framer-19XnM .framer-9vpga1, .framer-19XnM .framer-1e1d5b2, .framer-19XnM .framer-t1vacr, .framer-19XnM .framer-1utpc67, .framer-19XnM .framer-1c0c70f, .framer-19XnM .framer-ko6qmd, .framer-19XnM .framer-19vz82u, .framer-19XnM .framer-aty0xt, .framer-19XnM .framer-1w3mz52, .framer-19XnM .framer-1xmn52m, .framer-19XnM .framer-1s0cnzf { gap: 0px; } .framer-19XnM.framer-72rtr7 > *, .framer-19XnM .framer-16fe233 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-19XnM.framer-72rtr7 > :first-child, .framer-19XnM .framer-18cqpc4 > :first-child, .framer-19XnM .framer-176c47h > :first-child, .framer-19XnM .framer-1ar0qod > :first-child, .framer-19XnM .framer-t0mr8u > :first-child, .framer-19XnM .framer-1v4pt9t > :first-child, .framer-19XnM .framer-1pva6vl > :first-child, .framer-19XnM .framer-4dly1d > :first-child, .framer-19XnM .framer-x4mrww > :first-child, .framer-19XnM .framer-16fe233 > :first-child, .framer-19XnM .framer-1fy8zb1 > :first-child, .framer-19XnM .framer-x20xa0 > :first-child, .framer-19XnM .framer-n2tun6 > :first-child, .framer-19XnM .framer-1utpc67 > :first-child, .framer-19XnM .framer-1c0c70f > :first-child, .framer-19XnM .framer-ko6qmd > :first-child, .framer-19XnM .framer-aty0xt > :first-child, .framer-19XnM .framer-1w3mz52 > :first-child, .framer-19XnM .framer-1s0cnzf > :first-child { margin-top: 0px; } .framer-19XnM.framer-72rtr7 > :last-child, .framer-19XnM .framer-18cqpc4 > :last-child, .framer-19XnM .framer-176c47h > :last-child, .framer-19XnM .framer-1ar0qod > :last-child, .framer-19XnM .framer-t0mr8u > :last-child, .framer-19XnM .framer-1v4pt9t > :last-child, .framer-19XnM .framer-1pva6vl > :last-child, .framer-19XnM .framer-4dly1d > :last-child, .framer-19XnM .framer-x4mrww > :last-child, .framer-19XnM .framer-16fe233 > :last-child, .framer-19XnM .framer-1fy8zb1 > :last-child, .framer-19XnM .framer-x20xa0 > :last-child, .framer-19XnM .framer-n2tun6 > :last-child, .framer-19XnM .framer-1utpc67 > :last-child, .framer-19XnM .framer-1c0c70f > :last-child, .framer-19XnM .framer-ko6qmd > :last-child, .framer-19XnM .framer-aty0xt > :last-child, .framer-19XnM .framer-1w3mz52 > :last-child, .framer-19XnM .framer-1s0cnzf > :last-child { margin-bottom: 0px; } .framer-19XnM .framer-18cqpc4 > *, .framer-19XnM .framer-t0mr8u > *, .framer-19XnM .framer-1v4pt9t > *, .framer-19XnM .framer-4dly1d > *, .framer-19XnM .framer-x4mrww > *, .framer-19XnM .framer-aty0xt > *, .framer-19XnM .framer-1s0cnzf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-19XnM .framer-1tcf3an > *, .framer-19XnM .framer-s6id1z > *, .framer-19XnM .framer-1e1d5b2 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-19XnM .framer-1tcf3an > :first-child, .framer-19XnM .framer-1r2mavp > :first-child, .framer-19XnM .framer-1na0gtc > :first-child, .framer-19XnM .framer-wuxrv3 > :first-child, .framer-19XnM .framer-1n3hb40 > :first-child, .framer-19XnM .framer-s6id1z > :first-child, .framer-19XnM .framer-1tok8fr > :first-child, .framer-19XnM .framer-vwnlb4 > :first-child, .framer-19XnM .framer-dpnw0v > :first-child, .framer-19XnM .framer-9vpga1 > :first-child, .framer-19XnM .framer-1e1d5b2 > :first-child, .framer-19XnM .framer-t1vacr > :first-child, .framer-19XnM .framer-19vz82u > :first-child, .framer-19XnM .framer-1xmn52m > :first-child { margin-left: 0px; } .framer-19XnM .framer-1tcf3an > :last-child, .framer-19XnM .framer-1r2mavp > :last-child, .framer-19XnM .framer-1na0gtc > :last-child, .framer-19XnM .framer-wuxrv3 > :last-child, .framer-19XnM .framer-1n3hb40 > :last-child, .framer-19XnM .framer-s6id1z > :last-child, .framer-19XnM .framer-1tok8fr > :last-child, .framer-19XnM .framer-vwnlb4 > :last-child, .framer-19XnM .framer-dpnw0v > :last-child, .framer-19XnM .framer-9vpga1 > :last-child, .framer-19XnM .framer-1e1d5b2 > :last-child, .framer-19XnM .framer-t1vacr > :last-child, .framer-19XnM .framer-19vz82u > :last-child, .framer-19XnM .framer-1xmn52m > :last-child { margin-right: 0px; } .framer-19XnM .framer-176c47h > *, .framer-19XnM .framer-1pva6vl > *, .framer-19XnM .framer-1w3mz52 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-19XnM .framer-1ar0qod > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-19XnM .framer-1r2mavp > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-19XnM .framer-1na0gtc > *, .framer-19XnM .framer-wuxrv3 > *, .framer-19XnM .framer-1n3hb40 > *, .framer-19XnM .framer-vwnlb4 > *, .framer-19XnM .framer-dpnw0v > *, .framer-19XnM .framer-9vpga1 > *, .framer-19XnM .framer-t1vacr > *, .framer-19XnM .framer-1xmn52m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-19XnM .framer-1fy8zb1 > *, .framer-19XnM .framer-n2tun6 > *, .framer-19XnM .framer-1utpc67 > *, .framer-19XnM .framer-ko6qmd > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-19XnM .framer-x20xa0 > *, .framer-19XnM .framer-1c0c70f > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-19XnM .framer-1tok8fr > *, .framer-19XnM .framer-19vz82u > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-19XnM[data-border=\"true\"]::after, .framer-19XnM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 999px) and (max-width: 1299px) { .framer-19XnM.framer-72rtr7 { width: 999px; } .framer-19XnM .framer-18cqpc4 { height: min-content; padding: 140px 30px 90px 30px; } .framer-19XnM .framer-1tcf3an { flex-direction: column; gap: 90px; max-width: 940px; } .framer-19XnM .framer-176c47h { flex: none; max-width: unset; width: 100%; } .framer-19XnM .framer-1na0gtc { height: 738px; width: 100%; } .framer-19XnM .framer-9ijeem { height: 100%; } .framer-19XnM .framer-1rfj1su-container { left: 717px; right: unset; top: 315px; width: 187px; } .framer-19XnM .framer-akpsw3-container { bottom: 46px; left: 527px; } .framer-19XnM .framer-30vsqh-container { bottom: 102px; left: 34px; } .framer-19XnM .framer-189tjd0-container { bottom: 214px; left: 246px; } .framer-19XnM .framer-1v4pt9t { padding: 120px 30px 110px 30px; } .framer-19XnM .framer-1pva6vl, .framer-19XnM .framer-16fe233, .framer-19XnM .framer-1w3mz52 { max-width: 940px; } .framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1e1d5b2 { flex-direction: column; gap: 60px; } .framer-19XnM .framer-1fy8zb1 { flex: none; order: 1; width: 100%; } .framer-19XnM .framer-vwnlb4 { aspect-ratio: 1.7072727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); order: 0; width: 100%; } .framer-19XnM .framer-9vpga1 { padding: 50px 0px 105px 0px; } .framer-19XnM .framer-t1vacr { aspect-ratio: 1.7072727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); width: 100%; } .framer-19XnM .framer-1utpc67 { flex: none; width: 100%; } .framer-19XnM .framer-aty0xt { padding: 110px 30px 100px 30px; } .framer-19XnM .framer-hriovm-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-19XnM .framer-1tcf3an, .framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1e1d5b2 { gap: 0px; } .framer-19XnM .framer-1tcf3an > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-19XnM .framer-1tcf3an > :first-child, .framer-19XnM .framer-s6id1z > :first-child, .framer-19XnM .framer-1e1d5b2 > :first-child { margin-top: 0px; } .framer-19XnM .framer-1tcf3an > :last-child, .framer-19XnM .framer-s6id1z > :last-child, .framer-19XnM .framer-1e1d5b2 > :last-child { margin-bottom: 0px; } .framer-19XnM .framer-s6id1z > *, .framer-19XnM .framer-1e1d5b2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 998px) { .framer-19XnM.framer-72rtr7 { width: 360px; } .framer-19XnM .framer-1nfyqiq-container { left: 50%; right: unset; transform: translateX(-50%); } .framer-19XnM .framer-18cqpc4 { gap: 25px; height: min-content; padding: 80px 0px 0px 0px; } .framer-19XnM .framer-1tcf3an { flex-direction: column; gap: 0px; } .framer-19XnM .framer-176c47h { align-content: center; align-items: center; flex: none; gap: 35px; order: 1; overflow: visible; padding: 50px 20px 80px 20px; width: 100%; } .framer-19XnM .framer-1ar0qod { align-content: center; align-items: center; order: 0; } .framer-19XnM .framer-1r2mavp { flex-direction: column; order: 1; width: 100%; } .framer-19XnM .framer-63kasr-container { order: 1; width: 100%; } .framer-19XnM .framer-1f6h1tj-container { order: 0; width: 100%; } .framer-19XnM .framer-1na0gtc { max-width: 550px; order: 0; width: 100%; } .framer-19XnM .framer-9ijeem { -webkit-filter: drop-shadow(0px 8px 11px rgba(173, 173, 173, 0.08)); aspect-ratio: 1.2 / 1; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; filter: drop-shadow(0px 8px 11px rgba(173, 173, 173, 0.08)); height: var(--framer-aspect-ratio-supported, 300px); order: 0; } .framer-19XnM .framer-1rfj1su-container { right: 20px; top: 42%; transform: translateY(-50%); } .framer-19XnM .framer-akpsw3-container { bottom: unset; left: 70%; top: 90%; transform: translate(-50%, -50%); } .framer-19XnM .framer-30vsqh-container { bottom: 10px; left: 25%; transform: translateX(-50%); } .framer-19XnM .framer-189tjd0-container { bottom: unset; left: 32%; top: 64%; transform: translate(-50%, -50%); } .framer-19XnM .framer-1v4pt9t { overflow: visible; padding: 70px 0px 70px 20px; scroll-margin-top: 25px; } .framer-19XnM .framer-1pva6vl { gap: 20px; max-width: 570px; } .framer-19XnM .framer-wuxrv3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; } .framer-19XnM .framer-4dly1d { flex: none; padding: 0px 0px 10px 0px; width: 100%; } .framer-19XnM .framer-x4mrww { overflow: visible; padding: 100px 20px 0px 20px; scroll-margin-top: 25px; } .framer-19XnM .framer-16fe233 { max-width: 550px; } .framer-19XnM .framer-1n3hb40 { padding: 0px 0px 40px 0px; } .framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1e1d5b2 { flex-direction: column; gap: 40px; } .framer-19XnM .framer-1fy8zb1 { flex: none; gap: 20px; min-width: unset; order: 1; width: 100%; } .framer-19XnM .framer-x20xa0 { gap: 8px; } .framer-19XnM .framer-1tok8fr, .framer-19XnM .framer-19vz82u { justify-content: center; } .framer-19XnM .framer-vwnlb4, .framer-19XnM .framer-t1vacr { aspect-ratio: 1.4545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); max-height: 300px; order: 0; width: 100%; } .framer-19XnM .framer-9vpga1 { padding: 40px 0px 80px 0px; } .framer-19XnM .framer-1utpc67 { flex: none; gap: 20px; order: 1; width: 100%; } .framer-19XnM .framer-aty0xt { padding: 80px 20px 70px 20px; scroll-margin-top: 25px; } .framer-19XnM .framer-1w3mz52 { gap: 30px; max-width: 550px; } .framer-19XnM .framer-1xmn52m { flex-direction: column; gap: 30px; } .framer-19XnM .framer-1s0cnzf { flex: none; width: 100%; } .framer-19XnM .framer-psz52g { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-19XnM .framer-hriovm-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-19XnM .framer-18cqpc4, .framer-19XnM .framer-1tcf3an, .framer-19XnM .framer-176c47h, .framer-19XnM .framer-1r2mavp, .framer-19XnM .framer-1pva6vl, .framer-19XnM .framer-wuxrv3, .framer-19XnM .framer-s6id1z, .framer-19XnM .framer-1fy8zb1, .framer-19XnM .framer-x20xa0, .framer-19XnM .framer-1e1d5b2, .framer-19XnM .framer-1utpc67, .framer-19XnM .framer-1w3mz52, .framer-19XnM .framer-1xmn52m { gap: 0px; } .framer-19XnM .framer-18cqpc4 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-19XnM .framer-18cqpc4 > :first-child, .framer-19XnM .framer-1tcf3an > :first-child, .framer-19XnM .framer-176c47h > :first-child, .framer-19XnM .framer-1r2mavp > :first-child, .framer-19XnM .framer-1pva6vl > :first-child, .framer-19XnM .framer-wuxrv3 > :first-child, .framer-19XnM .framer-s6id1z > :first-child, .framer-19XnM .framer-1fy8zb1 > :first-child, .framer-19XnM .framer-x20xa0 > :first-child, .framer-19XnM .framer-1e1d5b2 > :first-child, .framer-19XnM .framer-1utpc67 > :first-child, .framer-19XnM .framer-1w3mz52 > :first-child, .framer-19XnM .framer-1xmn52m > :first-child { margin-top: 0px; } .framer-19XnM .framer-18cqpc4 > :last-child, .framer-19XnM .framer-1tcf3an > :last-child, .framer-19XnM .framer-176c47h > :last-child, .framer-19XnM .framer-1r2mavp > :last-child, .framer-19XnM .framer-1pva6vl > :last-child, .framer-19XnM .framer-wuxrv3 > :last-child, .framer-19XnM .framer-s6id1z > :last-child, .framer-19XnM .framer-1fy8zb1 > :last-child, .framer-19XnM .framer-x20xa0 > :last-child, .framer-19XnM .framer-1e1d5b2 > :last-child, .framer-19XnM .framer-1utpc67 > :last-child, .framer-19XnM .framer-1w3mz52 > :last-child, .framer-19XnM .framer-1xmn52m > :last-child { margin-bottom: 0px; } .framer-19XnM .framer-1tcf3an > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-19XnM .framer-176c47h > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-19XnM .framer-1r2mavp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-19XnM .framer-1pva6vl > *, .framer-19XnM .framer-1fy8zb1 > *, .framer-19XnM .framer-1utpc67 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-19XnM .framer-wuxrv3 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-19XnM .framer-s6id1z > *, .framer-19XnM .framer-1e1d5b2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-19XnM .framer-x20xa0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-19XnM .framer-1w3mz52 > *, .framer-19XnM .framer-1xmn52m > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5816.5\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HgsMdGfjg\":{\"layout\":[\"fixed\",\"auto\"]},\"VmI24hxx5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"e6KSY9g1O\":{\"pattern\":\":e6KSY9g1O\",\"name\":\"toppen\"},\"KJ3ebVFTE\":{\"pattern\":\":KJ3ebVFTE\",\"name\":\"hem\"},\"RIoXdpYrL\":{\"pattern\":\":RIoXdpYrL\",\"name\":\"services\"},\"Kmzn3lURL\":{\"pattern\":\":Kmzn3lURL\",\"name\":\"team\"},\"MuEBOabhT\":{\"pattern\":\":MuEBOabhT\",\"name\":\"reviews\"},\"BYB9r8w4l\":{\"pattern\":\":BYB9r8w4l\",\"name\":\"contact\"},\"A3szgE25d\":{\"pattern\":\":A3szgE25d\",\"name\":\"vanliga-fr\u00E5gor\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-19XnM\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5816.5,width:1300};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...TopNavigationBarFonts,...ButtonFonts,...BadgeFonts,...LogosFonts,...LogosMobileFonts,...TestimonialCopy5Fonts,...TjNsterMobilFonts,...Button2Fonts,...PhosphorFonts,...VideoFonts,...TestimonialSlideshow2Fonts,...KontaktaFonts,...VanligaFrGorSidfotFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5816.5\",\"framerScrollSections\":\"{\\\"e6KSY9g1O\\\":{\\\"pattern\\\":\\\":e6KSY9g1O\\\",\\\"name\\\":\\\"toppen\\\"},\\\"KJ3ebVFTE\\\":{\\\"pattern\\\":\\\":KJ3ebVFTE\\\",\\\"name\\\":\\\"hem\\\"},\\\"RIoXdpYrL\\\":{\\\"pattern\\\":\\\":RIoXdpYrL\\\",\\\"name\\\":\\\"services\\\"},\\\"Kmzn3lURL\\\":{\\\"pattern\\\":\\\":Kmzn3lURL\\\",\\\"name\\\":\\\"team\\\"},\\\"MuEBOabhT\\\":{\\\"pattern\\\":\\\":MuEBOabhT\\\",\\\"name\\\":\\\"reviews\\\"},\\\"BYB9r8w4l\\\":{\\\"pattern\\\":\\\":BYB9r8w4l\\\",\\\"name\\\":\\\"contact\\\"},\\\"A3szgE25d\\\":{\\\"pattern\\\":\\\":A3szgE25d\\\",\\\"name\\\":\\\"vanliga-fr\u00E5gor\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HgsMdGfjg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VmI24hxx5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "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", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "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", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "HeroFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "S7PBXT8sO", "xpB4CyCSQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "css", "FramerBz7rYeAeo", "withCSS", "Bz7rYeAeo_default", "addPropertyControls", "ControlType", "addFonts", "HeroFonts", "getFontsFromSharedStyle", "fonts", "TestimonialCardFonts", "getFonts", "Bz7rYeAeo_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NUnsdEKe0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDSo7O6yhB", "withCSS", "DSo7O6yhB_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonRadius", "height", "id", "link", "newTab", "rightIcon", "rightIconName", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GR68CgLTN", "CJwkcCfE5", "ot18wTv79", "LG5CSJpvD", "B5PTj2R73", "w5Hgz19ND", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerEMBOKCMyZ", "withCSS", "EMBOKCMyZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DropdownItemImgCard2Fonts", "getFonts", "RWoRwodhJ_default", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerNU_bgxQ4F", "withCSS", "NU_bgxQ4F_default", "addPropertyControls", "ControlType", "addFonts", "DropdownItemImgCard2Fonts", "getFonts", "RWoRwodhJ_default", "CarouselFonts", "Carousel", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "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", "router", "useRouter", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Carousel", "ResolveLinks", "resolvedLinks", "RWoRwodhJ_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameroMJ6nEQj2", "withCSS", "oMJ6nEQj2_default", "addFonts", "DropdownItemImgCard2Fonts", "CarouselFonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "Ticker", "SVG", "css", "FramerouDNq7o1p", "withCSS", "ouDNq7o1p_default", "addFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YZumv1zMk", "xG9n1YoKj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "Framerq2znbFNKn", "withCSS", "q2znbFNKn_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerWvHzx9f19", "withCSS", "WvHzx9f19_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TopNavigationBarFonts", "getFonts", "sV6H1_XQ8_default", "ButtonFonts", "cW6tAwIsA_default", "BadgeFonts", "q2znbFNKn_default", "ContainerWithFX", "withFX", "Container", "LogosFonts", "WvHzx9f19_default", "LogosMobileFonts", "ouDNq7o1p_default", "TestimonialCopy5Fonts", "NU_bgxQ4F_default", "TjNsterMobilFonts", "oMJ6nEQj2_default", "Button2Fonts", "EMBOKCMyZ_default", "PhosphorFonts", "Icon", "VideoFonts", "Video", "TestimonialSlideshow2Fonts", "DSo7O6yhB_default", "KontaktaFonts", "Di2bPz89w_default", "VanligaFrGorSidfotFonts", "tqeTzbAeU_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transformTemplate2", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "router", "useRouter", "isDisplayed1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
