{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/mbFPzZYTzIhSrigRSb6s/WlnJOre1X3CDSYtVS4Dk/Rive.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/5R6tuTpmcVEe0IX1B0NO/tEutQMpMJgmJ7CJKuEr8/g5KA_fQP8.js", "ssg:https://framerusercontent.com/modules/uWgoad1rErmumBWVLCWj/uD5U8p5tVsdW2tPKIjYn/jjrxSo4w8.js", "ssg:https://framerusercontent.com/modules/18rS5aYRlRrpMZ1xbbJp/sIrBAPMqrEN8ihwGCzfr/nH8wglhRX.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useMemo,useRef}from\"react\";import Rive,{useRive,useStateMachineInput}from\"@rive-app/react-canvas\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * Version 0.0.1\n * - Initial release\n */function useRiveInputs(rive,stateMachines,inputsJSON){const inputConfigs=useMemo(()=>{try{return JSON.parse(inputsJSON||\"[]\");}catch(error){console.error(\"Error parsing inputsJSON:\",error);return[];}},[inputsJSON]);return inputConfigs.map(config=>{const handler=useStateMachineInput(rive,stateMachines,config.name,config.type===\"Trigger\"?true:config.value);return{...config,handler};});}/**\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerDisableUnlink\n */export default function RivePlayer(props){const{src,artboard,stateMachines,autoplay,fit,alignment,play,playOnCanvas,onEventTriggered,inputsJSON,isTouchScrollEnabled}=props;const layout=useMemo(()=>new Rive.Layout({fit,alignment}),[fit,alignment]);const{rive,RiveComponent}=useRive({src,artboard,stateMachines,autoplay,layout,isTouchScrollEnabled:isTouchScrollEnabled});const inputs=useRiveInputs(rive,stateMachines,inputsJSON);const prevInputsRef=useRef(inputs);useEffect(()=>{if(rive&&inputs.length){inputs.forEach((input,index)=>{if(input.handler){const prevInput=prevInputsRef.current[index];if(input.type===\"Trigger\"&&input.value&&(!prevInput||!prevInput.value)){input.handler.fire();}else if(input.type!==\"Trigger\"&&\"value\"in input){input.handler.value=input.value;}}});}prevInputsRef.current=inputs;},[rive,inputs]);// Handle Rive events\nuseEffect(()=>{if(rive){const handleEvent=event=>{console.log(\"Rive event triggered:\",event);if(onEventTriggered){onEventTriggered(event.data);console.log(\"Event data:\",event.data);}};rive.on(\"riveevent\",handleEvent);return()=>{rive.off(\"riveevent\",handleEvent);};}},[rive,onEventTriggered]);// Control playback\nuseEffect(()=>{if(rive){const shouldPlay=RenderTarget.current()===RenderTarget.canvas?playOnCanvas:play;shouldPlay?rive.play():rive.pause();}},[rive,play,playOnCanvas]);// Update layout\nuseEffect(()=>{if(rive){rive.layout=layout;}},[rive,layout]);return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\"},children:/*#__PURE__*/_jsx(RiveComponent,{style:{width:\"100%\",height:\"100%\"}})});}// Property controls\naddPropertyControls(RivePlayer,{src:{title:\"Source\",type:ControlType.String},artboard:{title:\"Artboard\",type:ControlType.String},stateMachines:{title:\"State Machines\",type:ControlType.String},autoplay:{title:\"Autoplay\",type:ControlType.Boolean,hidden:()=>true},isTouchScrollEnabled:{title:\"Touch Screen Enabled\",type:ControlType.Boolean},fit:{title:\"Fit\",type:ControlType.Enum,options:[\"contain\",\"cover\",\"fill\",\"fitWidth\",\"fitHeight\",\"none\",\"scaleDown\"],optionTitles:[\"Contain\",\"Cover\",\"Fill\",\"Fit Width\",\"Fit Height\",\"None\",\"Scale Down\"]},alignment:{title:\"Alignment\",type:ControlType.Enum,options:[\"center\",\"topLeft\",\"topCenter\",\"topRight\",\"centerLeft\",\"centerRight\",\"bottomLeft\",\"bottomCenter\",\"bottomRight\"],optionTitles:[\"Center\",\"Top Left\",\"Top Center\",\"Top Right\",\"Center Left\",\"Center Right\",\"Bottom Left\",\"Bottom Center\",\"Bottom Right\"]},play:{title:\"Auto-Play\",type:ControlType.Boolean},playOnCanvas:{title:\"Play on Canvas\",type:ControlType.Boolean},onEventTriggered:{type:ControlType.EventHandler},inputsJSON:{title:\"Inputs JSON\",type:ControlType.String,hidden:()=>true}});// Default props\nRivePlayer.defaultProps={src:\"https://public.rive.app/hosted/63978/135405/cRjq3a7l40ScM-l2peKfBQ.riv\",artboard:\"AB_BG\",stateMachines:\"SM_BG\",autoplay:true,fit:\"cover\",alignment:\"center\",play:true,playOnCanvas:true,onEventTriggered:eventData=>null,inputsJSON:\"[]\",isTouchScrollEnabled:false};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RivePlayer\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={nxvHBipGE:{hover:true},SOnQEnx1q:{hover:true},t1LkeQwOz:{hover:true}};const cycleOrder=[\"t1LkeQwOz\",\"SOnQEnx1q\",\"nxvHBipGE\"];const serializationHash=\"framer-JOTyr\";const variantClassNames={nxvHBipGE:\"framer-v-i9jbc1\",SOnQEnx1q:\"framer-v-16fj7t4\",t1LkeQwOz:\"framer-v-13f68on\"};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 transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Dribbble:\"nxvHBipGE\",Instagram:\"t1LkeQwOz\",Linkedin:\"SOnQEnx1q\"};const getProps=({height,id,link,newTab,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,lQgLZtfN5:link!==null&&link!==void 0?link:props.lQgLZtfN5,qQ96bSH_3:(_ref=newTab!==null&&newTab!==void 0?newTab:props.qQ96bSH_3)!==null&&_ref!==void 0?_ref:true,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"t1LkeQwOz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,lQgLZtfN5,qQ96bSH_3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t1LkeQwOz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:lQgLZtfN5,openInNewTab:qQ96bSH_3,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13f68on\",className,classNames)} framer-171l4u`,\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"t1LkeQwOz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"nxvHBipGE-hover\":{backgroundColor:\"rgb(252, 246, 242)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},\"SOnQEnx1q-hover\":{backgroundColor:\"rgb(252, 246, 242)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},\"t1LkeQwOz-hover\":{backgroundColor:\"rgb(252, 246, 242)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}},...addPropertyOverrides({\"nxvHBipGE-hover\":{\"data-framer-name\":undefined},\"SOnQEnx1q-hover\":{\"data-framer-name\":undefined},\"t1LkeQwOz-hover\":{\"data-framer-name\":undefined},nxvHBipGE:{\"data-framer-name\":\"Dribbble\"},SOnQEnx1q:{\"data-framer-name\":\"Linkedin\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1586ik1\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jq7Crawfp-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 16\"><g transform=\"translate(0.651 0)\" id=\"ss9177566764_1\"><path d=\"M 0.003 16 L 0.003 0 L 15.695 0 L 15.695 16 Z\" fill=\"transparent\"></path><path d=\"M 7.848 3.898 C 5.621 3.898 3.825 5.729 3.825 8 C 3.825 10.271 5.621 12.102 7.848 12.102 C 10.074 12.102 11.87 10.271 11.87 8 C 11.87 5.729 10.074 3.898 7.848 3.898 Z M 7.848 10.667 C 6.409 10.667 5.233 9.471 5.233 8 C 5.233 6.529 6.406 5.333 7.848 5.333 C 9.29 5.333 10.463 6.529 10.463 8 C 10.463 9.471 9.287 10.667 7.848 10.667 Z M 12.973 3.73 C 12.973 4.262 12.553 4.687 12.035 4.687 C 11.513 4.687 11.097 4.258 11.097 3.73 C 11.097 3.202 11.517 2.773 12.035 2.773 C 12.553 2.773 12.973 3.202 12.973 3.73 Z M 15.637 4.701 C 15.578 3.419 15.291 2.284 14.37 1.349 C 13.453 0.413 12.339 0.12 11.083 0.056 C 9.787 -0.019 5.905 -0.019 4.61 0.056 C 3.356 0.117 2.243 0.41 1.322 1.345 C 0.402 2.28 0.118 3.416 0.055 4.698 C -0.018 6.019 -0.018 9.978 0.055 11.299 C 0.115 12.581 0.402 13.716 1.322 14.651 C 2.243 15.587 3.353 15.88 4.61 15.944 C 5.905 16.019 9.787 16.019 11.083 15.944 C 12.339 15.883 13.453 15.59 14.37 14.651 C 15.287 13.716 15.574 12.581 15.637 11.299 C 15.711 9.978 15.711 6.022 15.637 4.701 Z M 13.964 12.716 C 13.691 13.416 13.162 13.955 12.472 14.237 C 11.44 14.655 8.989 14.559 7.848 14.559 C 6.707 14.559 4.253 14.651 3.223 14.237 C 2.537 13.959 2.009 13.42 1.732 12.716 C 1.322 11.663 1.417 9.164 1.417 8 C 1.417 6.836 1.326 4.333 1.732 3.284 C 2.005 2.584 2.534 2.045 3.223 1.763 C 4.256 1.345 6.707 1.441 7.848 1.441 C 8.989 1.441 11.443 1.349 12.472 1.763 C 13.159 2.041 13.687 2.58 13.964 3.284 C 14.373 4.337 14.279 6.836 14.279 8 C 14.279 9.164 14.373 11.667 13.964 12.716 Z\" fill=\"rgb(109,109,109)\"></path></g><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:9177566764,withExternalLayout:true,...addPropertyOverrides({nxvHBipGE:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 16\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"M 8 0 C 3.59 0 0 3.59 0 8 C 0 12.41 3.59 16 8 16 C 12.41 16 16 12.41 16 8 C 16 3.59 12.41 0 8 0 Z M 13.29 3.69 C 14.242 4.852 14.819 6.335 14.832 7.948 C 14.607 7.9 12.349 7.442 10.074 7.729 C 9.887 7.277 9.713 6.877 9.474 6.387 C 12 5.355 13.145 3.887 13.29 3.694 Z M 12.529 2.9 C 12.407 3.074 11.377 4.458 8.949 5.368 C 7.829 3.31 6.587 1.619 6.4 1.368 C 8.568 0.845 10.851 1.41 12.532 2.9 Z M 5.093 1.826 C 5.274 2.074 6.493 3.765 7.626 5.777 C 4.429 6.626 1.613 6.613 1.31 6.61 C 1.755 4.49 3.184 2.729 5.093 1.826 Z M 1.168 8.01 C 1.168 7.939 1.168 7.871 1.171 7.8 C 1.471 7.806 4.781 7.848 8.193 6.829 C 8.39 7.213 8.577 7.6 8.749 7.987 C 6.277 8.684 4.032 10.681 2.926 12.577 C 1.832 11.368 1.168 9.765 1.168 8.01 Z M 3.807 13.4 C 4.519 11.942 6.458 10.058 9.213 9.116 C 10.171 11.61 10.568 13.7 10.671 14.297 C 8.474 15.232 5.832 14.977 3.807 13.397 Z M 11.819 13.674 C 11.749 13.258 11.387 11.258 10.49 8.803 C 12.632 8.461 14.513 9.023 14.745 9.097 C 14.442 10.997 13.349 12.639 11.816 13.677 Z\" fill=\"rgb(109,109,109)\"></path></svg>',svgContentId:9473620940},SOnQEnx1q:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 16\"><path d=\"M 15.225 0 L 1.771 0 C 1.155 0 0.654 0.518 0.654 1.154 L 0.654 14.846 C 0.654 15.482 1.155 16 1.771 16 L 15.225 16 C 15.842 16 16.346 15.482 16.346 14.846 L 16.346 1.154 C 16.346 0.518 15.842 0 15.225 0 Z M 5.397 13.714 L 3.071 13.714 L 3.071 6.079 L 5.4 6.079 L 5.4 13.714 Z M 4.234 5.036 C 3.488 5.036 2.885 4.418 2.885 3.661 C 2.885 2.904 3.488 2.286 4.234 2.286 C 4.976 2.286 5.582 2.904 5.582 3.661 C 5.582 4.421 4.98 5.036 4.234 5.036 Z M 14.115 13.714 L 11.789 13.714 L 11.789 10 C 11.789 9.114 11.772 7.975 10.581 7.975 C 9.369 7.975 9.183 8.939 9.183 9.936 L 9.183 13.714 L 6.858 13.714 L 6.858 6.079 L 9.088 6.079 L 9.088 7.121 L 9.12 7.121 C 9.432 6.521 10.192 5.889 11.323 5.889 C 13.677 5.889 14.115 7.471 14.115 9.529 Z\" fill=\"rgb(109,109,109)\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:9550044263}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JOTyr.framer-171l4u, .framer-JOTyr .framer-171l4u { display: block; }\",\".framer-JOTyr.framer-13f68on { cursor: pointer; height: 24px; overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-JOTyr .framer-1586ik1 { bottom: 4px; flex: none; height: 16px; left: 4px; position: absolute; width: 17px; }\",\".framer-JOTyr.framer-v-13f68on.hover.framer-13f68on, .framer-JOTyr.framer-v-16fj7t4.hover.framer-13f68on, .framer-JOTyr.framer-v-i9jbc1.hover.framer-13f68on { will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SOnQEnx1q\":{\"layout\":[\"fixed\",\"fixed\"]},\"nxvHBipGE\":{\"layout\":[\"fixed\",\"fixed\"]},\"PD0hMSIpu\":{\"layout\":[\"fixed\",\"fixed\"]},\"ASF2lXsx3\":{\"layout\":[\"fixed\",\"fixed\"]},\"eL5xPTB9p\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"lQgLZtfN5\":\"link\",\"qQ96bSH_3\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg5KA_fQP8=withCSS(Component,css,\"framer-JOTyr\");export default Framerg5KA_fQP8;Framerg5KA_fQP8.displayName=\"Social Media Icons\";Framerg5KA_fQP8.defaultProps={height:24,width:24};addPropertyControls(Framerg5KA_fQP8,{variant:{options:[\"t1LkeQwOz\",\"SOnQEnx1q\",\"nxvHBipGE\"],optionTitles:[\"Instagram\",\"Linkedin\",\"Dribbble\"],title:\"Variant\",type:ControlType.Enum},lQgLZtfN5:{title:\"Link\",type:ControlType.Link},qQ96bSH_3:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(Framerg5KA_fQP8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg5KA_fQP8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SOnQEnx1q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nxvHBipGE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PD0hMSIpu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ASF2lXsx3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eL5xPTB9p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"lQgLZtfN5\\\":\\\"link\\\",\\\"qQ96bSH_3\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g5KA_fQP8.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import RivePlayer from\"https://framerusercontent.com/modules/mbFPzZYTzIhSrigRSb6s/WlnJOre1X3CDSYtVS4Dk/Rive.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SocialMediaIcons from\"https://framerusercontent.com/modules/5R6tuTpmcVEe0IX1B0NO/tEutQMpMJgmJ7CJKuEr8/g5KA_fQP8.js\";const YouTubeFonts=getFonts(YouTube);const RivePlayerFonts=getFonts(RivePlayer);const EmbedFonts=getFonts(Embed);const SocialMediaIconsFonts=getFonts(SocialMediaIcons);const YouTubeControls=getPropertyControls(YouTube);const SocialMediaIconsControls=getPropertyControls(SocialMediaIcons);const cycleOrder=[\"p2vkQzeNU\",\"zDW8G5UjA\",\"Fd4NMgCwh\",\"k7j_8nWP7\",\"etrr9izfS\"];const serializationHash=\"framer-K9LG1\";const variantClassNames={etrr9izfS:\"framer-v-1e012wk\",Fd4NMgCwh:\"framer-v-4qrk65\",k7j_8nWP7:\"framer-v-12sd5er\",p2vkQzeNU:\"framer-v-71h88u\",zDW8G5UjA:\"framer-v-vfj6ll\"};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 transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Dribbble:\"nxvHBipGE\",Instagram:\"t1LkeQwOz\",Linkedin:\"SOnQEnx1q\"};const humanReadableVariantMap={\"Case Study\":\"p2vkQzeNU\",\"Mind Animation\":\"Fd4NMgCwh\",\"My Heroes\":\"etrr9izfS\",\"Rootle 1st Feature\":\"k7j_8nWP7\",\"With YT Video\":\"zDW8G5UjA\"};const getProps=({_1StHTML,border,click,fontSize,height,id,image2,image4,link,locked,lockedOrNot,thumbnail2,title,title2,title3,title4,variant1,video,visible,visible2,visible3,width,year,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableEnumMap_variant1,_ref8,_ref9,_ref10,_ref11,_ref12,_ref13,_ref14,_ref15,_ref16,_humanReadableVariantMap_props_variant,_ref17,_ref18;return{...props,aGhOO94qP:(_ref=fontSize!==null&&fontSize!==void 0?fontSize:props.aGhOO94qP)!==null&&_ref!==void 0?_ref:20,CHjZxuYHD:(_ref1=image4!==null&&image4!==void 0?image4:props.CHjZxuYHD)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/NKSmHVadoLRHyDHJ3CILItfNQU.png\"},Cn5r6uzUS:(_ref2=visible!==null&&visible!==void 0?visible:props.Cn5r6uzUS)!==null&&_ref2!==void 0?_ref2:true,dn4ePFQfH:(_ref3=border!==null&&border!==void 0?border:props.dn4ePFQfH)!==null&&_ref3!==void 0?_ref3:{borderBottomWidth:0,borderColor:\"rgb(227, 227, 227)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},eF_8Z5jpO:(_ref4=locked!==null&&locked!==void 0?locked:props.eF_8Z5jpO)!==null&&_ref4!==void 0?_ref4:\"\uD83D\uDEA7 Coming Soon\",eGLqNfRae:(_ref5=title2!==null&&title2!==void 0?title2:props.eGLqNfRae)!==null&&_ref5!==void 0?_ref5:\"UX Design\",f3BekrPeB:lockedOrNot!==null&&lockedOrNot!==void 0?lockedOrNot:props.f3BekrPeB,GDLGqXyHH:(_ref6=visible3!==null&&visible3!==void 0?visible3:props.GDLGqXyHH)!==null&&_ref6!==void 0?_ref6:true,gSzkGwLRR:(_ref7=year!==null&&year!==void 0?year:props.gSzkGwLRR)!==null&&_ref7!==void 0?_ref7:\"2024\",GYvNOLrBk:click!==null&&click!==void 0?click:props.GYvNOLrBk,HcPbWRxDs:(_ref9=(_ref8=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref8!==void 0?_ref8:props.HcPbWRxDs)!==null&&_ref9!==void 0?_ref9:\"t1LkeQwOz\",J7TY3X07t:(_ref10=_1StHTML!==null&&_1StHTML!==void 0?_1StHTML:props.J7TY3X07t)!==null&&_ref10!==void 0?_ref10:'<iframe style=\"border: none\" width=\"647\" height=\"562\" src=\"https://rive.app/s/RFDTHdPZ2ECYx6aUcyI9Ig/embed\" allowfullscreen></iframe>',L8Qaunphp:(_ref11=video!==null&&video!==void 0?video:props.L8Qaunphp)!==null&&_ref11!==void 0?_ref11:\"https://youtu.be/XfwLq-aO37U?si=rRAVHohEu7djnMNN\",McoG8Oniz:(_ref12=title3!==null&&title3!==void 0?title3:props.McoG8Oniz)!==null&&_ref12!==void 0?_ref12:\"UI Design\",NePuPjZoe:(_ref13=visible2!==null&&visible2!==void 0?visible2:props.NePuPjZoe)!==null&&_ref13!==void 0?_ref13:true,nzFXR5zWj:(_ref14=image2!==null&&image2!==void 0?image2:props.nzFXR5zWj)!==null&&_ref14!==void 0?_ref14:{src:\"https://framerusercontent.com/images/tpH9LJlF8tvGRjGbD4FizfIdY.png\"},OrrEuVEEt:(_ref15=title!==null&&title!==void 0?title:props.OrrEuVEEt)!==null&&_ref15!==void 0?_ref15:\"Client NameWebApp Case Study\",PrxqraGed:link!==null&&link!==void 0?link:props.PrxqraGed,qU2Kiq3b3:(_ref16=title4!==null&&title4!==void 0?title4:props.qU2Kiq3b3)!==null&&_ref16!==void 0?_ref16:\"Motion Design\",variant:(_ref17=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref17!==void 0?_ref17:\"p2vkQzeNU\",YVSMsjOSR:(_ref18=thumbnail2!==null&&thumbnail2!==void 0?thumbnail2:props.YVSMsjOSR)!==null&&_ref18!==void 0?_ref18:\"High Quality\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CHjZxuYHD,nzFXR5zWj,OrrEuVEEt,gSzkGwLRR,NePuPjZoe,Cn5r6uzUS,eGLqNfRae,McoG8Oniz,GDLGqXyHH,qU2Kiq3b3,L8Qaunphp,YVSMsjOSR,J7TY3X07t,HcPbWRxDs,PrxqraGed,GYvNOLrBk,f3BekrPeB,eF_8Z5jpO,dn4ePFQfH,aGhOO94qP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p2vkQzeNU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapu4xhfm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GYvNOLrBk){const res=await GYvNOLrBk(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"zDW8G5UjA\",\"Fd4NMgCwh\",\"k7j_8nWP7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"zDW8G5UjA\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Fd4NMgCwh\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"k7j_8nWP7\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"etrr9izfS\")return true;return false;};const isDisplayed5=value=>{if(baseVariant===\"etrr9izfS\")return false;return value;};const isDisplayed6=()=>{if(baseVariant===\"etrr9izfS\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _dn4ePFQfH_borderBottomWidth,_dn4ePFQfH_borderLeftWidth,_dn4ePFQfH_borderRightWidth,_dn4ePFQfH_borderTopWidth;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-71h88u\",className,classNames),\"data-framer-name\":\"Case Study\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p2vkQzeNU\",onTap:onTapu4xhfm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({etrr9izfS:{\"data-framer-name\":\"My Heroes\"},Fd4NMgCwh:{\"data-framer-name\":\"Mind Animation\"},k7j_8nWP7:{\"data-framer-name\":\"Rootle 1st Feature\"},zDW8G5UjA:{\"data-framer-name\":\"With YT Video\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xts0e9\",layoutDependency:layoutDependency,layoutId:\"Cdjd3JtwJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lj0ic9\",layoutDependency:layoutDependency,layoutId:\"CycdzSJQb\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{Fd4NMgCwh:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||246)-0-183)/2+0+0)+0+0+0),pixelHeight:955,pixelWidth:1929,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(CHjZxuYHD),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-jeusys\",layoutDependency:layoutDependency,layoutId:\"kGUsx9dCa\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{etrr9izfS:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({etrr9izfS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||242)-0-179)/2+0+0)+0+0+0),pixelHeight:955,pixelWidth:1929,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(CHjZxuYHD),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8g5doy-container\",layoutDependency:layoutDependency,layoutId:\"J1A5sEhEJ-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"J1A5sEhEJ\",isMixedBorderRadius:false,isRed:true,layoutId:\"J1A5sEhEJ\",play:\"Off\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:YVSMsjOSR,topLeftRadius:12,topRightRadius:12,url:L8Qaunphp,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tma4j-container\",\"data-framer-name\":\"Learning and Memory.riv\",layoutDependency:layoutDependency,layoutId:\"w7l47hz55-container\",name:\"Learning and Memory.riv\",children:/*#__PURE__*/_jsx(RivePlayer,{alignment:\"center\",artboard:\"Learning and memory Animated\",autoplay:true,fit:\"contain\",height:\"100%\",id:\"w7l47hz55\",inputsJSON:'[{\"name\":\"Head\",\"type\":\"Boolean\",\"value\":false}]',isTouchScrollEnabled:false,layoutId:\"w7l47hz55\",name:\"Learning and Memory.riv\",play:true,playOnCanvas:true,src:\"https://framerusercontent.com/assets/Sq2SxJuxfkgdT25GGQ3wVoFMi3o.riv\",stateMachines:\"State Machine 1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hvsto-container\",layoutDependency:layoutDependency,layoutId:\"A8gWV5MUl-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:J7TY3X07t,id:\"A8gWV5MUl\",layoutId:\"A8gWV5MUl\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mszruy\",layoutDependency:layoutDependency,layoutId:\"p3KRdJOm5\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cb4952\",\"data-framer-name\":\"Frame 1116606912\",layoutDependency:layoutDependency,layoutId:\"UKKiqVyL_\",children:[Cn5r6uzUS&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m4x12k\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606893\",layoutDependency:layoutDependency,layoutId:\"giv_A3H0z\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(116, 119, 141))\"},children:\"UX Design\"})}),className:\"framer-16kcty1\",\"data-framer-name\":\"UX Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"g5jGMfsIo\",style:{\"--extracted-r6o4lv\":\"rgb(116, 119, 141)\",\"--framer-paragraph-spacing\":\"0px\"},text:eGLqNfRae,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed5(GDLGqXyHH)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18jqey4\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606895\",layoutDependency:layoutDependency,layoutId:\"B8_Io8mzN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(116, 119, 141))\"},children:\"Motion Design\"})}),className:\"framer-dx3c68\",\"data-framer-name\":\"Motion Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"nnFufWDZE\",style:{\"--extracted-r6o4lv\":\"rgb(116, 119, 141)\",\"--framer-paragraph-spacing\":\"0px\"},text:qU2Kiq3b3,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ef08zn\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"lYpClSi64\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etbrp4\",\"data-framer-name\":\"Frame 1116607136\",layoutDependency:layoutDependency,layoutId:\"QE6Ni1uGT\",children:[isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qjleh\",\"data-framer-name\":\"Group 39245\",layoutDependency:layoutDependency,layoutId:\"D_1GZpgvU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uy6f1k\",\"data-border\":true,\"data-framer-name\":\"Ellipse 14300\",layoutDependency:layoutDependency,layoutId:\"wfKH7VPre\",style:{\"--border-bottom-width\":\"0.5517241358757019px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"0.5517241358757019px\",\"--border-right-width\":\"0.5517241358757019px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5517241358757019px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||246)-0-183)/2+0+0)+0+11+0+0+0+0+0+1.103515625),sizes:\"29.931px\",...toResponsiveImage(nzFXR5zWj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1bt520z\",\"data-framer-name\":\"image 377\",layoutDependency:layoutDependency,layoutId:\"FddrCyW8k\",...addPropertyOverrides({Fd4NMgCwh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||628)-0-712)/2+0+0)+0+540+0+0+0+0+0+1.103515625),sizes:\"29.931px\",...toResponsiveImage(nzFXR5zWj),...{positionX:\"center\",positionY:\"center\"}}},k7j_8nWP7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||440)-0-524.1166306695465)/2+0+0)+0+352.11663066954645+0+0+0+0+0+1.103515625),sizes:\"29.931px\",...toResponsiveImage(nzFXR5zWj),...{positionX:\"center\",positionY:\"center\"}}},zDW8G5UjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-405)/2+0+0)+0+233+0+0+0+0+0+1.103515625),sizes:\"29.931px\",...toResponsiveImage(nzFXR5zWj),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\"},children:\"Client Name\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\"},children:\"WebApp Case Study\"})]}),className:\"framer-563vhq\",\"data-framer-name\":\"Client Name WebApp Case Study\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"iovXPNTdO\",style:{\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-aGhOO94qP-jjrxSo4w8\":aGhOO94qP,opacity:.7},text:OrrEuVEEt,variants:{etrr9izfS:{\"--variable-reference-aGhOO94qP-jjrxSo4w8\":aGhOO94qP}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({etrr9izfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-aGhOO94qP-jjrxSo4w8) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\"},children:\"Client NameWebApp Case Study\"})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({etrr9izfS:{height:24,width:\"24px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||242)-0-179)/2+0+0)+0+11+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s6tnnx-container\",layoutDependency:layoutDependency,layoutId:\"WUebDMZGj-container\",children:/*#__PURE__*/_jsx(SocialMediaIcons,{height:\"100%\",id:\"WUebDMZGj\",layoutId:\"WUebDMZGj\",lQgLZtfN5:PrxqraGed,qQ96bSH_3:true,style:{height:\"100%\",width:\"100%\"},variant:HcPbWRxDs,width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pe9bbj\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606895\",layoutDependency:layoutDependency,layoutId:\"VXgwsdANN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(116, 119, 141))\"},children:\"2024\"})}),className:\"framer-qszy0p\",\"data-framer-name\":\"2024\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"KxK6_7ILO\",style:{\"--extracted-r6o4lv\":\"rgb(116, 119, 141)\",\"--framer-paragraph-spacing\":\"0px\"},text:gSzkGwLRR,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed5(NePuPjZoe)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-28khey\",\"data-framer-name\":\"Frame 1116606912\",layoutDependency:layoutDependency,layoutId:\"rL3UGcgHL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nsve67\",layoutDependency:layoutDependency,layoutId:\"rQd6Z6xWO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gidqmt\",layoutDependency:layoutDependency,layoutId:\"TYJ0lyiCT\",children:[Cn5r6uzUS&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-102ayv5\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606893\",layoutDependency:layoutDependency,layoutId:\"SQ3hq1hRc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(116, 119, 141, 1))\"},children:\"UX Design\"})})}),className:\"framer-vd9of\",\"data-framer-name\":\"UX Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ed3HhPBqH\",style:{\"--extracted-1w3ko1f\":\"rgba(116, 119, 141, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:eGLqNfRae,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g6p6ot\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606894\",layoutDependency:layoutDependency,layoutId:\"fK_nJM7YH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(116, 119, 141, 1))\"},children:\"UI Design\"})})}),className:\"framer-qsw7hx\",\"data-framer-name\":\"UI Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"bNleKxHj3\",style:{\"--extracted-1w3ko1f\":\"rgba(116, 119, 141, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:McoG8Oniz,verticalAlignment:\"top\",withExternalLayout:true})})]}),GDLGqXyHH&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ea8i6i\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606895\",layoutDependency:layoutDependency,layoutId:\"uYjmaKtfQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(116, 119, 141, 1))\"},children:\"Motion Design\"})})}),className:\"framer-1kjdib7\",\"data-framer-name\":\"Motion Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"stRsRGgE8\",style:{\"--extracted-1w3ko1f\":\"rgba(116, 119, 141, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:qU2Kiq3b3,verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed5(f3BekrPeB)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4omh9n\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606912\",layoutDependency:layoutDependency,layoutId:\"xS4zZQVnF\",style:{\"--border-bottom-width\":`${(_dn4ePFQfH_borderBottomWidth=dn4ePFQfH.borderBottomWidth)!==null&&_dn4ePFQfH_borderBottomWidth!==void 0?_dn4ePFQfH_borderBottomWidth:dn4ePFQfH.borderWidth}px`,\"--border-color\":dn4ePFQfH.borderColor,\"--border-left-width\":`${(_dn4ePFQfH_borderLeftWidth=dn4ePFQfH.borderLeftWidth)!==null&&_dn4ePFQfH_borderLeftWidth!==void 0?_dn4ePFQfH_borderLeftWidth:dn4ePFQfH.borderWidth}px`,\"--border-right-width\":`${(_dn4ePFQfH_borderRightWidth=dn4ePFQfH.borderRightWidth)!==null&&_dn4ePFQfH_borderRightWidth!==void 0?_dn4ePFQfH_borderRightWidth:dn4ePFQfH.borderWidth}px`,\"--border-style\":dn4ePFQfH.borderStyle,\"--border-top-width\":`${(_dn4ePFQfH_borderTopWidth=dn4ePFQfH.borderTopWidth)!==null&&_dn4ePFQfH_borderTopWidth!==void 0?_dn4ePFQfH_borderTopWidth:dn4ePFQfH.borderWidth}px`},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1676je0\",layoutDependency:layoutDependency,layoutId:\"CWdbI9LNo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-al29av\",layoutDependency:layoutDependency,layoutId:\"ER8Ui7FMY\",children:Cn5r6uzUS&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xllddo\",\"data-border\":true,\"data-framer-name\":\"Frame 1116606893\",layoutDependency:layoutDependency,layoutId:\"Xrtjqrjxj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(116, 119, 141))\"},children:\"UX Design\"})}),className:\"framer-19v8kf8\",\"data-framer-name\":\"UX Design\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ktrk2gpa6\",style:{\"--extracted-r6o4lv\":\"rgb(116, 119, 141)\",\"--framer-paragraph-spacing\":\"0px\"},text:eF_8Z5jpO,verticalAlignment:\"top\",withExternalLayout:true})})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K9LG1.framer-2ppxc4, .framer-K9LG1 .framer-2ppxc4 { display: block; }\",\".framer-K9LG1.framer-71h88u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 296px; }\",\".framer-K9LG1 .framer-1xts0e9, .framer-K9LG1 .framer-mszruy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-lj0ic9 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-jeusys { aspect-ratio: 2 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 1px; }\",\".framer-K9LG1 .framer-8g5doy-container { flex: 1 0 0px; height: 223px; position: relative; width: 1px; }\",\".framer-K9LG1 .framer-1tma4j-container { flex: 1 0 0px; height: 530px; position: relative; width: 1px; }\",\".framer-K9LG1 .framer-2hvsto-container { aspect-ratio: 1.1575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 396px; }\",\".framer-K9LG1 .framer-1cb4952 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-m4x12k, .framer-K9LG1 .framer-18jqey4, .framer-K9LG1 .framer-1pe9bbj, .framer-K9LG1 .framer-102ayv5, .framer-K9LG1 .framer-1g6p6ot, .framer-K9LG1 .framer-1ea8i6i, .framer-K9LG1 .framer-1xllddo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-K9LG1 .framer-16kcty1, .framer-K9LG1 .framer-dx3c68, .framer-K9LG1 .framer-qszy0p, .framer-K9LG1 .framer-vd9of, .framer-K9LG1 .framer-qsw7hx, .framer-K9LG1 .framer-1kjdib7, .framer-K9LG1 .framer-19v8kf8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-K9LG1 .framer-1ef08zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-1etbrp4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-6qjleh { flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-K9LG1 .framer-uy6f1k { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; top: 0px; width: 32px; }\",\".framer-K9LG1 .framer-1bt520z { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 1px; position: absolute; top: 1px; width: 30px; }\",\".framer-K9LG1 .framer-563vhq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-K9LG1 .framer-s6tnnx-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-K9LG1 .framer-28khey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 41px; position: relative; width: 100%; }\",\".framer-K9LG1 .framer-1nsve67, .framer-K9LG1 .framer-1676je0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-K9LG1 .framer-gidqmt, .framer-K9LG1 .framer-al29av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K9LG1 .framer-4omh9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 41px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K9LG1.framer-71h88u, .framer-K9LG1 .framer-1xts0e9, .framer-K9LG1 .framer-lj0ic9, .framer-K9LG1 .framer-mszruy, .framer-K9LG1 .framer-1cb4952, .framer-K9LG1 .framer-m4x12k, .framer-K9LG1 .framer-18jqey4, .framer-K9LG1 .framer-1ef08zn, .framer-K9LG1 .framer-1etbrp4, .framer-K9LG1 .framer-1pe9bbj, .framer-K9LG1 .framer-28khey, .framer-K9LG1 .framer-1nsve67, .framer-K9LG1 .framer-gidqmt, .framer-K9LG1 .framer-102ayv5, .framer-K9LG1 .framer-1g6p6ot, .framer-K9LG1 .framer-1ea8i6i, .framer-K9LG1 .framer-4omh9n, .framer-K9LG1 .framer-1676je0, .framer-K9LG1 .framer-al29av, .framer-K9LG1 .framer-1xllddo { gap: 0px; } .framer-K9LG1.framer-71h88u > *, .framer-K9LG1 .framer-1xts0e9 > *, .framer-K9LG1 .framer-mszruy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-K9LG1.framer-71h88u > :first-child, .framer-K9LG1 .framer-1xts0e9 > :first-child, .framer-K9LG1 .framer-mszruy > :first-child, .framer-K9LG1 .framer-1ef08zn > :first-child { margin-top: 0px; } .framer-K9LG1.framer-71h88u > :last-child, .framer-K9LG1 .framer-1xts0e9 > :last-child, .framer-K9LG1 .framer-mszruy > :last-child, .framer-K9LG1 .framer-1ef08zn > :last-child { margin-bottom: 0px; } .framer-K9LG1 .framer-lj0ic9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-K9LG1 .framer-lj0ic9 > :first-child, .framer-K9LG1 .framer-1cb4952 > :first-child, .framer-K9LG1 .framer-m4x12k > :first-child, .framer-K9LG1 .framer-18jqey4 > :first-child, .framer-K9LG1 .framer-1etbrp4 > :first-child, .framer-K9LG1 .framer-1pe9bbj > :first-child, .framer-K9LG1 .framer-28khey > :first-child, .framer-K9LG1 .framer-1nsve67 > :first-child, .framer-K9LG1 .framer-gidqmt > :first-child, .framer-K9LG1 .framer-102ayv5 > :first-child, .framer-K9LG1 .framer-1g6p6ot > :first-child, .framer-K9LG1 .framer-1ea8i6i > :first-child, .framer-K9LG1 .framer-4omh9n > :first-child, .framer-K9LG1 .framer-1676je0 > :first-child, .framer-K9LG1 .framer-al29av > :first-child, .framer-K9LG1 .framer-1xllddo > :first-child { margin-left: 0px; } .framer-K9LG1 .framer-lj0ic9 > :last-child, .framer-K9LG1 .framer-1cb4952 > :last-child, .framer-K9LG1 .framer-m4x12k > :last-child, .framer-K9LG1 .framer-18jqey4 > :last-child, .framer-K9LG1 .framer-1etbrp4 > :last-child, .framer-K9LG1 .framer-1pe9bbj > :last-child, .framer-K9LG1 .framer-28khey > :last-child, .framer-K9LG1 .framer-1nsve67 > :last-child, .framer-K9LG1 .framer-gidqmt > :last-child, .framer-K9LG1 .framer-102ayv5 > :last-child, .framer-K9LG1 .framer-1g6p6ot > :last-child, .framer-K9LG1 .framer-1ea8i6i > :last-child, .framer-K9LG1 .framer-4omh9n > :last-child, .framer-K9LG1 .framer-1676je0 > :last-child, .framer-K9LG1 .framer-al29av > :last-child, .framer-K9LG1 .framer-1xllddo > :last-child { margin-right: 0px; } .framer-K9LG1 .framer-1cb4952 > *, .framer-K9LG1 .framer-m4x12k > *, .framer-K9LG1 .framer-18jqey4 > *, .framer-K9LG1 .framer-1etbrp4 > *, .framer-K9LG1 .framer-1pe9bbj > *, .framer-K9LG1 .framer-28khey > *, .framer-K9LG1 .framer-102ayv5 > *, .framer-K9LG1 .framer-1g6p6ot > *, .framer-K9LG1 .framer-1ea8i6i > *, .framer-K9LG1 .framer-4omh9n > *, .framer-K9LG1 .framer-1xllddo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-K9LG1 .framer-1ef08zn > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-K9LG1 .framer-1nsve67 > *, .framer-K9LG1 .framer-gidqmt > *, .framer-K9LG1 .framer-1676je0 > *, .framer-K9LG1 .framer-al29av > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-K9LG1.framer-v-12sd5er.framer-71h88u { width: 396px; }\",\".framer-K9LG1.framer-v-12sd5er .framer-lj0ic9 { width: min-content; }\",\".framer-K9LG1.framer-v-1e012wk .framer-jeusys { height: var(--framer-aspect-ratio-supported, 148px); }\",\".framer-K9LG1.framer-v-1e012wk .framer-mszruy { gap: 4px; }\",\".framer-K9LG1.framer-v-1e012wk .framer-1cb4952, .framer-K9LG1.framer-v-1e012wk .framer-563vhq { order: 1; }\",\".framer-K9LG1.framer-v-1e012wk .framer-1ef08zn { order: 0; }\",\".framer-K9LG1.framer-v-1e012wk .framer-s6tnnx-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K9LG1.framer-v-1e012wk .framer-mszruy { gap: 0px; } .framer-K9LG1.framer-v-1e012wk .framer-mszruy > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-K9LG1.framer-v-1e012wk .framer-mszruy > :first-child { margin-top: 0px; } .framer-K9LG1.framer-v-1e012wk .framer-mszruy > :last-child { margin-bottom: 0px; } }\",'.framer-K9LG1[data-border=\"true\"]::after, .framer-K9LG1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 246\n * @framerIntrinsicWidth 296\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zDW8G5UjA\":{\"layout\":[\"fixed\",\"auto\"]},\"Fd4NMgCwh\":{\"layout\":[\"fixed\",\"auto\"]},\"k7j_8nWP7\":{\"layout\":[\"fixed\",\"auto\"]},\"etrr9izfS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CHjZxuYHD\":\"image4\",\"nzFXR5zWj\":\"image2\",\"OrrEuVEEt\":\"title\",\"gSzkGwLRR\":\"year\",\"NePuPjZoe\":\"visible2\",\"Cn5r6uzUS\":\"visible\",\"eGLqNfRae\":\"title2\",\"McoG8Oniz\":\"title3\",\"GDLGqXyHH\":\"visible3\",\"qU2Kiq3b3\":\"title4\",\"L8Qaunphp\":\"video\",\"YVSMsjOSR\":\"thumbnail2\",\"J7TY3X07t\":\"_1StHTML\",\"HcPbWRxDs\":\"variant1\",\"PrxqraGed\":\"link\",\"GYvNOLrBk\":\"click\",\"f3BekrPeB\":\"lockedOrNot\",\"eF_8Z5jpO\":\"locked\",\"dn4ePFQfH\":\"border\",\"aGhOO94qP\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjjrxSo4w8=withCSS(Component,css,\"framer-K9LG1\");export default FramerjjrxSo4w8;FramerjjrxSo4w8.displayName=\"Case Study\";FramerjjrxSo4w8.defaultProps={height:246,width:296};addPropertyControls(FramerjjrxSo4w8,{variant:{options:[\"p2vkQzeNU\",\"zDW8G5UjA\",\"Fd4NMgCwh\",\"k7j_8nWP7\",\"etrr9izfS\"],optionTitles:[\"Case Study\",\"With YT Video\",\"Mind Animation\",\"Rootle 1st Feature\",\"My Heroes\"],title:\"Variant\",type:ControlType.Enum},CHjZxuYHD:{__defaultAssetReference:\"data:framer/asset-reference,NKSmHVadoLRHyDHJ3CILItfNQU.png?originalFilename=Blox+Image.png&preferredSize=full\",title:\"Image 4\",type:ControlType.ResponsiveImage},nzFXR5zWj:{__defaultAssetReference:\"data:framer/asset-reference,tpH9LJlF8tvGRjGbD4FizfIdY.png?originalFilename=image+377.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},OrrEuVEEt:{defaultValue:\"Client NameWebApp Case Study\",displayTextArea:false,title:\"Title\",type:ControlType.String},gSzkGwLRR:{defaultValue:\"2024\",displayTextArea:false,title:\"Year\",type:ControlType.String},NePuPjZoe:{defaultValue:true,title:\"Visible 2\",type:ControlType.Boolean},Cn5r6uzUS:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},eGLqNfRae:{defaultValue:\"UX Design\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},McoG8Oniz:{defaultValue:\"UI Design\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},GDLGqXyHH:{defaultValue:true,title:\"Visible 3\",type:ControlType.Boolean},qU2Kiq3b3:{defaultValue:\"Motion Design\",displayTextArea:false,title:\"Title 4\",type:ControlType.String},L8Qaunphp:{defaultValue:\"https://youtu.be/XfwLq-aO37U?si=rRAVHohEu7djnMNN\",title:\"Video\",type:ControlType.String},YVSMsjOSR:(YouTubeControls===null||YouTubeControls===void 0?void 0:YouTubeControls[\"thumbnail\"])&&{...YouTubeControls[\"thumbnail\"],defaultValue:\"High Quality\",description:undefined,hidden:undefined,title:\"Thumbnail 2\"},J7TY3X07t:{defaultValue:'<iframe style=\"border: none\" width=\"647\" height=\"562\" src=\"https://rive.app/s/RFDTHdPZ2ECYx6aUcyI9Ig/embed\" allowfullscreen></iframe>',displayTextArea:true,title:\"1st HTML\",type:ControlType.String},HcPbWRxDs:(SocialMediaIconsControls===null||SocialMediaIconsControls===void 0?void 0:SocialMediaIconsControls[\"variant\"])&&{...SocialMediaIconsControls[\"variant\"],defaultValue:\"t1LkeQwOz\",description:undefined,hidden:undefined,title:\"Variant\"},PrxqraGed:{title:\"Link\",type:ControlType.Link},GYvNOLrBk:{title:\"Click\",type:ControlType.EventHandler},f3BekrPeB:{defaultValue:false,title:\"Locked or not\",type:ControlType.Boolean},eF_8Z5jpO:{defaultValue:\"\uD83D\uDEA7 Coming Soon\",displayTextArea:false,title:\"Locked\",type:ControlType.String},dn4ePFQfH:{defaultValue:{borderBottomWidth:0,borderColor:\"rgb(227, 227, 227)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border\",type:ControlType.Border},aGhOO94qP:{defaultValue:20,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerjjrxSo4w8,[{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\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"}]},...YouTubeFonts,...RivePlayerFonts,...EmbedFonts,...SocialMediaIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjjrxSo4w8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zDW8G5UjA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fd4NMgCwh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k7j_8nWP7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"etrr9izfS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"CHjZxuYHD\\\":\\\"image4\\\",\\\"nzFXR5zWj\\\":\\\"image2\\\",\\\"OrrEuVEEt\\\":\\\"title\\\",\\\"gSzkGwLRR\\\":\\\"year\\\",\\\"NePuPjZoe\\\":\\\"visible2\\\",\\\"Cn5r6uzUS\\\":\\\"visible\\\",\\\"eGLqNfRae\\\":\\\"title2\\\",\\\"McoG8Oniz\\\":\\\"title3\\\",\\\"GDLGqXyHH\\\":\\\"visible3\\\",\\\"qU2Kiq3b3\\\":\\\"title4\\\",\\\"L8Qaunphp\\\":\\\"video\\\",\\\"YVSMsjOSR\\\":\\\"thumbnail2\\\",\\\"J7TY3X07t\\\":\\\"_1StHTML\\\",\\\"HcPbWRxDs\\\":\\\"variant1\\\",\\\"PrxqraGed\\\":\\\"link\\\",\\\"GYvNOLrBk\\\":\\\"click\\\",\\\"f3BekrPeB\\\":\\\"lockedOrNot\\\",\\\"eF_8Z5jpO\\\":\\\"locked\\\",\\\"dn4ePFQfH\\\":\\\"border\\\",\\\"aGhOO94qP\\\":\\\"fontSize\\\"}\",\"framerIntrinsicWidth\":\"296\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"246\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jjrxSo4w8.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CaseStudy from\"https://framerusercontent.com/modules/uWgoad1rErmumBWVLCWj/uD5U8p5tVsdW2tPKIjYn/jjrxSo4w8.js\";const CaseStudyFonts=getFonts(CaseStudy);const CaseStudyControls=getPropertyControls(CaseStudy);const cycleOrder=[\"bkt14kjU3\",\"NUcj6C5kC\",\"xHR2oXsGg\",\"Etd1OiQSN\",\"h8P54usKY\"];const serializationHash=\"framer-CWG8z\";const variantClassNames={bkt14kjU3:\"framer-v-kz0xkh\",Etd1OiQSN:\"framer-v-gxh8uq\",h8P54usKY:\"framer-v-njc7uy\",NUcj6C5kC:\"framer-v-14yhftf\",xHR2oXsGg:\"framer-v-1vhxugf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Case Study\":\"p2vkQzeNU\",\"Mind Animation\":\"Fd4NMgCwh\",\"My Heroes\":\"etrr9izfS\",\"Rootle 1st Feature\":\"k7j_8nWP7\",\"With YT Video\":\"zDW8G5UjA\"};const humanReadableEnumMap1={Dribbble:\"nxvHBipGE\",Instagram:\"t1LkeQwOz\",Linkedin:\"SOnQEnx1q\"};const humanReadableVariantMap={\"My Heroes Card\":\"NUcj6C5kC\",\"Tablet Variant\":\"h8P54usKY\",\"Variant 4\":\"Etd1OiQSN\",Desktop:\"bkt14kjU3\",Locked:\"xHR2oXsGg\"};const getProps=({_1StHTML,background,fontSize,height,icon,id,image2,image4,image5,link,link2,locked,lockedOrNot,newTab,thumbnail2,title,title2,title3,title4,variant2,video,visible,visible2,visible3,width,year,...props})=>{return{...props,AST9bODqS:title2??props.AST9bODqS??\"UX Design\",CBdWa4Re_:link2??props.CBdWa4Re_,cq09mE_9J:visible3??props.cq09mE_9J??true,cqXRl3yAC:locked??props.cqXRl3yAC??\"\uD83D\uDEA7 Coming Soon\",DrLDNUtUa:visible2??props.DrLDNUtUa??true,FgqO3lmJd:fontSize??props.FgqO3lmJd??20,G7s7ZTb_w:newTab??props.G7s7ZTb_w??true,J2GxQ3xFM:visible??props.J2GxQ3xFM??true,kKwR4AVAe:lockedOrNot??props.kKwR4AVAe,lWVuYnpaa:image2??props.lWVuYnpaa??{pixelHeight:373,pixelWidth:373,src:\"https://framerusercontent.com/images/tpH9LJlF8tvGRjGbD4FizfIdY.png\"},MAZgwrjvM:link??props.MAZgwrjvM,mqJ9DTqPJ:image5??props.mqJ9DTqPJ??{pixelHeight:353,pixelWidth:750,src:\"https://framerusercontent.com/images/eMZ58BlEnTNa4LQisdNm3Cw6OY0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eMZ58BlEnTNa4LQisdNm3Cw6OY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/eMZ58BlEnTNa4LQisdNm3Cw6OY0.png 750w\"},NLeOZlivU:title3??props.NLeOZlivU??\"UI Design\",nOBrW69Wd:image4??props.nOBrW69Wd??{pixelHeight:955,pixelWidth:1929,src:\"https://framerusercontent.com/images/NKSmHVadoLRHyDHJ3CILItfNQU.png\"},olWZ5mEtg:video??props.olWZ5mEtg??\"https://youtu.be/XfwLq-aO37U?si=rRAVHohEu7djnMNN\",OwhcdInjg:humanReadableEnumMap[variant2]??variant2??props.OwhcdInjg??\"p2vkQzeNU\",PfZW0Go6q:title4??props.PfZW0Go6q??\"Motion Design\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bkt14kjU3\",WOtho9vJ6:_1StHTML??props.WOtho9vJ6??'<iframe style=\"border: none\" width=\"647\" height=\"562\" src=\"https://rive.app/s/RFDTHdPZ2ECYx6aUcyI9Ig/embed\" allowfullscreen></iframe>',WPBdziJzZ:title??props.WPBdziJzZ??\"Client NameWebApp Case Study\",YALKF6SkU:humanReadableEnumMap1[icon]??icon??props.YALKF6SkU??\"t1LkeQwOz\",yjmCZczhB:thumbnail2??props.yjmCZczhB??\"High Quality\",zQkralGXa:year??props.zQkralGXa??\"2024\",zvQ7nFAqp:background??props.zvQ7nFAqp??\"rgb(255, 255, 255)\"};};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,lWVuYnpaa,WPBdziJzZ,J2GxQ3xFM,DrLDNUtUa,cq09mE_9J,AST9bODqS,NLeOZlivU,PfZW0Go6q,zQkralGXa,nOBrW69Wd,MAZgwrjvM,OwhcdInjg,olWZ5mEtg,yjmCZczhB,WOtho9vJ6,mqJ9DTqPJ,YALKF6SkU,CBdWa4Re_,G7s7ZTb_w,zvQ7nFAqp,kKwR4AVAe,cqXRl3yAC,FgqO3lmJd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bkt14kjU3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1oyw5ff=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Etd1OiQSN\");});const onMouseEnter14yjhqn=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"xHR2oXsGg\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"xHR2oXsGg\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Etd1OiQSN:{value:transition2},h8P54usKY:{value:transition2},xHR2oXsGg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:MAZgwrjvM,motionChild:true,nodeId:\"bkt14kjU3\",openInNewTab:false,scopeId:\"nH8wglhRX\",...addPropertyOverrides({NUcj6C5kC:{openInNewTab:G7s7ZTb_w}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-kz0xkh\",className,classNames)} framer-1m76au9`,\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bkt14kjU3\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(241, 233, 228)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:zvQ7nFAqp,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"1px 1px 2px 0px rgba(197, 196, 196, 0.1), 3px 2px 4px 0px rgba(197, 196, 196, 0.09), 7px 5px 5px 0px rgba(197, 196, 196, 0.05), 12px 9px 6px 0px rgba(197, 196, 196, 0.01), 19px 14px 7px 0px rgba(197, 196, 196, 0)\",...style},variants:{Etd1OiQSN:{backgroundColor:\"rgb(255, 255, 255)\"},h8P54usKY:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({Etd1OiQSN:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":true,onMouseEnter:onMouseEnter14yjhqn},h8P54usKY:{\"data-framer-name\":\"Tablet Variant\"},NUcj6C5kC:{\"data-framer-name\":\"My Heroes Card\"},xHR2oXsGg:{\"data-framer-name\":\"Locked\",\"data-highlight\":true,onMouseLeave:onMouseLeave1oyw5ff}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:246,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+16+(((componentViewport?.height||314)-32-246)/2+0+0),...addPropertyOverrides({h8P54usKY:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||278.5)-32-246)/2+0+0)},NUcj6C5kC:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||282)-32-246)/2+0+0)},xHR2oXsGg:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||314)-32-246)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hu24li-container\",layoutDependency:layoutDependency,layoutId:\"lys1h8Aqr-container\",nodeId:\"lys1h8Aqr\",rendersWithMotion:true,scopeId:\"nH8wglhRX\",children:/*#__PURE__*/_jsx(CaseStudy,{aGhOO94qP:20,CHjZxuYHD:toResponsiveImage(nOBrW69Wd),Cn5r6uzUS:J2GxQ3xFM,dn4ePFQfH:{borderBottomWidth:0,borderColor:\"rgb(227, 227, 227)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},eF_8Z5jpO:\"\uD83D\uDEA7 Coming Soon\",eGLqNfRae:AST9bODqS,f3BekrPeB:false,GDLGqXyHH:cq09mE_9J,gSzkGwLRR:zQkralGXa,HcPbWRxDs:\"t1LkeQwOz\",height:\"100%\",id:\"lys1h8Aqr\",J7TY3X07t:WOtho9vJ6,L8Qaunphp:olWZ5mEtg,layoutId:\"lys1h8Aqr\",McoG8Oniz:NLeOZlivU,NePuPjZoe:DrLDNUtUa,nzFXR5zWj:toResponsiveImage(lWVuYnpaa),OrrEuVEEt:WPBdziJzZ,qU2Kiq3b3:PfZW0Go6q,style:{width:\"100%\"},variant:OwhcdInjg,width:\"100%\",YVSMsjOSR:yjmCZczhB,...addPropertyOverrides({h8P54usKY:{eF_8Z5jpO:cqXRl3yAC,f3BekrPeB:kKwR4AVAe},NUcj6C5kC:{aGhOO94qP:FgqO3lmJd,CHjZxuYHD:toResponsiveImage(mqJ9DTqPJ),HcPbWRxDs:YALKF6SkU,PrxqraGed:CBdWa4Re_,variant:\"etrr9izfS\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:344,pixelWidth:398,src:\"https://framerusercontent.com/images/eXo1p51qpRkig5ghsmEAQNFxt1Y.png\"},className:\"framer-wd39ph\",layoutDependency:layoutDependency,layoutId:\"Fp0_Sm1Fq\",...addPropertyOverrides({xHR2oXsGg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:344,pixelWidth:398,src:\"https://framerusercontent.com/images/eXo1p51qpRkig5ghsmEAQNFxt1Y.png\"}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif'},children:\"\uD83D\uDEA7 \"}),\"Coming Soon\"]})}),className:\"framer-1ic2wpg\",fonts:[\"GF;Instrument Sans-regular\",\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r9gUTIDWF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CWG8z.framer-1m76au9, .framer-CWG8z .framer-1m76au9 { display: block; }\",\".framer-CWG8z.framer-kz0xkh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: 400px; }\",\".framer-CWG8z .framer-1hu24li-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CWG8z .framer-wd39ph { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-CWG8z .framer-1ic2wpg { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CWG8z.framer-kz0xkh, .framer-CWG8z .framer-wd39ph { gap: 0px; } .framer-CWG8z.framer-kz0xkh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CWG8z.framer-kz0xkh > :first-child, .framer-CWG8z .framer-wd39ph > :first-child { margin-top: 0px; } .framer-CWG8z.framer-kz0xkh > :last-child, .framer-CWG8z .framer-wd39ph > :last-child { margin-bottom: 0px; } .framer-CWG8z .framer-wd39ph > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-CWG8z.framer-v-1vhxugf.framer-kz0xkh { flex-direction: row; justify-content: flex-start; }\",\".framer-CWG8z.framer-v-1vhxugf .framer-1hu24li-container { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-CWG8z.framer-v-1vhxugf .framer-wd39ph { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CWG8z.framer-v-1vhxugf.framer-kz0xkh { gap: 0px; } .framer-CWG8z.framer-v-1vhxugf.framer-kz0xkh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CWG8z.framer-v-1vhxugf.framer-kz0xkh > :first-child { margin-left: 0px; } .framer-CWG8z.framer-v-1vhxugf.framer-kz0xkh > :last-child { margin-right: 0px; } }\",\".framer-CWG8z.framer-v-njc7uy.framer-kz0xkh { width: 329px; }\",'.framer-CWG8z[data-border=\"true\"]::after, .framer-CWG8z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 314\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NUcj6C5kC\":{\"layout\":[\"fixed\",\"auto\"]},\"xHR2oXsGg\":{\"layout\":[\"fixed\",\"auto\"]},\"Etd1OiQSN\":{\"layout\":[\"fixed\",\"auto\"]},\"h8P54usKY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"lWVuYnpaa\":\"image2\",\"WPBdziJzZ\":\"title\",\"J2GxQ3xFM\":\"visible\",\"DrLDNUtUa\":\"visible2\",\"cq09mE_9J\":\"visible3\",\"AST9bODqS\":\"title2\",\"NLeOZlivU\":\"title3\",\"PfZW0Go6q\":\"title4\",\"zQkralGXa\":\"year\",\"nOBrW69Wd\":\"image4\",\"MAZgwrjvM\":\"link\",\"OwhcdInjg\":\"variant2\",\"olWZ5mEtg\":\"video\",\"yjmCZczhB\":\"thumbnail2\",\"WOtho9vJ6\":\"_1StHTML\",\"mqJ9DTqPJ\":\"image5\",\"YALKF6SkU\":\"icon\",\"CBdWa4Re_\":\"link2\",\"G7s7ZTb_w\":\"newTab\",\"zvQ7nFAqp\":\"background\",\"kKwR4AVAe\":\"lockedOrNot\",\"cqXRl3yAC\":\"locked\",\"FgqO3lmJd\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernH8wglhRX=withCSS(Component,css,\"framer-CWG8z\");export default FramernH8wglhRX;FramernH8wglhRX.displayName=\"Work Card Component\";FramernH8wglhRX.defaultProps={height:314,width:400};addPropertyControls(FramernH8wglhRX,{variant:{options:[\"bkt14kjU3\",\"NUcj6C5kC\",\"xHR2oXsGg\",\"Etd1OiQSN\",\"h8P54usKY\"],optionTitles:[\"Desktop\",\"My Heroes Card\",\"Locked\",\"Variant 4\",\"Tablet Variant\"],title:\"Variant\",type:ControlType.Enum},lWVuYnpaa:{__defaultAssetReference:\"data:framer/asset-reference,tpH9LJlF8tvGRjGbD4FizfIdY.png?originalFilename=image+377.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},WPBdziJzZ:{defaultValue:\"Client NameWebApp Case Study\",displayTextArea:false,title:\"Title\",type:ControlType.String},J2GxQ3xFM:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},DrLDNUtUa:{defaultValue:true,title:\"Visible 2\",type:ControlType.Boolean},cq09mE_9J:{defaultValue:true,title:\"Visible 3\",type:ControlType.Boolean},AST9bODqS:{defaultValue:\"UX Design\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},NLeOZlivU:{defaultValue:\"UI Design\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},PfZW0Go6q:{defaultValue:\"Motion Design\",displayTextArea:false,title:\"Title 4\",type:ControlType.String},zQkralGXa:{defaultValue:\"2024\",displayTextArea:false,title:\"Year\",type:ControlType.String},nOBrW69Wd:{__defaultAssetReference:\"data:framer/asset-reference,NKSmHVadoLRHyDHJ3CILItfNQU.png?originalFilename=Blox+Image.png&preferredSize=full\",title:\"Image 4\",type:ControlType.ResponsiveImage},MAZgwrjvM:{title:\"Link\",type:ControlType.Link},OwhcdInjg:CaseStudyControls?.[\"variant\"]&&{...CaseStudyControls[\"variant\"],defaultValue:\"p2vkQzeNU\",description:undefined,hidden:undefined,title:\"Variant 2\"},olWZ5mEtg:{defaultValue:\"https://youtu.be/XfwLq-aO37U?si=rRAVHohEu7djnMNN\",title:\"Video\",type:ControlType.String},yjmCZczhB:CaseStudyControls?.[\"YVSMsjOSR\"]&&{...CaseStudyControls[\"YVSMsjOSR\"],defaultValue:\"High Quality\",description:undefined,hidden:undefined,title:\"Thumbnail 2\"},WOtho9vJ6:{defaultValue:'<iframe style=\"border: none\" width=\"647\" height=\"562\" src=\"https://rive.app/s/RFDTHdPZ2ECYx6aUcyI9Ig/embed\" allowfullscreen></iframe>',displayTextArea:true,title:\"1 St HTML\",type:ControlType.String},mqJ9DTqPJ:{__defaultAssetReference:\"data:framer/asset-reference,eMZ58BlEnTNa4LQisdNm3Cw6OY0.png?originalFilename=Vijay+Verma.png&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage},YALKF6SkU:CaseStudyControls?.[\"HcPbWRxDs\"]&&{...CaseStudyControls[\"HcPbWRxDs\"],defaultValue:\"t1LkeQwOz\",description:undefined,hidden:undefined,title:\"Icon\"},CBdWa4Re_:{title:\"Link 2\",type:ControlType.Link},G7s7ZTb_w:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},zvQ7nFAqp:{defaultValue:\"rgb(255, 255, 255)\",title:\"Background\",type:ControlType.Color},kKwR4AVAe:{defaultValue:false,title:\"Locked Or Not\",type:ControlType.Boolean},cqXRl3yAC:{defaultValue:\"\uD83D\uDEA7 Coming Soon\",displayTextArea:false,title:\"Locked\",type:ControlType.String},FgqO3lmJd:{defaultValue:20,title:\"Font Size\",type:ControlType.Number}});addFonts(FramernH8wglhRX,[{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\"},{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\"}]},...CaseStudyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernH8wglhRX\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"lWVuYnpaa\\\":\\\"image2\\\",\\\"WPBdziJzZ\\\":\\\"title\\\",\\\"J2GxQ3xFM\\\":\\\"visible\\\",\\\"DrLDNUtUa\\\":\\\"visible2\\\",\\\"cq09mE_9J\\\":\\\"visible3\\\",\\\"AST9bODqS\\\":\\\"title2\\\",\\\"NLeOZlivU\\\":\\\"title3\\\",\\\"PfZW0Go6q\\\":\\\"title4\\\",\\\"zQkralGXa\\\":\\\"year\\\",\\\"nOBrW69Wd\\\":\\\"image4\\\",\\\"MAZgwrjvM\\\":\\\"link\\\",\\\"OwhcdInjg\\\":\\\"variant2\\\",\\\"olWZ5mEtg\\\":\\\"video\\\",\\\"yjmCZczhB\\\":\\\"thumbnail2\\\",\\\"WOtho9vJ6\\\":\\\"_1StHTML\\\",\\\"mqJ9DTqPJ\\\":\\\"image5\\\",\\\"YALKF6SkU\\\":\\\"icon\\\",\\\"CBdWa4Re_\\\":\\\"link2\\\",\\\"G7s7ZTb_w\\\":\\\"newTab\\\",\\\"zvQ7nFAqp\\\":\\\"background\\\",\\\"kKwR4AVAe\\\":\\\"lockedOrNot\\\",\\\"cqXRl3yAC\\\":\\\"locked\\\",\\\"FgqO3lmJd\\\":\\\"fontSize\\\"}\",\"framerIntrinsicHeight\":\"314\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NUcj6C5kC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xHR2oXsGg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Etd1OiQSN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h8P54usKY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nH8wglhRX.map"],
  "mappings": "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",
  "names": ["useRiveInputs", "rive", "stateMachines", "inputsJSON", "se", "error", "config", "handler", "D", "RivePlayer", "props", "src", "artboard", "autoplay", "fit", "alignment", "play", "playOnCanvas", "onEventTriggered", "isTouchScrollEnabled", "layout", "v", "RiveComponent", "H", "inputs", "prevInputsRef", "pe", "ue", "input", "index", "prevInput", "handleEvent", "event", "RenderTarget", "p", "addPropertyControls", "ControlType", "eventData", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lQgLZtfN5", "qQ96bSH_3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "Framerg5KA_fQP8", "withCSS", "g5KA_fQP8_default", "addPropertyControls", "ControlType", "addFonts", "YouTubeFonts", "getFonts", "Youtube", "RivePlayerFonts", "RivePlayer", "EmbedFonts", "Embed", "SocialMediaIconsFonts", "g5KA_fQP8_default", "YouTubeControls", "getPropertyControls", "SocialMediaIconsControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "_1StHTML", "border", "click", "fontSize", "height", "id", "image2", "image4", "link", "locked", "lockedOrNot", "thumbnail2", "title", "title2", "title3", "title4", "variant1", "video", "visible", "visible2", "visible3", "width", "year", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableEnumMap_variant1", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "_ref13", "_ref14", "_ref15", "_ref16", "_humanReadableVariantMap_props_variant", "_ref17", "_ref18", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CHjZxuYHD", "nzFXR5zWj", "OrrEuVEEt", "gSzkGwLRR", "NePuPjZoe", "Cn5r6uzUS", "eGLqNfRae", "McoG8Oniz", "GDLGqXyHH", "qU2Kiq3b3", "L8Qaunphp", "YVSMsjOSR", "J7TY3X07t", "HcPbWRxDs", "PrxqraGed", "GYvNOLrBk", "f3BekrPeB", "eF_8Z5jpO", "dn4ePFQfH", "aGhOO94qP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapu4xhfm", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_dn4ePFQfH_borderBottomWidth", "_dn4ePFQfH_borderLeftWidth", "_dn4ePFQfH_borderRightWidth", "_dn4ePFQfH_borderTopWidth", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramerjjrxSo4w8", "withCSS", "jjrxSo4w8_default", "addPropertyControls", "ControlType", "addFonts", "CaseStudyFonts", "getFonts", "jjrxSo4w8_default", "CaseStudyControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "_1StHTML", "background", "fontSize", "height", "icon", "id", "image2", "image4", "image5", "link", "link2", "locked", "lockedOrNot", "newTab", "thumbnail2", "title", "title2", "title3", "title4", "variant2", "video", "visible", "visible2", "visible3", "width", "year", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lWVuYnpaa", "WPBdziJzZ", "J2GxQ3xFM", "DrLDNUtUa", "cq09mE_9J", "AST9bODqS", "NLeOZlivU", "PfZW0Go6q", "zQkralGXa", "nOBrW69Wd", "MAZgwrjvM", "OwhcdInjg", "olWZ5mEtg", "yjmCZczhB", "WOtho9vJ6", "mqJ9DTqPJ", "YALKF6SkU", "CBdWa4Re_", "G7s7ZTb_w", "zvQ7nFAqp", "kKwR4AVAe", "cqXRl3yAC", "FgqO3lmJd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1oyw5ff", "args", "onMouseEnter14yjhqn", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramernH8wglhRX", "withCSS", "nH8wglhRX_default", "addPropertyControls", "ControlType", "addFonts"]
}
