{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/2HOj1CVgLJFj3aTiXjC2/HzjsYeFuD8dcBuLcSj57/MLs8e6SZC.js", "ssg:https://framerusercontent.com/modules/JFBSetg8Ohlp5QQ96G3Z/xa806u6mV6ZJbEqNpPfa/pEBdVUQXI.js", "ssg:https://framerusercontent.com/modules/oL61jdSHJBQJDq32uZts/qb6kjwEi2gLvlCZ2JjCT/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/ykurdp9Ruhf4GPJndTft/BTcEmIb8bwrqAHGBTY9D/UchV65umT.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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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,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:\"0px 0px 100px 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(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)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:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (100f99d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}];export const css=['.framer-ECqvd .framer-styles-preset-76w99r:not(.rich-text-wrapper), .framer-ECqvd .framer-styles-preset-76w99r.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ECqvd .framer-styles-preset-76w99r:not(.rich-text-wrapper), .framer-ECqvd .framer-styles-preset-76w99r.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ECqvd .framer-styles-preset-76w99r:not(.rich-text-wrapper), .framer-ECqvd .framer-styles-preset-76w99r.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 175%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-ECqvd\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7ce5cf)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Clash Display-semibold\",\"FS;Clash Display-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",weight:\"600\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"}]}];export const css=['.framer-jJmzV .framer-styles-preset-1m5w5b6:not(.rich-text-wrapper), .framer-jJmzV .framer-styles-preset-1m5w5b6.rich-text-wrapper h5 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 1px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-jJmzV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Clash Display-semibold\",\"FS;Clash Display-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",weight:\"600\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"}]}];export const css=['.framer-6MaIw .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-6MaIw .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-6MaIw .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-6MaIw .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-6MaIw .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-6MaIw .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-6MaIw\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import Header from\"#framer/local/canvasComponent/GRKXsa1Ts/GRKXsa1Ts.js\";import MarqueeHeading from\"#framer/local/canvasComponent/JS2fBfIkM/JS2fBfIkM.js\";import Marquee from\"#framer/local/canvasComponent/kji02HjQf/kji02HjQf.js\";import SectionCTA from\"#framer/local/canvasComponent/XChIh2K_X/XChIh2K_X.js\";import Footer from\"#framer/local/canvasComponent/zfDrZLwjb/zfDrZLwjb.js\";import Work from\"#framer/local/collection/Gk_rXsiQS/Gk_rXsiQS.js\";import*as sharedStyle4 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle1 from\"#framer/local/css/I4cjMi35R/I4cjMi35R.js\";import*as sharedStyle3 from\"#framer/local/css/k1U7c5Ifw/k1U7c5Ifw.js\";import*as sharedStyle7 from\"#framer/local/css/MLs8e6SZC/MLs8e6SZC.js\";import*as sharedStyle2 from\"#framer/local/css/NWkCScbQS/NWkCScbQS.js\";import*as sharedStyle9 from\"#framer/local/css/pEBdVUQXI/pEBdVUQXI.js\";import*as sharedStyle from\"#framer/local/css/pOkQKyeDB/pOkQKyeDB.js\";import*as sharedStyle8 from\"#framer/local/css/VGJuaUFd1/VGJuaUFd1.js\";import*as sharedStyle6 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle5 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/UchV65umT/UchV65umT.js\";const HeaderFonts=getFonts(Header);const RichTextWithFX=withFX(RichText);const MarqueeFonts=getFonts(Marquee);const VideoFonts=getFonts(Video);const MarqueeHeadingFonts=getFonts(MarqueeHeading);const Video1Fonts=getFonts(Video1);const SectionCTAFonts=getFonts(SectionCTA);const FooterFonts=getFonts(Footer);const MotionDivWithFX=withFX(motion.div);const breakpoints={lekwjql18:\"(max-width: 809px)\",rdvWIT4w4:\"(min-width: 810px) and (max-width: 1279px)\",VL_BT1Ght:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hkdab\";const variantClassNames={lekwjql18:\"framer-v-zo03c1\",rdvWIT4w4:\"framer-v-1v88bt7\",VL_BT1Ght:\"framer-v-1mg9fhx\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition1={delay:0,duration:.7,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const transition2={delay:.2,duration:.7,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"VL_BT1Ght\",Phone:\"lekwjql18\",Tablet:\"rdvWIT4w4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VL_BT1Ght\"};};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:\"UchV65umT\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"UchV65umT\",data:Work,type:\"Collection\"},right:{alias:\"nextItemId\",data:Work,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"UchV65umT\",name:\"MUgju5Ygu\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"wcmIC2bhw\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"Wg17JzGyc\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"o2Yl9lobJ\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"Sxxulfe91\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"UlP80Thm6\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"AOW4XsAjG\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"yP7hvYjCu\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"CK5BRUjyV\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"OZzJlOFXM\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"b5Np0VSE6\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"OPU7EByjr\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"OCsCn7rkx\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"aHT9HTfHu\",type:\"Identifier\"},{collection:\"UchV65umT\",name:\"PGOfSQWYc\",type:\"Identifier\"},{alias:\"nextItemId.MUgju5Ygu\",collection:\"nextItemId\",name:\"MUgju5Ygu\",type:\"Identifier\"},{alias:\"nextItemId.q6wyKlkO2\",collection:\"nextItemId\",name:\"q6wyKlkO2\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"UchV65umT\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,MUgju5Ygu=getFromCurrentRouteData(\"MUgju5Ygu\")??\"\",Wg17JzGyc=getFromCurrentRouteData(\"Wg17JzGyc\")??\"\",o2Yl9lobJ=getFromCurrentRouteData(\"o2Yl9lobJ\")??\"\",Sxxulfe91=getFromCurrentRouteData(\"Sxxulfe91\")??\"\",AOW4XsAjG=getFromCurrentRouteData(\"AOW4XsAjG\")??\"\",UlP80Thm6=getFromCurrentRouteData(\"UlP80Thm6\")??\"\",wcmIC2bhw=getFromCurrentRouteData(\"wcmIC2bhw\"),yP7hvYjCu=getFromCurrentRouteData(\"yP7hvYjCu\")??\"\",CK5BRUjyV=getFromCurrentRouteData(\"CK5BRUjyV\")??\"\",b5Np0VSE6=getFromCurrentRouteData(\"b5Np0VSE6\"),OZzJlOFXM=getFromCurrentRouteData(\"OZzJlOFXM\"),OPU7EByjr=getFromCurrentRouteData(\"OPU7EByjr\"),OCsCn7rkx=getFromCurrentRouteData(\"OCsCn7rkx\"),aHT9HTfHu=getFromCurrentRouteData(\"aHT9HTfHu\"),PGOfSQWYc=getFromCurrentRouteData(\"PGOfSQWYc\"),nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_q6wyKlkO2=getFromCurrentRouteData(\"nextItemId.q6wyKlkO2\")??\"\",nextItemId_MUgju5Ygu=getFromCurrentRouteData(\"nextItemId.MUgju5Ygu\")??\"\",...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(nextItemId);const textContent=suffix(nextItemId_MUgju5Ygu,\" \u203A\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VL_BT1Ght\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(232, 232, 232); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1mg9fhx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddla4o\",\"data-framer-name\":\"Page Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:`min(${componentViewport?.width||\"100vw\"}, 1800px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ne0b4z-container\",\"data-framer-name\":\"Header\",name:\"Header\",nodeId:\"BJurXXtJx\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{variant:\"O_NmI78Jo\"},rdvWIT4w4:{variant:\"cOicuqB0r\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"BJurXXtJx\",layoutId:\"BJurXXtJx\",name:\"Header\",style:{width:\"100%\"},variant:\"PNgcyfqaA\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-t1u8vu\",\"data-framer-name\":\"Main Wrapper\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-h19vkg\",\"data-framer-name\":\"Section Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g4xo9k\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bi49oa\",\"data-styles-preset\":\"I4cjMi35R\",style:{\"--framer-text-alignment\":\"center\"},children:\"Minecraft Villager Rescue\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wvskbc\",\"data-styles-preset\":\"pOkQKyeDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vision Branding\"})}),className:\"framer-1m9baxl\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:MUgju5Ygu,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-umy826\",\"data-framer-name\":\"Section Stats\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16dkb8k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7f9bfk\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6i7c81\",\"data-framer-name\":\"Border\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eh418l\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Client\"})}),className:\"framer-6m4p9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nxkqmc\",\"data-styles-preset\":\"k1U7c5Ifw\",children:\"Invision Studio\"})}),className:\"framer-1x74kyy\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:Wg17JzGyc,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfw433\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ibtur2\",\"data-framer-name\":\"Border\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19pw1ef\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Timeline\"})}),className:\"framer-8bi7cm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nxkqmc\",\"data-styles-preset\":\"k1U7c5Ifw\",children:\"4 Weeks\"})}),className:\"framer-8edy1k\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:o2Yl9lobJ,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dil5oz\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iaczon\",\"data-framer-name\":\"Border\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-btd68u\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Services\"})}),className:\"framer-1oaraem\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nxkqmc\",\"data-styles-preset\":\"k1U7c5Ifw\",children:\"Branding\"})}),className:\"framer-rfrjba\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:Sxxulfe91,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n7e4la\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uca61g\",\"data-framer-name\":\"Border\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0gedp\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwskc\",\"data-styles-preset\":\"NWkCScbQS\",children:\"Website\"})}),className:\"framer-1dfkdcn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nxkqmc\",\"data-styles-preset\":\"k1U7c5Ifw\",children:/*#__PURE__*/_jsx(Link,{href:AOW4XsAjG,motionChild:true,nodeId:\"f4PBchDOG\",openInNewTab:true,scopeId:\"UchV65umT\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"Gola.io\"})})})}),className:\"framer-195p2ps\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:UlP80Thm6,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-19ortfc\",\"data-framer-name\":\"Section Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,y:(componentViewport?.y||0)+0+0+0+76+0+1462.4+0+0},rdvWIT4w4:{y:(componentViewport?.y||0)+0+0+0+76+0+763.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:`min(${componentViewport?.width||\"100vw\"}, 1800px)`,y:(componentViewport?.y||0)+0+0+0+76+0+589.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vgdim2-container\",nodeId:\"hXA2vfrD3\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{variant:\"CU9DtENyC\"}},children:/*#__PURE__*/_jsx(Marquee,{height:\"100%\",id:\"hXA2vfrD3\",layoutId:\"hXA2vfrD3\",MjJMgWZRm:Wg17JzGyc,style:{width:\"100%\"},variant:\"NS08yqi1D\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cg0dun-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"z9IPRSvz0\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"z9IPRSvz0\",isMixedBorderRadius:false,layoutId:\"z9IPRSvz0\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:wcmIC2bhw,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-12eis5m\",\"data-framer-name\":\"Section About\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wlyrpb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1j4zr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-69dfjn\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bi49oa\",\"data-styles-preset\":\"I4cjMi35R\",children:\"Marketing material to promote immersive exhibition.\"})}),className:\"framer-i66e0l\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:yP7hvYjCu,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9vbok\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lwp4if\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13brvdz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Output\"})}),className:\"framer-aiwrol\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-76w99r\",\"data-styles-preset\":\"MLs8e6SZC\",children:[\"- Branding\",/*#__PURE__*/_jsx(\"br\",{}),\"- Marketing Assets\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Commodo quis imperdiet massa tincidunt nunc pulvinar sapien et ligula. Massa tempor nec feugiat.\"})}),className:\"framer-mxp3w3\",fonts:[\"Inter\"],text:CK5BRUjyV,verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-s0kymo\",\"data-framer-name\":\"Section Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jze9xd\",\"data-framer-name\":\"Ticker\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-46oabr\",\"data-framer-name\":\"Border\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{y:(componentViewport?.y||0)+0+0+0+76+0+2333.8+0+0+0+18},rdvWIT4w4:{y:(componentViewport?.y||0)+0+0+0+76+0+1853.6+0+0+0+18}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`min(${componentViewport?.width||\"100vw\"}, 1800px)`,y:(componentViewport?.y||0)+0+0+0+76+0+1402.6+0+0+0+18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13wfrzl-container\",nodeId:\"ljTPQqqww\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(MarqueeHeading,{height:\"100%\",id:\"ljTPQqqww\",KhpCczVBJ:\"Gallery\",layoutId:\"ljTPQqqww\",style:{width:\"100%\"},variant:\"ghAjA1e5z\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rp9bl\",\"data-framer-name\":\"Gallery\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+2333.8+0+98+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,...toResponsiveImage(b5Np0VSE6)}},rdvWIT4w4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1853.6+0+114+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(b5Np0VSE6)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1402.6+0+114+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(b5Np0VSE6)},className:\"framer-1hy73lv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-77jl30-container\",isModuleExternal:true,nodeId:\"FQF2r3IIA\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FQF2r3IIA\",isMixedBorderRadius:false,layoutId:\"FQF2r3IIA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:OZzJlOFXM,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+2333.8+0+98+0+696),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,...toResponsiveImage(OPU7EByjr)}},rdvWIT4w4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1853.6+0+114+0+568),sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px) * 2 + 16px)`,...toResponsiveImage(OPU7EByjr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1402.6+0+114+0+568),sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px) * 2 + 16px)`,...toResponsiveImage(OPU7EByjr)},className:\"framer-1f2vjlc\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+2333.8+0+98+0+1022),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,...toResponsiveImage(OCsCn7rkx)}},rdvWIT4w4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1853.6+0+114+0+884),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(OCsCn7rkx)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1402.6+0+114+0+1184),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(OCsCn7rkx)},className:\"framer-136of3b\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+2333.8+0+98+0+1590),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,...toResponsiveImage(aHT9HTfHu)}},rdvWIT4w4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1853.6+0+114+0+884),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(aHT9HTfHu)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1402.6+0+114+0+1184),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px)`,...toResponsiveImage(aHT9HTfHu)},className:\"framer-1e53wyg\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+2333.8+0+98+0+2158),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1800px) - 48px)`,...toResponsiveImage(PGOfSQWYc)}},rdvWIT4w4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1853.6+0+114+0+1452),sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px) * 2 + 16px)`,...toResponsiveImage(PGOfSQWYc)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+76+0+1402.6+0+114+0+1752),sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1800px) - 112px) / 2, 200px) * 2 + 16px)`,...toResponsiveImage(PGOfSQWYc)},className:\"framer-1sgcbbh\",\"data-framer-name\":\"Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16g1lm4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i5999z\",\"data-styles-preset\":\"VGJuaUFd1\",style:{\"--framer-text-color\":\"var(--token-3ae00cf6-3d31-4503-a62c-0165b1c5015a, rgb(255, 0, 0))\"},children:\"Next Project\"})}),className:\"framer-zaxrcr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1m5w5b6\",\"data-styles-preset\":\"pEBdVUQXI\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{q6wyKlkO2:nextItemId_q6wyKlkO2},webPageId:\"UchV65umT\"},motionChild:true,nodeId:\"mz1ofYfyq\",openInNewTab:false,scopeId:\"UchV65umT\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"Tutankhamun The Immersive Exhibition \u203A\"})})})}),className:\"framer-gwxoza\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{y:(componentViewport?.y||0)+0+0+0+76+0+5043.8},rdvWIT4w4:{y:(componentViewport?.y||0)+0+0+0+76+0+3927.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:`min(${componentViewport?.width||\"100vw\"}, 1800px)`,y:(componentViewport?.y||0)+0+0+0+76+0+4076.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dj5kxh-container\",nodeId:\"TLUp__UMN\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{variant:\"ieLfp93Lw\"},rdvWIT4w4:{variant:\"TiFkeZ7AH\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"TLUp__UMN\",layoutId:\"TLUp__UMN\",style:{width:\"100%\"},variant:\"gPE5RsHZd\",W3BHTtG0M:\"Let's make something great\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{y:(componentViewport?.y||0)+0+0+0+5608.8},rdvWIT4w4:{y:(componentViewport?.y||0)+0+0+0+4492.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:345,width:`min(${componentViewport?.width||\"100vw\"}, 1800px)`,y:(componentViewport?.y||0)+0+0+0+4641.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1249yu8-container\",nodeId:\"Gte8q5mGj\",scopeId:\"UchV65umT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lekwjql18:{variant:\"ysuUVrVJz\"},rdvWIT4w4:{variant:\"RH0pMULzv\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Gte8q5mGj\",layoutId:\"Gte8q5mGj\",style:{width:\"100%\"},variant:\"lvm0HN2Wz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o2i72b\",\"data-framer-name\":\"Banner Circle Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iplenn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-rlkwdp\",style:{transformPerspective:500}})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hkdab.framer-1uw0azu, .framer-hkdab .framer-1uw0azu { display: block; }\",\".framer-hkdab.framer-1mg9fhx { align-content: center; align-items: center; background-color: #e8e8e8; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-hkdab .framer-1ddla4o { align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-ne0b4z-container, .framer-hkdab .framer-1vgdim2-container, .framer-hkdab .framer-1cg0dun-container, .framer-hkdab .framer-13wfrzl-container, .framer-hkdab .framer-1dj5kxh-container, .framer-hkdab .framer-1249yu8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hkdab .framer-t1u8vu { 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-hkdab .framer-h19vkg { 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; overflow: visible; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-hkdab .framer-g4xo9k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-1m9baxl, .framer-hkdab .framer-1x74kyy, .framer-hkdab .framer-8edy1k, .framer-hkdab .framer-rfrjba, .framer-hkdab .framer-195p2ps, .framer-hkdab .framer-i66e0l, .framer-hkdab .framer-mxp3w3 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hkdab .framer-umy826 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-hkdab .framer-16dkb8k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-7f9bfk, .framer-hkdab .framer-1kfw433, .framer-hkdab .framer-dil5oz, .framer-hkdab .framer-n7e4la { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hkdab .framer-6i7c81, .framer-hkdab .framer-1ibtur2, .framer-hkdab .framer-iaczon, .framer-hkdab .framer-uca61g, .framer-hkdab .framer-46oabr { background-color: var(--token-581f0509-6fe1-4f6d-ab49-18539aa47f49, #000000); flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\".framer-hkdab .framer-1eh418l, .framer-hkdab .framer-19pw1ef, .framer-hkdab .framer-btd68u, .framer-hkdab .framer-q0gedp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-6m4p9v, .framer-hkdab .framer-8bi7cm, .framer-hkdab .framer-1oaraem, .framer-hkdab .framer-1dfkdcn { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-hkdab .framer-19ortfc { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-12eis5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 128px 48px 128px 48px; position: relative; width: 100%; }\",\".framer-hkdab .framer-wlyrpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-1w1j4zr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-69dfjn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 32px; width: 1px; z-index: 1; }\",\".framer-hkdab .framer-1j9vbok { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hkdab .framer-1lwp4if { align-content: flex-start; align-items: flex-start; background-color: var(--token-cc376640-11ee-44d3-bb93-f32d315b8743, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px; position: sticky; top: 32px; width: 100%; z-index: 1; }\",\".framer-hkdab .framer-13brvdz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-aiwrol { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hkdab .framer-s0kymo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-1jze9xd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-9rp9bl { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-hkdab .framer-1hy73lv, .framer-hkdab .framer-136of3b, .framer-hkdab .framer-1e53wyg { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 584px); justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-hkdab .framer-77jl30-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-hkdab .framer-1f2vjlc, .framer-hkdab .framer-1sgcbbh { align-self: start; flex: none; grid-column: span 2; height: 600px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-hkdab .framer-16g1lm4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 600px; padding: 0px 0px 64px 0px; position: relative; width: min-content; }\",\".framer-hkdab .framer-zaxrcr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hkdab .framer-gwxoza { flex: none; height: auto; overflow-x: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hkdab .framer-o2i72b { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; right: 0px; z-index: 10; }\",\".framer-hkdab .framer-iplenn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hkdab .framer-rlkwdp { align-content: center; align-items: center; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 64px; min-height: 120px; min-width: 120px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hkdab.framer-1mg9fhx, .framer-hkdab .framer-1ddla4o, .framer-hkdab .framer-t1u8vu, .framer-hkdab .framer-h19vkg, .framer-hkdab .framer-g4xo9k, .framer-hkdab .framer-umy826, .framer-hkdab .framer-16dkb8k, .framer-hkdab .framer-7f9bfk, .framer-hkdab .framer-1eh418l, .framer-hkdab .framer-1kfw433, .framer-hkdab .framer-19pw1ef, .framer-hkdab .framer-dil5oz, .framer-hkdab .framer-btd68u, .framer-hkdab .framer-n7e4la, .framer-hkdab .framer-q0gedp, .framer-hkdab .framer-19ortfc, .framer-hkdab .framer-12eis5m, .framer-hkdab .framer-wlyrpb, .framer-hkdab .framer-1w1j4zr, .framer-hkdab .framer-69dfjn, .framer-hkdab .framer-1j9vbok, .framer-hkdab .framer-1lwp4if, .framer-hkdab .framer-13brvdz, .framer-hkdab .framer-s0kymo, .framer-hkdab .framer-1jze9xd, .framer-hkdab .framer-16g1lm4, .framer-hkdab .framer-o2i72b, .framer-hkdab .framer-iplenn, .framer-hkdab .framer-rlkwdp { gap: 0px; } .framer-hkdab.framer-1mg9fhx > *, .framer-hkdab .framer-1ddla4o > *, .framer-hkdab .framer-t1u8vu > *, .framer-hkdab .framer-h19vkg > *, .framer-hkdab .framer-19ortfc > *, .framer-hkdab .framer-16g1lm4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hkdab.framer-1mg9fhx > :first-child, .framer-hkdab .framer-1ddla4o > :first-child, .framer-hkdab .framer-t1u8vu > :first-child, .framer-hkdab .framer-h19vkg > :first-child, .framer-hkdab .framer-g4xo9k > :first-child, .framer-hkdab .framer-umy826 > :first-child, .framer-hkdab .framer-7f9bfk > :first-child, .framer-hkdab .framer-1eh418l > :first-child, .framer-hkdab .framer-1kfw433 > :first-child, .framer-hkdab .framer-19pw1ef > :first-child, .framer-hkdab .framer-dil5oz > :first-child, .framer-hkdab .framer-btd68u > :first-child, .framer-hkdab .framer-n7e4la > :first-child, .framer-hkdab .framer-q0gedp > :first-child, .framer-hkdab .framer-19ortfc > :first-child, .framer-hkdab .framer-12eis5m > :first-child, .framer-hkdab .framer-wlyrpb > :first-child, .framer-hkdab .framer-69dfjn > :first-child, .framer-hkdab .framer-1j9vbok > :first-child, .framer-hkdab .framer-1lwp4if > :first-child, .framer-hkdab .framer-s0kymo > :first-child, .framer-hkdab .framer-1jze9xd > :first-child, .framer-hkdab .framer-16g1lm4 > :first-child { margin-top: 0px; } .framer-hkdab.framer-1mg9fhx > :last-child, .framer-hkdab .framer-1ddla4o > :last-child, .framer-hkdab .framer-t1u8vu > :last-child, .framer-hkdab .framer-h19vkg > :last-child, .framer-hkdab .framer-g4xo9k > :last-child, .framer-hkdab .framer-umy826 > :last-child, .framer-hkdab .framer-7f9bfk > :last-child, .framer-hkdab .framer-1eh418l > :last-child, .framer-hkdab .framer-1kfw433 > :last-child, .framer-hkdab .framer-19pw1ef > :last-child, .framer-hkdab .framer-dil5oz > :last-child, .framer-hkdab .framer-btd68u > :last-child, .framer-hkdab .framer-n7e4la > :last-child, .framer-hkdab .framer-q0gedp > :last-child, .framer-hkdab .framer-19ortfc > :last-child, .framer-hkdab .framer-12eis5m > :last-child, .framer-hkdab .framer-wlyrpb > :last-child, .framer-hkdab .framer-69dfjn > :last-child, .framer-hkdab .framer-1j9vbok > :last-child, .framer-hkdab .framer-1lwp4if > :last-child, .framer-hkdab .framer-s0kymo > :last-child, .framer-hkdab .framer-1jze9xd > :last-child, .framer-hkdab .framer-16g1lm4 > :last-child { margin-bottom: 0px; } .framer-hkdab .framer-g4xo9k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hkdab .framer-umy826 > *, .framer-hkdab .framer-wlyrpb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hkdab .framer-16dkb8k > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-hkdab .framer-16dkb8k > :first-child, .framer-hkdab .framer-1w1j4zr > :first-child, .framer-hkdab .framer-13brvdz > :first-child, .framer-hkdab .framer-o2i72b > :first-child, .framer-hkdab .framer-iplenn > :first-child, .framer-hkdab .framer-rlkwdp > :first-child { margin-left: 0px; } .framer-hkdab .framer-16dkb8k > :last-child, .framer-hkdab .framer-1w1j4zr > :last-child, .framer-hkdab .framer-13brvdz > :last-child, .framer-hkdab .framer-o2i72b > :last-child, .framer-hkdab .framer-iplenn > :last-child, .framer-hkdab .framer-rlkwdp > :last-child { margin-right: 0px; } .framer-hkdab .framer-7f9bfk > *, .framer-hkdab .framer-1kfw433 > *, .framer-hkdab .framer-dil5oz > *, .framer-hkdab .framer-n7e4la > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hkdab .framer-1eh418l > *, .framer-hkdab .framer-19pw1ef > *, .framer-hkdab .framer-btd68u > *, .framer-hkdab .framer-q0gedp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hkdab .framer-12eis5m > *, .framer-hkdab .framer-s0kymo > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-hkdab .framer-1w1j4zr > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-hkdab .framer-69dfjn > *, .framer-hkdab .framer-1lwp4if > *, .framer-hkdab .framer-1jze9xd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hkdab .framer-1j9vbok > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hkdab .framer-13brvdz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-hkdab .framer-o2i72b > *, .framer-hkdab .framer-iplenn > *, .framer-hkdab .framer-rlkwdp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-hkdab[data-border=\"true\"]::after, .framer-hkdab [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-hkdab.framer-1mg9fhx { width: 810px; } .framer-hkdab .framer-h19vkg { order: 0; padding: 64px 48px 64px 48px; } .framer-hkdab .framer-umy826 { order: 1; padding: 0px 48px 64px 48px; } .framer-hkdab .framer-16dkb8k { align-content: unset; align-items: unset; display: grid; gap: 64px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-hkdab .framer-7f9bfk, .framer-hkdab .framer-1kfw433, .framer-hkdab .framer-dil5oz, .framer-hkdab .framer-n7e4la { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-hkdab .framer-19ortfc { order: 2; } .framer-hkdab .framer-12eis5m { order: 3; padding: 96px 48px 96px 48px; } .framer-hkdab .framer-1w1j4zr { flex-direction: column; gap: 32px; } .framer-hkdab .framer-69dfjn { flex: none; position: relative; top: unset; width: 100%; } .framer-hkdab .framer-1j9vbok { flex: none; width: 100%; } .framer-hkdab .framer-1lwp4if { padding: 40px; position: relative; top: unset; } .framer-hkdab .framer-s0kymo { order: 4; } .framer-hkdab .framer-1hy73lv { height: var(--framer-aspect-ratio-supported, 349px); order: 2; } .framer-hkdab .framer-77jl30-container { order: 3; } .framer-hkdab .framer-1f2vjlc { height: 300px; order: 5; } .framer-hkdab .framer-136of3b { height: var(--framer-aspect-ratio-supported, 349px); order: 6; } .framer-hkdab .framer-1e53wyg { height: var(--framer-aspect-ratio-supported, 349px); order: 7; } .framer-hkdab .framer-1sgcbbh { height: 300px; order: 8; } .framer-hkdab .framer-16g1lm4 { order: 5; } .framer-hkdab .framer-1dj5kxh-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hkdab .framer-16dkb8k, .framer-hkdab .framer-1w1j4zr { gap: 0px; } .framer-hkdab .framer-16dkb8k > *, .framer-hkdab .framer-16dkb8k > :first-child, .framer-hkdab .framer-16dkb8k > :last-child { margin: 0px; } .framer-hkdab .framer-1w1j4zr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hkdab .framer-1w1j4zr > :first-child { margin-top: 0px; } .framer-hkdab .framer-1w1j4zr > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-hkdab.framer-1mg9fhx { width: 390px; } .framer-hkdab .framer-h19vkg { padding: 48px 24px 48px 42px; } .framer-hkdab .framer-umy826 { padding: 0px 24px 48px 24px; } .framer-hkdab .framer-16dkb8k, .framer-hkdab .framer-1w1j4zr { flex-direction: column; gap: 32px; } .framer-hkdab .framer-7f9bfk, .framer-hkdab .framer-1kfw433, .framer-hkdab .framer-dil5oz, .framer-hkdab .framer-n7e4la, .framer-hkdab .framer-1j9vbok { flex: none; width: 100%; } .framer-hkdab .framer-19ortfc { padding: 0px 24px 0px 24px; } .framer-hkdab .framer-12eis5m { padding: 48px 24px 48px 24px; } .framer-hkdab .framer-69dfjn { flex: none; position: relative; top: unset; width: 100%; } .framer-hkdab .framer-1lwp4if { --border-bottom-width: 0px; --border-color: var(--token-a6e539bf-184f-4695-83be-52d327cfc00d, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 3px; background-color: var(--token-a39f6e6c-13fd-4e3a-b8e4-4127e5ea8965, #ffffff); padding: 32px 0px 0px 0px; position: relative; top: unset; } .framer-hkdab .framer-s0kymo { gap: 32px; padding: 0px 0px 48px 0px; } .framer-hkdab .framer-9rp9bl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; padding: 0px 24px 0px 24px; } .framer-hkdab .framer-1hy73lv, .framer-hkdab .framer-136of3b, .framer-hkdab .framer-1e53wyg { align-self: unset; height: var(--framer-aspect-ratio-supported, 342px); } .framer-hkdab .framer-77jl30-container { align-self: unset; } .framer-hkdab .framer-1f2vjlc, .framer-hkdab .framer-1sgcbbh { align-self: unset; height: 310px; } .framer-hkdab .framer-16g1lm4 { padding: 0px 0px 48px 0px; width: 100%; } .framer-hkdab .framer-gwxoza { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-hkdab .framer-o2i72b { flex-direction: column; } .framer-hkdab .framer-rlkwdp { bottom: 16px; left: 32px; min-height: 80px; min-width: 80px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hkdab .framer-16dkb8k, .framer-hkdab .framer-1w1j4zr, .framer-hkdab .framer-s0kymo, .framer-hkdab .framer-9rp9bl, .framer-hkdab .framer-o2i72b { gap: 0px; } .framer-hkdab .framer-16dkb8k > *, .framer-hkdab .framer-1w1j4zr > *, .framer-hkdab .framer-s0kymo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hkdab .framer-16dkb8k > :first-child, .framer-hkdab .framer-1w1j4zr > :first-child, .framer-hkdab .framer-s0kymo > :first-child, .framer-hkdab .framer-9rp9bl > :first-child, .framer-hkdab .framer-o2i72b > :first-child { margin-top: 0px; } .framer-hkdab .framer-16dkb8k > :last-child, .framer-hkdab .framer-1w1j4zr > :last-child, .framer-hkdab .framer-s0kymo > :last-child, .framer-hkdab .framer-9rp9bl > :last-child, .framer-hkdab .framer-o2i72b > :last-child { margin-bottom: 0px; } .framer-hkdab .framer-9rp9bl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hkdab .framer-o2i72b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5633.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rdvWIT4w4\":{\"layout\":[\"fixed\",\"auto\"]},\"lekwjql18\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerUchV65umT=withCSS(Component,css,\"framer-hkdab\");export default FramerUchV65umT;FramerUchV65umT.displayName=\"Page\";FramerUchV65umT.defaultProps={height:5633.5,width:1280};addFonts(FramerUchV65umT,[{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\"}]},...HeaderFonts,...MarqueeFonts,...VideoFonts,...MarqueeHeadingFonts,...Video1Fonts,...SectionCTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUchV65umT\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5633.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rdvWIT4w4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lekwjql18\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "GRKXsa1Ts_default", "RichTextWithFX", "withFX", "RichText2", "MarqueeFonts", "kji02HjQf_default", "VideoFonts", "Video", "MarqueeHeadingFonts", "JS2fBfIkM_default", "Video1Fonts", "SectionCTAFonts", "XChIh2K_X_default", "FooterFonts", "zfDrZLwjb_default", "MotionDivWithFX", "motion", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "toResponsiveImage", "value", "isSet", "suffix", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "Gk_rXsiQS_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "MUgju5Ygu", "Wg17JzGyc", "o2Yl9lobJ", "Sxxulfe91", "AOW4XsAjG", "UlP80Thm6", "wcmIC2bhw", "yP7hvYjCu", "CK5BRUjyV", "b5Np0VSE6", "OZzJlOFXM", "OPU7EByjr", "OCsCn7rkx", "aHT9HTfHu", "PGOfSQWYc", "nextItemId", "nextItemId_q6wyKlkO2", "nextItemId_MUgju5Ygu", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "textContent", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "GRKXsa1Ts_default", "x", "RichTextWithFX", "RichText2", "Link", "kji02HjQf_default", "Video", "JS2fBfIkM_default", "getLoadingLazyAtYPosition", "Image2", "XChIh2K_X_default", "zfDrZLwjb_default", "MotionDivWithFX", "css", "FramerUchV65umT", "withCSS", "UchV65umT_default", "addFonts", "HeaderFonts", "MarqueeFonts", "VideoFonts", "MarqueeHeadingFonts", "Video1Fonts", "SectionCTAFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
