{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/q4XtOjmb4itB1FVDKIWC/uC3ADKzMaKUNGSnBBo5v/m_4iuSPHr.js", "ssg:https://framerusercontent.com/modules/j6hIdfBCFKcB3dkm0k2H/WgQGqCsgBsVUWyykBCxl/rbnJkEb9P.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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\",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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/cb21nPgdNOjX55evmlCg/lEhKrr5LpTIUzPFhqQe7/b9zJsM3rR.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/nK9pW9lXal7T6lprNvpp/GRKQHMwoV2xJpg5ucu3y/f3Dc0O4kS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9TFbhuWSnrl7XvMiqkcI/vydkRZgQV6f3Tk4nG42V/vDltKVZ8B.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lRwb5Ry7fH06WEocGLiO/eaGZvwxcE2kUp79H3xOi/YckFIlg3V.js\";import*as localizedValues from\"./m_4iuSPHr-0.js\";const cycleOrder=[\"ZE_P5d5Yg\",\"O7G07UkLF\",\"pBmYPg6YZ\",\"CXtLytFDe\",\"C_vHlYyo_\",\"lssOVH5GL\",\"uxJlWSqqR\",\"E2AAAl01q\",\"a9fAnuyPH\",\"tgdn8sWV5\",\"LO6bADQVC\",\"xRqsOTSCu\"];const serializationHash=\"framer-YRD0l\";const variantClassNames={a9fAnuyPH:\"framer-v-z8livr\",C_vHlYyo_:\"framer-v-18lobei\",CXtLytFDe:\"framer-v-tfkqc9\",E2AAAl01q:\"framer-v-c1uv7f\",LO6bADQVC:\"framer-v-qn24d8\",lssOVH5GL:\"framer-v-1q7j01l\",O7G07UkLF:\"framer-v-numzhv\",pBmYPg6YZ:\"framer-v-xv9he3\",tgdn8sWV5:\"framer-v-9ime\",uxJlWSqqR:\"framer-v-lbg2bz\",xRqsOTSCu:\"framer-v-2tuglc\",ZE_P5d5Yg:\"framer-v-1laogdi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={sqKeqj321:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Case #1 Mobile\":\"O7G07UkLF\",\"Case #1\":\"ZE_P5d5Yg\",\"Case #2 Mobile\":\"CXtLytFDe\",\"Case #2\":\"pBmYPg6YZ\",\"Case #3 Mobile\":\"lssOVH5GL\",\"Case #3\":\"C_vHlYyo_\",\"Case #4 Mobile\":\"E2AAAl01q\",\"Case #4\":\"uxJlWSqqR\",\"Case #5 Mobile\":\"LO6bADQVC\",\"Case #5\":\"a9fAnuyPH\",\"Case #6 Mobile\":\"xRqsOTSCu\",\"Case #6\":\"tgdn8sWV5\"};const getProps=({color,height,id,image,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,Bp8tist2k:(_ref=text!==null&&text!==void 0?text:props.Bp8tist2k)!==null&&_ref!==void 0?_ref:\"Paverskite sud\u0117tingus duomenis vizualiai patraukliomis \u012F\u017Evalgomis, naudodami interaktyvias diagramas, grafikus ir \u017Eem\u0117lapius.\",d9kOvKfBH:(_ref1=image!==null&&image!==void 0?image:props.d9kOvKfBH)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/LiqJAuajdaAy0B9HqBlIR3oTGa8.png\",srcSet:\"https://framerusercontent.com/images/LiqJAuajdaAy0B9HqBlIR3oTGa8.png?scale-down-to=1024 683w,https://framerusercontent.com/images/LiqJAuajdaAy0B9HqBlIR3oTGa8.png 801w\"},q4UwiFtML:(_ref2=title!==null&&title!==void 0?title:props.q4UwiFtML)!==null&&_ref2!==void 0?_ref2:\"Analizuokite duomenisrealiu laiku\",qdWBUV59N:(_ref3=color!==null&&color!==void 0?color:props.qdWBUV59N)!==null&&_ref3!==void 0?_ref3:\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"ZE_P5d5Yg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,q4UwiFtML,Bp8tist2k,qdWBUV59N,d9kOvKfBH,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZE_P5d5Yg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1laogdi\",className,classNames),\"data-framer-name\":\"Case #1\",layoutDependency:layoutDependency,layoutId:\"ZE_P5d5Yg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-edfa71ec-50c7-4311-82e0-94a1b8dd0dbb, rgb(220, 72, 39))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{a9fAnuyPH:{backgroundColor:\"rgb(250, 209, 209)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},C_vHlYyo_:{backgroundColor:\"var(--token-85e1f9a7-c06b-4f6d-b970-a7cf3bbd1694, rgb(65, 65, 66))\"},CXtLytFDe:{backgroundColor:\"var(--token-db6a6097-006c-41b6-a8b9-a9ebd571e70b, rgb(156, 189, 228))\"},E2AAAl01q:{backgroundColor:\"rgb(209, 234, 250)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},LO6bADQVC:{backgroundColor:\"rgb(250, 209, 209)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},lssOVH5GL:{backgroundColor:\"var(--token-85e1f9a7-c06b-4f6d-b970-a7cf3bbd1694, rgb(65, 65, 66))\"},pBmYPg6YZ:{backgroundColor:\"var(--token-db6a6097-006c-41b6-a8b9-a9ebd571e70b, rgb(159, 191, 229))\"},tgdn8sWV5:{backgroundColor:\"rgb(209, 250, 228)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},uxJlWSqqR:{backgroundColor:\"rgb(209, 234, 250)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},xRqsOTSCu:{backgroundColor:\"rgb(209, 250, 228)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},...addPropertyOverrides({a9fAnuyPH:{\"data-framer-name\":\"Case #5\"},C_vHlYyo_:{\"data-framer-name\":\"Case #3\"},CXtLytFDe:{\"data-framer-name\":\"Case #2 Mobile\"},E2AAAl01q:{\"data-framer-name\":\"Case #4 Mobile\"},LO6bADQVC:{\"data-framer-name\":\"Case #5 Mobile\"},lssOVH5GL:{\"data-framer-name\":\"Case #3 Mobile\"},O7G07UkLF:{\"data-framer-name\":\"Case #1 Mobile\"},pBmYPg6YZ:{\"data-framer-name\":\"Case #2\"},tgdn8sWV5:{\"data-framer-name\":\"Case #6\"},uxJlWSqqR:{\"data-framer-name\":\"Case #4\"},xRqsOTSCu:{\"data-framer-name\":\"Case #6 Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-125r83h\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"o_sNhsJhK\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{CXtLytFDe:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},E2AAAl01q:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},lssOVH5GL:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},O7G07UkLF:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ve93da\",\"data-framer-name\":\"Card Headings\",layoutDependency:layoutDependency,layoutId:\"ir1eH5uk6\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{CXtLytFDe:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},E2AAAl01q:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},lssOVH5GL:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},O7G07UkLF:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1joz210\",\"data-styles-preset\":\"vDltKVZ8B\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255)))\"},children:[\"Analizuokite duomenis\",/*#__PURE__*/_jsx(motion.br,{}),\"realiu laiku\"]})}),className:\"framer-8vf3ca\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xs1oMRDDR\",style:{\"--extracted-1of0zx5\":\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:q4UwiFtML,variants:{a9fAnuyPH:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},CXtLytFDe:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},E2AAAl01q:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},LO6bADQVC:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},lssOVH5GL:{\"--extracted-a0htzi\":\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\"},O7G07UkLF:{\"--extracted-a0htzi\":\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\"},pBmYPg6YZ:{\"--extracted-1of0zx5\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},tgdn8sWV5:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},uxJlWSqqR:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"},xRqsOTSCu:{\"--extracted-a0htzi\":\"var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a9fAnuyPH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"Enhancing Mobile Banking App Usability\"})})},C_vHlYyo_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1joz210\",\"data-styles-preset\":\"vDltKVZ8B\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255)))\"},children:[\"Dirbtinio intelekto\",/*#__PURE__*/_jsx(motion.br,{}),\"\u012F\u017Evalgos\"]})})},CXtLytFDe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"E-commerce Website Redesign\"})})},E2AAAl01q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"Enhancing Mobile Banking App Usability\"})})},LO6bADQVC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"Enhancing Mobile Banking App Usability\"})})},lssOVH5GL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255)))\"},children:\"Analizuokite duomenisrealiu laiku\"})})},O7G07UkLF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255)))\"},children:\"Analizuokite duomenisrealiu laiku\"})})},pBmYPg6YZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1joz210\",\"data-styles-preset\":\"vDltKVZ8B\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:[\"Individualizuoti\",/*#__PURE__*/_jsx(motion.br,{}),\"duomenys\"]})})},tgdn8sWV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"Enhancing Mobile Banking App Usability\"})})},uxJlWSqqR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"UI Design for Internet Sharing App\"})})},xRqsOTSCu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1e55750a-e808-43b6-b6f4-373b634626f7, rgb(30, 21, 21)))\"},children:\"Enhancing Mobile Banking App Usability\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6nfpdv\",\"data-styles-preset\":\"f3Dc0O4kS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-qdWBUV59N-m_4iuSPHr))\"},children:\"Paverskite sud\u0117tingus duomenis vizualiai patraukliomis \u012F\u017Evalgomis, naudodami interaktyvias diagramas, grafikus ir \u017Eem\u0117lapius.\"})}),className:\"framer-7zf033\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"brjHCaCU3\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-qdWBUV59N-m_4iuSPHr)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-qdWBUV59N-m_4iuSPHr\":qdWBUV59N},text:Bp8tist2k,variants:{a9fAnuyPH:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"},C_vHlYyo_:{\"--extracted-r6o4lv\":\"var(--token-e5cdec6d-6734-4616-b438-2025f21ec690, rgb(245, 244, 239))\"},CXtLytFDe:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},E2AAAl01q:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"},LO6bADQVC:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"},lssOVH5GL:{\"--extracted-r6o4lv\":\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\"},pBmYPg6YZ:{\"--extracted-r6o4lv\":\"var(--token-85e1f9a7-c06b-4f6d-b970-a7cf3bbd1694, rgb(65, 65, 66))\"},tgdn8sWV5:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"},uxJlWSqqR:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"},xRqsOTSCu:{\"--extracted-r6o4lv\":\"var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a9fAnuyPH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"A leading bank wanted to revamp their mobile app to provide a more user-friendly and secure experience\"})})},C_vHlYyo_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6nfpdv\",\"data-styles-preset\":\"f3Dc0O4kS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e5cdec6d-6734-4616-b438-2025f21ec690, rgb(245, 244, 239)))\"},children:\"I\u0161naudokite dirbtinio intelekto gali\u0105! Lengvai aptiksite pasl\u0117ptus modelius, tendencijas ir nukrypimus ir gal\u0117site priimti duomenimis pagr\u012Fstus sprendimus\"})})},CXtLytFDe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6nfpdv\",\"data-styles-preset\":\"f3Dc0O4kS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Paverskite sud\u0117tingus duomenis vizualiai patraukliomis \u012F\u017Evalgomis, naudodami interaktyvias diagramas, grafikus ir \u017Eem\u0117lapius.\"})})},E2AAAl01q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"A leading bank wanted to revamp their mobile app to provide a more user-friendly and secure experience\"})})},LO6bADQVC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"A leading bank wanted to revamp their mobile app to provide a more user-friendly and secure experience\"})})},lssOVH5GL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6nfpdv\",\"data-styles-preset\":\"f3Dc0O4kS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255)))\"},children:\"Paverskite sud\u0117tingus duomenis vizualiai patraukliomis \u012F\u017Evalgomis, naudodami interaktyvias diagramas, grafikus ir \u017Eem\u0117lapius.\"})})},pBmYPg6YZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6nfpdv\",\"data-styles-preset\":\"f3Dc0O4kS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-85e1f9a7-c06b-4f6d-b970-a7cf3bbd1694, rgb(65, 65, 66)))\"},children:\"Sukurkite asmeninius prietais\u0173 skydelius, atspindin\u010Dius j\u016Bs\u0173 unikalius poreikius ir skatinan\u010Dius priimti pagr\u012Fstus sprendimus.\"})})},tgdn8sWV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"A leading bank wanted to revamp their mobile app to provide a more user-friendly and secure experience\"})})},uxJlWSqqR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"An innovative app and approach for taking advantage of unused internet from people's devices. It differs from others because of its simplicity, functions, and ways to earn extra money.\"})})},xRqsOTSCu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2v2yhv\",\"data-styles-preset\":\"b9zJsM3rR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4ca7d748-6404-4dbd-82d7-1148c1e14e26, rgba(0, 0, 0, 0.5)))\"},children:\"A leading bank wanted to revamp their mobile app to provide a more user-friendly and secure experience\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o1ybdx\",layoutDependency:layoutDependency,layoutId:\"fc1XJibnV\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.6 - 100px, 1px)`,...toResponsiveImage(d9kOvKfBH)},className:\"framer-7ish5z\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"qrZ8vRagf\",...addPropertyOverrides({a9fAnuyPH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.6 - 32px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},CXtLytFDe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},E2AAAl01q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},LO6bADQVC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},lssOVH5GL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},O7G07UkLF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},tgdn8sWV5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.6 - 32px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},uxJlWSqqR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.6 - 32px, 1px)`,...toResponsiveImage(d9kOvKfBH)}},xRqsOTSCu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:400.5,pixelHeight:1200,pixelWidth:801,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,...toResponsiveImage(d9kOvKfBH)}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YRD0l.framer-1urj2a0, .framer-YRD0l .framer-1urj2a0 { display: block; }\",\".framer-YRD0l.framer-1laogdi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 500px; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 1100px; }\",\".framer-YRD0l .framer-125r83h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 40%; }\",\".framer-YRD0l .framer-ve93da { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YRD0l .framer-8vf3ca { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-YRD0l .framer-7zf033 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-YRD0l .framer-1o1ybdx { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-YRD0l .framer-7ish5z { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-1laogdi, .framer-YRD0l .framer-ve93da, .framer-YRD0l .framer-1o1ybdx, .framer-YRD0l .framer-7ish5z { gap: 0px; } .framer-YRD0l.framer-1laogdi > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-YRD0l.framer-1laogdi > :first-child, .framer-YRD0l .framer-1o1ybdx > :first-child, .framer-YRD0l .framer-7ish5z > :first-child { margin-left: 0px; } .framer-YRD0l.framer-1laogdi > :last-child, .framer-YRD0l .framer-1o1ybdx > :last-child, .framer-YRD0l .framer-7ish5z > :last-child { margin-right: 0px; } .framer-YRD0l .framer-ve93da > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YRD0l .framer-ve93da > :first-child { margin-top: 0px; } .framer-YRD0l .framer-ve93da > :last-child { margin-bottom: 0px; } .framer-YRD0l .framer-1o1ybdx > *, .framer-YRD0l .framer-7ish5z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-YRD0l.framer-v-numzhv.framer-1laogdi, .framer-YRD0l.framer-v-tfkqc9.framer-1laogdi { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; height: auto; max-width: unset; padding: 60px 20px 0px 20px; width: auto; }\",\".framer-YRD0l.framer-v-numzhv .framer-125r83h, .framer-YRD0l.framer-v-tfkqc9 .framer-125r83h, .framer-YRD0l.framer-v-1q7j01l .framer-125r83h { align-self: stretch; gap: 32px; height: auto; justify-content: center; padding: 0px 0px 30px 0px; width: auto; }\",\".framer-YRD0l.framer-v-numzhv .framer-8vf3ca, .framer-YRD0l.framer-v-numzhv .framer-7zf033, .framer-YRD0l.framer-v-tfkqc9 .framer-8vf3ca, .framer-YRD0l.framer-v-tfkqc9 .framer-7zf033, .framer-YRD0l.framer-v-1q7j01l .framer-8vf3ca, .framer-YRD0l.framer-v-1q7j01l .framer-7zf033 { width: 100%; }\",\".framer-YRD0l.framer-v-numzhv .framer-1o1ybdx, .framer-YRD0l.framer-v-tfkqc9 .framer-1o1ybdx, .framer-YRD0l.framer-v-1q7j01l .framer-1o1ybdx { align-self: stretch; flex: none; height: 300px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-numzhv.framer-1laogdi, .framer-YRD0l.framer-v-numzhv .framer-125r83h { gap: 0px; } .framer-YRD0l.framer-v-numzhv.framer-1laogdi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-YRD0l.framer-v-numzhv.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-numzhv .framer-125r83h > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-numzhv.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-numzhv .framer-125r83h > :last-child { margin-bottom: 0px; } .framer-YRD0l.framer-v-numzhv .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-YRD0l.framer-v-xv9he3 .framer-1o1ybdx { align-content: flex-start; align-items: flex-start; }\",\".framer-YRD0l.framer-v-xv9he3 .framer-7ish5z { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-tfkqc9.framer-1laogdi, .framer-YRD0l.framer-v-tfkqc9 .framer-125r83h { gap: 0px; } .framer-YRD0l.framer-v-tfkqc9.framer-1laogdi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-YRD0l.framer-v-tfkqc9.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-tfkqc9 .framer-125r83h > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-tfkqc9.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-tfkqc9 .framer-125r83h > :last-child { margin-bottom: 0px; } .framer-YRD0l.framer-v-tfkqc9 .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-YRD0l.framer-v-18lobei .framer-1o1ybdx { overflow: hidden; }\",\".framer-YRD0l.framer-v-1q7j01l.framer-1laogdi { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; height: auto; padding: 60px 20px 0px 20px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-1q7j01l.framer-1laogdi, .framer-YRD0l.framer-v-1q7j01l .framer-125r83h { gap: 0px; } .framer-YRD0l.framer-v-1q7j01l.framer-1laogdi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-YRD0l.framer-v-1q7j01l.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-1q7j01l .framer-125r83h > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-1q7j01l.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-1q7j01l .framer-125r83h > :last-child { margin-bottom: 0px; } .framer-YRD0l.framer-v-1q7j01l .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-YRD0l.framer-v-lbg2bz.framer-1laogdi, .framer-YRD0l.framer-v-z8livr.framer-1laogdi, .framer-YRD0l.framer-v-9ime.framer-1laogdi { gap: 32px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-lbg2bz.framer-1laogdi { gap: 0px; } .framer-YRD0l.framer-v-lbg2bz.framer-1laogdi > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YRD0l.framer-v-lbg2bz.framer-1laogdi > :first-child { margin-left: 0px; } .framer-YRD0l.framer-v-lbg2bz.framer-1laogdi > :last-child { margin-right: 0px; } }\",\".framer-YRD0l.framer-v-c1uv7f.framer-1laogdi { flex-direction: column; height: auto; max-width: unset; width: 428px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YRD0l.framer-v-c1uv7f .framer-125r83h, .framer-YRD0l.framer-v-qn24d8 .framer-125r83h, .framer-YRD0l.framer-v-2tuglc .framer-125r83h { gap: 32px; height: auto; justify-content: center; width: 100%; }\",\".framer-YRD0l.framer-v-c1uv7f .framer-1o1ybdx, .framer-YRD0l.framer-v-qn24d8 .framer-1o1ybdx, .framer-YRD0l.framer-v-2tuglc .framer-1o1ybdx { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-c1uv7f.framer-1laogdi, .framer-YRD0l.framer-v-c1uv7f .framer-125r83h { gap: 0px; } .framer-YRD0l.framer-v-c1uv7f.framer-1laogdi > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-YRD0l.framer-v-c1uv7f.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-c1uv7f .framer-125r83h > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-c1uv7f.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-c1uv7f .framer-125r83h > :last-child { margin-bottom: 0px; } .framer-YRD0l.framer-v-c1uv7f .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-z8livr.framer-1laogdi { gap: 0px; } .framer-YRD0l.framer-v-z8livr.framer-1laogdi > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YRD0l.framer-v-z8livr.framer-1laogdi > :first-child { margin-left: 0px; } .framer-YRD0l.framer-v-z8livr.framer-1laogdi > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-9ime.framer-1laogdi { gap: 0px; } .framer-YRD0l.framer-v-9ime.framer-1laogdi > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YRD0l.framer-v-9ime.framer-1laogdi > :first-child { margin-left: 0px; } .framer-YRD0l.framer-v-9ime.framer-1laogdi > :last-child { margin-right: 0px; } }\",\".framer-YRD0l.framer-v-qn24d8.framer-1laogdi, .framer-YRD0l.framer-v-2tuglc.framer-1laogdi { flex-direction: column; gap: 32px; height: auto; max-width: unset; width: 428px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-qn24d8.framer-1laogdi, .framer-YRD0l.framer-v-qn24d8 .framer-125r83h { gap: 0px; } .framer-YRD0l.framer-v-qn24d8.framer-1laogdi > *, .framer-YRD0l.framer-v-qn24d8 .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YRD0l.framer-v-qn24d8.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-qn24d8 .framer-125r83h > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-qn24d8.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-qn24d8 .framer-125r83h > :last-child { margin-bottom: 0px; } }\",\".framer-YRD0l.framer-v-2tuglc .framer-ve93da { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YRD0l.framer-v-2tuglc.framer-1laogdi, .framer-YRD0l.framer-v-2tuglc .framer-125r83h, .framer-YRD0l.framer-v-2tuglc .framer-ve93da { gap: 0px; } .framer-YRD0l.framer-v-2tuglc.framer-1laogdi > *, .framer-YRD0l.framer-v-2tuglc .framer-125r83h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YRD0l.framer-v-2tuglc.framer-1laogdi > :first-child, .framer-YRD0l.framer-v-2tuglc .framer-125r83h > :first-child, .framer-YRD0l.framer-v-2tuglc .framer-ve93da > :first-child { margin-top: 0px; } .framer-YRD0l.framer-v-2tuglc.framer-1laogdi > :last-child, .framer-YRD0l.framer-v-2tuglc .framer-125r83h > :last-child, .framer-YRD0l.framer-v-2tuglc .framer-ve93da > :last-child { margin-bottom: 0px; } .framer-YRD0l.framer-v-2tuglc .framer-ve93da > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"O7G07UkLF\":{\"layout\":[\"auto\",\"auto\"]},\"pBmYPg6YZ\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"CXtLytFDe\":{\"layout\":[\"auto\",\"auto\"]},\"C_vHlYyo_\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"lssOVH5GL\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"uxJlWSqqR\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"E2AAAl01q\":{\"layout\":[\"fixed\",\"auto\"]},\"a9fAnuyPH\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"tgdn8sWV5\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1100px\",null,null]},\"LO6bADQVC\":{\"layout\":[\"fixed\",\"auto\"]},\"xRqsOTSCu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"q4UwiFtML\":\"title\",\"Bp8tist2k\":\"text\",\"qdWBUV59N\":\"color\",\"d9kOvKfBH\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm_4iuSPHr=withCSS(Component,css,\"framer-YRD0l\");export default Framerm_4iuSPHr;Framerm_4iuSPHr.displayName=\"Case Study / Cards\";Framerm_4iuSPHr.defaultProps={height:500,width:1100};addPropertyControls(Framerm_4iuSPHr,{variant:{options:[\"ZE_P5d5Yg\",\"O7G07UkLF\",\"pBmYPg6YZ\",\"CXtLytFDe\",\"C_vHlYyo_\",\"lssOVH5GL\",\"uxJlWSqqR\",\"E2AAAl01q\",\"a9fAnuyPH\",\"tgdn8sWV5\",\"LO6bADQVC\",\"xRqsOTSCu\"],optionTitles:[\"Case #1\",\"Case #1 Mobile\",\"Case #2\",\"Case #2 Mobile\",\"Case #3\",\"Case #3 Mobile\",\"Case #4\",\"Case #4 Mobile\",\"Case #5\",\"Case #6\",\"Case #5 Mobile\",\"Case #6 Mobile\"],title:\"Variant\",type:ControlType.Enum},q4UwiFtML:{defaultValue:\"Analizuokite duomenisrealiu laiku\",displayTextArea:false,title:\"Title\",type:ControlType.String},Bp8tist2k:{defaultValue:\"Paverskite sud\u0117tingus duomenis vizualiai patraukliomis \u012F\u017Evalgomis, naudodami interaktyvias diagramas, grafikus ir \u017Eem\u0117lapius.\",displayTextArea:false,title:\"Text\",type:ControlType.String},qdWBUV59N:{defaultValue:\"var(--token-3fda2f9e-66a2-433e-9cf6-0d7c4ba191d2, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color},d9kOvKfBH:{__defaultAssetReference:\"data:framer/asset-reference,LiqJAuajdaAy0B9HqBlIR3oTGa8.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(Framerm_4iuSPHr,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm_4iuSPHr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"q4UwiFtML\\\":\\\"title\\\",\\\"Bp8tist2k\\\":\\\"text\\\",\\\"qdWBUV59N\\\":\\\"color\\\",\\\"d9kOvKfBH\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"O7G07UkLF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pBmYPg6YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"CXtLytFDe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C_vHlYyo_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"lssOVH5GL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"uxJlWSqqR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"E2AAAl01q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a9fAnuyPH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"tgdn8sWV5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"LO6bADQVC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xRqsOTSCu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1100\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"500\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m_4iuSPHr.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"A28l31xxC\",\"p30TIfmxw\",\"GBMKkh9a6\"];const serializationHash=\"framer-v6Ffy\";const variantClassNames={A28l31xxC:\"framer-v-jv8pel\",GBMKkh9a6:\"framer-v-tpmku8\",p30TIfmxw:\"framer-v-1kxet7z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Logos (Global)\":\"A28l31xxC\",\"Variant 2\":\"p30TIfmxw\",Mobile:\"GBMKkh9a6\"};const getProps=({height,id,title,width,...props})=>{return{...props,cIfu11kCo:title??props.cIfu11kCo??\"Mumis pasitiki:\",variant:humanReadableVariantMap[props.variant]??props.variant??\"A28l31xxC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cIfu11kCo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A28l31xxC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jv8pel\",className,classNames),\"data-framer-name\":\"Logos (Global)\",layoutDependency:layoutDependency,layoutId:\"A28l31xxC\",ref:refBinding,style:{...style},...addPropertyOverrides({GBMKkh9a6:{\"data-framer-name\":\"Mobile\"},p30TIfmxw:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ozke9z\",\"data-framer-name\":\"Spotlight Head\",layoutDependency:layoutDependency,layoutId:\"gt9r8wfqq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-1ed07eb1-06d2-44a2-9c81-69ea1bd2c5e1, rgb(0, 0, 0)))\"},children:\"Kompanijos, kurias stiprina PowerBI, yra lyderiai\"})}),className:\"framer-2kijwx\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Q0fWdfAVv\",style:{\"--extracted-1lwpl3i\":\"var(--token-1ed07eb1-06d2-44a2-9c81-69ea1bd2c5e1, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:cIfu11kCo,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GBMKkh9a6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-1ed07eb1-06d2-44a2-9c81-69ea1bd2c5e1, rgb(0, 0, 0)))\"},children:\"Prisijunkite prie pirmaujan\u010Di\u0173 \u012Fmoni\u0173!\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pauyrt\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"nwWl0MFvc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19ceqdu-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"i4PyVxwdk-container\",nodeId:\"i4PyVxwdk\",rendersWithMotion:true,scopeId:\"rbnJkEb9P\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.9,id:\"i4PyVxwdk\",layoutId:\"i4PyVxwdk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ed99x8\",layoutDependency:layoutDependency,layoutId:\"NjOBweAXu\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70,intrinsicWidth:150,pixelHeight:140,pixelWidth:300,src:\"https://framerusercontent.com/images/uPHHeR7aCqkcmIlaooc8EU0r0tg.svg\"},className:\"framer-f29z22\",\"data-framer-name\":\"Telecom\",layoutDependency:layoutDependency,layoutId:\"QYekXgbpn\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fpkkkx\",layoutDependency:layoutDependency,layoutId:\"IhJbBQBF3\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.5,intrinsicWidth:150,pixelHeight:87,pixelWidth:300,sizes:\"150px\",src:\"https://framerusercontent.com/images/0lwPlZFRpNrXJdaocoHSVpdIHd8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0lwPlZFRpNrXJdaocoHSVpdIHd8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/0lwPlZFRpNrXJdaocoHSVpdIHd8.svg 808w\"},className:\"framer-13ogye5\",\"data-framer-name\":\"Transaim UAB logo\",layoutDependency:layoutDependency,layoutId:\"QNHNcGCSH\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tfb7a8\",layoutDependency:layoutDependency,layoutId:\"l8kuPWQev\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:230,intrinsicWidth:960,pixelHeight:460,pixelWidth:1920,sizes:\"163px\",src:\"https://framerusercontent.com/images/ynDm4AfNliNzJnWSNZBQeXHfw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ynDm4AfNliNzJnWSNZBQeXHfw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ynDm4AfNliNzJnWSNZBQeXHfw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ynDm4AfNliNzJnWSNZBQeXHfw.png 1920w\"},className:\"framer-p2zdrz\",\"data-framer-name\":\"GOIT logo\",layoutDependency:layoutDependency,layoutId:\"UfjJRyRUw\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qdru8h\",layoutDependency:layoutDependency,layoutId:\"DIVlYiJbs\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6sh3m5\",\"data-framer-name\":\"66b49be5d60ac617f7db92de Logo Podbase\",fill:\"black\",intrinsicHeight:316,intrinsicWidth:1057,layoutDependency:layoutDependency,layoutId:\"juaMZU5Dx\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1057 316\"><path d=\"m201 65-95-55-96 55v186l96 55v-60l95-55V65Z\" style=\"fill:none;stroke:#515151;stroke-linejoin:round;stroke-width:19px\"/><path d=\"m201 65-95-55-95 55 94 59 96-59Z\" style=\"fill:#fff\"/><path d=\"M106 120 11 65v63l95 63 95-63V65l-95 55Z\" style=\"fill:#cecece\"/><path d=\"M106 120 11 65v63l95 63v-71Z\" style=\"fill:#c4c4c4\"/><path d=\"m106 183-95-55v63l13 49 82 6 95-55v-63l-95 55Z\" style=\"fill:#afafaf\"/><path d=\"m106 183-95-55v63l13 49 82 6v-63Z\" style=\"fill:#999\"/><path d=\"M11 191v60l95 55v-60l-95-55Z\" style=\"fill:#848484\"/><path d=\"M345 161h-22v-48h22c20 0 29 8 29 23s-10 25-29 25Zm1-69h-47v132h24v-42h23c32 0 51-17 51-46s-19-44-51-44Zm114 113c-17 0-28-13-28-30s11-30 28-30 28 12 28 30-12 30-28 30Zm0-80c-31 0-51 20-51 50s21 49 51 49 51-20 51-49-21-50-51-50Zm118 80c-17 0-28-12-28-30s11-30 28-30 28 12 28 30-11 30-28 30Zm28-66c-7-9-19-14-33-14-27 0-46 20-46 49s19 51 47 51 25-5 32-15v14h23V92h-23v47Zm96 65c-16 0-28-12-28-30s12-30 28-30 28 13 28 30-11 30-28 30Zm5-79c-14 0-25 5-33 14V92h-23v132h23v-14c8 9 19 14 33 14 28 0 47-19 47-49s-19-50-47-50Zm100 81c-10 0-17-5-17-13s5-12 18-12h24v8c-1 10-11 17-25 17Zm9-81c-18 0-27 4-41 12l-1 1 9 16 2-1c9-6 18-9 26-9 14 0 21 6 21 18v2h-27c-22 0-36 11-36 30s14 31 34 31 23-4 29-11v10h22v-64c0-23-14-35-38-35Zm99 39c-10-3-18-5-19-12 0-7 7-8 13-9h1c8 0 18 3 26 8l1 1 7-17 1-1-1-1c-9-5-22-9-34-9-10 1-19 3-25 8-7 5-10 13-10 22 0 21 17 26 31 30 11 2 19 5 20 12 0 4-2 6-6 8-3 1-6 2-8 2h-1c-11 0-23-5-31-11l-1-1-8 17 1 1c9 8 23 12 37 12h2c10 0 20-3 26-7 7-6 11-14 11-23-1-22-19-26-33-30Zm68 2c3-14 13-22 27-22s24 8 26 22h-53Zm61-29c-7-8-19-12-34-12-29 0-50 20-50 50s20 49 50 49 31-5 41-16l1-1-13-13h-1c-6 7-16 11-26 11s-25-8-28-21h72v-1c1-20-2-36-12-46Z\" style=\"fill:#515151\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-civanf\",layoutDependency:layoutDependency,layoutId:\"JtAzk1lyI\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:655,intrinsicWidth:1152.5,pixelHeight:1310,pixelWidth:2305,sizes:\"79px\",src:\"https://framerusercontent.com/images/ygl4Sqc3J83z6bS4RVxeV39mmlk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ygl4Sqc3J83z6bS4RVxeV39mmlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygl4Sqc3J83z6bS4RVxeV39mmlk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ygl4Sqc3J83z6bS4RVxeV39mmlk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ygl4Sqc3J83z6bS4RVxeV39mmlk.png 2305w\"},className:\"framer-f279ip\",\"data-framer-name\":\"Sveicarija laikrodziu salonas\",layoutDependency:layoutDependency,layoutId:\"b_ROQOE9q\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q3j0zo\",layoutDependency:layoutDependency,layoutId:\"dAZepcSJ8\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-158j0mz\",\"data-framer-name\":\"Logo-1\",fill:\"black\",intrinsicHeight:279,intrinsicWidth:540,layoutDependency:layoutDependency,layoutId:\"rrGNLRi0p\",svg:'<svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 539.7 278.6\"><defs><style>.st0{fill:#7c7b7b}</style></defs><g id=\"Layer_x5F_1\"><g id=\"_2272260518400\"><path class=\"st0\" d=\"M98.1 232.2c-43.8-23.6-68.2-55.2-68.8-88.8C28.1 71.8 135 11.7 267.6 9.4h7.7c62.9 0 122 13.2 166.2 37 43.8 23.6 68.2 55.2 68.8 88.8 1.2 71.6-105.7 131.7-238.3 134-66 1.1-127.9-12.1-173.9-37ZM267.5 0C118.4 2.6-1.3 67 0 143.9c1.3 76.9 123.2 137.2 272.2 134.6 149-2.5 268.8-66.9 267.5-143.9C538.4 57.8 416.5-2.5 267.5 0Z\"/><path class=\"st0\" d=\"M123.8 99.4h13.7c1.1-5.3 2.1-10.7 3.2-16H127c1.1-5.3 2.1-10.6 3.2-15.9h15.4c1.1-5.6 2.3-11.2 3.4-16.8h-37.5l-8.4 42-8.4 42h22.2c2.3-11.8 4.7-23.5 7.1-35.3Zm13.7 35.3h22.2l8.4-42 8.4-42h-22.2l-8.4 42-8.4 42Zm112.7 0c2.3-11.8 4.7-23.5 7.1-35.3h6.6c-2.3 11.8-4.7 23.5-7.1 35.3H279l8.4-42 8.4-42h-22.2l-6 30h-6.7c2-10 4.1-20 6-30h-22.2l-8.4 42-8.4 42h22.2Zm-78.5-15.8c-.2 2.9.4 5.6 1.5 8.3 1.2 2.6 3.2 4.8 6.1 6.6 2.8 1.8 6.1 2.7 9.9 2.7s6-.6 8.6-1.9c2.6-1.3 4.9-3.2 6.9-5.8.3 2 .5 4 .8 6h14c3-15 6-30.1 9-45.1h-25.9c-.9 4.3-1.7 8.5-2.6 12.8h4.5c-.6 3.3-1.3 6.6-2 10-.8 3.9-1.6 6.5-2.4 7.9-.9 1.4-2.1 2-3.7 2s-2.3-.6-2.6-1.8c-.3-1.2 0-3.7.7-7.5 2.7-13.4 5.4-26.9 8.1-40.3.9-4.3 1.7-7 2.4-8s1.7-1.5 3.1-1.5 2.5.6 2.7 1.8c.2 1.2-.2 4.2-1.2 9-.5 2.6-1 5.1-1.5 7.6h22.2c.2-1.2.5-2.4.7-3.6 1.4-6.9 1.8-12.1 1.2-15.8-.6-3.6-2.8-6.7-6.5-9.4-3.7-2.6-8.9-4-15.4-4s-12.3 1.5-17 4.6c-4.8 3-8 6.3-9.6 10-1.6 3.6-3.3 9.5-4.9 17.5-1.7 8.3-3.3 16.6-5 25-1.2 5.8-1.8 10.1-2 13Zm125.5 15.8h22.2c2.3-11.2 4.5-22.4 6.7-33.6 2.2-11.2 4.5-22.4 6.7-33.6H346c1.1-5.6 2.3-11.2 3.4-16.8h-48.5c-1.1 5.6-2.2 11.2-3.4 16.8h13.1c-2.2 11.2-4.5 22.4-6.7 33.6-2.2 11.2-4.5 22.4-6.7 33.6Zm40.4 0H376c1.1-5.6 2.2-11.2 3.4-16.8h-16.2c1.2-6.1 2.4-12.3 3.7-18.5h13.8c1.1-5.3 2.2-10.7 3.2-16h-13.8c1-5.3 2.1-10.6 3.1-15.9H388c1.1-5.6 2.3-11.2 3.4-16.8h-37l-8.4 42-8.4 42ZM418.5 65c2.6 0 4.3.4 5 1.2.8.8.9 2.6.4 5.2-.3 1.5-.6 3.1-.9 4.6-.7 3.7-1.7 5.9-2.8 6.6-1.1.7-2.9 1-5.4 1 1.2-6.2 2.5-12.5 3.7-18.7Zm-36.1 69.7h22.2c2.6-12.6 5.1-25.3 7.6-37.9 3 0 4.8.6 5.3 1.6.5 1.1.4 3.9-.5 8.4-1.9 9.3-3.7 18.6-5.6 27.9H432c1.5-7.4 3-14.8 4.4-22.2 1.4-6.8 2-10.9 1.9-12.4 0-1.5-.7-3.1-1.8-4.9-1.2-1.8-3.8-3.3-8-4.3 5-.4 8.5-1.8 10.5-4 2.1-2.3 3.8-6.6 5.1-13.2 1.4-7.2 1.3-12.4-.4-15.7-1.7-3.3-4.3-5.3-7.8-6.1-3.5-.8-10.5-1.2-21-1.2h-15.7l-8.4 42-8.4 42Z\"/><path d=\"M142.5 145.2c-3.6-1.8-8.3-2.8-14-2.8s-9.8.8-13.8 2.5-7.1 4-9.4 7c-2.2 3-4 7.7-5.3 14.1-.9 4.5-1.1 8.1-.5 11 .6 2.9 1.6 5.1 3 6.8 1.4 1.6 4.5 4.2 9.2 7.8 4.7 3.6 7.6 6.1 8.7 7.6 1 1.5 1.1 4.8 0 9.7-.5 2.3-1.2 4-2.1 5.1-.9 1.1-2.1 1.7-3.6 1.7s-2.4-.4-2.8-1.3c-.4-.9-.3-2.9.4-6.1l2.1-10.2H94.1l-1.1 5.5c-1.3 6.3-1.6 11.2-1 14.6.6 3.4 2.7 6.3 6.4 8.5s8.5 3.3 14.3 3.3 10.2-1 14.6-2.9 7.6-4.3 9.6-7.1 3.6-7.3 4.8-13.3c1.7-8.2 1.6-14.2-.2-17.9-1.8-3.7-7-8.5-15.5-14.2-3-2-4.7-3.7-5.1-5.1-.5-1.4-.4-3.5.1-6.3.4-2.2 1.1-3.8 2-4.9.9-1.1 2-1.6 3.3-1.6s2 .4 2.4 1.2c.4.8.2 2.7-.3 5.6l-1.3 6.2h20.3l.7-3.3c1.3-6.7 1.7-11.4.9-14.2-.7-2.8-2.9-5.1-6.6-6.9Zm46.5 29.1h-6.6l6.1-30.1h-21.9l-16.9 84.2h21.8l7.2-35.3h6.5l-7.1 35.3H200l17-84.2h-21.9l-6.1 30.1zm65.8-8.4-7.8 38.7c-1 5-1.8 8.1-2.5 9.4-.7 1.3-1.8 2-3.3 2s-2.3-.6-2.4-1.7c-.2-1.1.2-4.2 1.2-9l7.9-39.3c.9-4.3 1.7-6.9 2.5-7.8.8-.9 1.7-1.3 2.9-1.3s2.1.5 2.3 1.6c.2 1.1 0 3.6-.9 7.5Zm13-21.2c-3.3-1.5-7.2-2.2-11.7-2.2s-9.1.8-12.9 2.3c-3.9 1.6-7.2 3.8-9.9 6.7-2.7 2.9-4.6 6.1-5.7 9.6-1.1 3.5-2.5 9.5-4.2 18l-2.9 14.4c-1.7 8.7-2.8 14.7-3 18.2-.3 3.5.4 6.7 2 9.6 1.6 2.9 4 5.2 7.3 6.6 3.3 1.5 7.2 2.2 11.7 2.2s9.1-.8 12.9-2.3c3.9-1.6 7.2-3.8 9.9-6.7 2.7-2.9 4.6-6.1 5.7-9.6 1.1-3.5 2.5-9.5 4.2-18l2.9-14.4c1.7-8.7 2.8-14.7 3-18.2.3-3.5-.4-6.7-2-9.6-1.6-2.9-4-5.2-7.3-6.6Zm51.3 20.9-1.4 6.9c-.6 3.1-1.4 5.2-2.4 6.2s-2.5 1.5-4.5 1.5h-1.6l4.3-21.4c2.8 0 4.6.4 5.4 1.3.7.9.8 2.7.2 5.6Zm12.4 21.3c1.6-2.5 2.9-6.4 4-11.7l1.5-7.3c1.1-5.3 1.6-9.2 1.5-11.7 0-2.5-.7-4.7-2-6.4-1.3-1.8-3.4-3.1-6.4-4.1s-7.5-1.4-13.5-1.4h-22l-17 84.2h21.9l6.8-33.9h5.9c4.8 0 8.8-.7 12-2 3.2-1.3 5.6-3.2 7.3-5.7Zm-11.2 41.5h15.9l3.5-17.1h-15.9l-3.5 17.1zm44.5-84.2-17 84.2H383l3.4-16.8h-13.3l13.6-67.4h-21.9zm35.3 16.9H413l-13.6 67.3h21.9l13.6-67.3h13l3.4-16.9h-47.9l-3.3 16.9z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16f07it\",layoutDependency:layoutDependency,layoutId:\"E7rv7OciT\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2070j6\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"mfAFzC881\",svg:'<svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 96 44\"><defs><style>.st1{fill:#4f4f4f}</style></defs><path class=\"st1\" d=\"M5.2 16.9c0 .2.1.4.3.5.1.2.3.3.5.4l10.9 4.9c.7.3 1.4.8 2 1.4 1.1 1 1.7 2.4 1.8 3.9 0 .7 0 1.3-.2 1.9-.1.5-.3 1.1-.6 1.6-.6 1-1.4 1.9-2.4 2.5-1 .6-2.1 1-3.3 1h-13v-5h13c.3 0 .6 0 .8-.3.2-.2.4-.5.4-.8v-.6c0-.2-.1-.4-.3-.5-.1-.2-.3-.3-.5-.4L3.7 22.5c-.7-.3-1.4-.8-2-1.4-.9-1-1.6-2.4-1.7-3.9 0-.7 0-1.3.2-1.9.1-.5.3-1.1.6-1.6.6-1 1.4-1.9 2.4-2.5s2.1-1 3.3-1h13v5c0 .1-.1 0-.2 0H6.4c-.3 0-.6 0-.8.3-.2.2-.4.5-.4.8v.6m19.7-6.7h4.6v24.5h-5V10.3h.2Zm65.6 0h4.8v24.5h-4.8V10.3h.2Zm-16.6 17 .1.1h.4l.1-.1 7.6-16.8v-.1h5.2v.2l-11 24.3v.1h-4.5v-.1L60.9 10.5v-.2h5.2v.1l7.5 16.8\"/><path d=\"M60.4 1c.6.5 1.1 1 1.4 1.7.3.7.5 1.4.5 2.2 0 2.7-4.9 6.6-4.9 6.6s-4.9-3.8-4.9-6.6c0-.9.3-1.8.7-2.6.5-.8 1.2-1.4 2-1.8.8-.4 1.7-.6 2.7-.5.9 0 1.8.4 2.5 1\" style=\"fill:#a0a0a0\"/><path class=\"st1\" d=\"M58.8 22.6v8.5c0 .7 0 1.2-.1 1.7-.3 2.4-1.2 4.6-2.7 6.5-1.5 1.9-3.5 3.3-5.7 4-2.2.8-4.7.9-7 .4s-4.4-1.7-6.1-3.4l-.6-.6v-.4l3.2-3.2.6.6c.8.8 1.8 1.5 2.9 1.8 1.2.4 2.5.5 3.8.3 1.3-.2 2.4-.8 3.4-1.6s1.8-1.9 2.3-3.1c.3-.7.5-1.4.5-2.2v-9.4c0-1.8-.6-3.6-1.8-5-1.2-1.4-2.8-2.3-4.6-2.6-.4 0-.8-.1-1.3-.1-.4 0-.9 0-1.3.1h-.1c-1.8.3-3.4 1.3-4.6 2.7-1.2 1.4-1.8 3.2-1.8 5s.7 3.6 1.8 4.9c1.2 1.4 2.8 2.3 4.6 2.6.4 0 .8.1 1.3 0h1.3c1.2-.2 2.3-.7 3.3-1.5h.3V34h-.1c-1.1.4-2.2.7-3.3.9-1 .1-2.1.1-3.2 0-3.1-.4-5.9-1.9-8-4.2-2.1-2.3-3.2-5.3-3.2-8.4s1.1-6.1 3.2-8.4c2.1-2.3 4.9-3.8 8-4.2 1-.1 2.1-.1 3.2 0 3.1.4 5.9 1.9 8 4.2 2.1 2.3 3.2 5.3 3.2 8.4Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mpbd11\",layoutDependency:layoutDependency,layoutId:\"exJgDNFyW\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:421.5,intrinsicWidth:501.5,pixelHeight:843,pixelWidth:1003,sizes:\"51px\",src:\"https://framerusercontent.com/images/4J09bdA7V0EtvXwYCj2jPsCoY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4J09bdA7V0EtvXwYCj2jPsCoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4J09bdA7V0EtvXwYCj2jPsCoY.png 1003w\"},className:\"framer-hmevjk\",\"data-framer-name\":\"Misku fondas\",layoutDependency:layoutDependency,layoutId:\"FEJ9hBGoS\"})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v6Ffy.framer-104jwm2, .framer-v6Ffy .framer-104jwm2 { display: block; }\",\".framer-v6Ffy.framer-jv8pel { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-v6Ffy .framer-1ozke9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-v6Ffy .framer-2kijwx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-v6Ffy .framer-pauyrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Ffy .framer-19ceqdu-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-v6Ffy .framer-1ed99x8, .framer-v6Ffy .framer-1fpkkkx, .framer-v6Ffy .framer-tfb7a8, .framer-v6Ffy .framer-qdru8h, .framer-v6Ffy .framer-civanf, .framer-v6Ffy .framer-1q3j0zo, .framer-v6Ffy .framer-16f07it { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-v6Ffy .framer-f29z22 { aspect-ratio: 2.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 88px; }\",\".framer-v6Ffy .framer-13ogye5 { aspect-ratio: 3.4482758620689653 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 150px; }\",\".framer-v6Ffy .framer-p2zdrz { aspect-ratio: 4.173913043478261 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 163px; }\",\".framer-v6Ffy .framer-6sh3m5 { aspect-ratio: 3.3449367088607596 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 127px; }\",\".framer-v6Ffy .framer-f279ip { aspect-ratio: 1.7595419847328244 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 79px; }\",\".framer-v6Ffy .framer-158j0mz { aspect-ratio: 1.935483870967742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 74px; }\",\".framer-v6Ffy .framer-2070j6 { aspect-ratio: 2.1818181818181817 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 82px; }\",\".framer-v6Ffy .framer-mpbd11 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-v6Ffy .framer-hmevjk { aspect-ratio: 1.1897983392645315 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 51px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v6Ffy.framer-jv8pel, .framer-v6Ffy .framer-1ozke9z, .framer-v6Ffy .framer-pauyrt, .framer-v6Ffy .framer-1ed99x8, .framer-v6Ffy .framer-1fpkkkx, .framer-v6Ffy .framer-tfb7a8, .framer-v6Ffy .framer-qdru8h, .framer-v6Ffy .framer-civanf, .framer-v6Ffy .framer-1q3j0zo, .framer-v6Ffy .framer-16f07it, .framer-v6Ffy .framer-mpbd11 { gap: 0px; } .framer-v6Ffy.framer-jv8pel > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-v6Ffy.framer-jv8pel > :first-child { margin-top: 0px; } .framer-v6Ffy.framer-jv8pel > :last-child { margin-bottom: 0px; } .framer-v6Ffy .framer-1ozke9z > *, .framer-v6Ffy .framer-1ed99x8 > *, .framer-v6Ffy .framer-1fpkkkx > *, .framer-v6Ffy .framer-tfb7a8 > *, .framer-v6Ffy .framer-qdru8h > *, .framer-v6Ffy .framer-civanf > *, .framer-v6Ffy .framer-1q3j0zo > *, .framer-v6Ffy .framer-16f07it > *, .framer-v6Ffy .framer-mpbd11 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v6Ffy .framer-1ozke9z > :first-child, .framer-v6Ffy .framer-pauyrt > :first-child, .framer-v6Ffy .framer-1ed99x8 > :first-child, .framer-v6Ffy .framer-1fpkkkx > :first-child, .framer-v6Ffy .framer-tfb7a8 > :first-child, .framer-v6Ffy .framer-qdru8h > :first-child, .framer-v6Ffy .framer-civanf > :first-child, .framer-v6Ffy .framer-1q3j0zo > :first-child, .framer-v6Ffy .framer-16f07it > :first-child, .framer-v6Ffy .framer-mpbd11 > :first-child { margin-left: 0px; } .framer-v6Ffy .framer-1ozke9z > :last-child, .framer-v6Ffy .framer-pauyrt > :last-child, .framer-v6Ffy .framer-1ed99x8 > :last-child, .framer-v6Ffy .framer-1fpkkkx > :last-child, .framer-v6Ffy .framer-tfb7a8 > :last-child, .framer-v6Ffy .framer-qdru8h > :last-child, .framer-v6Ffy .framer-civanf > :last-child, .framer-v6Ffy .framer-1q3j0zo > :last-child, .framer-v6Ffy .framer-16f07it > :last-child, .framer-v6Ffy .framer-mpbd11 > :last-child { margin-right: 0px; } .framer-v6Ffy .framer-pauyrt > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } }\",\".framer-v6Ffy.framer-v-tpmku8.framer-jv8pel { width: 430px; }\",\".framer-v6Ffy.framer-v-tpmku8 .framer-1ozke9z { width: 100%; }\",\".framer-v6Ffy.framer-v-tpmku8 .framer-2kijwx { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 97\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p30TIfmxw\":{\"layout\":[\"fixed\",\"auto\"]},\"GBMKkh9a6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cIfu11kCo\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrbnJkEb9P=withCSS(Component,css,\"framer-v6Ffy\");export default FramerrbnJkEb9P;FramerrbnJkEb9P.displayName=\"Spotlight Logos (Global) 2\";FramerrbnJkEb9P.defaultProps={height:97,width:1200};addPropertyControls(FramerrbnJkEb9P,{variant:{options:[\"A28l31xxC\",\"p30TIfmxw\",\"GBMKkh9a6\"],optionTitles:[\"Logos (Global)\",\"Variant 2\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},cIfu11kCo:{defaultValue:\"Mumis pasitiki:\",displayTextArea:false,placeholder:\"Mumis pasitiki:\",title:\"Title\",type:ControlType.String}});addFonts(FramerrbnJkEb9P,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrbnJkEb9P\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"cIfu11kCo\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p30TIfmxw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GBMKkh9a6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"97\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rbnJkEb9P.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "image", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "q4UwiFtML", "Bp8tist2k", "qdWBUV59N", "d9kOvKfBH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "Image2", "css", "Framerm_4iuSPHr", "withCSS", "m_4iuSPHr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cIfu11kCo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FramerrbnJkEb9P", "withCSS", "rbnJkEb9P_default", "addPropertyControls", "ControlType", "addFonts"]
}
