{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/8YJ2I3lPGrzGJvM7aHp2/vjgse7F6xkBoF3xDNcjE/augiA20Il.js", "ssg:https://framerusercontent.com/modules/bFTfVPIUiaxHTBjdT0Yl/lev9FSUXem8So73b0Lsj/augiA20Il.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "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", "// Generated by Framer (7422eea)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={hMucpZKIB:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7422eea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}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 BookEnDemo from\"#framer/local/canvasComponent/ATZqMTO0n/ATZqMTO0n.js\";import StressLevelAnimation from\"#framer/local/canvasComponent/b4RB3PhXx/b4RB3PhXx.js\";import ButtonArrow from\"#framer/local/canvasComponent/beqLwtpNS/beqLwtpNS.js\";import SectionBadge from\"#framer/local/canvasComponent/DT9isorhv/DT9isorhv.js\";import LogoSlider from\"#framer/local/canvasComponent/f86llIPz5/f86llIPz5.js\";import Testimonials from\"#framer/local/canvasComponent/kgzDkGGWU/kgzDkGGWU.js\";import Shapes from\"#framer/local/canvasComponent/kRXrx52Vw/kRXrx52Vw.js\";import NavigationBar from\"#framer/local/canvasComponent/QewyBr_DF/QewyBr_DF.js\";import Footer from\"#framer/local/canvasComponent/zOCvedWwi/zOCvedWwi.js\";import*as sharedStyle5 from\"#framer/local/css/azWuFmwC8/azWuFmwC8.js\";import*as sharedStyle from\"#framer/local/css/bWX_Lh3No/bWX_Lh3No.js\";import*as sharedStyle2 from\"#framer/local/css/FLLY8qHw0/FLLY8qHw0.js\";import*as sharedStyle4 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle3 from\"#framer/local/css/uSwC03676/uSwC03676.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const SectionBadgeFonts=getFonts(SectionBadge);const ButtonArrowFonts=getFonts(ButtonArrow);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const ShapesFonts=getFonts(Shapes);const LogoSliderFonts=getFonts(LogoSlider);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const StressLevelAnimationFonts=getFonts(StressLevelAnimation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TestimonialsFonts=getFonts(Testimonials);const BookEnDemoFonts=getFonts(BookEnDemo);const FooterFonts=getFonts(Footer);const breakpoints={jvCw4IpzG:\"(max-width: 809px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 1399px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PK2IF\";const variantClassNames={jvCw4IpzG:\"framer-v-nj0mn7\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.9,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:15};const transition3={delay:2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition5={damping:40,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition6={damping:50,delay:.5,mass:1,stiffness:451,type:\"spring\"};const animation7={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition7={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation7,startDelay:.4,threshold:0,tokenization:\"character\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const textEffect1={effect:animation7,startDelay:.8,threshold:0,tokenization:\"character\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const textEffect2={effect:animation7,startDelay:1.2,threshold:0,tokenization:\"character\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition8={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const transition9={damping:90,delay:.3,mass:1,stiffness:450,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const ref1=React.useRef(null);const elementId=useRouteElementId(\"rBcUvzrev\");const elementId1=useRouteElementId(\"Fzvi32zRv\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"SI0K5KfJH\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"zcXgo_84j\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"TyBnfn3Yh\");const ref5=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(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6upobj-container\",layoutScroll:true,nodeId:\"rE03Lq5Zo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"auHBp0OgR\"},Ulru_24ch:{variant:\"auHBp0OgR\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"rE03Lq5Zo\",layoutId:\"rE03Lq5Zo\",style:{width:\"100%\"},variant:\"EAxcl9Ptg\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b0n1wz\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-k6jalx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aimela\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1bxj61i\",\"data-framer-appear-id\":\"1bxj61i\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17hxn78\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aj0wmr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+0+0+120+0+0+0+0+0+0+0+0+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+140+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+0+0+180+0+0+0+111+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e819pi-container\",nodeId:\"aEnR_sIZu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:getLocalizedValue(\"v0\",activeLocale)??\"FEEDBACK & TRIVSELS-PLATFORM\",id:\"aEnR_sIZu\",layoutId:\"aEnR_sIZu\",SJkB94Ng6:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\",variant:\"tb9HJqnJs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jcr185\",\"data-styles-preset\":\"bWX_Lh3No\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"G\\xf8r trivsel m\\xe5lbart og styrk jeres ledelse!\"})})}),className:\"framer-gk8lco\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Trivsel kan og b\\xf8r m\\xe5les \u2013 og bruges aktivt i ledelse. N\\xe5r medarbejdere trives, pr\\xe6sterer de bedre, og det kan m\\xe6rkes p\\xe5 resultaterne. Successteam g\\xf8r det nemt at oms\\xe6tte feedback til handling, s\\xe5 jeres ledere kan styrke deres teams.\"})}),className:\"framer-is5y2f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":TyBnfn3Yh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":TyBnfn3Yh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":TyBnfn3Yh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+0+0+120+0+0+0+0+0+0+271},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+140+0+0+0+0+0+0+271}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+180+0+0+0+111+0+271,children:/*#__PURE__*/_jsx(Container,{className:\"framer-phr84q-container\",nodeId:\"kkO9Sdtli\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{cQv2O8Mvt:resolvedLinks[2]},Ulru_24ch:{cQv2O8Mvt:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonArrow,{ainfdB1_m:\"rgb(255, 255, 255)\",cQv2O8Mvt:resolvedLinks[0],height:\"100%\",id:\"kkO9Sdtli\",layoutId:\"kkO9Sdtli\",sgSfyIETC:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\",sq67Ol4a3:getLocalizedValue(\"v3\",activeLocale)??\"Book en demo!\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11twcdk\",\"data-framer-name\":\"Right content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uak5lt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ayf854\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:getLocalizedValue(\"v4\",activeLocale)??\"Smiling man, adjusting his glasses while looking at his phone, representing Successteam's success-driven mindset\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+0+343+0+-.7552+0),pixelHeight:960,pixelWidth:1440,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1280px), 1px)`,src:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png\",srcSet:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png 1440w\"}},Ulru_24ch:{background:{alt:getLocalizedValue(\"v4\",activeLocale)??\"Smiling man, adjusting his glasses while looking at his phone, representing Successteam's success-driven mindset\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+140+0+0+371+0+-.7552+0),pixelHeight:960,pixelWidth:1440,sizes:\"533px\",src:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png\",srcSet:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v4\",activeLocale)??\"Smiling man, adjusting his glasses while looking at his phone, representing Successteam's success-driven mindset\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180+0+0+0+-1.0064+0),pixelHeight:960,pixelWidth:1440,sizes:\"533px\",src:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png\",srcSet:\"https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rmaGiHZHxaAyjqxqlAYrKGUXvXE.png 1440w\"},className:\"framer-4fjrz5\"})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-9zey2u\",\"data-framer-appear-id\":\"9zey2u\",\"data-framer-name\":\"UI_element_01\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wubky\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\"},children:\"Jeg f\\xf8ler mig motiveret af min leder!\"})}),fonts:[\"FS;Poppins-medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Jeg f\\xf8ler mig motiveret af min leder!\"})}),className:\"framer-ka5g71\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6p0n1h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M72tAlm9n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"M72tAlm9n\",isMixedBorderRadius:false,layoutId:\"M72tAlm9n\",loop:false,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/hJ7vjUWYVluxIInyNt0yaxk6qgo.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v7\",activeLocale)??\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-2dt9bo\",\"data-framer-appear-id\":\"2dt9bo\",\"data-framer-name\":\"UI_element_01\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pn173h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VzHlzs6G8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"VzHlzs6G8\",isMixedBorderRadius:false,layoutId:\"VzHlzs6G8\",loop:false,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/0EO2v0GyVP6HPHQOcKnWth1qY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+0+0+694},Ulru_24ch:{height:70,width:\"60px\",y:(componentViewport?.y||0)+0+0+0+469}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iv36ah-container\",nodeId:\"bJD0SnJ8b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"bJD0SnJ8b\",layoutId:\"bJD0SnJ8b\",style:{height:\"100%\",width:\"100%\"},variant:\"k3sillMmd\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+0+0+457.838},Ulru_24ch:{height:70,width:\"60px\",y:(componentViewport?.y||0)+0+0+0+951-353.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+482.3938,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1382mtx-container\",nodeId:\"vwRQlsgEI\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vwRQlsgEI\",layoutId:\"vwRQlsgEI\",style:{height:\"100%\",width:\"100%\"},variant:\"TIc4lSJo_\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c7hgcg\",\"data-framer-name\":\"Logo slider\",id:elementId,ref:ref1,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nmhydw\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqoxtm\",\"data-styles-preset\":\"FLLY8qHw0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vi hj\\xe6lper alle typer af teams!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqoxtm\",\"data-styles-preset\":\"FLLY8qHw0\",children:\"Vi hj\\xe6lper alle typer af teams!\"})}),className:\"framer-go0jqd\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1280px) - 64px)`,y:(componentViewport?.y||0)+0+927+24+0+32+79.6},Ulru_24ch:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 112px)`,y:(componentViewport?.y||0)+0+991+40+0+56+87.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"1168px\",y:(componentViewport?.y||0)+0+833+40+0+56+79.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6mmmq-container\",nodeId:\"lA3YtV2Wf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LogoSlider,{height:\"100%\",id:\"lA3YtV2Wf\",layoutId:\"lA3YtV2Wf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+927+24+0+231.6-40},Ulru_24ch:{height:70,width:\"60px\",y:(componentViewport?.y||0)+0+991+40+0+279.6-40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+833+40+0+271.6-60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bfim4w-container\",nodeId:\"rGv5b7Odv\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15},children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"rGv5b7Odv\",layoutId:\"rGv5b7Odv\",style:{height:\"100%\",width:\"100%\"},variant:\"PDOUp3xXN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+927+24+0+7.3108},Ulru_24ch:{height:70,width:\"60px\",y:(componentViewport?.y||0)+0+991+40+0+-20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+833+40+0+-20,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{transformTemplate:transformTemplate1},Ulru_24ch:{style:{rotate:15}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d5j6rb-container\",nodeId:\"twdADYHAn\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-30},children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"twdADYHAn\",layoutId:\"twdADYHAn\",style:{height:\"100%\",width:\"100%\"},variant:\"Al427iz0O\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1luios2\",\"data-framer-name\":\"USPs\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1256skx\",\"data-framer-name\":\"USP's\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-58231e\",\"data-framer-name\":\"12 %\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"Glade medarbejdere er\"})}),className:\"framer-1i4v60z\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\"},children:\"12%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"94px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\"},children:\"12%\"})}),className:\"framer-17supwm\",\"data-framer-name\":\"Text\",effect:textEffect,fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"mere produktive\"})}),className:\"framer-1uvk9am\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rsqmlp\",\"data-framer-name\":\"X 10\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"Medarbejdere, der er glade for deres arbejde, har\"})}),className:\"framer-wfdhdj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(252, 60, 85))\"},children:\"10X\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"94px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(252, 60, 85))\"},children:\"10X\"})}),className:\"framer-1gz0yl2\",\"data-framer-name\":\"Text\",effect:textEffect1,fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"f\\xe6rre sygedage!\"})}),className:\"framer-19okkrk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zu9wnf\",\"data-framer-name\":\"20 %\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"Virksomheder med glade medarbejdere performer\"})}),className:\"framer-gnzxza\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-afc428eb-83f4-4256-aa82-c07d2f223ccd, rgb(1, 189, 129))\"},children:\"20%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"94px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-afc428eb-83f4-4256-aa82-c07d2f223ccd, rgb(1, 189, 129))\"},children:\"20%\"})}),className:\"framer-1u695jd\",\"data-framer-name\":\"Text\",effect:textEffect2,fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"bedre end konkurrenterne\"})}),className:\"framer-e5ovo5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7umwnu\",\"data-framer-name\":\"Feedback that never stops\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gph0h\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjiyk3\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6h1po\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+2216.4+24+0+0+0+0+0+0+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+1743+40+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+1735.6+40+0+0+0+-78.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ey73cz-container\",nodeId:\"fIHtnX40l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:getLocalizedValue(\"v22\",activeLocale)??\"Automatiseret feedback\",id:\"fIHtnX40l\",layoutId:\"fIHtnX40l\",SJkB94Ng6:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\",variant:\"tb9HJqnJs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Altid \",/*#__PURE__*/_jsx(\"strong\",{children:\"nye sp\\xf8rgsm\\xe5l\"}),\" \u2013 altid relevante svar!\"]})}),className:\"framer-z3l9vv\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"I kender dem sikkert! De der kedelige sp\\xf8rgeskemaer, der gentager sig selv, indtil medarbejderne svarer p\\xe5 autopilot \u2013 eller stopper med at svare helt.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Dem g\\xf8r vi op med hos Successteam! Hos os f\\xe5r I altid nye, relevante feedbacksp\\xf8rgsm\\xe5l, der holder engagementet h\\xf8jt. Med tusindvis af branchetilpassede sp\\xf8rgsm\\xe5l sikrer vi, at feedbacken f\\xf8les meningsfuld \u2013 fordi vi sp\\xf8rger ind til det, der faktisk betyder noget.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Og psst... vi kan ogs\\xe5 skr\\xe6ddersy sp\\xf8rgsm\\xe5l specifikt til jer.\"})]}),className:\"framer-tt2u3e\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eIyq6hlhn\"},motionChild:true,nodeId:\"DZFgjF7BG\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-sg8kh8\",\"data-styles-preset\":\"azWuFmwC8\",children:\"L\\xe6s mere\"})})})}),className:\"framer-ocf10l\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:400,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1280px)`,y:(componentViewport?.y||0)+0+2216.4+24+0+0+696.8},Ulru_24ch:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+1743+40+0+0+716.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"500px\",y:(componentViewport?.y||0)+0+1735.6+40+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xvqfd0-container\",nodeId:\"qhVzKR7Bt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(StressLevelAnimation,{height:\"100%\",id:\"qhVzKR7Bt\",layoutId:\"qhVzKR7Bt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xl7llq\",\"data-framer-name\":\"CTA section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wdkw2e\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tlxvvi\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3lefk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Fra data til handling med skr\\xe6ddersyet lederworkshops!\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Fra data til handling med skr\\xe6ddersyet lederworkshops!\"})})}),className:\"framer-dbnhmd\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Jeres data fort\\xe6ller en historie \u2013 vi hj\\xe6lper jeres ledere med at handle p\\xe5 den. Vores skr\\xe6ddersyede workshops tager udgangspunkt i jeres egen trivselsdata, s\\xe5 I f\\xe5r konkrete v\\xe6rkt\\xf8jer, der l\\xf8ser netop jeres udfordringer.\"})}),className:\"framer-k76sfr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RF07Ple_I\"},implicitPathVariables:undefined},{href:{webPageId:\"RF07Ple_I\"},implicitPathVariables:undefined},{href:{webPageId:\"RF07Ple_I\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+3385.2+24+0+0+0+32+0+0+219.8},Ulru_24ch:{y:(componentViewport?.y||0)+0+3079.8+40+0+40+0+0+0+219.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+2395.6+40+0+80+0+0+0+259.9,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1ehbuif-container\",\"data-framer-appear-id\":\"1ehbuif\",initial:animation10,nodeId:\"t35hTP5T8\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{cQv2O8Mvt:resolvedLinks1[2]},Ulru_24ch:{cQv2O8Mvt:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonArrow,{ainfdB1_m:\"rgb(255, 255, 255)\",cQv2O8Mvt:resolvedLinks1[0],height:\"100%\",id:\"t35hTP5T8\",layoutId:\"t35hTP5T8\",sgSfyIETC:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\",sq67Ol4a3:getLocalizedValue(\"v29\",activeLocale)??\"L\\xe6s mere\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3385.2+24+0+820-343),pixelHeight:500,pixelWidth:575,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1280px)`,src:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png\",srcSet:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png?scale-down-to=512 512w,https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png 575w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3079.8+40+0+339.8-388),pixelHeight:500,pixelWidth:575,sizes:\"358px\",src:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png\",srcSet:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png?scale-down-to=512 512w,https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png 575w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2395.6+40+0+0),pixelHeight:500,pixelWidth:575,sizes:\"575px\",src:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png\",srcSet:\"https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png?scale-down-to=512 512w,https://framerusercontent.com/images/quadPOmm0V2S6DOnf4dO51AjnXg.png 575w\"},className:\"framer-11yiwfr\",\"data-framer-name\":\"Content\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+3385.2+24+0+412.998},Ulru_24ch:{height:60,width:\"60px\",y:(componentViewport?.y||0)+0+3079.8+40+0+339.8-323.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+2395.6+40+0+307,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrf15y-container\",nodeId:\"yBosukF02\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"yBosukF02\",layoutId:\"yBosukF02\",style:{height:\"100%\",width:\"100%\"},variant:\"TIc4lSJo_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,width:\"50px\",y:(componentViewport?.y||0)+0+3385.2+24+0+729.0857},Ulru_24ch:{height:70,width:\"60px\",y:(componentViewport?.y||0)+0+3079.8+40+0+339.8-53.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"70px\",y:(componentViewport?.y||0)+0+2395.6+40+0+500-120,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{transformTemplate:transformTemplate1},Ulru_24ch:{style:{rotate:15}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-6kz7et-container\",nodeId:\"h4NRyfcv5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"h4NRyfcv5\",layoutId:\"h4NRyfcv5\",style:{height:\"100%\",width:\"100%\"},variant:\"k3sillMmd\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1p8jahw\",\"data-framer-name\":\"Testimonial section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blvdk3\",\"data-framer-name\":\"Top content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rspdsy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvr2fh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+4277.2+24+0+0+0+0+0+0+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+3539.6+40+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+3055.6+40+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1imng4c-container\",nodeId:\"zAX8qr52m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{HR6VvY__G:getLocalizedValue(\"v32\",activeLocale)??\"Get started with data\"},Ulru_24ch:{HR6VvY__G:getLocalizedValue(\"v31\",activeLocale)??\"Get started with data!\"}},children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:getLocalizedValue(\"v30\",activeLocale)??\"referencer\",id:\"zAX8qr52m\",layoutId:\"zAX8qr52m\",SJkB94Ng6:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(67, 121, 255))\",variant:\"tb9HJqnJs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ledere\"}),\" elsker at bruge Successteam, h\\xf8r hvorfor!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ledere\"}),\" elsker at bruge Successteam, h\\xf8r hvorfor!\"]})}),className:\"framer-420w3w\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px, 1280px)`,y:(componentViewport?.y||0)+0+4277.2+24+0+0+136.8},Ulru_24ch:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1280px)`,y:(componentViewport?.y||0)+0+3539.6+40+0+0+156.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:\"1280px\",y:(componentViewport?.y||0)+0+3055.6+40+0+0+156.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5jhj-container\",nodeId:\"NYruwatE8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"NYruwatE8\",layoutId:\"NYruwatE8\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gp0bvi\",\"data-framer-name\":\"Demo section\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1280px)`,y:(componentViewport?.y||0)+0+4893+24+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+4223.4+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:775,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+3779.4+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17o9z8n-container\",nodeId:\"psXxuiWpq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"MbQ8UsoVl\"},Ulru_24ch:{variant:\"gwsZ3TRu0\"}},children:/*#__PURE__*/_jsx(BookEnDemo,{height:\"100%\",id:\"psXxuiWpq\",layoutId:\"psXxuiWpq\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"aZWnGhj5O\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+5740},Ulru_24ch:{y:(componentViewport?.y||0)+0+5118.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:343,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4714.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nbowom-container\",nodeId:\"Owf8BsX5S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"SNdDeBgez\"},Ulru_24ch:{variant:\"RLYNC0Q6p\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Owf8BsX5S\",layoutId:\"Owf8BsX5S\",style:{width:\"100%\"},variant:\"DlUIdAQW0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PK2IF.framer-lux5qc, .framer-PK2IF .framer-lux5qc { display: block; }\",\".framer-PK2IF.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-PK2IF .framer-6upobj-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-PK2IF .framer-b0n1wz { align-content: flex-start; align-items: flex-start; 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-PK2IF .framer-k6jalx { align-content: center; align-items: center; background: linear-gradient(180deg, #eef2f9 0%, rgb(255, 255, 255) 55.00000000000001%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 180px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-aimela { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1bxj61i { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PK2IF .framer-17hxn78, .framer-PK2IF .framer-aj0wmr, .framer-PK2IF .framer-1j6h1po { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1e819pi-container, .framer-PK2IF .framer-phr84q-container, .framer-PK2IF .framer-ey73cz-container, .framer-PK2IF .framer-1imng4c-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PK2IF .framer-gk8lco { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-is5y2f { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-11twcdk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 533px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-PK2IF .framer-1uak5lt { flex: none; height: 100%; overflow: hidden; position: relative; width: 533px; }\",\".framer-PK2IF .framer-1ayf854 { background: linear-gradient(137deg, #eef2fb 0%, rgba(238, 242, 251, 0.7) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(49.90619136960602% - 100.187617260788% / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-PK2IF .framer-4fjrz5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 100%; left: calc(49.90619136960602% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-PK2IF .framer-9zey2u { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; bottom: 90px; box-shadow: 0px 0px 20px 0px rgba(70, 70, 156, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 24px; overflow: visible; padding: 32px; position: absolute; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-PK2IF .framer-15wubky { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-PK2IF .framer-ka5g71, .framer-PK2IF .framer-go0jqd { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PK2IF .framer-6p0n1h-container { flex: none; height: 36px; position: relative; width: 336px; }\",\".framer-PK2IF .framer-2dt9bo { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; bottom: 24px; box-shadow: 0px 0px 20px 0px rgba(70, 70, 156, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: absolute; right: 120px; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-PK2IF .framer-pn173h-container { aspect-ratio: 4.285714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); position: relative; width: 365px; }\",\".framer-PK2IF .framer-1iv36ah-container { flex: none; height: 80px; left: -20px; position: absolute; top: 100px; width: 70px; z-index: 1; }\",\".framer-PK2IF .framer-1382mtx-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: absolute; right: 20px; top: 69%; transform: translateY(-50%); width: 70px; z-index: 1; }\",\".framer-PK2IF .framer-1c7hgcg { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1nmhydw { align-content: center; align-items: center; background: linear-gradient(117deg, var(--token-6145797c-db14-4e39-8951-2131725399fb, #e2ebff) 0%, rgba(238, 242, 251, 0.5) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1y6mmmq-container { flex: none; height: 80px; position: relative; width: 1168px; }\",\".framer-PK2IF .framer-bfim4w-container { aspect-ratio: 1 / 1; bottom: -20px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: absolute; right: 40px; width: 70px; z-index: 1; }\",\".framer-PK2IF .framer-1d5j6rb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 20px; position: absolute; top: -20px; width: 70px; z-index: 1; }\",\".framer-PK2IF .framer-1luios2, .framer-PK2IF .framer-7umwnu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-PK2IF .framer-1256skx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 311px; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-58231e { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #e2ebff 0%, rgba(226, 235, 255, 0.5) 100%); 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: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-PK2IF .framer-1i4v60z, .framer-PK2IF .framer-17supwm, .framer-PK2IF .framer-1uvk9am, .framer-PK2IF .framer-wfdhdj, .framer-PK2IF .framer-1gz0yl2, .framer-PK2IF .framer-19okkrk, .framer-PK2IF .framer-gnzxza, .framer-PK2IF .framer-1u695jd, .framer-PK2IF .framer-e5ovo5 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-1rsqmlp { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, var(--token-7ef56079-1bd1-435d-a775-994666e07088, #fee2e5) 0%, rgba(254, 226, 229, 0.5) 100%); 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: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-PK2IF .framer-zu9wnf { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, var(--token-0c4a7810-dbb7-4735-ac98-cf66fd324474, #d9f5ec) 0%, rgba(217, 245, 236, 0.5) 100%); 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: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-PK2IF .framer-16gph0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1kjiyk3 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-PK2IF .framer-z3l9vv, .framer-PK2IF .framer-dbnhmd { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-tt2u3e, .framer-PK2IF .framer-ocf10l, .framer-PK2IF .framer-k76sfr { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-1xvqfd0-container { flex: none; height: 500px; position: relative; width: 500px; }\",\".framer-PK2IF .framer-xl7llq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-PK2IF .framer-1wdkw2e { align-content: center; align-items: center; background: linear-gradient(123deg, var(--token-6145797c-db14-4e39-8951-2131725399fb, #e2ebff) 0%, rgba(238, 242, 251, 0.5) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PK2IF .framer-tlxvvi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-PK2IF .framer-t3lefk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 340px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1ehbuif-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PK2IF .framer-11yiwfr { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; justify-content: flex-end; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: 575px; z-index: 1; }\",\".framer-PK2IF .framer-yrf15y-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: absolute; right: -20px; top: 69%; transform: translateY(-50%); width: 70px; z-index: 1; }\",\".framer-PK2IF .framer-6kz7et-container { aspect-ratio: 1 / 1; bottom: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: absolute; right: 430px; width: 70px; z-index: 0; }\",\".framer-PK2IF .framer-1p8jahw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1blvdk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1rspdsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1lvr2fh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-420w3w { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-PK2IF .framer-1l5jhj-container { flex: none; height: 407px; position: relative; width: 1280px; }\",\".framer-PK2IF .framer-1gp0bvi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-PK2IF .framer-17o9z8n-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",\".framer-PK2IF .framer-1nbowom-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1399px) { .framer-PK2IF.framer-72rtr7 { gap: 40px; width: 810px; } .framer-PK2IF .framer-k6jalx { justify-content: flex-start; padding: 140px 40px 40px 40px; } .framer-PK2IF .framer-aimela { flex-direction: column; gap: 60px; } .framer-PK2IF .framer-1bxj61i { align-self: unset; flex: none; gap: 24px; height: min-content; order: 0; width: 100%; } .framer-PK2IF .framer-gk8lco { width: 594px; } .framer-PK2IF .framer-is5y2f, .framer-PK2IF .framer-1y6mmmq-container, .framer-PK2IF .framer-1l5jhj-container { width: 100%; } .framer-PK2IF .framer-11twcdk { flex: none; height: 400px; justify-content: center; order: 1; width: 100%; } .framer-PK2IF .framer-9zey2u { bottom: 80px; left: 39px; padding: 24px; } .framer-PK2IF .framer-2dt9bo { bottom: 20px; right: 40px; } .framer-PK2IF .framer-1iv36ah-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); left: -30px; top: 469px; width: 60px; z-index: 0; } .framer-PK2IF .framer-1382mtx-container { bottom: 284px; height: var(--framer-aspect-ratio-supported, 60px); left: 716px; right: unset; top: unset; transform: unset; width: 60px; z-index: 0; } .framer-PK2IF .framer-1nmhydw { gap: 48px; } .framer-PK2IF .framer-bfim4w-container { bottom: -30px; height: var(--framer-aspect-ratio-supported, 60px); right: 20px; width: 60px; z-index: 0; } .framer-PK2IF .framer-1d5j6rb-container { height: var(--framer-aspect-ratio-supported, 60px); left: 10px; width: 60px; z-index: 0; } .framer-PK2IF .framer-1256skx { height: min-content; } .framer-PK2IF .framer-58231e, .framer-PK2IF .framer-1rsqmlp { align-self: stretch; height: auto; } .framer-PK2IF .framer-zu9wnf { gap: 14px; height: min-content; justify-content: center; } .framer-PK2IF .framer-16gph0h { flex-direction: column; gap: 60px; justify-content: flex-start; } .framer-PK2IF .framer-1kjiyk3 { align-self: unset; height: min-content; width: 100%; } .framer-PK2IF .framer-1xvqfd0-container { height: auto; width: 100%; } .framer-PK2IF .framer-1wdkw2e { gap: 56px; height: min-content; padding: 40px; } .framer-PK2IF .framer-tlxvvi { gap: 24px; } .framer-PK2IF .framer-t3lefk { height: min-content; width: min-content; } .framer-PK2IF .framer-dbnhmd, .framer-PK2IF .framer-k76sfr { width: 325px; } .framer-PK2IF .framer-11yiwfr { height: 388px; right: -40px; top: unset; width: 358px; } .framer-PK2IF .framer-yrf15y-container { bottom: 264px; height: var(--framer-aspect-ratio-supported, 60px); left: 686px; right: unset; top: unset; transform: unset; width: 60px; z-index: 0; } .framer-PK2IF .framer-6kz7et-container { bottom: -16px; height: var(--framer-aspect-ratio-supported, 60px); left: 456px; right: unset; width: 60px; } .framer-PK2IF .framer-420w3w { width: 89%; }}\",\"@media (max-width: 809px) { .framer-PK2IF.framer-72rtr7 { gap: 24px; overflow: hidden; width: 390px; } .framer-PK2IF .framer-6upobj-container { order: 0; } .framer-PK2IF .framer-b0n1wz { order: 1; } .framer-PK2IF .framer-k6jalx { justify-content: flex-start; order: 0; padding: 120px 24px 40px 24px; } .framer-PK2IF .framer-aimela { flex-direction: column; justify-content: flex-start; } .framer-PK2IF .framer-1bxj61i { align-self: unset; flex: none; gap: 24px; height: min-content; order: 0; width: 100%; } .framer-PK2IF .framer-gk8lco { --framer-paragraph-spacing: 0px; } .framer-PK2IF .framer-is5y2f, .framer-PK2IF .framer-1y6mmmq-container, .framer-PK2IF .framer-420w3w, .framer-PK2IF .framer-1l5jhj-container { width: 100%; } .framer-PK2IF .framer-11twcdk { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 400px; justify-content: center; order: 1; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-PK2IF .framer-1uak5lt { flex: 1 0 0px; width: 1px; } .framer-PK2IF .framer-9zey2u { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 75px; left: unset; padding: 14px; right: 14px; } .framer-PK2IF .framer-15wubky { align-self: unset; gap: 8px; width: 197px; } .framer-PK2IF .framer-ka5g71, .framer-PK2IF .framer-go0jqd { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-PK2IF .framer-6p0n1h-container { height: 19px; width: 100%; } .framer-PK2IF .framer-2dt9bo { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 14px; left: 14px; right: unset; } .framer-PK2IF .framer-pn173h-container { height: var(--framer-aspect-ratio-supported, 55px); width: 233px; } .framer-PK2IF .framer-1iv36ah-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); left: -26px; top: 694px; width: 50px; } .framer-PK2IF .framer-1382mtx-container, .framer-PK2IF .framer-yrf15y-container { height: var(--framer-aspect-ratio-supported, 60px); right: -19px; top: 54%; width: 50px; } .framer-PK2IF .framer-1c7hgcg { order: 2; padding: 24px; } .framer-PK2IF .framer-1nmhydw { padding: 32px 32px 40px 32px; } .framer-PK2IF .framer-bfim4w-container { height: var(--framer-aspect-ratio-supported, 60px); right: -40px; width: 50px; } .framer-PK2IF .framer-1d5j6rb-container { height: var(--framer-aspect-ratio-supported, 60px); left: -40px; top: 16%; transform: translateY(-50%); width: 50px; } .framer-PK2IF .framer-1luios2 { order: 3; padding: 24px; } .framer-PK2IF .framer-1256skx { flex-direction: column; height: min-content; } .framer-PK2IF .framer-58231e, .framer-PK2IF .framer-1rsqmlp, .framer-PK2IF .framer-zu9wnf { flex: none; gap: 20px; height: min-content; justify-content: center; width: 100%; } .framer-PK2IF .framer-7umwnu { gap: 56px; order: 4; padding: 24px; } .framer-PK2IF .framer-16gph0h { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-PK2IF .framer-1kjiyk3 { align-self: unset; height: min-content; width: 100%; } .framer-PK2IF .framer-1xvqfd0-container { height: 400px; width: 100%; } .framer-PK2IF .framer-xl7llq { order: 5; padding: 24px; } .framer-PK2IF .framer-1wdkw2e { flex-direction: column; gap: 32px; height: min-content; padding: 0px; } .framer-PK2IF .framer-tlxvvi { gap: 24px; height: 820px; justify-content: flex-start; padding: 32px; width: 100%; } .framer-PK2IF .framer-t3lefk { height: min-content; } .framer-PK2IF .framer-11yiwfr { gap: 24px; height: 343px; left: calc(50.00000000000002% - 100% / 2); right: unset; top: unset; width: 100%; z-index: 0; } .framer-PK2IF .framer-6kz7et-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 60px); right: 211px; top: 93%; transform: translateY(-50%); width: 50px; z-index: -1; } .framer-PK2IF .framer-1p8jahw { gap: 40px; order: 6; padding: 24px; } .framer-PK2IF .framer-1blvdk3 { align-content: flex-start; align-items: flex-start; gap: 40px; } .framer-PK2IF .framer-1rspdsy, .framer-PK2IF .framer-1lvr2fh { align-content: flex-start; align-items: flex-start; } .framer-PK2IF .framer-1gp0bvi { order: 7; padding: 24px; } .framer-PK2IF .framer-1nbowom-container { order: 8; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5110\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"auto\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rBcUvzrev\":{\"pattern\":\":rBcUvzrev\",\"name\":\"logo-slider\"},\"Fzvi32zRv\":{\"pattern\":\":Fzvi32zRv\",\"name\":\"numbers\"},\"SI0K5KfJH\":{\"pattern\":\":SI0K5KfJH\",\"name\":\"feedback-that-never-stops\"},\"zcXgo_84j\":{\"pattern\":\":zcXgo_84j\",\"name\":\"get-started-with-data-driven-1-to-1s-and-team-meetings\"},\"TyBnfn3Yh\":{\"pattern\":\":TyBnfn3Yh\",\"name\":\"book-demo\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-PK2IF\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5110,width:1400};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\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...NavigationBarFonts,...SectionBadgeFonts,...ButtonArrowFonts,...VideoFonts,...ShapesFonts,...LogoSliderFonts,...StressLevelAnimationFonts,...TestimonialsFonts,...BookEnDemoFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"rBcUvzrev\\\":{\\\"pattern\\\":\\\":rBcUvzrev\\\",\\\"name\\\":\\\"logo-slider\\\"},\\\"Fzvi32zRv\\\":{\\\"pattern\\\":\\\":Fzvi32zRv\\\",\\\"name\\\":\\\"numbers\\\"},\\\"SI0K5KfJH\\\":{\\\"pattern\\\":\\\":SI0K5KfJH\\\",\\\"name\\\":\\\"feedback-that-never-stops\\\"},\\\"zcXgo_84j\\\":{\\\"pattern\\\":\\\":zcXgo_84j\\\",\\\"name\\\":\\\"get-started-with-data-driven-1-to-1s-and-team-meetings\\\"},\\\"TyBnfn3Yh\\\":{\\\"pattern\\\":\\\":TyBnfn3Yh\\\",\\\"name\\\":\\\"book-demo\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"5110\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "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", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationBarFonts", "getFonts", "QewyBr_DF_default", "SectionBadgeFonts", "DT9isorhv_default", "ButtonArrowFonts", "beqLwtpNS_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "VideoFonts", "Video", "ShapesFonts", "kRXrx52Vw_default", "LogoSliderFonts", "f86llIPz5_default", "MotionDivWithFX", "withFX", "RichTextWithFX", "RichText2", "StressLevelAnimationFonts", "b4RB3PhXx_default", "ContainerWithOptimizedAppearEffect", "Container", "TestimonialsFonts", "kgzDkGGWU_default", "BookEnDemoFonts", "ATZqMTO0n_default", "FooterFonts", "zOCvedWwi_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transformTemplate1", "_", "t", "animation5", "transition4", "transition5", "animation6", "transition6", "animation7", "transition7", "textEffect", "textEffect1", "textEffect2", "animation8", "transition8", "transition9", "animation9", "animation10", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "ref1", "elementId", "useRouteElementId", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "QewyBr_DF_default", "MotionDivWithOptimizedAppearEffect", "DT9isorhv_default", "getLocalizedValue", "RichText2", "x", "ResolveLinks", "resolvedLinks", "beqLwtpNS_default", "getLoadingLazyAtYPosition", "Image2", "Video", "kRXrx52Vw_default", "MotionDivWithFX", "f86llIPz5_default", "RichTextWithFX", "Link", "b4RB3PhXx_default", "resolvedLinks1", "ContainerWithOptimizedAppearEffect", "kgzDkGGWU_default", "ATZqMTO0n_default", "zOCvedWwi_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationBarFonts", "SectionBadgeFonts", "ButtonArrowFonts", "VideoFonts", "ShapesFonts", "LogoSliderFonts", "StressLevelAnimationFonts", "TestimonialsFonts", "BookEnDemoFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
