{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/ZzA1tXy8ltnFFkgVLrQb/eKFpViUQlBSP9AUJPCjJ/QCkwdMLho.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",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(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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??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??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??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//     !isStaticRenderer\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??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??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,withCSS,withFX,withOptimizedAppearEffect}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/7qT0r3So12155VV5Jq5x/Video.js\";import Footer from\"#framer/local/canvasComponent/cittmBMML/cittmBMML.js\";import Navigation from\"#framer/local/canvasComponent/FYVGgK1WB/FYVGgK1WB.js\";import TextLinkArrow from\"#framer/local/canvasComponent/QNmUNpRA4/QNmUNpRA4.js\";import*as sharedStyle2 from\"#framer/local/css/es4pFpdM4/es4pFpdM4.js\";import*as sharedStyle from\"#framer/local/css/Lm1wJt9jp/Lm1wJt9jp.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle3 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/QCkwdMLho/QCkwdMLho.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithFX=withFX(RichText);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TextLinkArrowFonts=getFonts(TextLinkArrow);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const FooterFonts=getFonts(Footer);const breakpoints={mehmy5_pU:\"(max-width: 767px)\",ODYHbygkT:\"(min-width: 1200px)\",s1oDCBur9:\"(min-width: 768px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-uMVrH\";const variantClassNames={mehmy5_pU:\"framer-v-1ku4o6v\",ODYHbygkT:\"framer-v-zw2et4\",s1oDCBur9:\"framer-v-a303zr\"};const transition1={delay:.5,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,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 transition4={delay:0,duration:1.8,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:-135,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation10={opacity:.001,rotate:-135,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ODYHbygkT\",Phone:\"mehmy5_pU\",Tablet:\"s1oDCBur9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ODYHbygkT\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const jlAKTzwBB3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ODYHbygkT\",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-zw2et4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{s1oDCBur9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9992)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-2ekmg8-container\",\"data-framer-appear-id\":\"2ekmg8\",\"data-framer-name\":\"Navigation\",initial:animation1,name:\"Navigation\",nodeId:\"Da_ufhnjw\",optimized:true,rendersWithMotion:true,scopeId:\"QCkwdMLho\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{variant:\"wuUHFN6JO\"},s1oDCBur9:{variant:\"JLU1ItgQ7\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Da_ufhnjw\",layoutId:\"Da_ufhnjw\",name:\"Navigation\",style:{width:\"100%\"},variant:\"xGR0edOQP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1xpzdrf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iap8my\",\"data-framer-name\":\"Section Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7xkon\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5kkvul\",\"data-styles-preset\":\"Lm1wJt9jp\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Revance\"})}),className:\"framer-1r2onvc\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"My short contracting with the team behind Daxxify\"})}),className:\"framer-1d6msyv\",\"data-framer-appear-id\":\"1d6msyv\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vtawdi\",\"data-framer-name\":\"Case Overview\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5kvi6\",\"data-framer-name\":\"Client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Client\"})}),className:\"framer-gtdsqy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128))\"},children:\"Revance Aesthetics\"})}),className:\"framer-14bd87s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynhrk9\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Services\"})}),className:\"framer-sbf6w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128))\"},children:\"Motion Graphics\"})}),className:\"framer-guy5k5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jheegm\",\"data-framer-name\":\"Industries\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Tools Used\"})}),className:\"framer-i3vexe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128))\"},children:\"Adobe Suite\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128))\"},children:\"Cinema 4D\"})]}),className:\"framer-s59b8j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gj9808\",\"data-framer-name\":\"Date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Date\"})}),className:\"framer-1ev140f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d47bba34-339e-4038-8c6c-631863cff0b3, rgb(128, 128, 128))\"},children:\"2024\"})}),className:\"framer-gh06\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nnxgt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Part of the in house studio for Revance Aesthetics\"})}),className:\"framer-1obfqu0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Here is a showcase of the work I completed during my time at Revance. It\u2019s not a full collection of everything, but rather a highlight of the projects I enjoyed. Most of these aren\u2019t necessarily \u201Cportfolio worthy pieces\u201D but I still enjoyed working on them.\"})}),className:\"framer-15lqrou\",\"data-framer-appear-id\":\"15lqrou\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2xf0d\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Blitz Social Campaign\"})}),className:\"framer-sbx84y\",\"data-framer-appear-id\":\"sbx84y\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"This project was a social media campaign for a pop up event in Orange County and Los Angeles featured around a card game event. I created all the text animations and the card spin. The initial frames were created by Nellah Byrd the art director on the project.\"})}),className:\"framer-16fbkwk\",\"data-framer-appear-id\":\"16fbkwk\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-gw1r3f\",\"data-framer-appear-id\":\"gw1r3f\",\"data-framer-name\":\"Section - videos\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-158i6pc-container\",isModuleExternal:true,nodeId:\"b5mnEMwQp\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"b5mnEMwQp\",isMixedBorderRadius:false,layoutId:\"b5mnEMwQp\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ApKXcHExboeYVrM0x5vqBmgqao.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fz57m3-container\",isModuleExternal:true,nodeId:\"LaQD7S9t7\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"LaQD7S9t7\",isMixedBorderRadius:false,layoutId:\"LaQD7S9t7\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/vsMMWMGFptNyAJ5YVGyMtLNKk.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16mp2th-container\",isModuleExternal:true,nodeId:\"tqQ8fYLLr\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"tqQ8fYLLr\",isMixedBorderRadius:false,layoutId:\"tqQ8fYLLr\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/JhgCVK8DuphkNcdydGRi9vGOKBI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vqvp8\",\"data-framer-name\":\"more info stack\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{y:(componentViewport?.y||0)+0+87+50+1905.4+0+0},s1oDCBur9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+87+50+1557.4+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1w2xvam-container\",id:\"1w2xvam\",nodeId:\"Us2mlgGzW\",scopeId:\"QCkwdMLho\",children:[/*#__PURE__*/_jsx(TextLinkArrow,{gT0dNsBiX:\"Compositing guide for team\",height:\"100%\",id:\"Us2mlgGzW\",jlAKTzwBB:jlAKTzwBB3bnx0g({overlay}),layoutId:\"Us2mlgGzW\",style:{height:\"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:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1b6mi5t\"),\"data-framer-portal-id\":\"1w2xvam\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JeFJB61mY\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1eqxca3\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"1w2xvam\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3unxjr\",\"data-framer-name\":\"Frame for Max Width\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"This project was going to be handed off at some point to another agency so I created this workflow so they would know exactly where to edit what. This kept the project very procedural so not a lot of time would be lost in rendering and many artists could work on the project at the same time. This separated graphics, 3D, color correction, text animations, and music into different roles.\"})}),className:\"framer-coauz8\",exit:animation6,fonts:[\"Inter\"],initial:animation8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{animate:animation7,background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/DUkDenn5wwZqs8hTWSf9TsCkEfU.png\",srcSet:\"https://framerusercontent.com/images/DUkDenn5wwZqs8hTWSf9TsCkEfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DUkDenn5wwZqs8hTWSf9TsCkEfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DUkDenn5wwZqs8hTWSf9TsCkEfU.png 1920w\"},className:\"framer-1qccmli\",exit:animation6,initial:animation8})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{y:(componentViewport?.y||0)+0+87+50+1905.4+0+32},s1oDCBur9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+87+50+1557.4+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1qntuhb-container\",id:\"1qntuhb\",nodeId:\"z4RT24Lvc\",scopeId:\"QCkwdMLho\",children:[/*#__PURE__*/_jsx(TextLinkArrow,{gT0dNsBiX:\"Compositing guide for team\",height:\"100%\",id:\"z4RT24Lvc\",jlAKTzwBB:jlAKTzwBB3bnx0g({overlay:overlay1}),layoutId:\"z4RT24Lvc\",style:{height:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.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:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1orxsri\"),\"data-framer-portal-id\":\"1qntuhb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Lp7k4BbAG\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1d0o19e\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"1qntuhb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-158l5fw\",\"data-framer-name\":\"Frame for Max Width\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"I also set up this little node tree in fusion so color correction (with aces) could be done on the background and the card separately. All I had to do was link a new c4d export to the media in and the AOVs would all sync up and apply the color without the color artist needing to do anything but color.\"})}),className:\"framer-1xh93ve\",exit:animation6,fonts:[\"Inter\"],initial:animation8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{animate:animation7,background:{alt:\"\",fit:\"fit\",pixelHeight:640,pixelWidth:1705,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/zhKHtusFGGMVB7vDk4jiqtPmv8.png\",srcSet:\"https://framerusercontent.com/images/zhKHtusFGGMVB7vDk4jiqtPmv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zhKHtusFGGMVB7vDk4jiqtPmv8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zhKHtusFGGMVB7vDk4jiqtPmv8.png 1705w\"},className:\"framer-kj2oef\",exit:animation6,initial:animation8})]})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djrj8v\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Lips worth framing campaign\"})}),className:\"framer-1pyukn8\",\"data-framer-appear-id\":\"1pyukn8\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"The new campaign and slogan for RHA was Lips Worth Framing so the designers came up with this lovely concept of a camera shutter and focus to frame the lips. I took those boards and brought it together to make one of my favorite pieces in my short time at Revance.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"This whole setup was also procedural so if the model changed (which the did a few times) all we had to do was swap one source and all the effects stayed in place.\"})]})}),className:\"framer-tpy665\",\"data-framer-appear-id\":\"tpy665\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-usov7s\",\"data-framer-appear-id\":\"usov7s\",\"data-framer-name\":\"Section - videos\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l8pfhm-container\",isModuleExternal:true,nodeId:\"rcqyRgDsM\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{style:{width:\"100%\"}},s1oDCBur9:{objectFit:\"contain\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"rcqyRgDsM\",isMixedBorderRadius:false,layoutId:\"rcqyRgDsM\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Y02aiL3XDt04oHrsrNCOzz3Z54.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+2185.6+0+122),pixelHeight:1932,pixelWidth:3438,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px)`,src:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png\",srcSet:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png 3438w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1932,pixelWidth:3438,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 50px)`,src:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png\",srcSet:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png 3438w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+1845.6+0+0),pixelHeight:1932,pixelWidth:3438,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 180px) / 3, 50px) * 2 + 10px)`,src:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png\",srcSet:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png 3438w\"},className:\"framer-1pqpaut\",id:\"1pqpaut\",onTap:onTap3bnx0g({overlay:overlay2}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1en5iob\"),\"data-framer-portal-id\":\"1pqpaut\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"IG_Cn7xQi\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1im8i93\"),\"data-framer-portal-id\":\"1pqpaut\",children:/*#__PURE__*/_jsx(Image,{animate:animation7,background:{alt:\"\",fit:\"fill\",pixelHeight:1932,pixelWidth:3438,sizes:\"90vw\",src:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png\",srcSet:\"https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ErAVk1RlCPSXLhP7hybwfOtLnc.png 3438w\"},className:\"framer-1aw1mev\",exit:animation6,initial:animation8})})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",children:\"There were adjustments made along the way from the original boards, but this is how they were handed off to me.\"})}),className:\"framer-s51hz6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-190wk0e\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Beauty Awards\"})}),className:\"framer-d5aygt\",\"data-framer-appear-id\":\"d5aygt\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Part of a larger beauty awards campaign I was tasked with making videos of two specific awards the Glamour and New Beauty 2023 awards. Drew Read was responsible for the main videos and I was support using the same assets and overall feel that he had started. These also had 9:16 and 3:4 formats for all Daxxify social media accounts\"})}),className:\"framer-ic5a67\",\"data-framer-appear-id\":\"ic5a67\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1gn5uyk\",\"data-framer-appear-id\":\"1gn5uyk\",\"data-framer-name\":\"Section - videos\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h09cye-container\",isModuleExternal:true,nodeId:\"b2q1miFiQ\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"b2q1miFiQ\",isMixedBorderRadius:false,layoutId:\"b2q1miFiQ\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Lcift9j9VtakzN50EFMuKJB6uI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v5umv0-container\",isModuleExternal:true,nodeId:\"JVErZaGMu\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"JVErZaGMu\",isMixedBorderRadius:false,layoutId:\"JVErZaGMu\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/GkWynQ1hUYYSyLRufF0agOIDs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ui5nun\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Fast, lasts, and the look animated icons\"})}),className:\"framer-wwfgol\",\"data-framer-appear-id\":\"wwfgol\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:[\"I was tasked for animating icons that the designers of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"fast, lasts, and the look\"}),\" campaign had produced. A very simple task, but a super fun one! Each one loops because we weren\u2019t sure how long they would need to be on screen\"]})}),className:\"framer-w3hufa\",\"data-framer-appear-id\":\"w3hufa\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-lai3up\",\"data-framer-appear-id\":\"lai3up\",\"data-framer-name\":\"Section - videos\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dq2uha\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3316+0+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px)`,src:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif\",srcSet:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) / 4)`,src:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif\",srcSet:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3110+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px) / 4)`,src:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif\",srcSet:\"https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qh1C9RPrArR1nrjA08FxexthPc.gif 1920w\"},className:\"framer-1qa5nia\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Fast\"})}),className:\"framer-1f4w9pj\",\"data-framer-appear-id\":\"1f4w9pj\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-icn9sy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3316+0+348+0+0),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.9559)`,src:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif\",srcSet:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=512 512w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif 1080w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.239)`,src:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif\",srcSet:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=512 512w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3110+0+0+0),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px) * 0.239)`,src:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif\",srcSet:\"https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=512 512w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/cd8iZOY72RDPNivaTbs6ffNly1E.gif 1080w\"},className:\"framer-1fyo7h6\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Lasts\"})}),className:\"framer-1isl2hh\",\"data-framer-appear-id\":\"1isl2hh\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qbmcjl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3316+0+696+0+0),pixelHeight:1200,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.9559)`,src:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif\",srcSet:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif?scale-down-to=1024 921w,https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif 1080w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.239)`,src:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif\",srcSet:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif?scale-down-to=1024 921w,https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3110+0+0+0),pixelHeight:1200,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px) * 0.239)`,src:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif\",srcSet:\"https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif?scale-down-to=1024 921w,https://framerusercontent.com/images/yzuWJKMQtNfpYEaQVNU8xEiRYs.gif 1080w\"},className:\"framer-1grwhm5\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"The Look\"})}),className:\"framer-1rgxoio\",\"data-framer-appear-id\":\"1rgxoio\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxvb6m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3316+0+1044+0+0),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.9559)`,src:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif\",srcSet:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif 1080w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px) * 0.239)`,src:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif\",srcSet:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+3110+0+0+0),pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px) * 0.239)`,src:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif\",srcSet:\"https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/pEgRbhFxpTDkPt1GFa0xIOI.gif 1080w\"},className:\"framer-qfpvza\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Layers Deep\"})}),className:\"framer-wvg4wa\",\"data-framer-appear-id\":\"wvg4wa\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yplrqn\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Daxxify Co-Op\"})}),className:\"framer-13mk2gf\",\"data-framer-appear-id\":\"13mk2gf\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"This campaign was to enable other brands to put their logo and their team photo into a video that Daxxify produced so they could seem just as official and part of the team as we are. Very short project for me but it was very rewarding to set up this template that other people could hop in and use. I loved rotoscoping the woman walking across screen. I don\u2019t usually love roto work, but there was something deeply satisfying about this text reveal doing it this way.\"})}),className:\"framer-15lcfkb\",\"data-framer-appear-id\":\"15lcfkb\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-gqcaid\",\"data-framer-appear-id\":\"gqcaid\",\"data-framer-name\":\"Section - videos\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-52frzz-container\",isModuleExternal:true,nodeId:\"xzeV5NGDF\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"xzeV5NGDF\",isMixedBorderRadius:false,layoutId:\"xzeV5NGDF\",loop:true,muted:true,objectFit:\"contain\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/EgDOfFQJnQ99MdoPIqPcNmjXA4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ws5kl\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"Beautiphi collection event photos\"})}),className:\"framer-1v2paof\",\"data-framer-appear-id\":\"1v2paof\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"One of the last pieces I was responsible for as the team was winding down was creating some pretty frames to show on the screens at the Beautiphi collaboration event. I rarely do static designs that aren\u2019t intended for video, but it was still very rewarding to come up with these rounding out my time at Revance.\"})}),className:\"framer-1542x9y\",\"data-framer-appear-id\":\"1542x9y\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ovl77o\",\"data-framer-name\":\"Section - Photo grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12l21ge\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bh0qzo\",id:\"bh0qzo\",onTap:onTap3bnx0g({overlay:overlay3}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png\",srcSet:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png\",srcSet:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png\",srcSet:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png 1920w\"},className:\"framer-1c7i9f5\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-elugxn\"),\"data-framer-portal-id\":\"bh0qzo\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"KRjWqXjks\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-eyyt93\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"bh0qzo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-96zeub\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png\",srcSet:\"https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X1oElcWBxj1lBI0YoNeXcf8m8oo.png 1920w\"},className:\"framer-1huw8af\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5jxdcc\",id:\"5jxdcc\",onTap:onTap3bnx0g({overlay:overlay4}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+200+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png\",srcSet:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png\",srcSet:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png\",srcSet:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png 1920w\"},className:\"framer-111uzur\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-14igfd7\"),\"data-framer-portal-id\":\"5jxdcc\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"oE5XgAB7Q\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-ajsrov\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"5jxdcc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i4u9u\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png\",srcSet:\"https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/he36dz9Tz6opsPocvbi8nJaJ6k.png 1920w\"},className:\"framer-8qfo4e\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14obpbc\",id:\"14obpbc\",onTap:onTap3bnx0g({overlay:overlay5}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+400+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png\",srcSet:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png\",srcSet:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png\",srcSet:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png 1920w\"},className:\"framer-1ach4y5\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-wbh9pn\"),\"data-framer-portal-id\":\"14obpbc\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"EquK4zdit\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-101afqq\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"14obpbc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xjp907\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png\",srcSet:\"https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgLt8IYC8DWUQ7WGXNFIBx0SPRI.png 1920w\"},className:\"framer-lz41yu\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpb22s\",id:\"gpb22s\",onTap:onTap3bnx0g({overlay:overlay6}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+600+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png\",srcSet:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png\",srcSet:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+220+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png\",srcSet:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png 1920w\"},className:\"framer-1pjv82i\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1kpsdof\"),\"data-framer-portal-id\":\"gpb22s\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"Fjjy8IKYr\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1utnbnl\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"gpb22s\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hk76bs\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png\",srcSet:\"https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fq07CXVnZczljkYY57Sa9GQOg.png 1920w\"},className:\"framer-17laomx\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ktek7u\",id:\"1ktek7u\",onTap:onTap3bnx0g({overlay:overlay7}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+800+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png\",srcSet:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png\",srcSet:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+220+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png\",srcSet:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png 1920w\"},className:\"framer-ff03zt\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1i4mnak\"),\"data-framer-portal-id\":\"1ktek7u\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"ubGQ3vIrQ\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-srd3ul\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"1ktek7u\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m60nw\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png\",srcSet:\"https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9CwGF9LBDncsI6W5kIbb3TSRrVU.png 1920w\"},className:\"framer-15kkc0u\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2c4xix\",id:\"2c4xix\",onTap:onTap3bnx0g({overlay:overlay8}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+1e3+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png\",srcSet:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png\",srcSet:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+220+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png\",srcSet:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png 1920w\"},className:\"framer-k4kp5d\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1fbet80\"),\"data-framer-portal-id\":\"2c4xix\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"gDrp07qkC\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1t60cg5\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"2c4xix\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1udfa3p\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png\",srcSet:\"https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTRIXO89uYypXLVtLZMu6QA9Jw.png 1920w\"},className:\"framer-qw50dz\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j61lq1\",id:\"1j61lq1\",onTap:onTap3bnx0g({overlay:overlay9}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+1200+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png\",srcSet:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png\",srcSet:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+440+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png\",srcSet:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png 1920w\"},className:\"framer-1b2majf\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-bslsgg\"),\"data-framer-portal-id\":\"1j61lq1\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"lKRxm46cW\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-16jxj3\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"1j61lq1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5y5nxq\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png\",srcSet:\"https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZRDKaL1Aj76vLjGyLl8AxRTlwQ.png 1920w\"},className:\"framer-pttfp0\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1um3u9\",id:\"1um3u9\",onTap:onTap3bnx0g({overlay:overlay10}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+1400+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png\",srcSet:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png\",srcSet:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+440+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png\",srcSet:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png 1920w\"},className:\"framer-2bkut\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-a75art\"),\"data-framer-portal-id\":\"1um3u9\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"DdgIAgdEf\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-vvtg9z\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"1um3u9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1obgw\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png\",srcSet:\"https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jnPH5TnNcTeO0P2YeFPj0GQ2s.png 1920w\"},className:\"framer-10li3bh\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12kdfp9\",id:\"12kdfp9\",onTap:onTap3bnx0g({overlay:overlay11}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+1600+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png\",srcSet:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png\",srcSet:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+440+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png\",srcSet:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png 1920w\"},className:\"framer-10s9zmx\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-xbyle5\"),\"data-framer-portal-id\":\"12kdfp9\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"GUaaJX43h\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-4of2x0\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"12kdfp9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k6h9ja\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png\",srcSet:\"https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQHUDZkZWkc9gChXRaDzk2Ho3a0.png 1920w\"},className:\"framer-15ufegh\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ivpilv\",id:\"ivpilv\",onTap:onTap3bnx0g({overlay:overlay12}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+1800+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png\",srcSet:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png\",srcSet:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+660+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png\",srcSet:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png 1920w\"},className:\"framer-r89mf\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9wni8n\"),\"data-framer-portal-id\":\"ivpilv\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"fnIdFNmQC\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1yrf0hy\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"ivpilv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xknqyi\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png\",srcSet:\"https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvhm31rBOCwHnuG6AF5LYfsIJvM.png 1920w\"},className:\"framer-1695qrd\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i4wzgk\",id:\"i4wzgk\",onTap:onTap3bnx0g({overlay:overlay13}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+2e3+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png\",srcSet:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png\",srcSet:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+660+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png\",srcSet:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png 1920w\"},className:\"framer-55yjkt\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ug9cx5\"),\"data-framer-portal-id\":\"i4wzgk\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"ZK2MoVN3d\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-9xws1\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"i4wzgk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15m3pdh\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png\",srcSet:\"https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6gWMfAbnljrVTfEx0K4H8W2O3g.png 1920w\"},className:\"framer-qnscip\"})})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12fisc1\",id:\"12fisc1\",onTap:onTap3bnx0g({overlay:overlay14}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+5262.4+0+0+0+2200+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px, 200px)`,src:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png\",srcSet:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png 1920w\"}},s1oDCBur9:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1199px) - 140px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png\",srcSet:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+87+50+4600.4+0+0+660+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 200px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png\",srcSet:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png 1920w\"},className:\"framer-1cza1jt\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3e0zxe\"),\"data-framer-portal-id\":\"12fisc1\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay14.hide()},\"aJQ0DR1wl\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-pke3ev\"),\"data-framer-name\":\"Stack for Padding, Centering\",\"data-framer-portal-id\":\"12fisc1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddm9az\",\"data-framer-name\":\"Frame for Max Width\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"800px\",src:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png\",srcSet:\"https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QkCsVMTEiym6aujLtNnCVag0Flk.png 1920w\"},className:\"framer-1jymf2\"})})})]}),getContainer())})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16pz56v\",\"data-framer-name\":\"Section - Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"That\u2019s all folks!\"})}),className:\"framer-1vo3xvk\",\"data-framer-appear-id\":\"1vo3xvk\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"My time at Revance was unfortunately cut short because of some shareholder decisions. As I was building what was, in my opinion, going to be my most complete and excellent 3D pipeline and teaching experience ever, it unfortunately never came to fruition and the skills I was hoping to bring to the team were never fully utilized.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9naui5\",\"data-styles-preset\":\"es4pFpdM4\",style:{\"--framer-text-color\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(255, 255, 255))\"},children:\"I also did a lot of other burner work that was neither technically or creatively impressive, so this page is just a showcase of the projects I enjoyed in my few months with the team.\"})]}),className:\"framer-1ajg5r3\",\"data-framer-appear-id\":\"1ajg5r3\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":nnfutp1BD\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XJAt1WZkB\",openInNewTab:false,scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1x24r1d framer-1fr8ovy\",\"data-border\":true,\"data-framer-appear-id\":\"1x24r1d\",\"data-framer-name\":\"Back Button\",initial:animation10,optimized:true,style:{rotate:-135,transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1edhwgd\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 20.707 1.293 C 21.098 1.683 21.098 2.317 20.707 2.707 L 2.707 20.707 C 2.317 21.098 1.683 21.098 1.293 20.707 C 0.902 20.317 0.902 19.683 1.293 19.293 L 19.293 1.293 C 19.683 0.902 20.317 0.902 20.707 1.293 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 7 2 C 7 1.448 7.448 1 8 1 L 20 1 C 20.552 1 21 1.448 21 2 L 21 14 C 21 14.552 20.552 15 20 15 C 19.448 15 19 14.552 19 14 L 19 3 L 8 3 C 7.448 3 7 2.552 7 2 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10436685402,withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px)`,y:(componentViewport?.y||0)+0+87+50+8198.6},s1oDCBur9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1199px) - 100px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px)`,y:(componentViewport?.y||0)+0+87+50+6056.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9zst68-container\",nodeId:\"hkJ7cc5wq\",scopeId:\"QCkwdMLho\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mehmy5_pU:{variant:\"Ty6i27b0m\"},s1oDCBur9:{variant:\"rPJS4uMsO\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hkJ7cc5wq\",layoutId:\"hkJ7cc5wq\",style:{width:\"100%\"},variant:\"l8dtja4I3\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uMVrH.framer-1fr8ovy, .framer-uMVrH .framer-1fr8ovy { display: block; }\",\".framer-uMVrH.framer-zw2et4 { 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: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-uMVrH .framer-2ekmg8-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-uMVrH .framer-1xpzdrf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 50px 80px 40px 80px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1iap8my { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-q7xkon { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1r2onvc, .framer-uMVrH .framer-gtdsqy, .framer-uMVrH .framer-14bd87s, .framer-uMVrH .framer-sbf6w, .framer-uMVrH .framer-guy5k5, .framer-uMVrH .framer-i3vexe, .framer-uMVrH .framer-s59b8j, .framer-uMVrH .framer-1ev140f, .framer-uMVrH .framer-gh06 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uMVrH .framer-1d6msyv, .framer-uMVrH .framer-15lqrou, .framer-uMVrH .framer-sbx84y, .framer-uMVrH .framer-16fbkwk, .framer-uMVrH .framer-coauz8, .framer-uMVrH .framer-1xh93ve, .framer-uMVrH .framer-1pyukn8, .framer-uMVrH .framer-tpy665, .framer-uMVrH .framer-d5aygt, .framer-uMVrH .framer-ic5a67, .framer-uMVrH .framer-wwfgol, .framer-uMVrH .framer-w3hufa, .framer-uMVrH .framer-13mk2gf, .framer-uMVrH .framer-15lcfkb, .framer-uMVrH .framer-1v2paof, .framer-uMVrH .framer-1542x9y, .framer-uMVrH .framer-1vo3xvk, .framer-uMVrH .framer-1ajg5r3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-uMVrH .framer-1vtawdi { 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-uMVrH .framer-1f5kvi6, .framer-uMVrH .framer-ynhrk9, .framer-uMVrH .framer-jheegm, .framer-uMVrH .framer-1gj9808 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-uMVrH .framer-19nnxgt, .framer-uMVrH .framer-1b2xf0d, .framer-uMVrH .framer-djrj8v, .framer-uMVrH .framer-190wk0e, .framer-uMVrH .framer-1ui5nun, .framer-uMVrH .framer-yplrqn, .framer-uMVrH .framer-2ws5kl, .framer-uMVrH .framer-16pz56v { 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-uMVrH .framer-1obfqu0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uMVrH .framer-gw1r3f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-158i6pc-container, .framer-uMVrH .framer-1fz57m3-container, .framer-uMVrH .framer-16mp2th-container { flex: none; height: 100%; position: relative; width: 30%; }\",\".framer-uMVrH .framer-14vqvp8 { 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; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1w2xvam-container, .framer-uMVrH .framer-1qntuhb-container { flex: none; height: 22px; position: relative; width: auto; }\",\".framer-uMVrH.framer-1b6mi5t, .framer-uMVrH.framer-1orxsri { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-uMVrH.framer-1eqxca3, .framer-uMVrH.framer-1d0o19e { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 20px; pointer-events: none; position: fixed; right: 0px; top: 0px; }\",\".framer-uMVrH .framer-3unxjr { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uMVrH .framer-1qccmli { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-158l5fw { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 563px); justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uMVrH .framer-kj2oef { flex: 1 0 0px; height: 1px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-usov7s { display: grid; flex: none; gap: 10px; grid-auto-rows: 200px; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(3, 200px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-1l8pfhm-container { align-self: start; flex: none; grid-row: span 3; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1pqpaut { align-self: start; cursor: pointer; flex: none; grid-column: span 2; grid-row: span 2; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-uMVrH.framer-1en5iob, .framer-uMVrH.framer-elugxn, .framer-uMVrH.framer-14igfd7, .framer-uMVrH.framer-wbh9pn, .framer-uMVrH.framer-1kpsdof, .framer-uMVrH.framer-1i4mnak, .framer-uMVrH.framer-1fbet80, .framer-uMVrH.framer-bslsgg, .framer-uMVrH.framer-a75art, .framer-uMVrH.framer-xbyle5, .framer-uMVrH.framer-9wni8n, .framer-uMVrH.framer-1ug9cx5, .framer-uMVrH.framer-3e0zxe { background-color: rgba(0, 0, 0, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-uMVrH.framer-1im8i93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 63px 0px 63px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 90%; z-index: 3; }\",\".framer-uMVrH .framer-1aw1mev { flex: none; height: 616px; overflow: visible; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-s51hz6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: start; flex: none; grid-column: span 2; height: 100%; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uMVrH .framer-1gn5uyk, .framer-uMVrH .framer-lai3up { 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: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-h09cye-container, .framer-uMVrH .framer-1v5umv0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uMVrH .framer-1dq2uha, .framer-uMVrH .framer-icn9sy, .framer-uMVrH .framer-qbmcjl, .framer-uMVrH .framer-1oxvb6m { 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: 25%; }\",\".framer-uMVrH .framer-1qa5nia { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1f4w9pj, .framer-uMVrH .framer-1isl2hh, .framer-uMVrH .framer-1rgxoio, .framer-uMVrH .framer-wvg4wa { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-1fyo7h6, .framer-uMVrH .framer-1grwhm5, .framer-uMVrH .framer-qfpvza { flex: none; height: 300px; position: relative; width: 96%; }\",\".framer-uMVrH .framer-gqcaid { flex: none; gap: 10px; height: 620px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uMVrH .framer-52frzz-container { flex: none; height: 620px; left: calc(50.00000000000002% - 32.98076923076923% / 2); position: absolute; top: calc(50.00000000000002% - 620px / 2); width: 33%; }\",\".framer-uMVrH .framer-1ovl77o { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-12l21ge { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-bh0qzo, .framer-uMVrH .framer-5jxdcc, .framer-uMVrH .framer-14obpbc, .framer-uMVrH .framer-gpb22s, .framer-uMVrH .framer-1ktek7u, .framer-uMVrH .framer-2c4xix, .framer-uMVrH .framer-1j61lq1, .framer-uMVrH .framer-1um3u9, .framer-uMVrH .framer-12kdfp9, .framer-uMVrH .framer-ivpilv, .framer-uMVrH .framer-i4wzgk, .framer-uMVrH .framer-12fisc1 { align-content: center; align-items: center; align-self: start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uMVrH .framer-1c7i9f5, .framer-uMVrH .framer-111uzur, .framer-uMVrH .framer-1ach4y5, .framer-uMVrH .framer-1pjv82i, .framer-uMVrH .framer-ff03zt, .framer-uMVrH .framer-k4kp5d, .framer-uMVrH .framer-1b2majf, .framer-uMVrH .framer-2bkut, .framer-uMVrH .framer-10s9zmx, .framer-uMVrH .framer-r89mf, .framer-uMVrH .framer-55yjkt, .framer-uMVrH .framer-1cza1jt { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-uMVrH.framer-eyyt93, .framer-uMVrH.framer-ajsrov, .framer-uMVrH.framer-101afqq, .framer-uMVrH.framer-1utnbnl, .framer-uMVrH.framer-srd3ul, .framer-uMVrH.framer-1t60cg5, .framer-uMVrH.framer-16jxj3, .framer-uMVrH.framer-vvtg9z, .framer-uMVrH.framer-4of2x0, .framer-uMVrH.framer-1yrf0hy, .framer-uMVrH.framer-9xws1, .framer-uMVrH.framer-pke3ev { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 20px; pointer-events: none; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-uMVrH .framer-96zeub, .framer-uMVrH .framer-2i4u9u, .framer-uMVrH .framer-xjp907, .framer-uMVrH .framer-hk76bs, .framer-uMVrH .framer-m60nw, .framer-uMVrH .framer-1udfa3p, .framer-uMVrH .framer-5y5nxq, .framer-uMVrH .framer-h1obgw, .framer-uMVrH .framer-1k6h9ja, .framer-uMVrH .framer-xknqyi, .framer-uMVrH .framer-15m3pdh, .framer-uMVrH .framer-1ddm9az { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 450px); max-width: 800px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uMVrH .framer-1huw8af, .framer-uMVrH .framer-8qfo4e, .framer-uMVrH .framer-lz41yu, .framer-uMVrH .framer-17laomx, .framer-uMVrH .framer-15kkc0u, .framer-uMVrH .framer-qw50dz, .framer-uMVrH .framer-pttfp0, .framer-uMVrH .framer-10li3bh, .framer-uMVrH .framer-15ufegh, .framer-uMVrH .framer-1695qrd, .framer-uMVrH .framer-qnscip, .framer-uMVrH .framer-1jymf2 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; gap: 10px; height: 450px; left: calc(50.00000000000002% - 800px / 2); position: absolute; top: calc(50.00000000000002% - 450px / 2); width: 800px; }\",\".framer-uMVrH .framer-1x24r1d { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; flex: none; height: 56px; overflow: visible; position: sticky; text-decoration: none; width: 56px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-uMVrH .framer-1edhwgd { background-color: rgba(255, 255, 255, 0); flex: none; height: 22px; left: calc(50.00000000000002% - 22px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 22px; }\",\".framer-uMVrH .framer-9zst68-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-uMVrH[data-border=\"true\"]::after, .framer-uMVrH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 768px) and (max-width: 1199px) { .framer-uMVrH.framer-zw2et4 { width: 768px; } .framer-uMVrH .framer-1xpzdrf { gap: 30px; max-width: 1199px; padding: 50px 50px 40px 50px; } .framer-uMVrH .framer-gw1r3f { height: min-content; } .framer-uMVrH .framer-1qccmli, .framer-uMVrH .framer-158l5fw, .framer-uMVrH .framer-96zeub, .framer-uMVrH .framer-2i4u9u, .framer-uMVrH .framer-xjp907, .framer-uMVrH .framer-hk76bs, .framer-uMVrH .framer-m60nw, .framer-uMVrH .framer-1udfa3p, .framer-uMVrH .framer-5y5nxq, .framer-uMVrH .framer-h1obgw, .framer-uMVrH .framer-1k6h9ja, .framer-uMVrH .framer-xknqyi, .framer-uMVrH .framer-15m3pdh, .framer-uMVrH .framer-1ddm9az { height: var(--framer-aspect-ratio-supported, 113px); } .framer-uMVrH .framer-usov7s { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-uMVrH .framer-1pqpaut, .framer-uMVrH .framer-s51hz6 { grid-column: span 1; } .framer-uMVrH .framer-gqcaid { height: auto; }}\",\"@media (max-width: 767px) { .framer-uMVrH.framer-zw2et4 { width: 390px; } .framer-uMVrH .framer-1xpzdrf { gap: 30px; max-width: 1199px; padding: 50px 50px 40px 50px; } .framer-uMVrH .framer-1vtawdi { flex-direction: column; gap: 0px; } .framer-uMVrH .framer-1f5kvi6, .framer-uMVrH .framer-ynhrk9, .framer-uMVrH .framer-jheegm, .framer-uMVrH .framer-1gj9808, .framer-uMVrH .framer-h09cye-container, .framer-uMVrH .framer-1v5umv0-container { flex: none; width: 100%; } .framer-uMVrH .framer-gw1r3f { align-content: center; align-items: center; flex-direction: column; gap: 10px; height: min-content; } .framer-uMVrH .framer-158i6pc-container, .framer-uMVrH .framer-1fz57m3-container, .framer-uMVrH .framer-16mp2th-container { height: auto; width: 100%; } .framer-uMVrH .framer-14vqvp8, .framer-uMVrH .framer-1ovl77o { flex-direction: column; } .framer-uMVrH .framer-1qccmli, .framer-uMVrH .framer-158l5fw, .framer-uMVrH .framer-96zeub, .framer-uMVrH .framer-2i4u9u, .framer-uMVrH .framer-xjp907, .framer-uMVrH .framer-hk76bs, .framer-uMVrH .framer-m60nw, .framer-uMVrH .framer-1udfa3p, .framer-uMVrH .framer-5y5nxq, .framer-uMVrH .framer-h1obgw, .framer-uMVrH .framer-1k6h9ja, .framer-uMVrH .framer-xknqyi, .framer-uMVrH .framer-15m3pdh, .framer-uMVrH .framer-1ddm9az { height: var(--framer-aspect-ratio-supported, 113px); } .framer-uMVrH .framer-usov7s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-uMVrH .framer-1l8pfhm-container, .framer-uMVrH .framer-s51hz6 { align-self: unset; height: auto; } .framer-uMVrH .framer-1pqpaut { align-self: unset; height: 200px; overflow: hidden; } .framer-uMVrH .framer-1gn5uyk, .framer-uMVrH .framer-lai3up { align-content: center; align-items: center; flex-direction: column; } .framer-uMVrH .framer-1dq2uha, .framer-uMVrH .framer-icn9sy, .framer-uMVrH .framer-qbmcjl, .framer-uMVrH .framer-1oxvb6m { width: 100%; } .framer-uMVrH .framer-gqcaid { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 0px; } .framer-uMVrH .framer-52frzz-container { height: auto; left: unset; position: relative; top: unset; width: 100%; } .framer-uMVrH .framer-12l21ge { gap: 0px; grid-template-columns: repeat(1, minmax(200px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5943\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"s1oDCBur9\":{\"layout\":[\"fixed\",\"auto\"]},\"mehmy5_pU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerQCkwdMLho=withCSS(Component,css,\"framer-uMVrH\");export default FramerQCkwdMLho;FramerQCkwdMLho.displayName=\"Work / Bouncer\";FramerQCkwdMLho.defaultProps={height:5943,width:1200};addFonts(FramerQCkwdMLho,[{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\"},{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\"}]},...NavigationFonts,...VideoFonts,...TextLinkArrowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQCkwdMLho\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s1oDCBur9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mehmy5_pU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5943\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "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", "NavigationFonts", "getFonts", "FYVGgK1WB_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithFX", "withFX", "RichText2", "RichTextWithOptimizedAppearEffect", "MotionDivWithFX", "motion", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "TextLinkArrowFonts", "QNmUNpRA4_default", "MotionAWithOptimizedAppearEffect", "FooterFonts", "cittmBMML_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "animation8", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation9", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "jlAKTzwBB3bnx0g", "overlay", "loadMore", "args", "onTap3bnx0g", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "FYVGgK1WB_default", "RichTextWithFX", "x", "RichTextWithOptimizedAppearEffect", "MotionDivWithFX", "RichText2", "MotionDivWithOptimizedAppearEffect", "Container", "Video", "l", "QNmUNpRA4_default", "AnimatePresence", "Ga", "Image2", "overlay1", "overlay2", "getLoadingLazyAtYPosition", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "Link", "MotionAWithOptimizedAppearEffect", "SVG", "cittmBMML_default", "css", "FramerQCkwdMLho", "withCSS", "QCkwdMLho_default", "addFonts", "NavigationFonts", "VideoFonts", "TextLinkArrowFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
