{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/4Re1ORG7JWqXyVnFxDIa/QanWRqszjekdc42A8Hid/ParallaxHover.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/cTjrmFqNFkFWO19DE1xk/BlurGradient.js", "ssg:https://framerusercontent.com/modules/qdxumPG7lbX6NX9lwaxE/6OQRMIklj8v1PJROd0ST/f39qQqDQ4.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/PMTCCpqei2cUehXI6saP/4P1kAOrrpjod7WcY80Vk/g11P6RObx.js", "ssg:https://framerusercontent.com/modules/vrJkGEZq0K9zGmPz709O/VbDt2Ao35nY8i3IvZ6HN/o709vuzrL.js", "ssg:https://framerusercontent.com/modules/NzjcgnbfESD8FR6nsCaX/LpkIrUyldfbSl7TOZpLK/OTb3TUh7M.js", "ssg:https://framerusercontent.com/modules/5OHXRFs2w4DIBIUxhMcM/vdiqM1iKvvr7PqeIPWHR/yLssUT3hk.js"],
  "sourcesContent": ["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", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useMotionValue,useSpring,useInView}from\"framer-motion\";const withIntensity=(Component,maxDistancePercentage,maxOffsetX,maxOffsetY)=>{const SPRING_CONFIG={damping:100,stiffness:400};return props=>{const x=useMotionValue(0);const y=useMotionValue(0);const ref=useRef(null);const springX=useSpring(x,SPRING_CONFIG);const springY=useSpring(y,SPRING_CONFIG);const isInView=useInView(ref);useEffect(()=>{if(!isInView){x.set(0);y.set(0);}},[isInView]);useEffect(()=>{const calculateDistance=e=>{if(ref.current&&isInView){const rect=ref.current.getBoundingClientRect();const centerX=rect.left+rect.width/2;const centerY=rect.top+rect.height/2;let distanceX=e.clientX-centerX;let distanceY=e.clientY-centerY;distanceX=Math.max(Math.min(distanceX,maxOffsetX),-maxOffsetX);distanceY=Math.max(Math.min(distanceY,maxOffsetY),-maxOffsetY);x.set(distanceX*(maxDistancePercentage/100));y.set(distanceY*(maxDistancePercentage/100));}};document.addEventListener(\"mousemove\",calculateDistance);return()=>{document.removeEventListener(\"mousemove\",calculateDistance);};},[ref,isInView,maxOffsetX,maxOffsetY]);return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{x:springX,y:springY}});};};export const withIntensity10=Component=>withIntensity(Component,10,400,2e3);export const withIntensity5=Component=>withIntensity(Component,5,2e3,2e3);export const withIntensity1=Component=>withIntensity(Component,1,2e3,2e3);\nexport const __FramerMetadata__ = {\"exports\":{\"withIntensity10\":{\"type\":\"reactHoc\",\"name\":\"withIntensity10\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIntensity1\":{\"type\":\"reactHoc\",\"name\":\"withIntensity1\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIntensity5\":{\"type\":\"reactHoc\",\"name\":\"withIntensity5\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ParallaxHover.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}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={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\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);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// 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(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(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\");}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(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 240\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */function BlurGradient({blur,borderRadius,direction}){const getGradientDirection=direction=>{switch(direction){case\"toBottom\":return\"to bottom\";case\"toTop\":return\"to top\";case\"toLeft\":return\"to left\";case\"toRight\":return\"to right\";default:return\"to bottom\";}};const blurSteps=[{blur:`${blur/2/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%`},{blur:`${blur/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%`},{blur:`${blur/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%`},{blur:`${blur/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%`},{blur:`${blur/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%`},{blur:`${blur/2/2}px`,gradient:`rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%`},{blur:`${blur/2}px`,gradient:`rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%`},{blur:`${blur}px`,gradient:`rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%`}];return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",width:\"100%\",height:\"100%\",borderRadius:`${borderRadius}px`},children:blurSteps.map((step,index)=>/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,zIndex:index+1,backdropFilter:`blur(${step.blur})`,WebkitBackdropFilter:`blur(${step.blur})`,maskImage:`linear-gradient(${getGradientDirection(direction)}, ${step.gradient})`,WebkitMaskImage:`linear-gradient(${getGradientDirection(direction)}, ${step.gradient})`,borderRadius:`${borderRadius}px`,pointerEvents:\"none\"}},index))});}BlurGradient.defaultProps={blur:10,borderRadius:0,direction:\"toBottom\"};addPropertyControls(BlurGradient,{blur:{title:\"Blur\",type:ControlType.Number,defaultValue:10,min:0,max:100,step:1,description:\"Large blur values (10<) can impact performance.\"},borderRadius:{title:\"Radius\",type:ControlType.Number,defaultValue:0,min:0,max:100,step:1,description:\"Blur Gradient component's parent frame can't have border radius (it will break the component). If you need corner radius, apply it directly to the Blur Gradient component here.\"},direction:{title:\"Direction\",type:ControlType.SegmentedEnum,options:[\"toBottom\",\"toTop\",\"toLeft\",\"toRight\"],optionTitles:[\"\u2193\",\"\u2191\",\"\u2190\",\"\u2192\"],defaultValue:\"toBottom\"}});BlurGradient.displayName=\"Blur Gradient\";export default BlurGradient;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BlurGradient\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"240\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BlurGradient.map", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withIntensity10,withIntensity5}from\"https://framerusercontent.com/modules/4Re1ORG7JWqXyVnFxDIa/QanWRqszjekdc42A8Hid/ParallaxHover.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/cTjrmFqNFkFWO19DE1xk/BlurGradient.js\";const FeatherFonts=getFonts(Feather);const RichTextWithIntensity51asro10=withCodeBoundaryForOverrides(RichText,{nodeId:\"oZKVuGr6x\",override:withIntensity5,scopeId:\"f39qQqDQ4\"});const RichTextWithIntensity5eeckwn=withCodeBoundaryForOverrides(RichText,{nodeId:\"k25Fixi1b\",override:withIntensity5,scopeId:\"f39qQqDQ4\"});const ImageWithIntensity101eg7xm0=withCodeBoundaryForOverrides(Image,{nodeId:\"GUwbkpMw2\",override:withIntensity10,scopeId:\"f39qQqDQ4\"});const ImageWithIntensity10zhipvk=withCodeBoundaryForOverrides(Image,{nodeId:\"etKhjFqKn\",override:withIntensity10,scopeId:\"f39qQqDQ4\"});const ImageWithIntensity1015suesq=withCodeBoundaryForOverrides(Image,{nodeId:\"owpPBTaDM\",override:withIntensity10,scopeId:\"f39qQqDQ4\"});const BlurGradientFonts=getFonts(BlurGradient);const YouTubeFonts=getFonts(YouTube);const enabledGestures={NO3U7abo4:{hover:true},NXotVdrwK:{hover:true},TiRad0bvU:{hover:true}};const cycleOrder=[\"NO3U7abo4\",\"u8PKEhLyL\",\"TiRad0bvU\",\"aN_AD1rk5\",\"Tz9ELujy3\",\"G3jVsjHFn\",\"NXotVdrwK\",\"TNc8r2P7x\",\"kWe62SrKc\",\"LyNKlG1VH\"];const serializationHash=\"framer-chqdP\";const variantClassNames={aN_AD1rk5:\"framer-v-u4t0jg\",G3jVsjHFn:\"framer-v-u4dq2q\",kWe62SrKc:\"framer-v-p80qz6\",LyNKlG1VH:\"framer-v-efleds\",NO3U7abo4:\"framer-v-rg8h97\",NXotVdrwK:\"framer-v-ee6tb1\",TiRad0bvU:\"framer-v-npoewy\",TNc8r2P7x:\"framer-v-1urhwn1\",Tz9ELujy3:\"framer-v-1b760z3\",u8PKEhLyL:\"framer-v-1rywqb8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NO3U7abo4\",\"Variant 10\":\"LyNKlG1VH\",\"Variant 2\":\"u8PKEhLyL\",\"Variant 3\":\"TiRad0bvU\",\"Variant 4\":\"aN_AD1rk5\",\"Variant 5\":\"Tz9ELujy3\",\"Variant 6\":\"G3jVsjHFn\",\"Variant 7\":\"NXotVdrwK\",\"Variant 8\":\"TNc8r2P7x\",\"Variant 9\":\"kWe62SrKc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NO3U7abo4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NO3U7abo4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10ya7mj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"u8PKEhLyL\");});const onTap1b1fdk9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"aN_AD1rk5\");});const onTap1jixjg2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"G3jVsjHFn\");});const onTap19si8ep=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TNc8r2P7x\");});const onTap1t1uyve=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LyNKlG1VH\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"TiRad0bvU-hover\")return true;if([\"TiRad0bvU\",\"aN_AD1rk5\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"u8PKEhLyL\",\"aN_AD1rk5\",\"G3jVsjHFn\",\"TNc8r2P7x\",\"LyNKlG1VH\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"NXotVdrwK-hover\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rg8h97\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NO3U7abo4\",onTap:onTap10ya7mj,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"NO3U7abo4-hover\":{\"data-framer-name\":undefined},\"NXotVdrwK-hover\":{\"data-framer-name\":undefined},\"TiRad0bvU-hover\":{\"data-framer-name\":undefined},aN_AD1rk5:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":undefined,onTap:undefined},G3jVsjHFn:{\"data-framer-name\":\"Variant 6\"},kWe62SrKc:{\"data-framer-name\":\"Variant 9\",onTap:onTap1t1uyve},LyNKlG1VH:{\"data-framer-name\":\"Variant 10\",\"data-highlight\":undefined,onTap:undefined},NXotVdrwK:{\"data-framer-name\":\"Variant 7\",onTap:onTap19si8ep},TiRad0bvU:{\"data-framer-name\":\"Variant 3\",onTap:onTap1b1fdk9},TNc8r2P7x:{\"data-framer-name\":\"Variant 8\",\"data-highlight\":undefined,onTap:undefined},Tz9ELujy3:{\"data-framer-name\":\"Variant 5\",onTap:onTap1jixjg2},u8PKEhLyL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1saw74l\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"X7hASfmyX\",style:{opacity:1},variants:{\"NO3U7abo4-hover\":{opacity:1},\"NXotVdrwK-hover\":{opacity:1},\"TiRad0bvU-hover\":{opacity:1},kWe62SrKc:{opacity:1},LyNKlG1VH:{opacity:0},TNc8r2P7x:{opacity:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e1omfb\",layoutDependency:layoutDependency,layoutId:\"B_11354aj\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{\"NO3U7abo4-hover\":{opacity:1},\"TiRad0bvU-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wqftvp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qCVno4v0t-container\",nodeId:\"qCVno4v0t\",rendersWithMotion:true,scopeId:\"f39qQqDQ4\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play-circle\",id:\"qCVno4v0t\",layoutId:\"qCVno4v0t\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8v1i6p\",\"data-framer-name\":\"BG Elements\",layoutDependency:layoutDependency,layoutId:\"FVTxcONVj\",style:{background:'linear-gradient(121deg, var(--token-5d6f0f10-ab51-4427-b464-c1c401840f4b, rgb(179, 157, 219)) /* {\"name\":\"primary/lighter\"} */ 0%, var(--token-80e6f8ff-6225-4f61-8cbc-bad10cb6de39, rgb(255, 255, 255)) /* {\"name\":\"global/inherit/color\"} */ 100%)',opacity:1},variants:{\"NO3U7abo4-hover\":{opacity:1},\"TiRad0bvU-hover\":{opacity:1},aN_AD1rk5:{opacity:0},G3jVsjHFn:{opacity:1},kWe62SrKc:{opacity:1},LyNKlG1VH:{opacity:1},NXotVdrwK:{opacity:1},TNc8r2P7x:{opacity:1},Tz9ELujy3:{opacity:1}},children:[/*#__PURE__*/_jsx(RichTextWithIntensity51asro10,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"CHECK OUT OUR PRODUCT VIDEO\"})}),className:\"framer-1asro10\",fonts:[\"GF;Inter Tight-900\"],layoutDependency:layoutDependency,layoutId:\"oZKVuGr6x\",style:{\"--extracted-1of0zx5\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,variants:{aN_AD1rk5:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"},kWe62SrKc:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"},LyNKlG1VH:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"},NXotVdrwK:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"},TiRad0bvU:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"},TNc8r2P7x:{\"--extracted-r6o4lv\":\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TiRad0bvU-hover\":{transformTemplate:undefined},aN_AD1rk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"FOUNDERS' VISION\"})}),transformTemplate:undefined},G3jVsjHFn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"CHECK OUT OUR PRODUCT VIDEO\"})})},kWe62SrKc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"PRODUCT WALKTHROUGH\"})})},LyNKlG1VH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"PRODUCT WALKTHROUGH\"})})},NXotVdrwK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"PRODUCT WALKTHROUGH\"})})},TiRad0bvU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"FOUNDERS' VISION\"})}),transformTemplate:undefined},TNc8r2P7x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"PRODUCT WALKTHROUGH\"})})},Tz9ELujy3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54)))\"},children:\"CHECK OUT OUR PRODUCT VIDEO\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithIntensity5eeckwn,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out the video and give us your love (Like and Subscribe) to our channel. We\u2019ll be posting future upgrades, and updates on the same.\"})}),className:\"framer-eeckwn\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"k25Fixi1b\",style:{\"--extracted-r6o4lv\":\"var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aN_AD1rk5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out what separates us from other business enhancement solutions out there\"})})},kWe62SrKc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out our prouct demo and walkthrough where we break down our offered features that can supercharge your business\"})})},LyNKlG1VH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out our prouct demo and walkthrough where we break down our offered features that can supercharge your business\"})})},NXotVdrwK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out our prouct demo and walkthrough where we break down our offered features that can supercharge your business\"})}),transformTemplate:transformTemplate3},TiRad0bvU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out what separates us from other business enhancement solutions out there\"})})},TNc8r2P7x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7113de69-80f2-4432-a72e-157c205981ee, rgb(99, 115, 129)))\"},children:\"Check out our prouct demo and walkthrough where we break down our offered features that can supercharge your business\"})}),transformTemplate:transformTemplate3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithIntensity101eg7xm0,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-979),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 506px)`,src:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png 3840w\"},className:\"framer-1eg7xm0\",\"data-framer-name\":\"Castle\",layoutDependency:layoutDependency,layoutId:\"GUwbkpMw2\",style:{filter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\",WebkitFilter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\"},tabIndex:-1,...addPropertyOverrides({aN_AD1rk5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-248),pixelHeight:371,pixelWidth:371,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nyIax8xuga8E7qJVThFGAsTyDBM.png\"}},G3jVsjHFn:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-1199),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 506px)`,src:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png 3840w\"}},kWe62SrKc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+-166),pixelHeight:873,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:\"673.7542px\",src:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png 912w\"}},LyNKlG1VH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+-166),pixelHeight:873,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:\"673.7542px\",src:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png 912w\"}},NXotVdrwK:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+-166),pixelHeight:873,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:\"673.7542px\",src:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png 912w\"}},TiRad0bvU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-248),pixelHeight:371,pixelWidth:371,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nyIax8xuga8E7qJVThFGAsTyDBM.png\"}},TNc8r2P7x:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+-146),pixelHeight:873,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:\"673.7542px\",src:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png?scale-down-to=512 512w,https://framerusercontent.com/images/irmOACPICZm8TheqAmYpznp4g4E.png 912w\"}},Tz9ELujy3:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-1199),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 506px)`,src:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YezDptpedtHf2YSy4N7murwJ6tA.png 3840w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithIntensity10zhipvk,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,pixelHeight:402,pixelWidth:402,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDAXhUtIPtcOozsdnMCooflWfjA.png\"},className:\"framer-zhipvk\",\"data-framer-name\":\"Castle\",layoutDependency:layoutDependency,layoutId:\"etKhjFqKn\",style:{filter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\",WebkitFilter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\"},tabIndex:-1,...addPropertyOverrides({aN_AD1rk5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-248),pixelHeight:402,pixelWidth:402,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDAXhUtIPtcOozsdnMCooflWfjA.png\"}},TiRad0bvU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-248),pixelHeight:402,pixelWidth:402,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EDAXhUtIPtcOozsdnMCooflWfjA.png\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithIntensity1015suesq,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,pixelHeight:414,pixelWidth:414,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oWyNKNcAMBJaOID0YYgWskywWU.png\"},className:\"framer-15suesq\",\"data-framer-name\":\"Castle\",layoutDependency:layoutDependency,layoutId:\"owpPBTaDM\",style:{filter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\",WebkitFilter:\"drop-shadow(-16px -12px 21px rgba(24, 8, 51, 0.08))\"},tabIndex:-1,transformTemplate:transformTemplate2,...addPropertyOverrides({aN_AD1rk5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-238),pixelHeight:414,pixelWidth:414,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oWyNKNcAMBJaOID0YYgWskywWU.png\"}},TiRad0bvU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:451.5,intrinsicWidth:300,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||390)-0-390)/2)+0+390-228),pixelHeight:414,pixelWidth:414,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oWyNKNcAMBJaOID0YYgWskywWU.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r6a6fe-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DIYZ1UjtL-container\",nodeId:\"DIYZ1UjtL\",rendersWithMotion:true,scopeId:\"f39qQqDQ4\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:24,borderRadius:0,direction:\"toBottom\",height:\"100%\",id:\"DIYZ1UjtL\",layoutId:\"DIYZ1UjtL\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({u8PKEhLyL:{borderRadius:24}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q1yj7x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zKaRxvfJf-container\",nodeId:\"zKaRxvfJf\",rendersWithMotion:true,scopeId:\"f39qQqDQ4\",style:{opacity:0},variants:{aN_AD1rk5:{opacity:1},G3jVsjHFn:{opacity:1},LyNKlG1VH:{opacity:1},TNc8r2P7x:{opacity:1},u8PKEhLyL:{opacity:1}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,height:\"100%\",id:\"zKaRxvfJf\",isMixedBorderRadius:false,isRed:true,layoutId:\"zKaRxvfJf\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:24,topRightRadius:24,url:\"https://youtu.be/VJSn1MBgwfQ\",width:\"100%\",...addPropertyOverrides({aN_AD1rk5:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,play:\"On\",shouldMute:false,topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/aqLphDqcPoE\"},G3jVsjHFn:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0},LyNKlG1VH:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=oTHfOEOhV1A&ab_channel=AngoorAI\"},TNc8r2P7x:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=oTHfOEOhV1A&ab_channel=AngoorAI\"},u8PKEhLyL:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,play:\"On\",shouldMute:false,topLeftRadius:0,topRightRadius:0}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ih7do7\",layoutDependency:layoutDependency,layoutId:\"N3FK1ei4p\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvgo42-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Wavzg8gmP-container\",nodeId:\"Wavzg8gmP\",rendersWithMotion:true,scopeId:\"f39qQqDQ4\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-940503b5-3413-4488-9059-caa16c27eb91, rgb(33, 43, 54))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play-circle\",id:\"Wavzg8gmP\",layoutId:\"Wavzg8gmP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-chqdP.framer-18y5b6m, .framer-chqdP .framer-18y5b6m { display: block; }\",\".framer-chqdP.framer-rg8h97 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 672px; }\",\".framer-chqdP .framer-1saw74l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 390px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-chqdP .framer-1e1omfb, .framer-chqdP .framer-ih7do7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 2; }\",\".framer-chqdP .framer-1wqftvp-container, .framer-chqdP .framer-rvgo42-container { flex: none; height: 60px; position: relative; width: 60px; z-index: 2; }\",\".framer-chqdP .framer-8v1i6p { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-chqdP .framer-1asro10 { -webkit-user-select: none; flex: none; height: auto; left: 41%; position: absolute; top: 21px; user-select: none; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; }\",\".framer-chqdP .framer-eeckwn { -webkit-user-select: none; bottom: 86px; flex: none; height: auto; left: 30px; position: absolute; user-select: none; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }\",\".framer-chqdP .framer-1eg7xm0 { -webkit-user-select: none; aspect-ratio: 0.6644518272425249 / 1; bottom: -794px; flex: none; height: var(--framer-aspect-ratio-supported, 1773px); left: -175px; overflow: visible; pointer-events: none; position: absolute; right: -331px; user-select: none; }\",\".framer-chqdP .framer-zhipvk { -webkit-user-select: none; aspect-ratio: 0.6644518272425249 / 1; bottom: -53px; flex: none; height: var(--framer-aspect-ratio-supported, 301px); overflow: visible; pointer-events: none; position: absolute; right: -62px; user-select: none; width: 200px; }\",\".framer-chqdP .framer-15suesq { -webkit-user-select: none; aspect-ratio: 0.6644518272425249 / 1; bottom: -63px; flex: none; height: var(--framer-aspect-ratio-supported, 301px); left: 51%; overflow: visible; pointer-events: none; position: absolute; user-select: none; width: 200px; }\",\".framer-chqdP .framer-1r6a6fe-container { bottom: -1px; flex: none; left: 0px; pointer-events: none; position: absolute; top: 267px; width: 100%; z-index: 1; }\",\".framer-chqdP .framer-1q1yj7x-container { flex: none; height: 100%; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-chqdP.framer-rg8h97, .framer-chqdP .framer-1saw74l, .framer-chqdP .framer-1e1omfb, .framer-chqdP .framer-ih7do7 { gap: 0px; } .framer-chqdP.framer-rg8h97 > *, .framer-chqdP .framer-1e1omfb > *, .framer-chqdP .framer-ih7do7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-chqdP.framer-rg8h97 > :first-child, .framer-chqdP .framer-1e1omfb > :first-child, .framer-chqdP .framer-ih7do7 > :first-child { margin-left: 0px; } .framer-chqdP.framer-rg8h97 > :last-child, .framer-chqdP .framer-1e1omfb > :last-child, .framer-chqdP .framer-ih7do7 > :last-child { margin-right: 0px; } .framer-chqdP .framer-1saw74l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-chqdP .framer-1saw74l > :first-child { margin-top: 0px; } .framer-chqdP .framer-1saw74l > :last-child { margin-bottom: 0px; } }\",\".framer-chqdP.framer-v-npoewy.framer-rg8h97 { width: 282px; }\",\".framer-chqdP.framer-v-npoewy .framer-1asro10, .framer-chqdP.framer-v-u4t0jg .framer-1asro10 { left: 19px; width: 71%; }\",\".framer-chqdP.framer-v-npoewy .framer-eeckwn, .framer-chqdP.framer-v-u4t0jg .framer-eeckwn { bottom: unset; left: 19px; top: 90px; }\",\".framer-chqdP.framer-v-npoewy .framer-1eg7xm0 { bottom: -53px; height: var(--framer-aspect-ratio-supported, 301px); left: -76px; right: unset; width: 200px; }\",\".framer-chqdP.framer-v-npoewy .framer-15suesq { bottom: -73px; }\",\".framer-chqdP.framer-v-u4t0jg.framer-rg8h97 { cursor: unset; width: 282px; }\",\".framer-chqdP.framer-v-u4t0jg .framer-1eg7xm0 { bottom: -53px; height: var(--framer-aspect-ratio-supported, 301px); left: -66px; right: unset; width: 200px; }\",\".framer-chqdP.framer-v-1b760z3.framer-rg8h97, .framer-chqdP.framer-v-u4dq2q.framer-rg8h97, .framer-chqdP.framer-v-p80qz6.framer-rg8h97 { width: 360px; }\",\".framer-chqdP.framer-v-1b760z3 .framer-eeckwn, .framer-chqdP.framer-v-u4dq2q .framer-eeckwn { bottom: unset; left: 14px; top: 92px; }\",\".framer-chqdP.framer-v-1b760z3 .framer-1eg7xm0, .framer-chqdP.framer-v-u4dq2q .framer-1eg7xm0 { bottom: -574px; height: var(--framer-aspect-ratio-supported, 1303px); left: -205px; right: -301px; }\",\".framer-chqdP.framer-v-ee6tb1.framer-rg8h97 { width: 960px; }\",\".framer-chqdP.framer-v-ee6tb1 .framer-eeckwn { bottom: unset; left: 40px; top: 48%; }\",\".framer-chqdP.framer-v-ee6tb1 .framer-1eg7xm0, .framer-chqdP.framer-v-p80qz6 .framer-1eg7xm0, .framer-chqdP.framer-v-efleds .framer-1eg7xm0 { bottom: -458px; height: unset; left: unset; right: -168px; top: -166px; width: var(--framer-aspect-ratio-supported, 674px); }\",\".framer-chqdP.framer-v-1urhwn1.framer-rg8h97 { cursor: unset; width: 960px; }\",\".framer-chqdP.framer-v-1urhwn1 .framer-eeckwn { bottom: unset; top: 46%; }\",\".framer-chqdP.framer-v-1urhwn1 .framer-1eg7xm0 { bottom: -478px; height: unset; left: unset; right: -208px; top: -146px; width: var(--framer-aspect-ratio-supported, 674px); }\",\".framer-chqdP.framer-v-p80qz6 .framer-eeckwn, .framer-chqdP.framer-v-efleds .framer-eeckwn { bottom: unset; left: 18px; top: 94px; }\",\".framer-chqdP.framer-v-efleds.framer-rg8h97 { cursor: unset; width: 360px; }\",\".framer-chqdP.framer-v-rg8h97.hover .framer-1r6a6fe-container, .framer-chqdP.framer-v-npoewy.hover .framer-1r6a6fe-container, .framer-chqdP.framer-v-ee6tb1.hover .framer-1r6a6fe-container { top: 0px; }\",\".framer-chqdP.framer-v-npoewy.hover .framer-eeckwn, .framer-chqdP.framer-v-ee6tb1.hover .framer-eeckwn { bottom: unset; }\",\".framer-chqdP.framer-v-npoewy.hover .framer-1eg7xm0 { right: unset; }\",\".framer-chqdP.framer-v-ee6tb1.hover .framer-1eg7xm0 { height: unset; left: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 390\n * @framerIntrinsicWidth 672\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u8PKEhLyL\":{\"layout\":[\"fixed\",\"auto\"]},\"TiRad0bvU\":{\"layout\":[\"fixed\",\"auto\"]},\"aN_AD1rk5\":{\"layout\":[\"fixed\",\"auto\"]},\"Tz9ELujy3\":{\"layout\":[\"fixed\",\"auto\"]},\"G3jVsjHFn\":{\"layout\":[\"fixed\",\"auto\"]},\"NXotVdrwK\":{\"layout\":[\"fixed\",\"auto\"]},\"TNc8r2P7x\":{\"layout\":[\"fixed\",\"auto\"]},\"kWe62SrKc\":{\"layout\":[\"fixed\",\"auto\"]},\"LyNKlG1VH\":{\"layout\":[\"fixed\",\"auto\"]},\"vBEK12bbh\":{\"layout\":[\"fixed\",\"auto\"]},\"VTgXZyOLA\":{\"layout\":[\"fixed\",\"auto\"]},\"XL91LAGyr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf39qQqDQ4=withCSS(Component,css,\"framer-chqdP\");export default Framerf39qQqDQ4;Framerf39qQqDQ4.displayName=\"Video Card\";Framerf39qQqDQ4.defaultProps={height:390,width:672};addPropertyControls(Framerf39qQqDQ4,{variant:{options:[\"NO3U7abo4\",\"u8PKEhLyL\",\"TiRad0bvU\",\"aN_AD1rk5\",\"Tz9ELujy3\",\"G3jVsjHFn\",\"NXotVdrwK\",\"TNc8r2P7x\",\"kWe62SrKc\",\"LyNKlG1VH\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerf39qQqDQ4,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqWSRToK8EPg.woff2\",weight:\"900\"},{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5xg0pX189fg.woff2\",weight:\"500\"}]},...FeatherFonts,...BlurGradientFonts,...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf39qQqDQ4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"390\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"672\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u8PKEhLyL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TiRad0bvU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aN_AD1rk5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tz9ELujy3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G3jVsjHFn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NXotVdrwK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TNc8r2P7x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kWe62SrKc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LyNKlG1VH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vBEK12bbh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VTgXZyOLA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XL91LAGyr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f39qQqDQ4.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"S_GVr7jGG\",\"PnDjdwCLE\",\"ebaRDGDNI\",\"WDrwQUETQ\"];const serializationHash=\"framer-mT6Mk\";const variantClassNames={ebaRDGDNI:\"framer-v-1ct1we9\",PnDjdwCLE:\"framer-v-t8nkk5\",S_GVr7jGG:\"framer-v-jmqz4\",WDrwQUETQ:\"framer-v-1nc329n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"S_GVr7jGG\",Hover:\"PnDjdwCLE\",Idle:\"ebaRDGDNI\",Mobile:\"WDrwQUETQ\"};const getProps=({height,id,image,mouseEnter,occu,overlayTap,preview,quote,tap,title,width,...props})=>{return{...props,aLoeIpSuy:title??props.aLoeIpSuy??\"Jiyoon Cha\",BpSiM2NCU:preview??props.BpSiM2NCU??\"https://framerusercontent.com/assets/Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4\",d2QuR_VIK:mouseEnter??props.d2QuR_VIK,DZCrc1k2m:tap??props.DZCrc1k2m,Edz3ZRmHd:image??props.Edz3ZRmHd??{src:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp 2000w\"},iDAu7X4QV:occu??props.iDAu7X4QV??\"Graphic Designer + Art Director\",Pk30RASEZ:overlayTap??props.Pk30RASEZ,Ugy22DNeV:quote??props.Ugy22DNeV??'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:humanReadableVariantMap[props.variant]??props.variant??\"S_GVr7jGG\"};};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,aLoeIpSuy,iDAu7X4QV,Ugy22DNeV,Edz3ZRmHd,BpSiM2NCU,d2QuR_VIK,Pk30RASEZ,DZCrc1k2m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S_GVr7jGG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vug3g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pk30RASEZ){const res=await Pk30RASEZ(...args);if(res===false)return false;}if(DZCrc1k2m){const res=await DZCrc1k2m(...args);if(res===false)return false;}});const onMouseEnter8joars=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jmqz4\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S_GVr7jGG\",onMouseEnter:onMouseEnter8joars,onTap:onTap1vug3g7,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({ebaRDGDNI:{\"data-framer-name\":\"Idle\"},PnDjdwCLE:{\"data-framer-name\":\"Hover\"},WDrwQUETQ:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vnkixd\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"gQD3_98Ms\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{ebaRDGDNI:{opacity:.5}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ahk81p\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"pGVkRItBn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||765)-0)*.500653594771242-394)),pixelHeight:750,pixelWidth:1200,sizes:\"730px\",...toResponsiveImage(Edz3ZRmHd)},className:\"framer-6y7etc\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"yISbcQhGq\",...addPropertyOverrides({WDrwQUETQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0)*.5000000000000002-221.5)),pixelHeight:750,pixelWidth:1200,sizes:\"410px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iqde9q\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"KI3hmwTN1\",style:{opacity:0},variants:{PnDjdwCLE:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14fvzaq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EMGeIOKO1-container\",nodeId:\"EMGeIOKO1\",rendersWithMotion:true,scopeId:\"g11P6RObx\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EMGeIOKO1\",isMixedBorderRadius:false,layoutId:\"EMGeIOKO1\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:BpSiM2NCU,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({PnDjdwCLE:{playing:true}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z0felb\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"Afwu8L7Lt\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ix7320\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"V6OuZHMbD\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xrwct2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"CRCEa6amo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1423l3t\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"lQJfs6ZL7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Jiyoon Cha\"})}),className:\"framer-tzv8f0\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"RgX7ZKV39\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aLoeIpSuy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Graphic Designer + Art Director\"})}),className:\"framer-1s35nz8\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ihl1de1Gs\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iDAu7X4QV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fkmfgu\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"a3jRd5Fgg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),className:\"framer-1hrjprz\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"jMpajIUzb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ugy22DNeV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PnDjdwCLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),fonts:[\"GF;Instrument Sans-700\"]}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mT6Mk.framer-7k4uiy, .framer-mT6Mk .framer-7k4uiy { display: block; }\",\".framer-mT6Mk.framer-jmqz4 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 765px; justify-content: flex-end; overflow: hidden; padding: 36px; position: relative; width: 602px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mT6Mk .framer-1vnkixd { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-mT6Mk .framer-ahk81p, .framer-mT6Mk .framer-1iqde9q, .framer-mT6Mk .framer-z0felb, .framer-mT6Mk .framer-ix7320 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-mT6Mk .framer-6y7etc { flex: none; height: 788px; left: calc(50.00000000000002% - 730px / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 730px; }\",\".framer-mT6Mk .framer-14fvzaq-container { flex: none; height: 842px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.93464052287584% - 842px / 2); width: 100%; }\",\".framer-mT6Mk .framer-xrwct2 { align-content: flex-start; align-items: flex-start; bottom: -267px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-mT6Mk .framer-1423l3t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mT6Mk .framer-tzv8f0, .framer-mT6Mk .framer-1hrjprz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mT6Mk .framer-1s35nz8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-mT6Mk .framer-fkmfgu { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mT6Mk.framer-jmqz4, .framer-mT6Mk .framer-xrwct2, .framer-mT6Mk .framer-1423l3t, .framer-mT6Mk .framer-fkmfgu { gap: 0px; } .framer-mT6Mk.framer-jmqz4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mT6Mk.framer-jmqz4 > :first-child, .framer-mT6Mk .framer-xrwct2 > :first-child, .framer-mT6Mk .framer-1423l3t > :first-child, .framer-mT6Mk .framer-fkmfgu > :first-child { margin-top: 0px; } .framer-mT6Mk.framer-jmqz4 > :last-child, .framer-mT6Mk .framer-xrwct2 > :last-child, .framer-mT6Mk .framer-1423l3t > :last-child, .framer-mT6Mk .framer-fkmfgu > :last-child { margin-bottom: 0px; } .framer-mT6Mk .framer-xrwct2 > *, .framer-mT6Mk .framer-fkmfgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mT6Mk .framer-1423l3t > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-mT6Mk.framer-v-t8nkk5 .framer-xrwct2 { bottom: unset; height: min-content; left: unset; position: relative; }\",\".framer-mT6Mk.framer-v-t8nkk5 .framer-fkmfgu { bottom: unset; left: unset; position: relative; right: unset; width: 100%; }\",\".framer-mT6Mk.framer-v-1nc329n.framer-jmqz4 { height: 400px; padding: 20px; width: 360px; }\",\".framer-mT6Mk.framer-v-1nc329n .framer-6y7etc { height: 443px; left: calc(50.00000000000002% - 410px / 2); top: calc(50.00000000000002% - 443px / 2); width: 410px; }\",\".framer-mT6Mk.framer-v-1nc329n .framer-xrwct2 { bottom: -277px; left: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 602\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PnDjdwCLE\":{\"layout\":[\"fixed\",\"fixed\"]},\"ebaRDGDNI\":{\"layout\":[\"fixed\",\"fixed\"]},\"WDrwQUETQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg11P6RObx=withCSS(Component,css,\"framer-mT6Mk\");export default Framerg11P6RObx;Framerg11P6RObx.displayName=\"Card 5\";Framerg11P6RObx.defaultProps={height:765,width:602};addPropertyControls(Framerg11P6RObx,{variant:{options:[\"S_GVr7jGG\",\"PnDjdwCLE\",\"ebaRDGDNI\",\"WDrwQUETQ\"],optionTitles:[\"Default\",\"Hover\",\"Idle\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},aLoeIpSuy:{defaultValue:\"Jiyoon Cha\",displayTextArea:false,title:\"Title\",type:ControlType.String},iDAu7X4QV:{defaultValue:\"Graphic Designer + Art Director\",displayTextArea:false,title:\"Occu\",type:ControlType.String},Ugy22DNeV:{defaultValue:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',displayTextArea:false,title:\"Quote\",type:ControlType.String},Edz3ZRmHd:{__defaultAssetReference:\"data:framer/asset-reference,zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?originalFilename=image-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},BpSiM2NCU:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4?originalFilename=preview-1.mp4\",description:undefined,hidden:undefined,title:\"Preview\"},d2QuR_VIK:{title:\"Mouse Enter\",type:ControlType.EventHandler},Pk30RASEZ:{title:\"Overlay Tap\",type:ControlType.EventHandler},DZCrc1k2m:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framerg11P6RObx,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg11P6RObx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"602\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PnDjdwCLE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ebaRDGDNI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WDrwQUETQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"765\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g11P6RObx.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"jU4_fq8vl\",\"F06yqaKV5\",\"AXgg5X5hN\",\"PddVtXc9B\"];const serializationHash=\"framer-9kbgj\";const variantClassNames={AXgg5X5hN:\"framer-v-qo873p\",F06yqaKV5:\"framer-v-ljrttm\",jU4_fq8vl:\"framer-v-1d92djx\",PddVtXc9B:\"framer-v-miw0kd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"jU4_fq8vl\",Hover:\"F06yqaKV5\",Idle:\"AXgg5X5hN\",Mobile:\"PddVtXc9B\"};const getProps=({height,id,image,mouseEnter,occu,overlayTap,preview,quote,tap,title,width,...props})=>{return{...props,aLoeIpSuy:title??props.aLoeIpSuy??\"Jiyoon Cha\",BpSiM2NCU:preview??props.BpSiM2NCU??\"https://framerusercontent.com/assets/Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4\",d2QuR_VIK:mouseEnter??props.d2QuR_VIK,DZCrc1k2m:tap??props.DZCrc1k2m,Edz3ZRmHd:image??props.Edz3ZRmHd??{src:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp 2000w\"},iDAu7X4QV:occu??props.iDAu7X4QV??\"Graphic Designer + Art Director\",Pk30RASEZ:overlayTap??props.Pk30RASEZ,Ugy22DNeV:quote??props.Ugy22DNeV??'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:humanReadableVariantMap[props.variant]??props.variant??\"jU4_fq8vl\"};};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,aLoeIpSuy,iDAu7X4QV,Ugy22DNeV,Edz3ZRmHd,BpSiM2NCU,d2QuR_VIK,Pk30RASEZ,DZCrc1k2m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jU4_fq8vl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vug3g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pk30RASEZ){const res=await Pk30RASEZ(...args);if(res===false)return false;}if(DZCrc1k2m){const res=await DZCrc1k2m(...args);if(res===false)return false;}});const onMouseEnter8joars=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1d92djx\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jU4_fq8vl\",onMouseEnter:onMouseEnter8joars,onTap:onTap1vug3g7,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({AXgg5X5hN:{\"data-framer-name\":\"Idle\"},F06yqaKV5:{\"data-framer-name\":\"Hover\"},PddVtXc9B:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n7xm3v\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"i3EvaQLTK\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{AXgg5X5hN:{opacity:.5}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gmje74\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"gROUBxDEn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||765)-0)*.500653594771242-394)),pixelHeight:750,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2126)`,...toResponsiveImage(Edz3ZRmHd)},className:\"framer-1h15th7\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"EaWKvmbch\",...addPropertyOverrides({PddVtXc9B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0)*.5000000000000002-221.5)),pixelHeight:750,pixelWidth:1200,sizes:\"410px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjfohl\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"ALCc8Zd7k\",style:{opacity:0},variants:{F06yqaKV5:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-90phpx-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JozgVKZOV-container\",nodeId:\"JozgVKZOV\",rendersWithMotion:true,scopeId:\"o709vuzrL\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JozgVKZOV\",isMixedBorderRadius:false,layoutId:\"JozgVKZOV\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:BpSiM2NCU,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({F06yqaKV5:{playing:true}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3flmnz\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"VBQ5rCE_p\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wn7kl7\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"VbLdHhAif\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hupjoa\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wxD4_IIKW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jjoxrw\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"kGbZDmfpe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Jiyoon Cha\"})}),className:\"framer-s68s2v\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"NWRfBV9TL\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aLoeIpSuy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Graphic Designer + Art Director\"})}),className:\"framer-7yj1ow\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"Pjm8fr30n\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iDAu7X4QV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5vrd6e\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"TL_A0w6JR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),className:\"framer-1oaa3q5\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"kPHqpMjgw\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ugy22DNeV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F06yqaKV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),fonts:[\"GF;Instrument Sans-700\"]}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9kbgj.framer-fbdoua, .framer-9kbgj .framer-fbdoua { display: block; }\",\".framer-9kbgj.framer-1d92djx { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 765px; justify-content: flex-end; overflow: hidden; padding: 36px; position: relative; width: 602px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9kbgj .framer-n7xm3v { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-9kbgj .framer-1gmje74, .framer-9kbgj .framer-qjfohl, .framer-9kbgj .framer-3flmnz, .framer-9kbgj .framer-1wn7kl7 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-9kbgj .framer-1h15th7 { flex: none; height: 788px; left: calc(50.00000000000002% - 121.26245847176081% / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 121%; }\",\".framer-9kbgj .framer-90phpx-container { flex: none; height: 839px; left: calc(50.00000000000002% - 110.6312292358804% / 2); position: absolute; top: calc(49.93464052287584% - 839px / 2); width: 111%; }\",\".framer-9kbgj .framer-1hupjoa { align-content: flex-start; align-items: flex-start; bottom: -267px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-9kbgj .framer-1jjoxrw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9kbgj .framer-s68s2v, .framer-9kbgj .framer-1oaa3q5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9kbgj .framer-7yj1ow { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-9kbgj .framer-5vrd6e { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9kbgj.framer-1d92djx, .framer-9kbgj .framer-1hupjoa, .framer-9kbgj .framer-1jjoxrw, .framer-9kbgj .framer-5vrd6e { gap: 0px; } .framer-9kbgj.framer-1d92djx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9kbgj.framer-1d92djx > :first-child, .framer-9kbgj .framer-1hupjoa > :first-child, .framer-9kbgj .framer-1jjoxrw > :first-child, .framer-9kbgj .framer-5vrd6e > :first-child { margin-top: 0px; } .framer-9kbgj.framer-1d92djx > :last-child, .framer-9kbgj .framer-1hupjoa > :last-child, .framer-9kbgj .framer-1jjoxrw > :last-child, .framer-9kbgj .framer-5vrd6e > :last-child { margin-bottom: 0px; } .framer-9kbgj .framer-1hupjoa > *, .framer-9kbgj .framer-5vrd6e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9kbgj .framer-1jjoxrw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-9kbgj.framer-v-ljrttm .framer-n7xm3v { right: unset; width: 114%; }\",\".framer-9kbgj.framer-v-ljrttm .framer-1hupjoa { bottom: unset; height: min-content; left: unset; position: relative; }\",\".framer-9kbgj.framer-v-ljrttm .framer-5vrd6e { bottom: unset; left: unset; position: relative; right: unset; width: 100%; }\",\".framer-9kbgj.framer-v-miw0kd.framer-1d92djx { height: 400px; padding: 20px; width: 360px; }\",\".framer-9kbgj.framer-v-miw0kd .framer-1h15th7 { height: 443px; left: calc(50.00000000000002% - 410px / 2); top: calc(50.00000000000002% - 443px / 2); width: 410px; }\",\".framer-9kbgj.framer-v-miw0kd .framer-1hupjoa { bottom: -277px; left: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 602\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"F06yqaKV5\":{\"layout\":[\"fixed\",\"fixed\"]},\"AXgg5X5hN\":{\"layout\":[\"fixed\",\"fixed\"]},\"PddVtXc9B\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero709vuzrL=withCSS(Component,css,\"framer-9kbgj\");export default Framero709vuzrL;Framero709vuzrL.displayName=\"Card 7\";Framero709vuzrL.defaultProps={height:765,width:602};addPropertyControls(Framero709vuzrL,{variant:{options:[\"jU4_fq8vl\",\"F06yqaKV5\",\"AXgg5X5hN\",\"PddVtXc9B\"],optionTitles:[\"Default\",\"Hover\",\"Idle\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},aLoeIpSuy:{defaultValue:\"Jiyoon Cha\",displayTextArea:false,title:\"Title\",type:ControlType.String},iDAu7X4QV:{defaultValue:\"Graphic Designer + Art Director\",displayTextArea:false,title:\"Occu\",type:ControlType.String},Ugy22DNeV:{defaultValue:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',displayTextArea:false,title:\"Quote\",type:ControlType.String},Edz3ZRmHd:{__defaultAssetReference:\"data:framer/asset-reference,zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?originalFilename=image-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},BpSiM2NCU:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4?originalFilename=preview-1.mp4\",description:undefined,hidden:undefined,title:\"Preview\"},d2QuR_VIK:{title:\"Mouse Enter\",type:ControlType.EventHandler},Pk30RASEZ:{title:\"Overlay Tap\",type:ControlType.EventHandler},DZCrc1k2m:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framero709vuzrL,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero709vuzrL\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"602\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F06yqaKV5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AXgg5X5hN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PddVtXc9B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"765\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o709vuzrL.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"iEbuGGZeq\",\"p_nqaAsfb\",\"rKZZHozR6\",\"qc8kKP3hV\"];const serializationHash=\"framer-0RrAp\";const variantClassNames={iEbuGGZeq:\"framer-v-15igozi\",p_nqaAsfb:\"framer-v-1ghhf7j\",qc8kKP3hV:\"framer-v-1nyak3a\",rKZZHozR6:\"framer-v-ew3auc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"iEbuGGZeq\",Hover:\"p_nqaAsfb\",Idle:\"rKZZHozR6\",Mobile:\"qc8kKP3hV\"};const getProps=({height,id,image,mouseEnter,occu,overlayTap,preview,quote,tap,title,width,...props})=>{return{...props,aLoeIpSuy:title??props.aLoeIpSuy??\"Jiyoon Cha\",BpSiM2NCU:preview??props.BpSiM2NCU??\"https://framerusercontent.com/assets/Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4\",d2QuR_VIK:mouseEnter??props.d2QuR_VIK,DZCrc1k2m:tap??props.DZCrc1k2m,Edz3ZRmHd:image??props.Edz3ZRmHd??{src:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp 2000w\"},iDAu7X4QV:occu??props.iDAu7X4QV??\"Graphic Designer + Art Director\",Pk30RASEZ:overlayTap??props.Pk30RASEZ,Ugy22DNeV:quote??props.Ugy22DNeV??'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:humanReadableVariantMap[props.variant]??props.variant??\"iEbuGGZeq\"};};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,aLoeIpSuy,iDAu7X4QV,Ugy22DNeV,Edz3ZRmHd,BpSiM2NCU,d2QuR_VIK,Pk30RASEZ,DZCrc1k2m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iEbuGGZeq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vug3g7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pk30RASEZ){const res=await Pk30RASEZ(...args);if(res===false)return false;}if(DZCrc1k2m){const res=await DZCrc1k2m(...args);if(res===false)return false;}});const onMouseEnter8joars=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(d2QuR_VIK){const res=await d2QuR_VIK(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15igozi\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iEbuGGZeq\",onMouseEnter:onMouseEnter8joars,onTap:onTap1vug3g7,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({p_nqaAsfb:{\"data-framer-name\":\"Hover\"},qc8kKP3hV:{\"data-framer-name\":\"Mobile\"},rKZZHozR6:{\"data-framer-name\":\"Idle\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f6sni2\",\"data-framer-name\":\"IDLE\",layoutDependency:layoutDependency,layoutId:\"kICEcXRSV\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:0},variants:{rKZZHozR6:{opacity:.5}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fodv0b\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"X2LnHaoMb\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||765)-0)*.500653594771242-394)),pixelHeight:750,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Edz3ZRmHd)},className:\"framer-xngz6o\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"B1hT3r7We\",...addPropertyOverrides({qc8kKP3hV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:375,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0)*.5000000000000002-221.5)),pixelHeight:750,pixelWidth:1200,sizes:\"410px\",...toResponsiveImage(Edz3ZRmHd)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bz53ov\",\"data-framer-name\":\"Video Wrap\",layoutDependency:layoutDependency,layoutId:\"bvSmOfSNO\",style:{opacity:0},variants:{p_nqaAsfb:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bs3491-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EzdeXGgF7-container\",nodeId:\"EzdeXGgF7\",rendersWithMotion:true,scopeId:\"OTb3TUh7M\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EzdeXGgF7\",isMixedBorderRadius:false,layoutId:\"EzdeXGgF7\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:BpSiM2NCU,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({p_nqaAsfb:{playing:true}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xkjt6x\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"V2LDOhbAL\",style:{backgroundColor:\"rgba(0, 0, 0, 0.15)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xla8j7\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"OdsOreg7c\",style:{background:\"linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.3) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xhstqg\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"vsENyEWMh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ozaij\",\"data-framer-name\":\"Name + Title\",layoutDependency:layoutDependency,layoutId:\"TmRcJc3z4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Jiyoon Cha\"})}),className:\"framer-14hwqoj\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"FUcmO0qx1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aLoeIpSuy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Graphic Designer + Art Director\"})}),className:\"framer-wmnfky\",fonts:[\"GF;Instrument Sans-700\"],layoutDependency:layoutDependency,layoutId:\"SEn_oLWBT\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:iDAu7X4QV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hmf3o0\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"ptzvldrro\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),className:\"framer-1clp7ou\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"dx3KXp232\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ugy22DNeV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({p_nqaAsfb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"'})}),fonts:[\"GF;Instrument Sans-700\"]}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0RrAp.framer-6bce1o, .framer-0RrAp .framer-6bce1o { display: block; }\",\".framer-0RrAp.framer-15igozi { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 765px; justify-content: flex-end; overflow: hidden; padding: 36px; position: relative; width: 602px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0RrAp .framer-f6sni2 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-0RrAp .framer-1fodv0b, .framer-0RrAp .framer-bz53ov, .framer-0RrAp .framer-1xkjt6x, .framer-0RrAp .framer-xla8j7 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-0RrAp .framer-xngz6o { flex: none; height: 788px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.065359477124204% - 788px / 2); width: 100%; }\",\".framer-0RrAp .framer-1bs3491-container { flex: none; height: 839px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.93464052287584% - 839px / 2); width: 100%; }\",\".framer-0RrAp .framer-1xhstqg { align-content: flex-start; align-items: flex-start; bottom: -267px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 360px; justify-content: flex-start; left: 36px; overflow: hidden; padding: 0px; position: absolute; width: 350px; z-index: 1; }\",\".framer-0RrAp .framer-19ozaij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0RrAp .framer-14hwqoj, .framer-0RrAp .framer-1clp7ou { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0RrAp .framer-wmnfky { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-0RrAp .framer-1hmf3o0 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0RrAp.framer-15igozi, .framer-0RrAp .framer-1xhstqg, .framer-0RrAp .framer-19ozaij, .framer-0RrAp .framer-1hmf3o0 { gap: 0px; } .framer-0RrAp.framer-15igozi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0RrAp.framer-15igozi > :first-child, .framer-0RrAp .framer-1xhstqg > :first-child, .framer-0RrAp .framer-19ozaij > :first-child, .framer-0RrAp .framer-1hmf3o0 > :first-child { margin-top: 0px; } .framer-0RrAp.framer-15igozi > :last-child, .framer-0RrAp .framer-1xhstqg > :last-child, .framer-0RrAp .framer-19ozaij > :last-child, .framer-0RrAp .framer-1hmf3o0 > :last-child { margin-bottom: 0px; } .framer-0RrAp .framer-1xhstqg > *, .framer-0RrAp .framer-1hmf3o0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0RrAp .framer-19ozaij > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-0RrAp.framer-v-1ghhf7j .framer-1xhstqg { bottom: unset; height: min-content; left: unset; position: relative; }\",\".framer-0RrAp.framer-v-1ghhf7j .framer-1hmf3o0 { bottom: unset; left: unset; position: relative; right: unset; width: 100%; }\",\".framer-0RrAp.framer-v-1nyak3a.framer-15igozi { height: 400px; padding: 20px; width: 360px; }\",\".framer-0RrAp.framer-v-1nyak3a .framer-xngz6o { height: 443px; left: calc(50.00000000000002% - 410px / 2); top: calc(50.00000000000002% - 443px / 2); width: 410px; }\",\".framer-0RrAp.framer-v-1nyak3a .framer-1xhstqg { bottom: -277px; left: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 602\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"p_nqaAsfb\":{\"layout\":[\"fixed\",\"fixed\"]},\"rKZZHozR6\":{\"layout\":[\"fixed\",\"fixed\"]},\"qc8kKP3hV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aLoeIpSuy\":\"title\",\"iDAu7X4QV\":\"occu\",\"Ugy22DNeV\":\"quote\",\"Edz3ZRmHd\":\"image\",\"BpSiM2NCU\":\"preview\",\"d2QuR_VIK\":\"mouseEnter\",\"Pk30RASEZ\":\"overlayTap\",\"DZCrc1k2m\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOTb3TUh7M=withCSS(Component,css,\"framer-0RrAp\");export default FramerOTb3TUh7M;FramerOTb3TUh7M.displayName=\"Card 6\";FramerOTb3TUh7M.defaultProps={height:765,width:602};addPropertyControls(FramerOTb3TUh7M,{variant:{options:[\"iEbuGGZeq\",\"p_nqaAsfb\",\"rKZZHozR6\",\"qc8kKP3hV\"],optionTitles:[\"Default\",\"Hover\",\"Idle\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},aLoeIpSuy:{defaultValue:\"Jiyoon Cha\",displayTextArea:false,title:\"Title\",type:ControlType.String},iDAu7X4QV:{defaultValue:\"Graphic Designer + Art Director\",displayTextArea:false,title:\"Occu\",type:ControlType.String},Ugy22DNeV:{defaultValue:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',displayTextArea:false,title:\"Quote\",type:ControlType.String},Edz3ZRmHd:{__defaultAssetReference:\"data:framer/asset-reference,zJU9fNuwwXHtbThbqJ8rQ9hC9ks.webp?originalFilename=image-1.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},BpSiM2NCU:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Occ7ycWFiqKx8dGMYE7DxtT8Om8.mp4?originalFilename=preview-1.mp4\",description:undefined,hidden:undefined,title:\"Preview\"},d2QuR_VIK:{title:\"Mouse Enter\",type:ControlType.EventHandler},Pk30RASEZ:{title:\"Overlay Tap\",type:ControlType.EventHandler},DZCrc1k2m:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerOTb3TUh7M,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOTb3TUh7M\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"765\",\"framerIntrinsicWidth\":\"602\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"aLoeIpSuy\\\":\\\"title\\\",\\\"iDAu7X4QV\\\":\\\"occu\\\",\\\"Ugy22DNeV\\\":\\\"quote\\\",\\\"Edz3ZRmHd\\\":\\\"image\\\",\\\"BpSiM2NCU\\\":\\\"preview\\\",\\\"d2QuR_VIK\\\":\\\"mouseEnter\\\",\\\"Pk30RASEZ\\\":\\\"overlayTap\\\",\\\"DZCrc1k2m\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p_nqaAsfb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rKZZHozR6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qc8kKP3hV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OTb3TUh7M.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 Card5 from\"https://framerusercontent.com/modules/PMTCCpqei2cUehXI6saP/4P1kAOrrpjod7WcY80Vk/g11P6RObx.js\";import Card7 from\"https://framerusercontent.com/modules/vrJkGEZq0K9zGmPz709O/VbDt2Ao35nY8i3IvZ6HN/o709vuzrL.js\";import Card6 from\"https://framerusercontent.com/modules/NzjcgnbfESD8FR6nsCaX/LpkIrUyldfbSl7TOZpLK/OTb3TUh7M.js\";const Card5Fonts=getFonts(Card5);const Card6Fonts=getFonts(Card6);const Card7Fonts=getFonts(Card7);const cycleOrder=[\"YmgxFpmoe\",\"hFjW5LKJm\",\"mW9zpPfNU\",\"pVtHOiInD\"];const serializationHash=\"framer-wabYG\";const variantClassNames={hFjW5LKJm:\"framer-v-wkvxqr\",mW9zpPfNU:\"framer-v-17cweif\",pVtHOiInD:\"framer-v-366c5v\",YmgxFpmoe:\"framer-v-1abg4sm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"hFjW5LKJm\",\"2\":\"mW9zpPfNU\",\"3\":\"pVtHOiInD\",Default:\"YmgxFpmoe\"};const getProps=({height,id,overlay,overlay2,overlay3,width,...props})=>{return{...props,b9E01XpQB:overlay3??props.b9E01XpQB,SipwRqKtI:overlay??props.SipwRqKtI,UXKIqcHJt:overlay2??props.UXKIqcHJt,variant:humanReadableVariantMap[props.variant]??props.variant??\"YmgxFpmoe\"};};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,SipwRqKtI,UXKIqcHJt,b9E01XpQB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YmgxFpmoe\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave31ajqm=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"YmgxFpmoe\");});const d2QuR_VIK1degqwt=activeVariantCallback(async(...args)=>{setVariant(\"hFjW5LKJm\");});const Pk30RASEZv35s5m=activeVariantCallback(async(...args)=>{if(SipwRqKtI){const res=await SipwRqKtI(...args);if(res===false)return false;}});const d2QuR_VIKt71s8m=activeVariantCallback(async(...args)=>{setVariant(\"mW9zpPfNU\");});const Pk30RASEZ1416gj8=activeVariantCallback(async(...args)=>{if(UXKIqcHJt){const res=await UXKIqcHJt(...args);if(res===false)return false;}});const d2QuR_VIKavdkf2=activeVariantCallback(async(...args)=>{setVariant(\"pVtHOiInD\");});const Pk30RASEZ168856h=activeVariantCallback(async(...args)=>{if(b9E01XpQB){const res=await b9E01XpQB(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1abg4sm\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"YmgxFpmoe\",ref:refBinding,style:{...style},...addPropertyOverrides({hFjW5LKJm:{\"data-framer-name\":\"1\",\"data-highlight\":true,onMouseLeave:onMouseLeave31ajqm},mW9zpPfNU:{\"data-framer-name\":\"2\",\"data-highlight\":true,onMouseLeave:onMouseLeave31ajqm},pVtHOiInD:{\"data-framer-name\":\"3\",\"data-highlight\":true,onMouseLeave:onMouseLeave31ajqm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||765)-0-765)/2),...addPropertyOverrides({hFjW5LKJm:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 1px)`},mW9zpPfNU:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`},pVtHOiInD:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oh6b6q-container\",layoutDependency:layoutDependency,layoutId:\"yuRXww39N-container\",nodeId:\"yuRXww39N\",rendersWithMotion:true,scopeId:\"yLssUT3hk\",children:/*#__PURE__*/_jsx(Card5,{aLoeIpSuy:\"Product Walkthrough\",BpSiM2NCU:\"https://framerusercontent.com/assets/6Sdj1NZzF2L6Jss4vddvq4WjLk.mp4\",d2QuR_VIK:d2QuR_VIK1degqwt,Edz3ZRmHd:addImageAlt({src:\"https://framerusercontent.com/images/4vShioU3SDYLGbl7W5I0JO3Zxk.png\",srcSet:\"https://framerusercontent.com/images/4vShioU3SDYLGbl7W5I0JO3Zxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4vShioU3SDYLGbl7W5I0JO3Zxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vShioU3SDYLGbl7W5I0JO3Zxk.png 1920w\"},\"\"),height:\"100%\",id:\"yuRXww39N\",iDAu7X4QV:\"Check out the future of CRMs\",layoutId:\"yuRXww39N\",Pk30RASEZ:Pk30RASEZv35s5m,style:{width:\"100%\"},Ugy22DNeV:'\"I like being a freelancer because you get to work on diverse projects. It\u2019s learning about different subjects that I really enjoy.\"',variant:\"S_GVr7jGG\",width:\"100%\",...addPropertyOverrides({hFjW5LKJm:{Ugy22DNeV:\"Check out our prouct demo and walkthrough where we break down our offered features that can supercharge your business\",variant:\"PnDjdwCLE\"},mW9zpPfNU:{variant:\"ebaRDGDNI\"},pVtHOiInD:{variant:\"ebaRDGDNI\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||765)-0-765)/2),...addPropertyOverrides({hFjW5LKJm:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`},mW9zpPfNU:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 1px)`},pVtHOiInD:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jq7xjb-container\",layoutDependency:layoutDependency,layoutId:\"QpzO1zfQk-container\",nodeId:\"QpzO1zfQk\",rendersWithMotion:true,scopeId:\"yLssUT3hk\",children:/*#__PURE__*/_jsx(Card6,{aLoeIpSuy:\"Launch Video\",BpSiM2NCU:\"https://framerusercontent.com/assets/Ku5dvCAps6vsj3tbs09I5Lt9WlI.mp4\",d2QuR_VIK:d2QuR_VIKt71s8m,Edz3ZRmHd:addImageAlt({src:\"https://framerusercontent.com/images/yx0hXtI4NsId7SyIngb6Lqcz4.png\",srcSet:\"https://framerusercontent.com/images/yx0hXtI4NsId7SyIngb6Lqcz4.png?scale-down-to=512 512w,https://framerusercontent.com/images/yx0hXtI4NsId7SyIngb6Lqcz4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yx0hXtI4NsId7SyIngb6Lqcz4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yx0hXtI4NsId7SyIngb6Lqcz4.png 3840w\"},\"\"),height:\"100%\",id:\"QpzO1zfQk\",iDAu7X4QV:\"A fun visualisation of our vision\",layoutId:\"QpzO1zfQk\",Pk30RASEZ:Pk30RASEZ1416gj8,style:{width:\"100%\"},Ugy22DNeV:\"\u201CWhat inspired me to go freelance really was wanting to move nimbly and quickly without boundaries.\u201D\",variant:\"iEbuGGZeq\",width:\"100%\",...addPropertyOverrides({hFjW5LKJm:{variant:\"rKZZHozR6\"},mW9zpPfNU:{Ugy22DNeV:\"We want to solve identity for all the B2Cs out there\",variant:\"p_nqaAsfb\"},pVtHOiInD:{variant:\"rKZZHozR6\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:765,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||765)-0-765)/2),...addPropertyOverrides({hFjW5LKJm:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`},mW9zpPfNU:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 4, 1px)`},pVtHOiInD:{width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hsikji-container\",layoutDependency:layoutDependency,layoutId:\"h79l3eWgi-container\",nodeId:\"h79l3eWgi\",rendersWithMotion:true,scopeId:\"yLssUT3hk\",children:/*#__PURE__*/_jsx(Card7,{aLoeIpSuy:\"Founder's Vision\",BpSiM2NCU:\"https://framerusercontent.com/assets/eJu9tH1loYIoMwkru33CHR84A.mp4\",d2QuR_VIK:d2QuR_VIKavdkf2,Edz3ZRmHd:addImageAlt({src:\"https://framerusercontent.com/images/3E4wjMiZwN9VmgVspvURD3EtU.png\",srcSet:\"https://framerusercontent.com/images/3E4wjMiZwN9VmgVspvURD3EtU.png 526w\"},\"\"),height:\"100%\",id:\"h79l3eWgi\",iDAu7X4QV:\"Hear the vision from the founders directly\",layoutId:\"h79l3eWgi\",Pk30RASEZ:Pk30RASEZ168856h,style:{width:\"100%\"},Ugy22DNeV:\"\u201CI think the amazing thing about being freelance is all the amazing people you get to meet and the flexibility you have.\u201D\",variant:\"jU4_fq8vl\",width:\"100%\",...addPropertyOverrides({hFjW5LKJm:{variant:\"AXgg5X5hN\"},mW9zpPfNU:{variant:\"AXgg5X5hN\"},pVtHOiInD:{Ugy22DNeV:\"We want to provide Agentic AI infrastructure to all B2Cs to unify and automate their sales, marketing and customer support\",variant:\"F06yqaKV5\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wabYG.framer-16pdznf, .framer-wabYG .framer-16pdznf { display: block; }\",\".framer-wabYG.framer-1abg4sm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-wabYG .framer-oh6b6q-container, .framer-wabYG .framer-1jq7xjb-container, .framer-wabYG .framer-1hsikji-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wabYG.framer-1abg4sm { gap: 0px; } .framer-wabYG.framer-1abg4sm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-wabYG.framer-1abg4sm > :first-child { margin-left: 0px; } .framer-wabYG.framer-1abg4sm > :last-child { margin-right: 0px; } }\",\".framer-wabYG.framer-v-wkvxqr .framer-oh6b6q-container, .framer-wabYG.framer-v-17cweif .framer-1jq7xjb-container, .framer-wabYG.framer-v-366c5v .framer-1hsikji-container { flex: 2 0 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 765\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hFjW5LKJm\":{\"layout\":[\"fixed\",\"auto\"]},\"mW9zpPfNU\":{\"layout\":[\"fixed\",\"auto\"]},\"pVtHOiInD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SipwRqKtI\":\"overlay\",\"UXKIqcHJt\":\"overlay2\",\"b9E01XpQB\":\"overlay3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryLssUT3hk=withCSS(Component,css,\"framer-wabYG\");export default FrameryLssUT3hk;FrameryLssUT3hk.displayName=\"Card Container 2\";FrameryLssUT3hk.defaultProps={height:765,width:1100};addPropertyControls(FrameryLssUT3hk,{variant:{options:[\"YmgxFpmoe\",\"hFjW5LKJm\",\"mW9zpPfNU\",\"pVtHOiInD\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},SipwRqKtI:{title:\"Overlay\",type:ControlType.EventHandler},UXKIqcHJt:{title:\"Overlay 2\",type:ControlType.EventHandler},b9E01XpQB:{title:\"Overlay 3\",type:ControlType.EventHandler}});addFonts(FrameryLssUT3hk,[{explicitInter:true,fonts:[]},...Card5Fonts,...Card6Fonts,...Card7Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryLssUT3hk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hFjW5LKJm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mW9zpPfNU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pVtHOiInD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"SipwRqKtI\\\":\\\"overlay\\\",\\\"UXKIqcHJt\\\":\\\"overlay2\\\",\\\"b9E01XpQB\\\":\\\"overlay3\\\"}\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"765\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yLssUT3hk.map"],
  "mappings": "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",
  "names": ["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", "withIntensity", "Component", "maxDistancePercentage", "maxOffsetX", "maxOffsetY", "SPRING_CONFIG", "props", "x", "useMotionValue", "y", "ref", "pe", "springX", "useSpring", "springY", "isInView", "useInView", "ue", "calculateDistance", "e", "rect", "centerX", "centerY", "distanceX", "distanceY", "p", "withIntensity10", "withIntensity5", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "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", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "BlurGradient", "blur", "borderRadius", "direction", "getGradientDirection", "blurSteps", "p", "step", "index", "addPropertyControls", "ControlType", "BlurGradient_default", "FeatherFonts", "getFonts", "Icon", "RichTextWithIntensity51asro10", "withCodeBoundaryForOverrides", "RichText2", "withIntensity5", "RichTextWithIntensity5eeckwn", "ImageWithIntensity101eg7xm0", "Image2", "withIntensity10", "ImageWithIntensity10zhipvk", "ImageWithIntensity1015suesq", "BlurGradientFonts", "BlurGradient_default", "YouTubeFonts", "Youtube", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10ya7mj", "args", "onTap1b1fdk9", "onTap1jixjg2", "onTap19si8ep", "onTap1t1uyve", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "css", "Framerf39qQqDQ4", "withCSS", "f39qQqDQ4_default", "addPropertyControls", "ControlType", "addFonts", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "image", "mouseEnter", "occu", "overlayTap", "preview", "quote", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vug3g7", "args", "onMouseEnter8joars", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerg11P6RObx", "withCSS", "g11P6RObx_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "image", "mouseEnter", "occu", "overlayTap", "preview", "quote", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vug3g7", "args", "onMouseEnter8joars", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framero709vuzrL", "withCSS", "o709vuzrL_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "image", "mouseEnter", "occu", "overlayTap", "preview", "quote", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aLoeIpSuy", "iDAu7X4QV", "Ugy22DNeV", "Edz3ZRmHd", "BpSiM2NCU", "d2QuR_VIK", "Pk30RASEZ", "DZCrc1k2m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vug3g7", "args", "onMouseEnter8joars", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerOTb3TUh7M", "withCSS", "OTb3TUh7M_default", "addPropertyControls", "ControlType", "addFonts", "Card5Fonts", "getFonts", "g11P6RObx_default", "Card6Fonts", "OTb3TUh7M_default", "Card7Fonts", "o709vuzrL_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "overlay", "overlay2", "overlay3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "SipwRqKtI", "UXKIqcHJt", "b9E01XpQB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave31ajqm", "args", "d2QuR_VIK1degqwt", "Pk30RASEZv35s5m", "d2QuR_VIKt71s8m", "Pk30RASEZ1416gj8", "d2QuR_VIKavdkf2", "Pk30RASEZ168856h", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameryLssUT3hk", "withCSS", "yLssUT3hk_default", "addPropertyControls", "ControlType", "addFonts"]
}
