{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/80afWAxLBphQ5mh8Rf8M/K79GfH4eeyN0yBbPDE2y/wHkICDJ1H.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import NavigationMobileOpenNavigation from\"#framer/local/canvasComponent/BGiZQuPOO/BGiZQuPOO.js\";import FooterEnaLogo from\"#framer/local/canvasComponent/c9_KSBFxw/c9_KSBFxw.js\";import FooterFooter from\"#framer/local/canvasComponent/J0LNWxmCZ/J0LNWxmCZ.js\";import ProjectsProjectsCard from\"#framer/local/canvasComponent/Lrkv11kZg/Lrkv11kZg.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/QaFoemE2c/QaFoemE2c.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/Se7Sa8kPD/Se7Sa8kPD.js\";import NavigationNavigation from\"#framer/local/canvasComponent/ZhbW5Y__b/ZhbW5Y__b.js\";import CaseStudies from\"#framer/local/collection/islNjMppD/islNjMppD.js\";import*as sharedStyle4 from\"#framer/local/css/DL1_DmJtY/DL1_DmJtY.js\";import*as sharedStyle2 from\"#framer/local/css/l9UToIMeF/l9UToIMeF.js\";import*as sharedStyle from\"#framer/local/css/p3aMDbkx_/p3aMDbkx_.js\";import*as sharedStyle1 from\"#framer/local/css/ws35hVPiM/ws35hVPiM.js\";import*as sharedStyle3 from\"#framer/local/css/YXAkWXgX7/YXAkWXgX7.js\";import metadataProvider from\"#framer/local/webPageMetadata/wHkICDJ1H/wHkICDJ1H.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationNavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationMobile);const NavigationMobileOpenNavigationFonts=getFonts(NavigationMobileOpenNavigation);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const GlobalLineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(GlobalLineAnimationGlobal);const RichTextWithFX=withFX(RichText);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const ProjectsProjectsCardFonts=getFonts(ProjectsProjectsCard);const FooterFooterFonts=getFonts(FooterFooter);const FooterEnaLogoFonts=getFonts(FooterEnaLogo);const breakpoints={HWsemc2rZ:\"(max-width: 809px)\",MSLuyxKqc:\"(min-width: 1200px)\",Tfdg5Z1uw:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NUtrK\";const variantClassNames={HWsemc2rZ:\"framer-v-6ds8m8\",MSLuyxKqc:\"framer-v-1cohx33\",Tfdg5Z1uw:\"framer-v-as1zhu\"};const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation3={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={delay:.04,duration:.8,ease:[.25,1,.5,1],type:\"tween\"};const textEffect={effect:animation3,repeat:false,startDelay:1.4,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation3,repeat:false,startDelay:.4,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={delay:.04,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const textEffect2={effect:animation3,repeat:false,startDelay:1.7,tokenization:\"line\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect3={effect:animation3,repeat:false,startDelay:.7,tokenization:\"line\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition4={delay:.6,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition5={delay:.6,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition6={delay:.7,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition7={delay:.8,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition8={delay:.9,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition9={delay:.95,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition10={delay:1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition11={delay:1.1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition12={delay:1.2,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:20};const getTextEffect=ref=>({effect:animation7,repeat:false,startDelay:1,target:{ref},threshold:0,tokenization:\"line\",transition:transition3,trigger:\"onScrollTarget\",type:\"appear\"});const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition13={delay:.2,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition14={delay:1.3,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition15={delay:1.4,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition16={delay:1.8,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"MSLuyxKqc\",Phone:\"HWsemc2rZ\",Tablet:\"Tfdg5Z1uw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MSLuyxKqc\"};};const cursor={alignment:\"start\",component:FooterEnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"stxP7bzad\"};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"wHkICDJ1H\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"wHkICDJ1H\",data:CaseStudies,type:\"Collection\"},right:{alias:\"nextItemId\",data:CaseStudies,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"wHkICDJ1H\",name:\"O7geCjRSa\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"b4lYXadgm\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"A4jVfXPHh\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"NrU8afFxG\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Q9jC5ouXB\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"xtIP1CHRT\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"cF8d4kxHc\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"R6KKC_68n\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Q_N5MsM8i\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"R6FhwN0Mn\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"ScQAVSts_\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"l9yRqcpyo\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"JxJIxrLyK\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"JchoCjuF4\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"xql6Km65e\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"SgktiD9dn\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"qZu4nsRgC\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"jGCL8mUy6\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"vr5oAQi55\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"A1eevsbM2\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"GrOSvREP8\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Y7dP8mplO\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"OOfEh0y_k\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"EH9p0bMRO\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"q0Pu7ltBL\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"UskFo2APx\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"vOoKpoyqW\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"siYpTzpWa\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"ADeXIwqBt\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"TmzON1f0w\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"EmkzZwsnw\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"ZN_jvOvw0\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"DRCnI8ZJK\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"bCsFjQloS\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"zs75uMe0B\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"VXDTuP3F4\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"orOtTjF8q\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"x3Z3RfJ3A\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Ddn4dRVKk\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"U3dUx9uzD\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"FBlGdKYSx\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"xrrwoCvkk\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"po5iszWus\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"CeKb9Czc2\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"mvoT8S4Xv\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"YA2R7OF8y\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"HJMY3zA0L\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"mCOsImJga\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"QGojug26C\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"rJVII_6WV\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"jm9s_Ybt7\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"SLq5x1kkg\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Vv_DR0VoB\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"sgcmH3pi9\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"L8BAO7jUq\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"aVeMyFuj0\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"bBAf7glEG\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"tuYhOUApx\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"aPsdrhTc_\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"a_POkM2tj\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"mDRbNjLBt\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"M0SXeJ5zq\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"KAuLNROaX\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"cGZzOFo_j\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"bCbVxlqyq\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"meEOPMJQw\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"DmW_aoLVV\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"vH7oG1Sl5\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"a2t0mQYrX\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"quXgpCQ34\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"b3keqFBJH\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"L2vqI1sZV\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"BABDYm_P2\",type:\"Identifier\"},{alias:\"nextItemId.o_45cr1WA\",collection:\"nextItemId\",name:\"o_45cr1WA\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"wHkICDJ1H\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,b4lYXadgm=getFromCurrentRouteData(\"b4lYXadgm\")??\"\",O7geCjRSa=getFromCurrentRouteData(\"O7geCjRSa\")??\"\",CeKb9Czc2=getFromCurrentRouteData(\"CeKb9Czc2\"),mvoT8S4Xv=getFromCurrentRouteData(\"mvoT8S4Xv\")??\"\",nextItemId_o_45cr1WA=getFromCurrentRouteData(\"nextItemId.o_45cr1WA\"),A4jVfXPHh=getFromCurrentRouteData(\"A4jVfXPHh\")??\"\",NrU8afFxG=getFromCurrentRouteData(\"NrU8afFxG\")??\"\",Q9jC5ouXB=getFromCurrentRouteData(\"Q9jC5ouXB\")??\"\",xtIP1CHRT=getFromCurrentRouteData(\"xtIP1CHRT\")??\"\",cF8d4kxHc=getFromCurrentRouteData(\"cF8d4kxHc\")??\"\",R6KKC_68n=getFromCurrentRouteData(\"R6KKC_68n\")??\"\",Q_N5MsM8i=getFromCurrentRouteData(\"Q_N5MsM8i\")??\"\",JxJIxrLyK=getFromCurrentRouteData(\"JxJIxrLyK\")??true,SgktiD9dn=getFromCurrentRouteData(\"SgktiD9dn\")??true,YA2R7OF8y=getFromCurrentRouteData(\"YA2R7OF8y\"),ScQAVSts_=getFromCurrentRouteData(\"ScQAVSts_\")??true,q0Pu7ltBL=getFromCurrentRouteData(\"q0Pu7ltBL\")??true,jGCL8mUy6=getFromCurrentRouteData(\"jGCL8mUy6\")??true,qZu4nsRgC=getFromCurrentRouteData(\"qZu4nsRgC\")??true,l9yRqcpyo=getFromCurrentRouteData(\"l9yRqcpyo\")??true,R6FhwN0Mn=getFromCurrentRouteData(\"R6FhwN0Mn\")??true,TmzON1f0w=getFromCurrentRouteData(\"TmzON1f0w\")??true,siYpTzpWa=getFromCurrentRouteData(\"siYpTzpWa\")??true,xql6Km65e=getFromCurrentRouteData(\"xql6Km65e\")??true,EmkzZwsnw=getFromCurrentRouteData(\"EmkzZwsnw\")??true,HJMY3zA0L=getFromCurrentRouteData(\"HJMY3zA0L\"),vr5oAQi55=getFromCurrentRouteData(\"vr5oAQi55\")??true,ZN_jvOvw0=getFromCurrentRouteData(\"ZN_jvOvw0\")??true,mCOsImJga=getFromCurrentRouteData(\"mCOsImJga\"),EH9p0bMRO=getFromCurrentRouteData(\"EH9p0bMRO\")??true,UskFo2APx=getFromCurrentRouteData(\"UskFo2APx\")??true,QGojug26C=getFromCurrentRouteData(\"QGojug26C\"),DRCnI8ZJK=getFromCurrentRouteData(\"DRCnI8ZJK\")??true,rJVII_6WV=getFromCurrentRouteData(\"rJVII_6WV\"),ADeXIwqBt=getFromCurrentRouteData(\"ADeXIwqBt\")??true,JchoCjuF4=getFromCurrentRouteData(\"JchoCjuF4\")??true,bCsFjQloS=getFromCurrentRouteData(\"bCsFjQloS\")??true,jm9s_Ybt7=getFromCurrentRouteData(\"jm9s_Ybt7\"),zs75uMe0B=getFromCurrentRouteData(\"zs75uMe0B\")??true,SLq5x1kkg=getFromCurrentRouteData(\"SLq5x1kkg\"),VXDTuP3F4=getFromCurrentRouteData(\"VXDTuP3F4\")??true,Vv_DR0VoB=getFromCurrentRouteData(\"Vv_DR0VoB\"),orOtTjF8q=getFromCurrentRouteData(\"orOtTjF8q\")??true,sgcmH3pi9=getFromCurrentRouteData(\"sgcmH3pi9\"),A1eevsbM2=getFromCurrentRouteData(\"A1eevsbM2\")??true,x3Z3RfJ3A=getFromCurrentRouteData(\"x3Z3RfJ3A\")??true,L8BAO7jUq=getFromCurrentRouteData(\"L8BAO7jUq\"),vOoKpoyqW=getFromCurrentRouteData(\"vOoKpoyqW\")??true,GrOSvREP8=getFromCurrentRouteData(\"GrOSvREP8\")??true,Ddn4dRVKk=getFromCurrentRouteData(\"Ddn4dRVKk\")??true,aVeMyFuj0=getFromCurrentRouteData(\"aVeMyFuj0\"),Y7dP8mplO=getFromCurrentRouteData(\"Y7dP8mplO\")??true,U3dUx9uzD=getFromCurrentRouteData(\"U3dUx9uzD\")??true,bBAf7glEG=getFromCurrentRouteData(\"bBAf7glEG\"),FBlGdKYSx=getFromCurrentRouteData(\"FBlGdKYSx\")??true,tuYhOUApx=getFromCurrentRouteData(\"tuYhOUApx\"),xrrwoCvkk=getFromCurrentRouteData(\"xrrwoCvkk\")??true,aPsdrhTc_=getFromCurrentRouteData(\"aPsdrhTc_\"),po5iszWus=getFromCurrentRouteData(\"po5iszWus\")??true,a_POkM2tj=getFromCurrentRouteData(\"a_POkM2tj\"),OOfEh0y_k=getFromCurrentRouteData(\"OOfEh0y_k\")??true,mDRbNjLBt=getFromCurrentRouteData(\"mDRbNjLBt\")??\"\",M0SXeJ5zq=getFromCurrentRouteData(\"M0SXeJ5zq\")??\"\",KAuLNROaX=getFromCurrentRouteData(\"KAuLNROaX\")??\"\",cGZzOFo_j=getFromCurrentRouteData(\"cGZzOFo_j\")??\"\",bCbVxlqyq=getFromCurrentRouteData(\"bCbVxlqyq\")??\"\",meEOPMJQw=getFromCurrentRouteData(\"meEOPMJQw\")??\"\",DmW_aoLVV=getFromCurrentRouteData(\"DmW_aoLVV\")??\"\",vH7oG1Sl5=getFromCurrentRouteData(\"vH7oG1Sl5\")??\"\",a2t0mQYrX=getFromCurrentRouteData(\"a2t0mQYrX\")??\"\",quXgpCQ34=getFromCurrentRouteData(\"quXgpCQ34\")??\"\",IhjieOobtzyB5cUfnm,K40C8X2DnzyB5cUfnm,O7geCjRSazyB5cUfnm,XhgCyJIpizyB5cUfnm,NrU8afFxGzyB5cUfnm,idzyB5cUfnm,b3keqFBJH=getFromCurrentRouteData(\"b3keqFBJH\")??0,IhjieOobtqicIkwr8X,K40C8X2DnqicIkwr8X,O7geCjRSaqicIkwr8X,XhgCyJIpiqicIkwr8X,NrU8afFxGqicIkwr8X,idqicIkwr8X,L2vqI1sZV=getFromCurrentRouteData(\"L2vqI1sZV\")??0,IhjieOobtArXYk0ae1,K40C8X2DnArXYk0ae1,O7geCjRSaArXYk0ae1,XhgCyJIpiArXYk0ae1,NrU8afFxGArXYk0ae1,idArXYk0ae1,BABDYm_P2=getFromCurrentRouteData(\"BABDYm_P2\")??0,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Tfdg5Z1uw\",\"HWsemc2rZ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Tfdg5Z1uw\",\"HWsemc2rZ\"].includes(baseVariant))return true;return false;};const visible=isSet(CeKb9Czc2);const visible1=isSet(mvoT8S4Xv);const elementId=useRouteElementId(\"VChd3IxUK\");const ref1=React.useRef(null);const visible2=isSet(YA2R7OF8y);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HWsemc2rZ\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Tfdg5Z1uw\")return false;return true;};const elementId1=useRouteElementId(\"M1puzbOzw\");const ref2=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"HWsemc2rZ\")return true;return false;};const elementId2=useRouteElementId(\"zeYDC_gyY\");const ref3=React.useRef(null);useCustomCursors({\"16158ew\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MSLuyxKqc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1cohx33\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g9iw1q-container hidden-as1zhu hidden-6ds8m8\",layoutScroll:true,nodeId:\"UV_kmtkiM\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"UV_kmtkiM\",layoutId:\"UV_kmtkiM\",style:{width:\"100%\"},variant:\"RHuwicozo\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{height:48,width:componentViewport?.width||\"100vw\",y:0},Tfdg5Z1uw:{height:48,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ls4ylz-container hidden-1cohx33\",\"data-framer-name\":\"Navigation Mobile\",id:\"1ls4ylz\",layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"g5RYHgvfp\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:overlay.visible?\"PPFOyo3m8\":undefined}},children:/*#__PURE__*/_jsx(NavigationNavigationMobileWithVariantAppearEffect,{EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"g5RYHgvfp\",layoutId:\"g5RYHgvfp\",name:\"Navigation Mobile\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1jyek5l\"),\"data-framer-portal-id\":\"1ls4ylz\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ncj6EVsW4\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-1bvm1ww-container\"),\"data-framer-portal-id\":\"1ls4ylz\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"UgbQ_0yuy\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileOpenNavigation,{height:\"100%\",id:\"UgbQ_0yuy\",layoutId:\"UgbQ_0yuy\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uyy6ak\",\"data-framer-name\":\"Buy Template\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ah9wj0\",\"data-framer-name\":\"Button Wrapper\"})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-15pfktq\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-66uim6\",\"data-framer-name\":\"Section Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mox8d1\",\"data-framer-name\":\"Heading Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cc0hgo\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pdkgny\",\"data-styles-preset\":\"p3aMDbkx_\",children:\"13\"})}),className:\"framer-1se5g3d\",\"data-framer-name\":\"Number\",effect:textEffect,fonts:[\"Inter\"],text:b4lYXadgm,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ahs4e\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{effect:textEffect3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1d4z5wo\",\"data-styles-preset\":\"ws35hVPiM\",style:{\"--framer-text-alignment\":\"left\"},children:\"Google Deepmind\"})}),className:\"framer-59g43l\",\"data-framer-name\":\"Title\",effect:textEffect2,fonts:[\"Inter\"],text:O7geCjRSa,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16p8aa5\",\"data-framer-name\":\"Media\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{animate:animation4,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+250+85+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(CeKb9Czc2)},className:\"framer-1dm5hfx\",\"data-framer-appear-id\":\"1dm5hfx\",\"data-framer-name\":\"Hero Image\"})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{animate:animation4,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{className:\"framer-80ngi8-container\",\"data-framer-appear-id\":\"80ngi8\",\"data-framer-name\":\"Hero Video\",isModuleExternal:true,name:\"Hero Video\",nodeId:\"g7o1HapJm\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"g7o1HapJm\",isMixedBorderRadius:false,layoutId:\"g7o1HapJm\",loop:true,muted:true,name:\"Hero Video\",objectFit:\"cover\",playing:true,poster:toImageSrc(nextItemId_o_45cr1WA),posterEnabled:true,srcType:\"URL\",srcUrl:mvoT8S4Xv,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ot7a84\",\"data-framer-name\":\"Section Info\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13yo5de hidden-as1zhu hidden-6ds8m8\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ud1vv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197lucp\",\"data-framer-name\":\"Clients\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+925+40+0+0+0+0},Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+955+40+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10av7kx-container\",nodeId:\"QJ4I4f4lm\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__variantAppearEffectEnabled:undefined,variant:\"bKq9rIYfi\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref1,target:\"m7s6ZN4H8\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"QJ4I4f4lm\",layoutId:\"QJ4I4f4lm\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"rbYAIUfKv\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qoized\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Client\"})}),className:\"framer-em0ji3\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Zara\"})}),className:\"framer-1k5zsjh\",fonts:[\"Inter\"],text:A4jVfXPHh,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8rjll\",\"data-framer-name\":\"Type\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+925+40+0+59+0+0},Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+955+40+0+59+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqfuga-container\",nodeId:\"krcVTu1wl\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__variantAppearEffectEnabled:undefined,variant:\"bKq9rIYfi\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref1,target:\"XO1sy5Tjg\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"krcVTu1wl\",layoutId:\"krcVTu1wl\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"kDeSMeIS3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l44xte\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1054mcb\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Type\"})}),className:\"framer-1mtxu7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x7kn7a\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ytmgp5\",\"data-framer-name\":\"Category 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Art Direction\"})}),className:\"framer-1w7tzdn\",fonts:[\"Inter\"],text:NrU8afFxG,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\",\"})}),className:\"framer-1fc7ywx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Web Design\"})}),className:\"framer-1mxay6w\",fonts:[\"Inter\"],text:Q9jC5ouXB,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpivbx\",\"data-framer-name\":\"Year\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+925+40+0+170+0+0},Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+955+40+0+170+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c7umsb-container\",nodeId:\"bWg7PmdPb\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"bKq9rIYfi\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref1,target:\"Xh9UUb7CD\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"bWg7PmdPb\",layoutId:\"bWg7PmdPb\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"Mg_kfxvs2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bowclp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Year\"})}),className:\"framer-fzs76c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"2022\"})}),className:\"framer-96u25m\",fonts:[\"Inter\"],text:xtIP1CHRT,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31r722\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+925+40+0+229+0+0},Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+955+40+0+229+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-srn4za-container\",nodeId:\"rjrj_eBXx\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"bKq9rIYfi\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref1,target:\"zD42JB2FX\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"rjrj_eBXx\",layoutId:\"rjrj_eBXx\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"ywwikJpGV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1femrtr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sew7v2\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Project\"})}),className:\"framer-yy85sm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"I am Luca Derven, a Digital Designer & Art Director based in Toronto, Canada. With more than 10 year of experience in digital design and print for national and international clients such as Balea, Sensa, Apex Films and Filippe Monet. Currently working at Basic as  Creative Director.\"})}),className:\"framer-1i7xwjx\",effect:getTextEffect(ref1),fonts:[\"Inter\"],text:cF8d4kxHc,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gtes5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdydjt\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Brief\"})}),className:\"framer-nsjmy1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"I am Luca Derven, a Digital Designer & Art Director based in Toronto, Canada. With more than 10 year of experience in digital design and print for national and international clients such as Balea, Sensa, Apex Films and Filippe Monet. Currently working at Basic as  Creative Director.\"})}),className:\"framer-lx6f4\",effect:getTextEffect(ref1),fonts:[\"Inter\"],text:R6KKC_68n,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9ehoc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7cu2s4\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Solution\"})}),className:\"framer-1p190sr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"I am Luca Derven, a Digital Designer & Art Director based in Toronto, Canada. With more than 10 year of experience in digital design and print for national and international clients such as Balea, Sensa, Apex Films and Filippe Monet. Currently working at Basic as  Creative Director.\"})}),className:\"framer-4rgcd4\",effect:getTextEffect(ref1),fonts:[\"Inter\"],text:Q_N5MsM8i,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-nfwma6\",\"data-framer-name\":\"Section Content\",children:[JxJIxrLyK&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gub9w0\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h8p4es\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6p8fd8\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yji2sy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Uc0euC8lB\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Uc0euC8lB\",isMixedBorderRadius:false,isRed:false,layoutId:\"Uc0euC8lB\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Q4RycqbnISU\",width:\"100%\"})})})})})}),SgktiD9dn&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-28617e\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kh9dqk\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19hh4v8\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3r5zvd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F6W6bPfHN\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"F6W6bPfHN\",isMixedBorderRadius:false,isRed:false,layoutId:\"F6W6bPfHN\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/a8NDb_OTC6I\",width:\"100%\"})})})})})}),ScQAVSts_&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vtnu7\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a9qz3z\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i4lyo6\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d2x5jq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"B0g_chsQ3\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"B0g_chsQ3\",isMixedBorderRadius:false,isRed:false,layoutId:\"B0g_chsQ3\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/tvPA79_-piM?si=KZFAYU2NZuO6x3BH\",width:\"100%\"})})})})})}),q0Pu7ltBL&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajv3dt\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9c7x2f\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yyyrzt\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w1hed4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k9BHbvB0a\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"k9BHbvB0a\",isMixedBorderRadius:false,isRed:false,layoutId:\"k9BHbvB0a\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/KocRt-sb2nk\",width:\"100%\"})})})})})}),jGCL8mUy6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idumm1\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-169gk4t\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p4bose\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-94uagt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"USLloHthd\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"USLloHthd\",isMixedBorderRadius:false,isRed:false,layoutId:\"USLloHthd\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/dRxW-mW1rBI?si=-cCXS99Ei8uZ5b6g\",width:\"100%\"})})})})})}),qZu4nsRgC&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ufd7v6\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w04h87\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-161itna\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tkajd4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NH3kp0zVC\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"NH3kp0zVC\",isMixedBorderRadius:false,isRed:false,layoutId:\"NH3kp0zVC\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/t5_8qV4eY-I\",width:\"100%\"})})})})})}),ScQAVSts_&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1acezni\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpdw6n\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xlvqft\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c1ngs0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z73pvSImZ\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Z73pvSImZ\",isMixedBorderRadius:false,isRed:false,layoutId:\"Z73pvSImZ\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/t5_8qV4eY-I\",width:\"100%\"})})})})})}),l9yRqcpyo&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jq3zcg\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x6oz0z\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15kvodk\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-awtd6o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hKjk9TROq\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"hKjk9TROq\",isMixedBorderRadius:false,isRed:false,layoutId:\"hKjk9TROq\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/CigFcjpPsok\",width:\"100%\"})})})})})}),R6FhwN0Mn&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pk2ct\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xttrfj\",\"data-framer-name\":\"Image Wrapper\",children:R6FhwN0Mn&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n5mc7m\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gg4m72-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"os_rozIGQ\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"os_rozIGQ\",isMixedBorderRadius:false,isRed:false,layoutId:\"os_rozIGQ\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Q9XklntXdkM?si=kRYXaLmhiS3DN-Au\",width:\"100%\"})})})})})}),TmzON1f0w&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1heblfj\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3v5lky\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+3960+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+3960+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+4005+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)},className:\"framer-t0s495\",\"data-framer-name\":\"Image 1\"})})})}),siYpTzpWa&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vg9ool\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mlvdaf\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2pp0b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fL5JgWMsA\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fL5JgWMsA\",isMixedBorderRadius:false,isRed:false,layoutId:\"fL5JgWMsA\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/YRH32rMpqwQ\",width:\"100%\"})})})})}),xql6Km65e&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-110agy9\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yj47uz\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yadbw4\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kjijjo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GEc0XsAzV\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"GEc0XsAzV\",isMixedBorderRadius:false,isRed:false,layoutId:\"GEc0XsAzV\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/WQaEHver9bs\",width:\"100%\"})})})})})}),EmkzZwsnw&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-168ev77\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywy1t2\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+3990+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(HJMY3zA0L)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+4020+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(HJMY3zA0L)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+4065+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(HJMY3zA0L)},className:\"framer-1xc87qj\",\"data-framer-name\":\"Image 1\"})})})}),vr5oAQi55&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-icm3sk\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ivpllp\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x4dkpg\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kj5swn-container\",id:\"kj5swn\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IXrnCreor\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"IXrnCreor\",isMixedBorderRadius:false,isRed:false,layoutId:\"IXrnCreor\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/7hovIvofdfg\",width:\"100%\"})})})})})}),ZN_jvOvw0&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6x9ie\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfhdai\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+4815+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(mCOsImJga)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+4815+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(mCOsImJga)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+4870+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(mCOsImJga)},className:\"framer-1b1fael\",\"data-framer-name\":\"Image 1\"})})})}),EH9p0bMRO&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3qs1b8\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjx7xq\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cpzho5\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dxjnxq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XEH31I8do\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"XEH31I8do\",isMixedBorderRadius:false,isRed:false,layoutId:\"XEH31I8do\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/jsag06wmjgs\",width:\"100%\"})})})})})}),UskFo2APx&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ylm5mr\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qsfmcu\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m8z1c1\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tfu1z6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KjRPXVGFX\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"KjRPXVGFX\",isMixedBorderRadius:false,isRed:false,layoutId:\"KjRPXVGFX\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/zS8Yo0EfKlQ\",width:\"100%\"})})})})})}),ZN_jvOvw0&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16kxd2y\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m61xbk\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+5625+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(QGojug26C)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+5625+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(QGojug26C)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+5695+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(QGojug26C)},className:\"framer-iv0u75\",\"data-framer-name\":\"Image 1\"})})})}),DRCnI8ZJK&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12riy21\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hy3tih\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+5640+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(rJVII_6WV)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+5640+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(rJVII_6WV)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+5715+-382.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(rJVII_6WV)},className:\"framer-11j2dwv\",\"data-framer-name\":\"Image 1\"})})})}),ADeXIwqBt&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xk7chc\",\"data-framer-name\":\"Content 1\",children:visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fonve2\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ljn7pe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UJCRCctkm\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"UJCRCctkm\",isMixedBorderRadius:false,isRed:false,layoutId:\"UJCRCctkm\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/WzoczYCdHFY\",width:\"100%\"})})})})}),JchoCjuF4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cuzzv0\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1daxld3\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1huy4e\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ca0vwv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PyFL8PHTv\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"PyFL8PHTv\",isMixedBorderRadius:false,isRed:false,layoutId:\"PyFL8PHTv\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/5sAfOvdZUzo\",width:\"100%\"})})})})})}),bCsFjQloS&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fik4rc\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuf7ik\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+6435+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jm9s_Ybt7)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+6435+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jm9s_Ybt7)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+6540+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(jm9s_Ybt7)},className:\"framer-uu2kps\",\"data-framer-name\":\"Image 1\"})})})}),zs75uMe0B&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gb48lu\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-um0jxz\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+7215+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(SLq5x1kkg)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+7215+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(SLq5x1kkg)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+7325+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(SLq5x1kkg)},className:\"framer-xb8eaf\",\"data-framer-name\":\"Image 1\"})})})}),VXDTuP3F4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xx2895\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qpy9vv\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+7995+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(Vv_DR0VoB)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+7995+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(Vv_DR0VoB)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+8110+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(Vv_DR0VoB)},className:\"framer-6ijp7z\",\"data-framer-name\":\"Image 1\"})})})}),orOtTjF8q&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4njq3\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rf2mgf\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+8775+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(sgcmH3pi9)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+8775+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(sgcmH3pi9)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+8895+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(sgcmH3pi9)},className:\"framer-1b2p99p\",\"data-framer-name\":\"Image 1\"})})})}),A1eevsbM2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10s5ukm\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10sgdh9\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fadhic\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t8k9y3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XkrvYlLfU\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"XkrvYlLfU\",isMixedBorderRadius:false,isRed:false,layoutId:\"XkrvYlLfU\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/m4V9UdcyxUY\",width:\"100%\"})})})})})}),x3Z3RfJ3A&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2hyuo\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ojhudm\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+10335+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(L8BAO7jUq)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+10335+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(L8BAO7jUq)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+10465+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(L8BAO7jUq)},className:\"framer-1fwp2oy\",\"data-framer-name\":\"Image 1\"})})})}),vOoKpoyqW&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cxz08x\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16nd13h\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-161xdrd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cz_1n2eBd\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"cz_1n2eBd\",isMixedBorderRadius:false,isRed:false,layoutId:\"cz_1n2eBd\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/4Y6xeYRE8Vc\",width:\"100%\"})})})})}),GrOSvREP8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bmt2df\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jsjro6\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xw2jhh\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19g0ba5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fvlsIJTpN\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fvlsIJTpN\",isMixedBorderRadius:false,isRed:false,layoutId:\"fvlsIJTpN\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/fj1RQtJfm-o\",width:\"100%\"})})})})})}),Ddn4dRVKk&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1peec88\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pn9jt3\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+12675+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(aVeMyFuj0)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+11895+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(aVeMyFuj0)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+12820+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(aVeMyFuj0)},className:\"framer-18fq70s\",\"data-framer-name\":\"Image 1\"})})})}),Y7dP8mplO&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dni6dd\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zngwe\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a9y3nw\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rr3nj5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mrZca_1YZ\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"mrZca_1YZ\",isMixedBorderRadius:false,isRed:false,layoutId:\"mrZca_1YZ\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/q1A5Gupza3k\",width:\"100%\"})})})})})}),U3dUx9uzD&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jdt2y9\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2zjr1\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+14235+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(bBAf7glEG)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+14235+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(bBAf7glEG)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+14390+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(bBAf7glEG)},className:\"framer-1x8z7g5\",\"data-framer-name\":\"Image 1\"})})})}),FBlGdKYSx&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19srp16\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ukx41a\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+15015+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(tuYhOUApx)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+15015+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(tuYhOUApx)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+15175+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(tuYhOUApx)},className:\"framer-1n9psto\",\"data-framer-name\":\"Image 1\"})})})}),xrrwoCvkk&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6v3ewg\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-109wxnk\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+15795+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(aPsdrhTc_)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+15795+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(aPsdrhTc_)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+15960+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(aPsdrhTc_)},className:\"framer-1otksik\",\"data-framer-name\":\"Image 1\"})})})}),po5iszWus&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vckdsf\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2oohc7\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1587.5+0+16575+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(a_POkM2tj)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+16575+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(a_POkM2tj)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1617.5+0+16745+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(a_POkM2tj)},className:\"framer-5vlmup\",\"data-framer-name\":\"Image 1\"})})})}),OOfEh0y_k&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffvuqi\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lj1a3z\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h4beb3\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s8lvm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DDSrIAiUM\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"DDSrIAiUM\",isMixedBorderRadius:false,isRed:false,layoutId:\"DDSrIAiUM\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Je559ZtjDP8\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5adscp hidden-6ds8m8\",\"data-framer-name\":\"Credits\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-q5atxq hidden-as1zhu\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12a6089\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wx2kkb\",\"data-framer-name\":\"Credits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pnen4c\",\"data-framer-name\":\"Credits 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18135+40+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18315+40+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qxsbdi-container\",nodeId:\"c8j6sck2p\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"m7s6ZN4H8\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"c8j6sck2p\",layoutId:\"c8j6sck2p\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"rbYAIUfKv\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1axklbv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Credits\"})}),className:\"framer-1iv9n9w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3fj7v\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Noah Jenkins\"})}),className:\"framer-cndp5d\",fonts:[\"Inter\"],text:mDRbNjLBt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Creative Director\"})}),className:\"framer-wtfssj\",fonts:[\"Inter\"],text:M0SXeJ5zq,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b5orko\",\"data-framer-name\":\"Credits 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10dbdds\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug8sct\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agypqo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{width:`max((max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18135+40+0+0+0+89+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18315+40+0+0+0+89+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7p9yce-container\",nodeId:\"mqWEXmfpJ\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"XO1sy5Tjg\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"mqWEXmfpJ\",layoutId:\"mqWEXmfpJ\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"kDeSMeIS3\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aw2bdy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Isabella Brooks\"})}),className:\"framer-16mo3hz\",fonts:[\"Inter\"],text:KAuLNROaX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Designer\"})}),className:\"framer-za4xx3\",fonts:[\"Inter\"],text:cGZzOFo_j,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o85r9a\",\"data-framer-name\":\"Credits 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tne6sd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fowww0\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqiu0m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{width:`max((max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18135+40+0+0+0+126+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18315+40+0+0+0+126+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h0znzd-container\",nodeId:\"UsfIsFAQh\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"Xh9UUb7CD\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"UsfIsFAQh\",layoutId:\"UsfIsFAQh\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"Mg_kfxvs2\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4nuzn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"James Hughes\"})}),className:\"framer-11sim4v\",fonts:[\"Inter\"],text:bCbVxlqyq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Motion Designer\"})}),className:\"framer-gmbc6x\",fonts:[\"Inter\"],text:meEOPMJQw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r6cia1\",\"data-framer-name\":\"Credits 4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mt775e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10coece\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-109u35d\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{width:`max((max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18135+40+0+0+0+163+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18315+40+0+0+0+163+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cafdh1-container\",nodeId:\"ADsdz3zAF\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"zD42JB2FX\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ADsdz3zAF\",layoutId:\"ADsdz3zAF\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"ywwikJpGV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121a6gz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Maria White\"})}),className:\"framer-tdtcu\",fonts:[\"Inter\"],text:DmW_aoLVV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Copywriter\"})}),className:\"framer-xacp6r\",fonts:[\"Inter\"],text:vH7oG1Sl5,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcgfw4\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1njm51b\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tfdg5Z1uw:{width:`max((${componentViewport?.width||\"100vw\"} - 30px) * 1, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18135+40+0+222+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+1617.5+0+18315+40+0+222+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tz4y3s-container\",nodeId:\"XjE_wXpvc\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"zjk1bnBEb\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"XjE_wXpvc\",layoutId:\"XjE_wXpvc\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"t8w3GDQiH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m5fs2g\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdzvgf\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Art Gallery is a leading healthcare technology company specializing in advanced solutions and personalized wellness follow-up care. Their innovative approach seamlessly connects patients, health tech wearables, and comprehensive clinical support, establishing VitaNova as a pioneer in this transformative industry.\"})}),className:\"framer-pj6592\",effect:getTextEffect(ref2),fonts:[\"Inter\"],text:a2t0mQYrX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Noah Jenkins, CEO\"})}),className:\"framer-1n5xedn\",fonts:[\"Inter\"],text:quXgpCQ34,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v4d0b7 hidden-1cohx33 hidden-as1zhu\",\"data-framer-name\":\"Section Credits - Mobile\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nyto0g\",\"data-framer-name\":\"Container\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1at51tf\",\"data-framer-name\":\"Credits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bkj1ju\",\"data-framer-name\":\"Credits 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+1587.5+0+18135+40+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-192neux-container\",nodeId:\"XYoqHVcvW\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"XYoqHVcvW\",layoutId:\"XYoqHVcvW\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbrchd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Credits\"})}),className:\"framer-fjyexm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pb1d96\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Noah Jenkins\"})}),className:\"framer-dg6qf6\",fonts:[\"Inter\"],text:mDRbNjLBt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Creative Director\"})}),className:\"framer-7eq6b0\",fonts:[\"Inter\"],text:M0SXeJ5zq,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y0sn6v\",\"data-framer-name\":\"Credits 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exka5e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mfe96\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17cop4x\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1587.5+0+18135+40+0+0+0+89+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hcajng-container\",nodeId:\"LKXYQaNjM\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"LKXYQaNjM\",layoutId:\"LKXYQaNjM\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s552jk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Isabella Brooks\"})}),className:\"framer-1dyc9aa\",fonts:[\"Inter\"],text:KAuLNROaX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Designer\"})}),className:\"framer-jstruj\",fonts:[\"Inter\"],text:cGZzOFo_j,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-63kc36\",\"data-framer-name\":\"Credits 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxbcs9\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-guyny3\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ravgk5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1587.5+0+18135+40+0+0+0+126+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ell1eu-container\",nodeId:\"ctBIpyyIH\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"ctBIpyyIH\",layoutId:\"ctBIpyyIH\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13gjtu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"James Hughes\"})}),className:\"framer-6zpe5r\",fonts:[\"Inter\"],text:bCbVxlqyq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Motion Designer\"})}),className:\"framer-1fstw9r\",fonts:[\"Inter\"],text:meEOPMJQw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ct31lo\",\"data-framer-name\":\"Credits 4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-he106k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b868hq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2wlmb2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 10px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+1587.5+0+18135+40+0+0+0+163+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1frogf-container\",nodeId:\"Q3StWkzyL\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"Q3StWkzyL\",layoutId:\"Q3StWkzyL\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvjyro\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Maria White\"})}),className:\"framer-1l5thsv\",fonts:[\"Inter\"],text:DmW_aoLVV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Copywriter\"})}),className:\"framer-2tukhx\",fonts:[\"Inter\"],text:vH7oG1Sl5,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5zs9yn\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhwl4s\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+1587.5+0+18135+40+0+222+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h8vbfj-container\",nodeId:\"DHsQssYAi\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"DHsQssYAi\",layoutId:\"DHsQssYAi\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwwylz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g0i6bi\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nvruir\",\"data-styles-preset\":\"l9UToIMeF\",children:\"Quote\"})}),className:\"framer-1bypxwb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hiiro8\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Art Gallery is a leading healthcare technology company specializing in advanced solutions and personalized wellness follow-up care. Their innovative approach seamlessly connects patients, health tech wearables, and comprehensive clinical support, establishing VitaNova as a pioneer in this transformative industry.\"})}),className:\"framer-law82n\",fonts:[\"Inter\"],text:a2t0mQYrX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"Noah Jenkins, CEO\"})}),className:\"framer-1n6k4nd\",fonts:[\"Inter\"],text:quXgpCQ34,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1o7k7gr\",\"data-framer-name\":\"Section Next Project\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4vzrj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fj4dr8\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tcoahn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+0+0+0+0+0},Tfdg5Z1uw:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20510.5+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gi7usk-container\",nodeId:\"HdoQwVi4Y\",rendersWithMotion:true,scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"mAV7el3aO\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bKq9rIYfi\",height:\"100%\",id:\"HdoQwVi4Y\",layoutId:\"HdoQwVi4Y\",sjMku05M0:\"rgba(255, 255, 255, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fo196g\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13e7pcd\",\"data-styles-preset\":\"DL1_DmJtY\",children:\"More works\"})}),className:\"framer-uxst8j\",\"data-framer-name\":\"Selected Clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p1929e\",\"data-framer-name\":\"Projects\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umq19d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zyB5cUfnm\",data:CaseStudies,type:\"Collection\"},select:[{collection:\"zyB5cUfnm\",name:\"IhjieOobt\",type:\"Identifier\"},{collection:\"zyB5cUfnm\",name:\"K40C8X2Dn\",type:\"Identifier\"},{collection:\"zyB5cUfnm\",name:\"O7geCjRSa\",type:\"Identifier\"},{collection:\"zyB5cUfnm\",name:\"XhgCyJIpi\",type:\"Identifier\"},{collection:\"zyB5cUfnm\",name:\"NrU8afFxG\",type:\"Identifier\"},{collection:\"zyB5cUfnm\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"zyB5cUfnm\",name:\"qKgQNT2BB\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:b3keqFBJH},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idzyB5cUfnm,IhjieOobt:IhjieOobtzyB5cUfnm,K40C8X2Dn:K40C8X2DnzyB5cUfnm,NrU8afFxG:NrU8afFxGzyB5cUfnm,O7geCjRSa:O7geCjRSazyB5cUfnm,XhgCyJIpi:XhgCyJIpizyB5cUfnm},index)=>{IhjieOobtzyB5cUfnm??=\"\";O7geCjRSazyB5cUfnm??=\"\";XhgCyJIpizyB5cUfnm??=\"\";NrU8afFxGzyB5cUfnm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zyB5cUfnm-${idzyB5cUfnm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IhjieOobt:IhjieOobtzyB5cUfnm},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IhjieOobt:IhjieOobtzyB5cUfnm},webPageId:\"wHkICDJ1H\"},motionChild:true,nodeId:\"ASDKiOptx\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dg0p70 framer-1wjkstj\",\"data-framer-name\":\"Next Project\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+256+0+0+0+0+0+0},Tfdg5Z1uw:{width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 15px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+256+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+20510.5+0+0+256+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vznlyv-container\",nodeId:\"wAXcy1AJw\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"NJmU08bCj\"},Tfdg5Z1uw:{variant:\"NJmU08bCj\"}},children:/*#__PURE__*/_jsx(ProjectsProjectsCard,{Ez86KJERY:XhgCyJIpizyB5cUfnm,height:\"100%\",id:\"wAXcy1AJw\",IxWT0Tk8W:isSet(K40C8X2DnzyB5cUfnm),IYJMKPKDr:O7geCjRSazyB5cUfnm,layoutId:\"wAXcy1AJw\",style:{width:\"100%\"},variant:\"OOCGHFBtu\",Vst7TKP83:NrU8afFxGzyB5cUfnm,width:\"100%\",XZk5oDb5v:isSet(XhgCyJIpizyB5cUfnm),ySGx8RNHT:toResponsiveImage(K40C8X2DnzyB5cUfnm)})})})})})})})})},idzyB5cUfnm);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v2xv1d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qicIkwr8X\",data:CaseStudies,type:\"Collection\"},select:[{collection:\"qicIkwr8X\",name:\"IhjieOobt\",type:\"Identifier\"},{collection:\"qicIkwr8X\",name:\"K40C8X2Dn\",type:\"Identifier\"},{collection:\"qicIkwr8X\",name:\"O7geCjRSa\",type:\"Identifier\"},{collection:\"qicIkwr8X\",name:\"XhgCyJIpi\",type:\"Identifier\"},{collection:\"qicIkwr8X\",name:\"NrU8afFxG\",type:\"Identifier\"},{collection:\"qicIkwr8X\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"qicIkwr8X\",name:\"qKgQNT2BB\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:L2vqI1sZV},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idqicIkwr8X,IhjieOobt:IhjieOobtqicIkwr8X,K40C8X2Dn:K40C8X2DnqicIkwr8X,NrU8afFxG:NrU8afFxGqicIkwr8X,O7geCjRSa:O7geCjRSaqicIkwr8X,XhgCyJIpi:XhgCyJIpiqicIkwr8X},index1)=>{IhjieOobtqicIkwr8X??=\"\";O7geCjRSaqicIkwr8X??=\"\";XhgCyJIpiqicIkwr8X??=\"\";NrU8afFxGqicIkwr8X??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qicIkwr8X-${idqicIkwr8X}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IhjieOobt:IhjieOobtqicIkwr8X},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IhjieOobt:IhjieOobtqicIkwr8X},webPageId:\"wHkICDJ1H\"},motionChild:true,nodeId:\"c4ROm1ZZA\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7oc1g6 framer-1wjkstj\",\"data-framer-name\":\"Next Project\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+256+0+289+0+0+0+0},Tfdg5Z1uw:{width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 15px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+256+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+20510.5+0+0+256+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oqv6te-container\",nodeId:\"XolcAj2rD\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"NJmU08bCj\"},Tfdg5Z1uw:{variant:\"NJmU08bCj\"}},children:/*#__PURE__*/_jsx(ProjectsProjectsCard,{Ez86KJERY:XhgCyJIpiqicIkwr8X,height:\"100%\",id:\"XolcAj2rD\",IxWT0Tk8W:isSet(K40C8X2DnqicIkwr8X),IYJMKPKDr:O7geCjRSaqicIkwr8X,layoutId:\"XolcAj2rD\",style:{width:\"100%\"},variant:\"OOCGHFBtu\",Vst7TKP83:NrU8afFxGqicIkwr8X,width:\"100%\",XZk5oDb5v:isSet(XhgCyJIpiqicIkwr8X),ySGx8RNHT:toResponsiveImage(K40C8X2DnqicIkwr8X)})})})})})})})})},idqicIkwr8X);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5qp6o7 hidden-as1zhu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ArXYk0ae1\",data:CaseStudies,type:\"Collection\"},select:[{collection:\"ArXYk0ae1\",name:\"IhjieOobt\",type:\"Identifier\"},{collection:\"ArXYk0ae1\",name:\"K40C8X2Dn\",type:\"Identifier\"},{collection:\"ArXYk0ae1\",name:\"O7geCjRSa\",type:\"Identifier\"},{collection:\"ArXYk0ae1\",name:\"XhgCyJIpi\",type:\"Identifier\"},{collection:\"ArXYk0ae1\",name:\"NrU8afFxG\",type:\"Identifier\"},{collection:\"ArXYk0ae1\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ArXYk0ae1\",name:\"qKgQNT2BB\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:BABDYm_P2},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idArXYk0ae1,IhjieOobt:IhjieOobtArXYk0ae1,K40C8X2Dn:K40C8X2DnArXYk0ae1,NrU8afFxG:NrU8afFxGArXYk0ae1,O7geCjRSa:O7geCjRSaArXYk0ae1,XhgCyJIpi:XhgCyJIpiArXYk0ae1},index2)=>{IhjieOobtArXYk0ae1??=\"\";O7geCjRSaArXYk0ae1??=\"\";XhgCyJIpiArXYk0ae1??=\"\";NrU8afFxGArXYk0ae1??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ArXYk0ae1-${idArXYk0ae1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IhjieOobt:IhjieOobtArXYk0ae1},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IhjieOobt:IhjieOobtArXYk0ae1},webPageId:\"wHkICDJ1H\"},motionChild:true,nodeId:\"D4wS9LNVy\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-q2unnx framer-1wjkstj\",\"data-framer-name\":\"Next Project\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+20330.5+0+0+256+0+578+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:249,width:`max((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+20510.5+0+0+256+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ve30dn-container\",nodeId:\"tVaDgMbLy\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"NJmU08bCj\"}},children:/*#__PURE__*/_jsx(ProjectsProjectsCard,{Ez86KJERY:XhgCyJIpiArXYk0ae1,height:\"100%\",id:\"tVaDgMbLy\",IxWT0Tk8W:isSet(K40C8X2DnArXYk0ae1),IYJMKPKDr:O7geCjRSaArXYk0ae1,layoutId:\"tVaDgMbLy\",style:{width:\"100%\"},variant:\"OOCGHFBtu\",Vst7TKP83:NrU8afFxGArXYk0ae1,width:\"100%\",XZk5oDb5v:isSet(XhgCyJIpiArXYk0ae1),ySGx8RNHT:toResponsiveImage(K40C8X2DnArXYk0ae1)})})})})})})})})},idArXYk0ae1);})})})})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{y:(componentViewport?.y||0)+0+21573.5},Tfdg5Z1uw:{y:(componentViewport?.y||0)+0+20995.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:447,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+21175.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wi6amg-container\",nodeId:\"ez0qeJShr\",scopeId:\"wHkICDJ1H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{variant:\"LKuPWSgM0\"},Tfdg5Z1uw:{variant:\"ld8eol0x7\"}},children:/*#__PURE__*/_jsx(FooterFooter,{g8ExVt6Ui:\"16158ew\",height:\"100%\",id:\"ez0qeJShr\",layoutId:\"ez0qeJShr\",style:{width:\"100%\"},variant:\"XcHzD8GMj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NUtrK.framer-1wjkstj, .framer-NUtrK .framer-1wjkstj { display: block; }\",\".framer-NUtrK.framer-1cohx33 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-NUtrK .framer-1g9iw1q-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-NUtrK .framer-1ls4ylz-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-NUtrK.framer-1jyek5l { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-NUtrK.framer-1bvm1ww-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-NUtrK .framer-1uyy6ak { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-NUtrK .framer-1ah9wj0 { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-NUtrK .framer-15pfktq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-66uim6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 250px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1mox8d1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 18px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-cc0hgo { align-content: center; align-items: center; display: flex; flex: 0.7 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 7px 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-1se5g3d, .framer-NUtrK .framer-1w7tzdn, .framer-NUtrK .framer-1fc7ywx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NUtrK .framer-4ahs4e { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 7px 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-59g43l, .framer-NUtrK .framer-1k5zsjh, .framer-NUtrK .framer-1mxay6w, .framer-NUtrK .framer-96u25m, .framer-NUtrK .framer-1i7xwjx, .framer-NUtrK .framer-lx6f4, .framer-NUtrK .framer-4rgcd4, .framer-NUtrK .framer-dg6qf6, .framer-NUtrK .framer-1dyc9aa, .framer-NUtrK .framer-6zpe5r, .framer-NUtrK .framer-1l5thsv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-16p8aa5 { align-content: center; align-items: center; aspect-ratio: 1.935483870967742 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 103px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1dm5hfx { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 3; }\",\".framer-NUtrK .framer-80ngi8-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-NUtrK .framer-ot7a84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-13yo5de, .framer-NUtrK .framer-q5atxq { align-self: stretch; flex: 0.7 0 0px; gap: 10px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-NUtrK .framer-7ud1vv, .framer-NUtrK .framer-12a6089 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-197lucp, .framer-NUtrK .framer-1v8rjll, .framer-NUtrK .framer-1rpivbx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-10av7kx-container, .framer-NUtrK .framer-uqfuga-container, .framer-NUtrK .framer-c7umsb-container, .framer-NUtrK .framer-srn4za-container, .framer-NUtrK .framer-1qxsbdi-container, .framer-NUtrK .framer-7p9yce-container, .framer-NUtrK .framer-h0znzd-container, .framer-NUtrK .framer-cafdh1-container, .framer-NUtrK .framer-tz4y3s-container, .framer-NUtrK .framer-192neux-container, .framer-NUtrK .framer-1hcajng-container, .framer-NUtrK .framer-1ell1eu-container, .framer-NUtrK .framer-1frogf-container, .framer-NUtrK .framer-h8vbfj-container, .framer-NUtrK .framer-gi7usk-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-qoized, .framer-NUtrK .framer-1bowclp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-em0ji3, .framer-NUtrK .framer-1mtxu7e, .framer-NUtrK .framer-fzs76c, .framer-NUtrK .framer-yy85sm, .framer-NUtrK .framer-nsjmy1, .framer-NUtrK .framer-1p190sr, .framer-NUtrK .framer-1iv9n9w, .framer-NUtrK .framer-fjyexm { --framer-paragraph-spacing: 0px; flex: 0.5 0 0px; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-l44xte { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1054mcb, .framer-NUtrK .framer-1sew7v2, .framer-NUtrK .framer-1kdydjt, .framer-NUtrK .framer-7cu2s4, .framer-NUtrK .framer-1g0i6bi { align-content: center; align-items: center; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-x7kn7a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 18px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-ytmgp5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NUtrK .framer-31r722 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1femrtr, .framer-NUtrK .framer-1gtes5, .framer-NUtrK .framer-1x9ehoc, .framer-NUtrK .framer-10dbdds, .framer-NUtrK .framer-tne6sd, .framer-NUtrK .framer-1mt775e, .framer-NUtrK .framer-1m5fs2g, .framer-NUtrK .framer-1exka5e, .framer-NUtrK .framer-1nxbcs9, .framer-NUtrK .framer-he106k, .framer-NUtrK .framer-nwwylz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-nfwma6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-gub9w0, .framer-NUtrK .framer-7vtnu7, .framer-NUtrK .framer-1idumm1, .framer-NUtrK .framer-jq3zcg, .framer-NUtrK .framer-1pk2ct, .framer-NUtrK .framer-icm3sk, .framer-NUtrK .framer-3qs1b8, .framer-NUtrK .framer-cuzzv0, .framer-NUtrK .framer-fik4rc, .framer-NUtrK .framer-gb48lu, .framer-NUtrK .framer-xx2895, .framer-NUtrK .framer-1u4njq3, .framer-NUtrK .framer-10s5ukm, .framer-NUtrK .framer-1p2hyuo, .framer-NUtrK .framer-1cxz08x, .framer-NUtrK .framer-bmt2df, .framer-NUtrK .framer-1peec88, .framer-NUtrK .framer-1dni6dd, .framer-NUtrK .framer-1jdt2y9, .framer-NUtrK .framer-19srp16, .framer-NUtrK .framer-6v3ewg, .framer-NUtrK .framer-1vckdsf, .framer-NUtrK .framer-ffvuqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1h8p4es, .framer-NUtrK .framer-kh9dqk, .framer-NUtrK .framer-1a9qz3z, .framer-NUtrK .framer-9c7x2f, .framer-NUtrK .framer-169gk4t, .framer-NUtrK .framer-1w04h87, .framer-NUtrK .framer-1lpdw6n, .framer-NUtrK .framer-x6oz0z, .framer-NUtrK .framer-xttrfj, .framer-NUtrK .framer-3v5lky, .framer-NUtrK .framer-mlvdaf, .framer-NUtrK .framer-1yj47uz, .framer-NUtrK .framer-ywy1t2, .framer-NUtrK .framer-ivpllp, .framer-NUtrK .framer-qfhdai, .framer-NUtrK .framer-mjx7xq, .framer-NUtrK .framer-qsfmcu, .framer-NUtrK .framer-m61xbk, .framer-NUtrK .framer-1hy3tih, .framer-NUtrK .framer-1fonve2, .framer-NUtrK .framer-1daxld3, .framer-NUtrK .framer-kuf7ik, .framer-NUtrK .framer-um0jxz, .framer-NUtrK .framer-qpy9vv, .framer-NUtrK .framer-1rf2mgf, .framer-NUtrK .framer-10sgdh9, .framer-NUtrK .framer-1ojhudm, .framer-NUtrK .framer-16nd13h, .framer-NUtrK .framer-1jsjro6, .framer-NUtrK .framer-1pn9jt3, .framer-NUtrK .framer-4zngwe, .framer-NUtrK .framer-i2zjr1, .framer-NUtrK .framer-1ukx41a, .framer-NUtrK .framer-109wxnk, .framer-NUtrK .framer-2oohc7, .framer-NUtrK .framer-1lj1a3z { align-content: center; align-items: center; aspect-ratio: 1.5163398692810457 / 1; background-color: rgba(23, 23, 23, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 132px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-NUtrK .framer-6p8fd8, .framer-NUtrK .framer-19hh4v8, .framer-NUtrK .framer-1i4lyo6, .framer-NUtrK .framer-yyyrzt, .framer-NUtrK .framer-p4bose, .framer-NUtrK .framer-161itna, .framer-NUtrK .framer-xlvqft, .framer-NUtrK .framer-15kvodk, .framer-NUtrK .framer-n5mc7m, .framer-NUtrK .framer-1yadbw4, .framer-NUtrK .framer-cpzho5, .framer-NUtrK .framer-1m8z1c1, .framer-NUtrK .framer-1huy4e, .framer-NUtrK .framer-fadhic, .framer-NUtrK .framer-xw2jhh, .framer-NUtrK .framer-a9y3nw, .framer-NUtrK .framer-h4beb3 { background-color: #000000; flex: 1 0 0px; gap: 10px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 2; }\",\".framer-NUtrK .framer-yji2sy-container { flex: none; height: 651px; left: calc(50.00000000000002% - 1158px / 2); position: absolute; top: calc(50.065359477124204% - 651px / 2); width: 1158px; }\",\".framer-NUtrK .framer-28617e, .framer-NUtrK .framer-ajv3dt, .framer-NUtrK .framer-ufd7v6, .framer-NUtrK .framer-1acezni, .framer-NUtrK .framer-1heblfj, .framer-NUtrK .framer-vg9ool, .framer-NUtrK .framer-110agy9, .framer-NUtrK .framer-168ev77, .framer-NUtrK .framer-1j6x9ie, .framer-NUtrK .framer-1ylm5mr, .framer-NUtrK .framer-16kxd2y, .framer-NUtrK .framer-12riy21, .framer-NUtrK .framer-xk7chc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 765px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-3r5zvd-container, .framer-NUtrK .framer-1w1hed4-container, .framer-NUtrK .framer-94uagt-container, .framer-NUtrK .framer-1c1ngs0-container, .framer-NUtrK .framer-1kjijjo-container, .framer-NUtrK .framer-1ca0vwv-container { flex: none; height: 652px; left: calc(50.00000000000002% - 1159px / 2); position: absolute; top: calc(50.065359477124204% - 652px / 2); width: 1159px; }\",\".framer-NUtrK .framer-d2x5jq-container { flex: none; height: 651px; left: calc(50.00000000000002% - 1157px / 2); position: absolute; top: calc(49.411764705882376% - 651px / 2); width: 1157px; }\",\".framer-NUtrK .framer-tkajd4-container { cursor: none; flex: none; height: 652px; left: calc(50.00000000000002% - 1159px / 2); pointer-events: none; position: absolute; top: calc(50.065359477124204% - 652px / 2); width: 1159px; }\",\".framer-NUtrK .framer-awtd6o-container { flex: none; height: 645px; left: calc(50.00000000000002% - 1146px / 2); position: absolute; top: calc(49.93464052287584% - 645px / 2); width: 1146px; }\",\".framer-NUtrK .framer-gg4m72-container { flex: none; height: 653px; left: 0px; position: absolute; right: 0px; top: calc(50.065359477124204% - 653px / 2); }\",\".framer-NUtrK .framer-t0s495, .framer-NUtrK .framer-1xc87qj, .framer-NUtrK .framer-1b1fael, .framer-NUtrK .framer-iv0u75, .framer-NUtrK .framer-11j2dwv, .framer-NUtrK .framer-uu2kps, .framer-NUtrK .framer-xb8eaf, .framer-NUtrK .framer-6ijp7z, .framer-NUtrK .framer-1b2p99p, .framer-NUtrK .framer-1fwp2oy, .framer-NUtrK .framer-18fq70s, .framer-NUtrK .framer-1x8z7g5, .framer-NUtrK .framer-1n9psto, .framer-NUtrK .framer-1otksik, .framer-NUtrK .framer-5vlmup { flex: 1 0 0px; gap: 10px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 2; }\",\".framer-NUtrK .framer-c2pp0b-container, .framer-NUtrK .framer-1ljn7pe-container, .framer-NUtrK .framer-161xdrd-container { cursor: none; flex: none; height: 653px; pointer-events: none; position: relative; width: 1160px; }\",\".framer-NUtrK .framer-1x4dkpg { align-content: center; align-items: center; background-color: #000000; cursor: none; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-NUtrK .framer-kj5swn-container { cursor: default; flex: none; height: 676px; pointer-events: none; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1dxjnxq-container { cursor: none; flex: none; height: 654px; left: -1px; pointer-events: none; position: absolute; right: -1px; top: calc(50.065359477124204% - 654px / 2); }\",\".framer-NUtrK .framer-1tfu1z6-container { flex: none; height: 638px; left: calc(49.9137931034483% - 1134px / 2); position: absolute; top: calc(50.065359477124204% - 638px / 2); width: 1134px; }\",\".framer-NUtrK .framer-t8k9y3-container { cursor: default; flex: none; height: 652px; left: calc(50.00000000000002% - 1159px / 2); pointer-events: auto; position: absolute; top: calc(50.065359477124204% - 652px / 2); width: 1159px; }\",\".framer-NUtrK .framer-19g0ba5-container, .framer-NUtrK .framer-rr3nj5-container, .framer-NUtrK .framer-1s8lvm-container { flex: none; height: 654px; left: -1px; position: absolute; right: -1px; top: calc(50.065359477124204% - 654px / 2); }\",\".framer-NUtrK .framer-5adscp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 120px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-wx2kkb, .framer-NUtrK .framer-1at51tf { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1pnen4c, .framer-NUtrK .framer-1b5orko, .framer-NUtrK .framer-o85r9a, .framer-NUtrK .framer-1r6cia1, .framer-NUtrK .framer-1kcgfw4, .framer-NUtrK .framer-1njm51b, .framer-NUtrK .framer-1bkj1ju, .framer-NUtrK .framer-1y0sn6v, .framer-NUtrK .framer-63kc36, .framer-NUtrK .framer-1ct31lo, .framer-NUtrK .framer-5zs9yn, .framer-NUtrK .framer-1bhwl4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1axklbv, .framer-NUtrK .framer-1xbrchd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-z3fj7v, .framer-NUtrK .framer-1pb1d96 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-cndp5d, .framer-NUtrK .framer-16mo3hz, .framer-NUtrK .framer-11sim4v, .framer-NUtrK .framer-tdtcu { flex: 0.7 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-wtfssj, .framer-NUtrK .framer-za4xx3, .framer-NUtrK .framer-gmbc6x, .framer-NUtrK .framer-xacp6r, .framer-NUtrK .framer-7eq6b0, .framer-NUtrK .framer-jstruj, .framer-NUtrK .framer-1fstw9r, .framer-NUtrK .framer-2tukhx { flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-ug8sct, .framer-NUtrK .framer-fowww0, .framer-NUtrK .framer-10coece, .framer-NUtrK .framer-mfe96, .framer-NUtrK .framer-guyny3, .framer-NUtrK .framer-b868hq { flex: 0.5 0 0px; height: 10px; overflow: hidden; position: relative; width: 1px; }\",\".framer-NUtrK .framer-agypqo, .framer-NUtrK .framer-wqiu0m, .framer-NUtrK .framer-109u35d, .framer-NUtrK .framer-gdzvgf, .framer-NUtrK .framer-17cop4x, .framer-NUtrK .framer-1ravgk5, .framer-NUtrK .framer-2wlmb2, .framer-NUtrK .framer-1hiiro8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-1aw2bdy, .framer-NUtrK .framer-t4nuzn, .framer-NUtrK .framer-121a6gz, .framer-NUtrK .framer-1s552jk, .framer-NUtrK .framer-13gjtu, .framer-NUtrK .framer-yvjyro { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-pj6592, .framer-NUtrK .framer-law82n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-1n5xedn, .framer-NUtrK .framer-1n6k4nd { flex: none; height: auto; max-width: 400px; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-1v4d0b7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 15px 150px 15px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1nyto0g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-1bypxwb { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-1o7k7gr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 160px 20px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-m4vzrj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-fj4dr8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1tcoahn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1fo196g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-uxst8j { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NUtrK .framer-p1929e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUtrK .framer-1umq19d, .framer-NUtrK .framer-1v2xv1d, .framer-NUtrK .framer-5qp6o7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-NUtrK .framer-dg0p70, .framer-NUtrK .framer-7oc1g6, .framer-NUtrK .framer-q2unnx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NUtrK .framer-1vznlyv-container, .framer-NUtrK .framer-oqv6te-container, .framer-NUtrK .framer-ve30dn-container, .framer-NUtrK .framer-wi6amg-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-NUtrK.framer-1cohx33 { width: 810px; } .framer-NUtrK .framer-1mox8d1 { gap: 30px; justify-content: flex-start; padding: 0px 15px 18px 15px; } .framer-NUtrK .framer-cc0hgo { flex: none; width: min-content; } .framer-NUtrK .framer-4ahs4e { flex: 1 0 0px; } .framer-NUtrK .framer-1dm5hfx, .framer-NUtrK .framer-80ngi8-container { will-change: var(--framer-will-change-effect-override, transform); } .framer-NUtrK .framer-ot7a84 { gap: 0px; justify-content: flex-start; padding: 40px 15px 100px 15px; } .framer-NUtrK .framer-7ud1vv, .framer-NUtrK .framer-12a6089 { flex: 0.7 0 0px; } .framer-NUtrK .framer-1v8rjll { overflow: visible; } .framer-NUtrK .framer-x7kn7a { align-content: flex-start; align-items: flex-start; height: 17px; } .framer-NUtrK .framer-nfwma6, .framer-NUtrK .framer-p1929e { gap: 15px; } .framer-NUtrK .framer-gub9w0 { order: 1; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-yji2sy-container { height: 438px; left: 0px; right: 0px; top: calc(50.1945525291829% - 438px / 2); width: unset; } .framer-NUtrK .framer-28617e { gap: 0px; order: 0; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-3r5zvd-container { height: 438px; left: calc(50.00000000000002% - 779px / 2); top: calc(50.1945525291829% - 438px / 2); width: 779px; } .framer-NUtrK .framer-7vtnu7 { order: 2; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-d2x5jq-container { height: 441px; left: -1px; right: -1px; top: calc(49.416342412451385% - 441px / 2); width: unset; } .framer-NUtrK .framer-ajv3dt { order: 3; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1w1hed4-container { height: 439px; left: 0px; right: 0px; top: calc(50.1945525291829% - 439px / 2); width: unset; } .framer-NUtrK .framer-1idumm1 { order: 4; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-94uagt-container { height: 442px; left: -3px; right: -3px; top: calc(50.1945525291829% - 442px / 2); width: unset; } .framer-NUtrK .framer-ufd7v6 { gap: 0px; order: 5; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-tkajd4-container, .framer-NUtrK .framer-1c1ngs0-container { height: 442px; left: -2px; right: -2px; top: calc(50.0970873786408% - 442px / 2); width: unset; } .framer-NUtrK .framer-1acezni { gap: 0px; order: 6; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-jq3zcg { order: 7; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-awtd6o-container { height: 439px; left: 0px; right: 0px; top: calc(49.90291262135925% - 439px / 2); width: unset; } .framer-NUtrK .framer-1pk2ct { order: 8; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1heblfj { order: 9; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-vg9ool { order: 10; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-c2pp0b-container, .framer-NUtrK .framer-1ljn7pe-container, .framer-NUtrK .framer-161xdrd-container { height: 440px; width: 782px; } .framer-NUtrK .framer-110agy9 { gap: 0px; order: 12; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1kjijjo-container, .framer-NUtrK .framer-t8k9y3-container { height: 438px; left: calc(50.00000000000002% - 779px / 2); top: calc(50.00000000000002% - 438px / 2); width: 779px; } .framer-NUtrK .framer-168ev77 { order: 13; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-icm3sk { order: 14; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-kj5swn-container { height: 438px; width: 779px; } .framer-NUtrK .framer-1j6x9ie { order: 15; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-3qs1b8 { order: 16; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1ylm5mr { order: 17; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1tfu1z6-container { height: 441px; left: -3px; right: -1px; top: calc(50.0970873786408% - 441px / 2); width: unset; } .framer-NUtrK .framer-16kxd2y { order: 18; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-12riy21 { order: 19; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-xk7chc { order: 11; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-cuzzv0 { order: 20; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1ca0vwv-container { height: 438px; left: calc(50.00000000000002% - 779px / 2); top: calc(50.0970873786408% - 438px / 2); width: 779px; } .framer-NUtrK .framer-fik4rc { order: 21; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-gb48lu { order: 22; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-xx2895 { order: 23; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1u4njq3 { order: 24; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-10s5ukm { order: 25; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1p2hyuo { order: 26; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1cxz08x { order: 29; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-bmt2df { order: 27; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1peec88 { order: 28; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1dni6dd { order: 30; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1jdt2y9 { order: 31; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-19srp16 { order: 32; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-6v3ewg { order: 33; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1vckdsf { order: 34; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-ffvuqi { order: 35; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-5adscp { gap: 0px; justify-content: flex-start; order: 37; padding: 40px 15px 120px 15px; } .framer-NUtrK .framer-1o7k7gr { padding: 0px 15px 160px 15px; }}\",\"@media (max-width: 809px) { .framer-NUtrK.framer-1cohx33 { width: 390px; } .framer-NUtrK.framer-1jyek5l { background-color: unset; } .framer-NUtrK .framer-1uyy6ak { flex-direction: column; } .framer-NUtrK .framer-1ah9wj0 { bottom: 62px; } .framer-NUtrK .framer-66uim6, .framer-NUtrK .framer-1sew7v2 { order: 0; } .framer-NUtrK .framer-1mox8d1 { align-content: flex-start; align-items: flex-start; padding: 0px 15px 18px 15px; } .framer-NUtrK .framer-cc0hgo { flex: 0.5 0 0px; } .framer-NUtrK .framer-4ahs4e, .framer-NUtrK .framer-7ud1vv { flex: 1 0 0px; } .framer-NUtrK .framer-16p8aa5 { aspect-ratio: 0.6610169491525424 / 1; height: var(--framer-aspect-ratio-supported, 303px); } .framer-NUtrK .framer-ot7a84 { order: 1; padding: 40px 15px 100px 15px; } .framer-NUtrK .framer-yy85sm { flex: none; order: 0; width: 88px; } .framer-NUtrK .framer-1i7xwjx { order: 1; } .framer-NUtrK .framer-1p190sr { flex: none; width: 84px; } .framer-NUtrK .framer-nfwma6 { gap: 15px; order: 2; } .framer-NUtrK .framer-gub9w0 { order: 0; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-yji2sy-container { height: 202px; left: 0px; right: 0px; top: calc(50.00000000000002% - 202px / 2); width: unset; } .framer-NUtrK .framer-28617e { gap: 0px; order: 2; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-3r5zvd-container, .framer-NUtrK .framer-1kjijjo-container { height: 202px; left: calc(50.00000000000002% - 359px / 2); top: calc(50.00000000000002% - 202px / 2); width: 359px; } .framer-NUtrK .framer-7vtnu7 { order: 1; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-d2x5jq-container { height: 204px; left: -1px; right: -1px; top: calc(49.57983193277313% - 204px / 2); width: unset; } .framer-NUtrK .framer-ajv3dt { order: 5; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-9c7x2f { aspect-ratio: unset; flex: none; height: min-content; width: min-content; } .framer-NUtrK .framer-yyyrzt { flex: none; height: 237px; width: 360px; } .framer-NUtrK .framer-1w1hed4-container { height: 204px; left: -1px; right: -1px; top: calc(50.21097046413504% - 204px / 2); width: unset; } .framer-NUtrK .framer-1idumm1 { order: 9; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-94uagt-container, .framer-NUtrK .framer-1ca0vwv-container { height: 202px; left: calc(50.00000000000002% - 359px / 2); top: calc(50.21097046413504% - 202px / 2); width: 359px; } .framer-NUtrK .framer-ufd7v6 { gap: 0px; order: 6; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-tkajd4-container, .framer-NUtrK .framer-1c1ngs0-container, .framer-NUtrK .framer-awtd6o-container { height: 203px; left: 0px; right: 0px; top: calc(50.00000000000002% - 203px / 2); width: unset; } .framer-NUtrK .framer-1acezni { gap: 0px; order: 7; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-jq3zcg { order: 8; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1pk2ct { order: 3; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-gg4m72-container { bottom: 0px; height: unset; top: 0px; } .framer-NUtrK .framer-1heblfj { order: 10; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-vg9ool { order: 13; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-c2pp0b-container, .framer-NUtrK .framer-1ljn7pe-container { height: 205px; width: 364px; } .framer-NUtrK .framer-110agy9 { gap: 0px; order: 11; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-168ev77 { order: 12; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-icm3sk { order: 15; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-kj5swn-container { height: 204px; width: 363px; } .framer-NUtrK .framer-1j6x9ie { order: 16; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-3qs1b8 { order: 17; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1dxjnxq-container, .framer-NUtrK .framer-19g0ba5-container, .framer-NUtrK .framer-rr3nj5-container, .framer-NUtrK .framer-1s8lvm-container { bottom: 0px; height: unset; right: 0px; top: 0px; } .framer-NUtrK .framer-1ylm5mr { order: 18; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1tfu1z6-container { height: 204px; left: -1px; right: -2px; top: calc(50.00000000000002% - 204px / 2); width: unset; } .framer-NUtrK .framer-16kxd2y { order: 19; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-12riy21 { order: 20; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-xk7chc { order: 14; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-cuzzv0 { order: 21; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-fik4rc { order: 22; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-gb48lu { order: 23; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-xx2895 { order: 24; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1u4njq3 { order: 25; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-10s5ukm { order: 26; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-t8k9y3-container { height: 220px; left: -15px; right: -15px; top: calc(50.00000000000002% - 220px / 2); width: unset; } .framer-NUtrK .framer-1p2hyuo { order: 27; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1cxz08x { order: 28; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-161xdrd-container { height: 203px; width: 361px; } .framer-NUtrK .framer-bmt2df { order: 29; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1peec88 { order: 30; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1dni6dd { order: 31; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1jdt2y9 { order: 32; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-19srp16 { order: 33; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-6v3ewg { order: 34; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1vckdsf { order: 35; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-ffvuqi { order: 36; padding: 0px 15px 0px 15px; } .framer-NUtrK .framer-1v4d0b7 { order: 38; } .framer-NUtrK .framer-1o7k7gr { order: 3; padding: 0px 15px 160px 15px; } .framer-NUtrK .framer-p1929e { flex-direction: column; gap: 40px; } .framer-NUtrK .framer-1umq19d, .framer-NUtrK .framer-1v2xv1d, .framer-NUtrK .framer-5qp6o7 { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11107\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Tfdg5Z1uw\":{\"layout\":[\"fixed\",\"auto\"]},\"HWsemc2rZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"VChd3IxUK\":{\"pattern\":\":VChd3IxUK\",\"name\":\"info\"},\"M1puzbOzw\":{\"pattern\":\":M1puzbOzw\",\"name\":\"credits\"},\"zeYDC_gyY\":{\"pattern\":\":zeYDC_gyY\",\"name\":\"credits\"}}\n * @framerResponsiveScreen\n */const FramerwHkICDJ1H=withCSS(Component,css,\"framer-NUtrK\");export default FramerwHkICDJ1H;FramerwHkICDJ1H.displayName=\"Page\";FramerwHkICDJ1H.defaultProps={height:11107,width:1200};addFonts(FramerwHkICDJ1H,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationNavigationFonts,...NavigationNavigationMobileFonts,...NavigationMobileOpenNavigationFonts,...VideoFonts,...GlobalLineAnimationGlobalFonts,...YouTubeFonts,...ProjectsProjectsCardFonts,...FooterFooterFonts,...FooterEnaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwHkICDJ1H\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"11107\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tfdg5Z1uw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HWsemc2rZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"VChd3IxUK\\\":{\\\"pattern\\\":\\\":VChd3IxUK\\\",\\\"name\\\":\\\"info\\\"},\\\"M1puzbOzw\\\":{\\\"pattern\\\":\\\":M1puzbOzw\\\",\\\"name\\\":\\\"credits\\\"},\\\"zeYDC_gyY\\\":{\\\"pattern\\\":\\\":zeYDC_gyY\\\",\\\"name\\\":\\\"credits\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,Y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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "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", "NavigationNavigationFonts", "getFonts", "ZhbW5Y_b_default", "NavigationNavigationMobileFonts", "Se7Sa8kPD_default", "NavigationNavigationMobileWithVariantAppearEffect", "withVariantAppearEffect", "NavigationMobileOpenNavigationFonts", "BGiZQuPOO_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "Container", "GlobalLineAnimationGlobalFonts", "QaFoemE2c_default", "GlobalLineAnimationGlobalWithVariantAppearEffect", "RichTextWithFX", "withFX", "RichText2", "YouTubeFonts", "Youtube", "MotionDivWithFX", "motion", "ImageWithFX", "ProjectsProjectsCardFonts", "Lrkv11kZg_default", "FooterFooterFonts", "J0LNWxmCZ_default", "FooterEnaLogoFonts", "c9_KSBFxw_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation3", "transition2", "textEffect", "textEffect1", "transition3", "textEffect2", "textEffect3", "isSet", "value", "toResponsiveImage", "transition4", "animation4", "animation5", "toImageSrc", "animation6", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "animation7", "getTextEffect", "ref", "animation8", "transition13", "transition14", "transition15", "transition16", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "islNjMppD_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "b4lYXadgm", "O7geCjRSa", "CeKb9Czc2", "mvoT8S4Xv", "nextItemId_o_45cr1WA", "A4jVfXPHh", "NrU8afFxG", "Q9jC5ouXB", "xtIP1CHRT", "cF8d4kxHc", "R6KKC_68n", "Q_N5MsM8i", "JxJIxrLyK", "SgktiD9dn", "YA2R7OF8y", "ScQAVSts_", "q0Pu7ltBL", "jGCL8mUy6", "qZu4nsRgC", "l9yRqcpyo", "R6FhwN0Mn", "TmzON1f0w", "siYpTzpWa", "xql6Km65e", "EmkzZwsnw", "HJMY3zA0L", "vr5oAQi55", "ZN_jvOvw0", "mCOsImJga", "EH9p0bMRO", "UskFo2APx", "QGojug26C", "DRCnI8ZJK", "rJVII_6WV", "ADeXIwqBt", "JchoCjuF4", "bCsFjQloS", "jm9s_Ybt7", "zs75uMe0B", "SLq5x1kkg", "VXDTuP3F4", "Vv_DR0VoB", "orOtTjF8q", "sgcmH3pi9", "A1eevsbM2", "x3Z3RfJ3A", "L8BAO7jUq", "vOoKpoyqW", "GrOSvREP8", "Ddn4dRVKk", "aVeMyFuj0", "Y7dP8mplO", "U3dUx9uzD", "bBAf7glEG", "FBlGdKYSx", "tuYhOUApx", "xrrwoCvkk", "aPsdrhTc_", "po5iszWus", "a_POkM2tj", "OOfEh0y_k", "mDRbNjLBt", "M0SXeJ5zq", "KAuLNROaX", "cGZzOFo_j", "bCbVxlqyq", "meEOPMJQw", "DmW_aoLVV", "vH7oG1Sl5", "a2t0mQYrX", "quXgpCQ34", "IhjieOobtzyB5cUfnm", "K40C8X2DnzyB5cUfnm", "O7geCjRSazyB5cUfnm", "XhgCyJIpizyB5cUfnm", "NrU8afFxGzyB5cUfnm", "idzyB5cUfnm", "b3keqFBJH", "IhjieOobtqicIkwr8X", "K40C8X2DnqicIkwr8X", "O7geCjRSaqicIkwr8X", "XhgCyJIpiqicIkwr8X", "NrU8afFxGqicIkwr8X", "idqicIkwr8X", "L2vqI1sZV", "IhjieOobtArXYk0ae1", "K40C8X2DnArXYk0ae1", "O7geCjRSaArXYk0ae1", "XhgCyJIpiArXYk0ae1", "NrU8afFxGArXYk0ae1", "idArXYk0ae1", "BABDYm_P2", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "visible1", "elementId", "useRouteElementId", "ref1", "visible2", "isDisplayed2", "isDisplayed3", "elementId1", "ref2", "isDisplayed4", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "css", "FramerwHkICDJ1H", "withCSS", "wHkICDJ1H_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
