{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/bRgOa7mFx12F7xMpcSFN/QFXYWH5pFuMqydscCyTi/DL1_DmJtY.js", "ssg:https://framerusercontent.com/modules/6sAdfyVKczFVI753fdYw/bVGqdPMpMwCVjT8yQORH/RxAgf50GR.js", "ssg:https://framerusercontent.com/modules/kJiL6PFDxQi2MMkGZZY0/yzeC6cjzdSQy30i5w3aN/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", "// Generated by Framer (f22aa3d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-vyZAI .framer-styles-preset-13e7pcd:not(.rich-text-wrapper), .framer-vyZAI .framer-styles-preset-13e7pcd.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --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-vyZAI .framer-styles-preset-13e7pcd:not(.rich-text-wrapper), .framer-vyZAI .framer-styles-preset-13e7pcd.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --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-vyZAI .framer-styles-preset-13e7pcd:not(.rich-text-wrapper), .framer-vyZAI .framer-styles-preset-13e7pcd.rich-text-wrapper p { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-vyZAI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f22aa3d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"FS;Switzer-bold\",\"FS;Switzer-bold italic\",\"FS;Switzer-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LVPXCMXCWY3V7PSXRMGRQUJDAS2DT47E/BPEVRT2HG7PPVVUS7A67MZQQZW6LR6A5/A7AS3UPAGLC7MDVC67SBNTE5FGF2Z2RG.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMRBNVYKDJEZ66DA22SPWH5EVVYACHCU/ZHMXHHA546NDNEHJN5RPZX5KISJY5CWF/C6VLICDGQWYKV6YT65TM5G3OVN4AOZBN.woff2\",weight:\"500\"}]}];export const css=['.framer-3q4On .framer-styles-preset-1nmb3f:not(.rich-text-wrapper), .framer-3q4On .framer-styles-preset-1nmb3f.rich-text-wrapper h3 { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --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-3q4On .framer-styles-preset-1nmb3f:not(.rich-text-wrapper), .framer-3q4On .framer-styles-preset-1nmb3f.rich-text-wrapper h3 { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --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-3q4On .framer-styles-preset-1nmb3f:not(.rich-text-wrapper), .framer-3q4On .framer-styles-preset-1nmb3f.rich-text-wrapper h3 { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-italic: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-3q4On\";\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 (ab692b1)\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 NavigationMobileOpenNavigation from\"#framer/local/canvasComponent/BGiZQuPOO/BGiZQuPOO.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 sharedStyle5 from\"#framer/local/css/DL1_DmJtY/DL1_DmJtY.js\";import*as sharedStyle3 from\"#framer/local/css/l9UToIMeF/l9UToIMeF.js\";import*as sharedStyle from\"#framer/local/css/p3aMDbkx_/p3aMDbkx_.js\";import*as sharedStyle2 from\"#framer/local/css/RxAgf50GR/RxAgf50GR.js\";import*as sharedStyle1 from\"#framer/local/css/ws35hVPiM/ws35hVPiM.js\";import*as sharedStyle4 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 ImageWithFX=withFX(Image);const ProjectsProjectsCardFonts=getFonts(ProjectsProjectsCard);const FooterFooterFonts=getFonts(FooterFooter);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-yHESC\";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:.8,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition6={delay:.9,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition7={delay:.95,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition8={delay:1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition9={delay:1.1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition10={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 transition11={delay:.2,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:.25,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition13={delay:.6,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition14={delay:.7,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition15={delay:1.3,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition16={delay:1.4,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 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:\"NrU8afFxG\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"Q9jC5ouXB\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"xtIP1CHRT\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"cF8d4kxHc\",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:\"NWIOxJqNQ\",type:\"Identifier\"},{collection:\"wHkICDJ1H\",name:\"jieSmvzwA\",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:\"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\"),NrU8afFxG=getFromCurrentRouteData(\"NrU8afFxG\")??\"\",Q9jC5ouXB=getFromCurrentRouteData(\"Q9jC5ouXB\")??\"\",xtIP1CHRT=getFromCurrentRouteData(\"xtIP1CHRT\")??\"\",cF8d4kxHc=getFromCurrentRouteData(\"cF8d4kxHc\")??\"\",YA2R7OF8y=getFromCurrentRouteData(\"YA2R7OF8y\"),HJMY3zA0L=getFromCurrentRouteData(\"HJMY3zA0L\"),mCOsImJga=getFromCurrentRouteData(\"mCOsImJga\"),QGojug26C=getFromCurrentRouteData(\"QGojug26C\"),rJVII_6WV=getFromCurrentRouteData(\"rJVII_6WV\"),jm9s_Ybt7=getFromCurrentRouteData(\"jm9s_Ybt7\"),SLq5x1kkg=getFromCurrentRouteData(\"SLq5x1kkg\"),NWIOxJqNQ=getFromCurrentRouteData(\"NWIOxJqNQ\"),jieSmvzwA=getFromCurrentRouteData(\"jieSmvzwA\"),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\")??\"\",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,sharedStyle5.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 visible3=isSet(HJMY3zA0L);const visible4=isSet(mCOsImJga);const visible5=isSet(QGojug26C);const visible6=isSet(jm9s_Ybt7);const visible7=isSet(SLq5x1kkg);const visible8=isSet(NWIOxJqNQ);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({});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:47,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:47,width:componentViewport?.width||\"100vw\",y:0},Tfdg5Z1uw:{height:47,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:{HWsemc2rZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nmb3f\",\"data-styles-preset\":\"RxAgf50GR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Kit Undergarments\"})})},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-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+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-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: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:\"Type\"})}),className:\"framer-1mtxu7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x7kn7a\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(\"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: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:\"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:transition7},__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+111+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+111+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:transition8},__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: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:\"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+163+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+163+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:transition10},__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:\"About\"})}),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(\"section\",{className:\"framer-nfwma6\",\"data-framer-name\":\"Section Content\",children:[/*#__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(PropertyOverrides,{breakpoint:baseVariant,overrides:{HWsemc2rZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1326.5+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(YA2R7OF8y)},className:\"framer-yyyrzt\",\"data-framer-name\":\"Image 1\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eymfwk\",\"data-framer-name\":\"Content 2\",children:[visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9qgv8q\",\"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+1326.5+0+780+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(HJMY3zA0L)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+780+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 15px) / 0, 1px)`,...toResponsiveImage(HJMY3zA0L)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+785+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(HJMY3zA0L)},className:\"framer-3xhq1d\",\"data-framer-name\":\"Image 2\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6r4zpt\",\"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+1326.5+0+780+0+775+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(mCOsImJga)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+780+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 15px) / 0, 1px)`,...toResponsiveImage(mCOsImJga)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__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+1356.5+0+785+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px)`,...toResponsiveImage(mCOsImJga)},className:\"framer-hbv2u4\",\"data-framer-name\":\"Image 3\"})})})]}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mm05uw\",\"data-framer-name\":\"Content 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-thyzuj\",\"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+1326.5+0+2330+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(QGojug26C)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+1555+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(QGojug26C)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+1565+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(QGojug26C)},className:\"framer-1xm0sxx\",\"data-framer-name\":\"Image 4\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cd2f0w\",\"data-framer-name\":\"Content 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b4097h\",\"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+1326.5+0+4330+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(rJVII_6WV)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+2335+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(rJVII_6WV)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+2350+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(rJVII_6WV)},className:\"framer-17zmsus\",\"data-framer-name\":\"Image 5\"})})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t867lf\",\"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+1326.5+0+4330+0+610+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jm9s_Ybt7)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+2335+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jm9s_Ybt7)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__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+1356.5+0+2350+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(jm9s_Ybt7)},className:\"framer-k1wcpz\",\"data-framer-name\":\"Image 6\"})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-p7w786\",\"data-framer-name\":\"Content 5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l7xqru\",\"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+1326.5+0+5550+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(SLq5x1kkg)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+2945+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(SLq5x1kkg)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+2965+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(SLq5x1kkg)},className:\"framer-1peo0od\",\"data-framer-name\":\"Image 7\"})})})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b60k35\",\"data-framer-name\":\"Content 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ojsod\",\"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+1326.5+0+3110+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(NWIOxJqNQ)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+3725+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(NWIOxJqNQ)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__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+1356.5+0+3750+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(NWIOxJqNQ)},className:\"framer-1pyaupk\",\"data-framer-name\":\"Image 5\"})})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dii5k\",\"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+1326.5+0+3110+0+610+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jieSmvzwA)}},Tfdg5Z1uw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1356.5+0+3725+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(jieSmvzwA)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__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+1356.5+0+3750+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(jieSmvzwA)},className:\"framer-tb0r1v\",\"data-framer-name\":\"Image 6\"})})})]}),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+1356.5+0+4335+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+1356.5+0+4365+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:transition13},__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: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:\"Noah Jenkins\"})}),className:\"framer-cndp5d\",fonts:[\"Inter\"],text:mDRbNjLBt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__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: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+1356.5+0+4335+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+1356.5+0+4365+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: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:\"Isabella Brooks\"})}),className:\"framer-16mo3hz\",fonts:[\"Inter\"],text:KAuLNROaX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__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:\"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+1356.5+0+4335+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+1356.5+0+4365+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:transition9},__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: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:\"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+1356.5+0+4335+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+1356.5+0+4365+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: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:\"Maria White\"})}),className:\"framer-tdtcu\",fonts:[\"Inter\"],text:DmW_aoLVV,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: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__*/_jsx(\"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+1356.5+0+4335+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+1356.5+0+4365+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%\"})})})})})})]})]}),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+1326.5+0+6330+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+1326.5+0+6330+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+1326.5+0+6330+40+0+0+0+143+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+1326.5+0+6330+40+0+0+0+199+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__*/_jsx(\"div\",{className:\"framer-1bhwl4s\",\"data-framer-name\":\"Container\"})})]})})]}),/*#__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+7986.5+0+0+0+0+0+0+0},Tfdg5Z1uw:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+6074.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+6104.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+7986.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+6074.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+6104.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+7986.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+6074.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+6104.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+7986.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+6104.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+9229.5},Tfdg5Z1uw:{y:(componentViewport?.y||0)+0+6739.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6769.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,{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-yHESC.framer-1wjkstj, .framer-yHESC .framer-1wjkstj { display: block; }\",\".framer-yHESC.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-yHESC .framer-1g9iw1q-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-yHESC .framer-1ls4ylz-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-yHESC.framer-1jyek5l { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-yHESC.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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .framer-1se5g3d, .framer-yHESC .framer-1w7tzdn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yHESC .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-yHESC .framer-59g43l, .framer-yHESC .framer-1mxay6w, .framer-yHESC .framer-96u25m, .framer-yHESC .framer-1i7xwjx, .framer-yHESC .framer-dg6qf6, .framer-yHESC .framer-1dyc9aa, .framer-yHESC .framer-6zpe5r, .framer-yHESC .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-yHESC .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, 620px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .framer-1dm5hfx { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 3; }\",\".framer-yHESC .framer-80ngi8-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-yHESC .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-yHESC .framer-13yo5de, .framer-yHESC .framer-q5atxq { align-self: stretch; flex: 0.7 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-yHESC .framer-7ud1vv, .framer-yHESC .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-yHESC .framer-1v8rjll { 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-yHESC .framer-uqfuga-container, .framer-yHESC .framer-c7umsb-container, .framer-yHESC .framer-srn4za-container, .framer-yHESC .framer-1qxsbdi-container, .framer-yHESC .framer-7p9yce-container, .framer-yHESC .framer-h0znzd-container, .framer-yHESC .framer-cafdh1-container, .framer-yHESC .framer-tz4y3s-container, .framer-yHESC .framer-192neux-container, .framer-yHESC .framer-1hcajng-container, .framer-yHESC .framer-1ell1eu-container, .framer-yHESC .framer-1frogf-container, .framer-yHESC .framer-gi7usk-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-yHESC .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-yHESC .framer-1054mcb, .framer-yHESC .framer-1sew7v2 { 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-yHESC .framer-1mtxu7e, .framer-yHESC .framer-fzs76c, .framer-yHESC .framer-yy85sm, .framer-yHESC .framer-1iv9n9w, .framer-yHESC .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-yHESC .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-yHESC .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-yHESC .framer-1rpivbx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .framer-1bowclp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .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-yHESC .framer-1femrtr, .framer-yHESC .framer-10dbdds, .framer-yHESC .framer-tne6sd, .framer-yHESC .framer-1mt775e, .framer-yHESC .framer-1exka5e, .framer-yHESC .framer-1nxbcs9, .framer-yHESC .framer-he106k { 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-yHESC .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-yHESC .framer-ajv3dt, .framer-yHESC .framer-mm05uw, .framer-yHESC .framer-p7w786 { 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-yHESC .framer-9c7x2f { 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, 765px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-yHESC .framer-yyyrzt { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 2; }\",\".framer-yHESC .framer-1eymfwk, .framer-yHESC .framer-1cd2f0w { 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: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-yHESC .framer-9qgv8q, .framer-yHESC .framer-6r4zpt { align-content: center; align-items: center; aspect-ratio: 0.75 / 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, 760px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yHESC .framer-3xhq1d, .framer-yHESC .framer-hbv2u4, .framer-yHESC .framer-1xm0sxx, .framer-yHESC .framer-17zmsus, .framer-yHESC .framer-k1wcpz, .framer-yHESC .framer-1peo0od, .framer-yHESC .framer-1pyaupk, .framer-yHESC .framer-tb0r1v { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-yHESC .framer-thyzuj, .framer-yHESC .framer-l7xqru { 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, 765px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yHESC .framer-1b4097h, .framer-yHESC .framer-t867lf, .framer-yHESC .framer-1ojsod, .framer-yHESC .framer-8dii5k { align-content: center; align-items: center; aspect-ratio: 0.957983193277311 / 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, 595px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yHESC .framer-1b60k35 { 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: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-yHESC .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-yHESC .framer-wx2kkb, .framer-yHESC .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-yHESC .framer-1pnen4c, .framer-yHESC .framer-1b5orko, .framer-yHESC .framer-o85r9a, .framer-yHESC .framer-1r6cia1, .framer-yHESC .framer-1kcgfw4, .framer-yHESC .framer-1njm51b, .framer-yHESC .framer-1bkj1ju, .framer-yHESC .framer-1y0sn6v, .framer-yHESC .framer-63kc36, .framer-yHESC .framer-1ct31lo, .framer-yHESC .framer-5zs9yn { 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-yHESC .framer-1axklbv, .framer-yHESC .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-yHESC .framer-z3fj7v { 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-yHESC .framer-cndp5d, .framer-yHESC .framer-16mo3hz, .framer-yHESC .framer-11sim4v, .framer-yHESC .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-yHESC .framer-wtfssj, .framer-yHESC .framer-za4xx3, .framer-yHESC .framer-gmbc6x, .framer-yHESC .framer-xacp6r, .framer-yHESC .framer-7eq6b0, .framer-yHESC .framer-jstruj, .framer-yHESC .framer-1fstw9r, .framer-yHESC .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-yHESC .framer-ug8sct, .framer-yHESC .framer-fowww0, .framer-yHESC .framer-10coece, .framer-yHESC .framer-mfe96, .framer-yHESC .framer-guyny3, .framer-yHESC .framer-b868hq { flex: 0.5 0 0px; height: 10px; overflow: hidden; position: relative; width: 1px; }\",\".framer-yHESC .framer-agypqo, .framer-yHESC .framer-wqiu0m, .framer-yHESC .framer-109u35d, .framer-yHESC .framer-17cop4x, .framer-yHESC .framer-1ravgk5 { 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-yHESC .framer-1aw2bdy, .framer-yHESC .framer-t4nuzn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 18px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .framer-121a6gz, .framer-yHESC .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-yHESC .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 30px 15px; position: relative; width: 100%; }\",\".framer-yHESC .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-yHESC .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: 38px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yHESC .framer-1s552jk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 35px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .framer-13gjtu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 37px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .framer-2wlmb2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yHESC .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; min-height: 1px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .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-yHESC .framer-1umq19d, .framer-yHESC .framer-1v2xv1d, .framer-yHESC .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-yHESC .framer-dg0p70, .framer-yHESC .framer-7oc1g6, .framer-yHESC .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-yHESC .framer-1vznlyv-container, .framer-yHESC .framer-oqv6te-container, .framer-yHESC .framer-ve30dn-container, .framer-yHESC .framer-wi6amg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yHESC.framer-1cohx33, .framer-yHESC .framer-1uyy6ak, .framer-yHESC .framer-1ah9wj0, .framer-yHESC .framer-15pfktq, .framer-yHESC .framer-66uim6, .framer-yHESC .framer-1mox8d1, .framer-yHESC .framer-cc0hgo, .framer-yHESC .framer-4ahs4e, .framer-yHESC .framer-16p8aa5, .framer-yHESC .framer-ot7a84, .framer-yHESC .framer-7ud1vv, .framer-yHESC .framer-1v8rjll, .framer-yHESC .framer-l44xte, .framer-yHESC .framer-1054mcb, .framer-yHESC .framer-x7kn7a, .framer-yHESC .framer-ytmgp5, .framer-yHESC .framer-1rpivbx, .framer-yHESC .framer-1bowclp, .framer-yHESC .framer-31r722, .framer-yHESC .framer-1femrtr, .framer-yHESC .framer-1sew7v2, .framer-yHESC .framer-nfwma6, .framer-yHESC .framer-ajv3dt, .framer-yHESC .framer-9c7x2f, .framer-yHESC .framer-1eymfwk, .framer-yHESC .framer-9qgv8q, .framer-yHESC .framer-6r4zpt, .framer-yHESC .framer-mm05uw, .framer-yHESC .framer-thyzuj, .framer-yHESC .framer-1cd2f0w, .framer-yHESC .framer-1b4097h, .framer-yHESC .framer-t867lf, .framer-yHESC .framer-p7w786, .framer-yHESC .framer-l7xqru, .framer-yHESC .framer-1b60k35, .framer-yHESC .framer-1ojsod, .framer-yHESC .framer-8dii5k, .framer-yHESC .framer-5adscp, .framer-yHESC .framer-12a6089, .framer-yHESC .framer-wx2kkb, .framer-yHESC .framer-1pnen4c, .framer-yHESC .framer-1axklbv, .framer-yHESC .framer-z3fj7v, .framer-yHESC .framer-1b5orko, .framer-yHESC .framer-10dbdds, .framer-yHESC .framer-agypqo, .framer-yHESC .framer-1aw2bdy, .framer-yHESC .framer-o85r9a, .framer-yHESC .framer-tne6sd, .framer-yHESC .framer-wqiu0m, .framer-yHESC .framer-t4nuzn, .framer-yHESC .framer-1r6cia1, .framer-yHESC .framer-1mt775e, .framer-yHESC .framer-109u35d, .framer-yHESC .framer-121a6gz, .framer-yHESC .framer-1kcgfw4, .framer-yHESC .framer-1njm51b, .framer-yHESC .framer-1v4d0b7, .framer-yHESC .framer-1nyto0g, .framer-yHESC .framer-1at51tf, .framer-yHESC .framer-1bkj1ju, .framer-yHESC .framer-1xbrchd, .framer-yHESC .framer-1pb1d96, .framer-yHESC .framer-1y0sn6v, .framer-yHESC .framer-1exka5e, .framer-yHESC .framer-17cop4x, .framer-yHESC .framer-1s552jk, .framer-yHESC .framer-63kc36, .framer-yHESC .framer-1nxbcs9, .framer-yHESC .framer-1ravgk5, .framer-yHESC .framer-13gjtu, .framer-yHESC .framer-1ct31lo, .framer-yHESC .framer-he106k, .framer-yHESC .framer-2wlmb2, .framer-yHESC .framer-yvjyro, .framer-yHESC .framer-5zs9yn, .framer-yHESC .framer-1bhwl4s, .framer-yHESC .framer-1o7k7gr, .framer-yHESC .framer-m4vzrj, .framer-yHESC .framer-fj4dr8, .framer-yHESC .framer-1tcoahn, .framer-yHESC .framer-1fo196g, .framer-yHESC .framer-p1929e, .framer-yHESC .framer-1umq19d, .framer-yHESC .framer-dg0p70, .framer-yHESC .framer-1v2xv1d, .framer-yHESC .framer-7oc1g6, .framer-yHESC .framer-5qp6o7, .framer-yHESC .framer-q2unnx { gap: 0px; } .framer-yHESC.framer-1cohx33 > *, .framer-yHESC .framer-15pfktq > *, .framer-yHESC .framer-66uim6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yHESC.framer-1cohx33 > :first-child, .framer-yHESC .framer-15pfktq > :first-child, .framer-yHESC .framer-66uim6 > :first-child, .framer-yHESC .framer-16p8aa5 > :first-child, .framer-yHESC .framer-7ud1vv > :first-child, .framer-yHESC .framer-1v8rjll > :first-child, .framer-yHESC .framer-1rpivbx > :first-child, .framer-yHESC .framer-31r722 > :first-child, .framer-yHESC .framer-nfwma6 > :first-child, .framer-yHESC .framer-12a6089 > :first-child, .framer-yHESC .framer-wx2kkb > :first-child, .framer-yHESC .framer-1pnen4c > :first-child, .framer-yHESC .framer-1b5orko > :first-child, .framer-yHESC .framer-agypqo > :first-child, .framer-yHESC .framer-o85r9a > :first-child, .framer-yHESC .framer-wqiu0m > :first-child, .framer-yHESC .framer-1r6cia1 > :first-child, .framer-yHESC .framer-109u35d > :first-child, .framer-yHESC .framer-1kcgfw4 > :first-child, .framer-yHESC .framer-1njm51b > :first-child, .framer-yHESC .framer-1nyto0g > :first-child, .framer-yHESC .framer-1at51tf > :first-child, .framer-yHESC .framer-1bkj1ju > :first-child, .framer-yHESC .framer-1y0sn6v > :first-child, .framer-yHESC .framer-17cop4x > :first-child, .framer-yHESC .framer-63kc36 > :first-child, .framer-yHESC .framer-1ravgk5 > :first-child, .framer-yHESC .framer-1ct31lo > :first-child, .framer-yHESC .framer-2wlmb2 > :first-child, .framer-yHESC .framer-5zs9yn > :first-child, .framer-yHESC .framer-1bhwl4s > :first-child, .framer-yHESC .framer-m4vzrj > :first-child, .framer-yHESC .framer-fj4dr8 > :first-child, .framer-yHESC .framer-1tcoahn > :first-child, .framer-yHESC .framer-1umq19d > :first-child, .framer-yHESC .framer-dg0p70 > :first-child, .framer-yHESC .framer-1v2xv1d > :first-child, .framer-yHESC .framer-7oc1g6 > :first-child, .framer-yHESC .framer-5qp6o7 > :first-child, .framer-yHESC .framer-q2unnx > :first-child { margin-top: 0px; } .framer-yHESC.framer-1cohx33 > :last-child, .framer-yHESC .framer-15pfktq > :last-child, .framer-yHESC .framer-66uim6 > :last-child, .framer-yHESC .framer-16p8aa5 > :last-child, .framer-yHESC .framer-7ud1vv > :last-child, .framer-yHESC .framer-1v8rjll > :last-child, .framer-yHESC .framer-1rpivbx > :last-child, .framer-yHESC .framer-31r722 > :last-child, .framer-yHESC .framer-nfwma6 > :last-child, .framer-yHESC .framer-12a6089 > :last-child, .framer-yHESC .framer-wx2kkb > :last-child, .framer-yHESC .framer-1pnen4c > :last-child, .framer-yHESC .framer-1b5orko > :last-child, .framer-yHESC .framer-agypqo > :last-child, .framer-yHESC .framer-o85r9a > :last-child, .framer-yHESC .framer-wqiu0m > :last-child, .framer-yHESC .framer-1r6cia1 > :last-child, .framer-yHESC .framer-109u35d > :last-child, .framer-yHESC .framer-1kcgfw4 > :last-child, .framer-yHESC .framer-1njm51b > :last-child, .framer-yHESC .framer-1nyto0g > :last-child, .framer-yHESC .framer-1at51tf > :last-child, .framer-yHESC .framer-1bkj1ju > :last-child, .framer-yHESC .framer-1y0sn6v > :last-child, .framer-yHESC .framer-17cop4x > :last-child, .framer-yHESC .framer-63kc36 > :last-child, .framer-yHESC .framer-1ravgk5 > :last-child, .framer-yHESC .framer-1ct31lo > :last-child, .framer-yHESC .framer-2wlmb2 > :last-child, .framer-yHESC .framer-5zs9yn > :last-child, .framer-yHESC .framer-1bhwl4s > :last-child, .framer-yHESC .framer-m4vzrj > :last-child, .framer-yHESC .framer-fj4dr8 > :last-child, .framer-yHESC .framer-1tcoahn > :last-child, .framer-yHESC .framer-1umq19d > :last-child, .framer-yHESC .framer-dg0p70 > :last-child, .framer-yHESC .framer-1v2xv1d > :last-child, .framer-yHESC .framer-7oc1g6 > :last-child, .framer-yHESC .framer-5qp6o7 > :last-child, .framer-yHESC .framer-q2unnx > :last-child { margin-bottom: 0px; } .framer-yHESC .framer-1uyy6ak > *, .framer-yHESC .framer-1ah9wj0 > *, .framer-yHESC .framer-cc0hgo > *, .framer-yHESC .framer-4ahs4e > *, .framer-yHESC .framer-l44xte > *, .framer-yHESC .framer-1054mcb > *, .framer-yHESC .framer-1bowclp > *, .framer-yHESC .framer-1femrtr > *, .framer-yHESC .framer-1sew7v2 > *, .framer-yHESC .framer-ajv3dt > *, .framer-yHESC .framer-9c7x2f > *, .framer-yHESC .framer-9qgv8q > *, .framer-yHESC .framer-6r4zpt > *, .framer-yHESC .framer-mm05uw > *, .framer-yHESC .framer-thyzuj > *, .framer-yHESC .framer-1b4097h > *, .framer-yHESC .framer-t867lf > *, .framer-yHESC .framer-p7w786 > *, .framer-yHESC .framer-l7xqru > *, .framer-yHESC .framer-1ojsod > *, .framer-yHESC .framer-8dii5k > *, .framer-yHESC .framer-1axklbv > *, .framer-yHESC .framer-z3fj7v > *, .framer-yHESC .framer-10dbdds > *, .framer-yHESC .framer-tne6sd > *, .framer-yHESC .framer-1mt775e > *, .framer-yHESC .framer-121a6gz > *, .framer-yHESC .framer-1xbrchd > *, .framer-yHESC .framer-1pb1d96 > *, .framer-yHESC .framer-1exka5e > *, .framer-yHESC .framer-1s552jk > *, .framer-yHESC .framer-1nxbcs9 > *, .framer-yHESC .framer-he106k > *, .framer-yHESC .framer-yvjyro > *, .framer-yHESC .framer-1o7k7gr > *, .framer-yHESC .framer-1fo196g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yHESC .framer-1uyy6ak > :first-child, .framer-yHESC .framer-1ah9wj0 > :first-child, .framer-yHESC .framer-1mox8d1 > :first-child, .framer-yHESC .framer-cc0hgo > :first-child, .framer-yHESC .framer-4ahs4e > :first-child, .framer-yHESC .framer-ot7a84 > :first-child, .framer-yHESC .framer-l44xte > :first-child, .framer-yHESC .framer-1054mcb > :first-child, .framer-yHESC .framer-x7kn7a > :first-child, .framer-yHESC .framer-ytmgp5 > :first-child, .framer-yHESC .framer-1bowclp > :first-child, .framer-yHESC .framer-1femrtr > :first-child, .framer-yHESC .framer-1sew7v2 > :first-child, .framer-yHESC .framer-ajv3dt > :first-child, .framer-yHESC .framer-9c7x2f > :first-child, .framer-yHESC .framer-1eymfwk > :first-child, .framer-yHESC .framer-9qgv8q > :first-child, .framer-yHESC .framer-6r4zpt > :first-child, .framer-yHESC .framer-mm05uw > :first-child, .framer-yHESC .framer-thyzuj > :first-child, .framer-yHESC .framer-1cd2f0w > :first-child, .framer-yHESC .framer-1b4097h > :first-child, .framer-yHESC .framer-t867lf > :first-child, .framer-yHESC .framer-p7w786 > :first-child, .framer-yHESC .framer-l7xqru > :first-child, .framer-yHESC .framer-1b60k35 > :first-child, .framer-yHESC .framer-1ojsod > :first-child, .framer-yHESC .framer-8dii5k > :first-child, .framer-yHESC .framer-5adscp > :first-child, .framer-yHESC .framer-1axklbv > :first-child, .framer-yHESC .framer-z3fj7v > :first-child, .framer-yHESC .framer-10dbdds > :first-child, .framer-yHESC .framer-1aw2bdy > :first-child, .framer-yHESC .framer-tne6sd > :first-child, .framer-yHESC .framer-t4nuzn > :first-child, .framer-yHESC .framer-1mt775e > :first-child, .framer-yHESC .framer-121a6gz > :first-child, .framer-yHESC .framer-1v4d0b7 > :first-child, .framer-yHESC .framer-1xbrchd > :first-child, .framer-yHESC .framer-1pb1d96 > :first-child, .framer-yHESC .framer-1exka5e > :first-child, .framer-yHESC .framer-1s552jk > :first-child, .framer-yHESC .framer-1nxbcs9 > :first-child, .framer-yHESC .framer-13gjtu > :first-child, .framer-yHESC .framer-he106k > :first-child, .framer-yHESC .framer-yvjyro > :first-child, .framer-yHESC .framer-1o7k7gr > :first-child, .framer-yHESC .framer-1fo196g > :first-child, .framer-yHESC .framer-p1929e > :first-child { margin-left: 0px; } .framer-yHESC .framer-1uyy6ak > :last-child, .framer-yHESC .framer-1ah9wj0 > :last-child, .framer-yHESC .framer-1mox8d1 > :last-child, .framer-yHESC .framer-cc0hgo > :last-child, .framer-yHESC .framer-4ahs4e > :last-child, .framer-yHESC .framer-ot7a84 > :last-child, .framer-yHESC .framer-l44xte > :last-child, .framer-yHESC .framer-1054mcb > :last-child, .framer-yHESC .framer-x7kn7a > :last-child, .framer-yHESC .framer-ytmgp5 > :last-child, .framer-yHESC .framer-1bowclp > :last-child, .framer-yHESC .framer-1femrtr > :last-child, .framer-yHESC .framer-1sew7v2 > :last-child, .framer-yHESC .framer-ajv3dt > :last-child, .framer-yHESC .framer-9c7x2f > :last-child, .framer-yHESC .framer-1eymfwk > :last-child, .framer-yHESC .framer-9qgv8q > :last-child, .framer-yHESC .framer-6r4zpt > :last-child, .framer-yHESC .framer-mm05uw > :last-child, .framer-yHESC .framer-thyzuj > :last-child, .framer-yHESC .framer-1cd2f0w > :last-child, .framer-yHESC .framer-1b4097h > :last-child, .framer-yHESC .framer-t867lf > :last-child, .framer-yHESC .framer-p7w786 > :last-child, .framer-yHESC .framer-l7xqru > :last-child, .framer-yHESC .framer-1b60k35 > :last-child, .framer-yHESC .framer-1ojsod > :last-child, .framer-yHESC .framer-8dii5k > :last-child, .framer-yHESC .framer-5adscp > :last-child, .framer-yHESC .framer-1axklbv > :last-child, .framer-yHESC .framer-z3fj7v > :last-child, .framer-yHESC .framer-10dbdds > :last-child, .framer-yHESC .framer-1aw2bdy > :last-child, .framer-yHESC .framer-tne6sd > :last-child, .framer-yHESC .framer-t4nuzn > :last-child, .framer-yHESC .framer-1mt775e > :last-child, .framer-yHESC .framer-121a6gz > :last-child, .framer-yHESC .framer-1v4d0b7 > :last-child, .framer-yHESC .framer-1xbrchd > :last-child, .framer-yHESC .framer-1pb1d96 > :last-child, .framer-yHESC .framer-1exka5e > :last-child, .framer-yHESC .framer-1s552jk > :last-child, .framer-yHESC .framer-1nxbcs9 > :last-child, .framer-yHESC .framer-13gjtu > :last-child, .framer-yHESC .framer-he106k > :last-child, .framer-yHESC .framer-yvjyro > :last-child, .framer-yHESC .framer-1o7k7gr > :last-child, .framer-yHESC .framer-1fo196g > :last-child, .framer-yHESC .framer-p1929e > :last-child { margin-right: 0px; } .framer-yHESC .framer-1mox8d1 > *, .framer-yHESC .framer-ytmgp5 > *, .framer-yHESC .framer-1aw2bdy > *, .framer-yHESC .framer-t4nuzn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-yHESC .framer-16p8aa5 > *, .framer-yHESC .framer-1v8rjll > *, .framer-yHESC .framer-31r722 > *, .framer-yHESC .framer-1pnen4c > *, .framer-yHESC .framer-1b5orko > *, .framer-yHESC .framer-agypqo > *, .framer-yHESC .framer-o85r9a > *, .framer-yHESC .framer-wqiu0m > *, .framer-yHESC .framer-1r6cia1 > *, .framer-yHESC .framer-109u35d > *, .framer-yHESC .framer-1kcgfw4 > *, .framer-yHESC .framer-1njm51b > *, .framer-yHESC .framer-1bkj1ju > *, .framer-yHESC .framer-1y0sn6v > *, .framer-yHESC .framer-17cop4x > *, .framer-yHESC .framer-63kc36 > *, .framer-yHESC .framer-1ravgk5 > *, .framer-yHESC .framer-1ct31lo > *, .framer-yHESC .framer-5zs9yn > *, .framer-yHESC .framer-1bhwl4s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yHESC .framer-ot7a84 > *, .framer-yHESC .framer-1eymfwk > *, .framer-yHESC .framer-1cd2f0w > *, .framer-yHESC .framer-1b60k35 > *, .framer-yHESC .framer-5adscp > *, .framer-yHESC .framer-1v4d0b7 > *, .framer-yHESC .framer-p1929e > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-yHESC .framer-7ud1vv > *, .framer-yHESC .framer-12a6089 > *, .framer-yHESC .framer-1nyto0g > *, .framer-yHESC .framer-fj4dr8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-yHESC .framer-x7kn7a > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-yHESC .framer-1rpivbx > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yHESC .framer-nfwma6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-yHESC .framer-wx2kkb > *, .framer-yHESC .framer-1at51tf > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yHESC .framer-13gjtu > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-yHESC .framer-2wlmb2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-yHESC .framer-m4vzrj > *, .framer-yHESC .framer-1umq19d > *, .framer-yHESC .framer-1v2xv1d > *, .framer-yHESC .framer-5qp6o7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-yHESC .framer-1tcoahn > *, .framer-yHESC .framer-dg0p70 > *, .framer-yHESC .framer-7oc1g6 > *, .framer-yHESC .framer-q2unnx > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yHESC.framer-1cohx33 { width: 810px; } .framer-yHESC .framer-1mox8d1 { gap: 30px; justify-content: flex-start; padding: 0px 15px 18px 15px; } .framer-yHESC .framer-cc0hgo { flex: none; width: min-content; } .framer-yHESC .framer-4ahs4e { flex: 1 0 0px; } .framer-yHESC .framer-16p8aa5 { height: var(--framer-aspect-ratio-supported, 419px); } .framer-yHESC .framer-1dm5hfx, .framer-yHESC .framer-80ngi8-container { will-change: var(--framer-will-change-effect-override, transform); } .framer-yHESC .framer-ot7a84 { gap: 0px; justify-content: flex-start; padding: 40px 15px 100px 15px; } .framer-yHESC .framer-7ud1vv, .framer-yHESC .framer-12a6089 { flex: 0.7 0 0px; } .framer-yHESC .framer-1v8rjll { overflow: visible; } .framer-yHESC .framer-x7kn7a { align-content: flex-start; align-items: flex-start; height: 17px; } .framer-yHESC .framer-nfwma6, .framer-yHESC .framer-p1929e { gap: 15px; } .framer-yHESC .framer-ajv3dt, .framer-yHESC .framer-mm05uw, .framer-yHESC .framer-p7w786 { padding: 0px 15px 0px 15px; } .framer-yHESC .framer-9c7x2f, .framer-yHESC .framer-thyzuj, .framer-yHESC .framer-l7xqru { height: var(--framer-aspect-ratio-supported, 515px); } .framer-yHESC .framer-1eymfwk, .framer-yHESC .framer-1cd2f0w, .framer-yHESC .framer-1b60k35 { gap: 15px; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-9qgv8q, .framer-yHESC .framer-6r4zpt { height: var(--framer-aspect-ratio-supported, 510px); } .framer-yHESC .framer-1b4097h, .framer-yHESC .framer-t867lf, .framer-yHESC .framer-1ojsod, .framer-yHESC .framer-8dii5k { height: var(--framer-aspect-ratio-supported, 399px); } .framer-yHESC .framer-5adscp { gap: 0px; justify-content: flex-start; padding: 40px 15px 120px 15px; } .framer-yHESC .framer-1o7k7gr { padding: 0px 15px 160px 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yHESC .framer-1mox8d1, .framer-yHESC .framer-ot7a84, .framer-yHESC .framer-nfwma6, .framer-yHESC .framer-1eymfwk, .framer-yHESC .framer-1cd2f0w, .framer-yHESC .framer-1b60k35, .framer-yHESC .framer-5adscp, .framer-yHESC .framer-p1929e { gap: 0px; } .framer-yHESC .framer-1mox8d1 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-yHESC .framer-1mox8d1 > :first-child, .framer-yHESC .framer-ot7a84 > :first-child, .framer-yHESC .framer-1eymfwk > :first-child, .framer-yHESC .framer-1cd2f0w > :first-child, .framer-yHESC .framer-1b60k35 > :first-child, .framer-yHESC .framer-5adscp > :first-child, .framer-yHESC .framer-p1929e > :first-child { margin-left: 0px; } .framer-yHESC .framer-1mox8d1 > :last-child, .framer-yHESC .framer-ot7a84 > :last-child, .framer-yHESC .framer-1eymfwk > :last-child, .framer-yHESC .framer-1cd2f0w > :last-child, .framer-yHESC .framer-1b60k35 > :last-child, .framer-yHESC .framer-5adscp > :last-child, .framer-yHESC .framer-p1929e > :last-child { margin-right: 0px; } .framer-yHESC .framer-ot7a84 > *, .framer-yHESC .framer-5adscp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-yHESC .framer-nfwma6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-yHESC .framer-nfwma6 > :first-child { margin-top: 0px; } .framer-yHESC .framer-nfwma6 > :last-child { margin-bottom: 0px; } .framer-yHESC .framer-1eymfwk > *, .framer-yHESC .framer-1cd2f0w > *, .framer-yHESC .framer-1b60k35 > *, .framer-yHESC .framer-p1929e > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }}\",\"@media (max-width: 809px) { .framer-yHESC.framer-1cohx33 { width: 390px; } .framer-yHESC.framer-1jyek5l { background-color: unset; } .framer-yHESC .framer-1uyy6ak { flex-direction: column; } .framer-yHESC .framer-1ah9wj0 { bottom: 62px; } .framer-yHESC .framer-66uim6, .framer-yHESC .framer-59g43l, .framer-yHESC .framer-b868hq { order: 0; } .framer-yHESC .framer-1mox8d1 { align-content: flex-start; align-items: flex-start; padding: 0px 15px 18px 15px; } .framer-yHESC .framer-cc0hgo { flex: 0.5 0 0px; } .framer-yHESC .framer-4ahs4e, .framer-yHESC .framer-7ud1vv { flex: 1 0 0px; } .framer-yHESC .framer-16p8aa5 { aspect-ratio: 0.6610169491525424 / 1; height: var(--framer-aspect-ratio-supported, 590px); } .framer-yHESC .framer-ot7a84 { order: 1; padding: 40px 15px 100px 15px; } .framer-yHESC .framer-nfwma6 { gap: 15px; order: 2; } .framer-yHESC .framer-ajv3dt { order: 1; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-9c7x2f, .framer-yHESC .framer-thyzuj, .framer-yHESC .framer-l7xqru { height: var(--framer-aspect-ratio-supported, 238px); } .framer-yHESC .framer-1eymfwk { flex-direction: column; gap: 15px; order: 2; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-9qgv8q, .framer-yHESC .framer-6r4zpt { flex: none; height: var(--framer-aspect-ratio-supported, 480px); width: 100%; } .framer-yHESC .framer-mm05uw { order: 3; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-1cd2f0w { flex-direction: column; gap: 15px; order: 5; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-1b4097h, .framer-yHESC .framer-t867lf, .framer-yHESC .framer-1ojsod, .framer-yHESC .framer-8dii5k { flex: none; height: var(--framer-aspect-ratio-supported, 376px); width: 100%; } .framer-yHESC .framer-p7w786 { order: 6; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-1b60k35 { flex-direction: column; gap: 15px; order: 4; padding: 0px 15px 0px 15px; } .framer-yHESC .framer-1v4d0b7 { order: 7; } .framer-yHESC .framer-2wlmb2 { order: 1; } .framer-yHESC .framer-1o7k7gr { order: 3; padding: 0px 15px 160px 15px; } .framer-yHESC .framer-p1929e { flex-direction: column; gap: 40px; } .framer-yHESC .framer-1umq19d, .framer-yHESC .framer-1v2xv1d, .framer-yHESC .framer-5qp6o7 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yHESC .framer-1uyy6ak, .framer-yHESC .framer-nfwma6, .framer-yHESC .framer-1eymfwk, .framer-yHESC .framer-1cd2f0w, .framer-yHESC .framer-1b60k35, .framer-yHESC .framer-p1929e { gap: 0px; } .framer-yHESC .framer-1uyy6ak > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yHESC .framer-1uyy6ak > :first-child, .framer-yHESC .framer-nfwma6 > :first-child, .framer-yHESC .framer-1eymfwk > :first-child, .framer-yHESC .framer-1cd2f0w > :first-child, .framer-yHESC .framer-1b60k35 > :first-child, .framer-yHESC .framer-p1929e > :first-child { margin-top: 0px; } .framer-yHESC .framer-1uyy6ak > :last-child, .framer-yHESC .framer-nfwma6 > :last-child, .framer-yHESC .framer-1eymfwk > :last-child, .framer-yHESC .framer-1cd2f0w > :last-child, .framer-yHESC .framer-1b60k35 > :last-child, .framer-yHESC .framer-p1929e > :last-child { margin-bottom: 0px; } .framer-yHESC .framer-nfwma6 > *, .framer-yHESC .framer-1eymfwk > *, .framer-yHESC .framer-1cd2f0w > *, .framer-yHESC .framer-1b60k35 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-yHESC .framer-p1929e > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6888\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 * @framerComponentViewportWidth 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-yHESC\");export default FramerwHkICDJ1H;FramerwHkICDJ1H.displayName=\"Page\";FramerwHkICDJ1H.defaultProps={height:6888,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,...ProjectsProjectsCardFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwHkICDJ1H\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"VChd3IxUK\\\":{\\\"pattern\\\":\\\":VChd3IxUK\\\",\\\"name\\\":\\\"info\\\"},\\\"M1puzbOzw\\\":{\\\"pattern\\\":\\\":M1puzbOzw\\\",\\\"name\\\":\\\"credits\\\"},\\\"zeYDC_gyY\\\":{\\\"pattern\\\":\\\":zeYDC_gyY\\\",\\\"name\\\":\\\"credits\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tfdg5Z1uw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HWsemc2rZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6888\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "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", "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", "ImageWithFX", "ProjectsProjectsCardFonts", "Lrkv11kZg_default", "FooterFooterFonts", "J0LNWxmCZ_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", "animation7", "getTextEffect", "ref", "animation8", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "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", "NrU8afFxG", "Q9jC5ouXB", "xtIP1CHRT", "cF8d4kxHc", "YA2R7OF8y", "HJMY3zA0L", "mCOsImJga", "QGojug26C", "rJVII_6WV", "jm9s_Ybt7", "SLq5x1kkg", "NWIOxJqNQ", "jieSmvzwA", "mDRbNjLBt", "M0SXeJ5zq", "KAuLNROaX", "cGZzOFo_j", "bCbVxlqyq", "meEOPMJQw", "DmW_aoLVV", "vH7oG1Sl5", "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", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "isDisplayed2", "isDisplayed3", "elementId1", "ref2", "isDisplayed4", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "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__"]
}
