{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js", "ssg:https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js", "ssg:https://framerusercontent.com/modules/lF1154fik8qErw0K4p6p/TLAHvpSmpYqnFFCCaYgj/gvFhFWijk.js", "ssg:https://framerusercontent.com/modules/oKy79Or2W6Ni4h5QI9AM/76dszFQO4AHgyNhprAoq/havcw67HW.js", "ssg:https://framerusercontent.com/modules/3t6kqWR3vS1Enu2wqHeU/jzIFghhVPmY227QEptKX/CyzLJ4gPb.js", "ssg:https://framerusercontent.com/modules/7UhddtutQefMevGwhFk7/BoP4OkwcOtPqCsQsJz69/t94ZdY5FP.js", "ssg:https://framerusercontent.com/modules/Y0y5CesJM352pt5xg00o/ZWZAlDNTrZNQKKrKJxkV/VBO7ISlDB.js", "ssg:https://framerusercontent.com/modules/XrGyfBRfIYqTxkq6Nelh/PAcIpgOHYE7BSf0ppoXV/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";// Custom hook for preloading images\nfunction useImagePreloader(imageUrls){const[imagesPreloaded,setImagesPreloaded]=React.useState(false);React.useEffect(()=>{let isMounted=true;const preloadImages=async()=>{const imagePromises=imageUrls.map(url=>{return new Promise((resolve,reject)=>{const img=new Image;img.src=url;img.onload=resolve;img.onerror=reject;});});try{await Promise.all(imagePromises);if(isMounted){setImagesPreloaded(true);}}catch(error){console.error(\"Failed to preload images:\",error);}};preloadImages();return()=>{isMounted=false;};},[imageUrls]);return imagesPreloaded;}/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function CursorImageTrail({images=[],style={width:100,height:100,radius:0,fit:\"fill\"},frequency=50,visibleFor=1,perspective={enabled:false,value:1e3},animation={in:{from:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},to:{opacity:1,scale:1,blur:0,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},transition:{type:\"spring\",stiffness:300,damping:30}},out:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0},transition:{type:\"spring\",stiffness:300,damping:30}}},...props}){const threshold=200-(frequency-1)*199/49;const[mousePos,setMousePos]=React.useState({x:0,y:0});const[isHovering,setIsHovering]=React.useState(false);const[currentImageIndex,setCurrentImageIndex]=React.useState(0);const[activeImages,setActiveImages]=React.useState([]);const[isInViewport,setIsInViewport]=React.useState(false);const componentRef=React.useRef(null);const imagesPreloaded=useImagePreloader(isInViewport?images:[]);React.useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsInViewport(entry.isIntersecting);},{root:null,rootMargin:\"0px\",threshold:.1});if(componentRef.current){observer.observe(componentRef.current);}return()=>{if(componentRef.current){observer.unobserve(componentRef.current);}};},[]);const handleMouseMove=event=>{const rect=event.currentTarget.getBoundingClientRect();const x=event.clientX-rect.left;const y=event.clientY-rect.top;setMousePos({x,y});};const handleMouseEnter=()=>{setIsHovering(true);};const handleMouseLeave=()=>{setIsHovering(false);};React.useEffect(()=>{if(isHovering&&images.length>0){const lastImage=activeImages[activeImages.length-1];const distance=lastImage?Math.hypot(mousePos.x-lastImage.x,mousePos.y-lastImage.y):Infinity;if(distance>threshold){const newImage={id:Math.random(),position:currentImageIndex,x:mousePos.x,y:mousePos.y,createdAt:Date.now(),state:\"entering\"};setActiveImages(prev=>[...prev,newImage]);setCurrentImageIndex(prev=>(prev+1)%images.length);// Schedule exit animation\nsetTimeout(()=>{setActiveImages(prev=>prev.map(img=>img.id===newImage.id?{...img,state:\"exiting\"}:img));},visibleFor*1e3);// Schedule removal from DOM\nsetTimeout(()=>{setActiveImages(prev=>prev.filter(img=>img.id!==newImage.id));},1e4)// 10 seconds\n;}}},[mousePos,isHovering,images,threshold,currentImageIndex,visibleFor]);if(images.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Add images to the component through the 'Images' property on the right panel. Then preview the website, and hover over the component.\",containerStyle:{...props.style,width:\"100%\",height:\"100%\"}});}return /*#__PURE__*/_jsx(Frame,{...props,ref:componentRef,onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,background:\"\",children:imagesPreloaded&&/*#__PURE__*/_jsx(AnimatePresence,{children:activeImages.map(({id,position,x,y,state})=>/*#__PURE__*/{var _images_position;return _jsx(motion.div,{initial:{opacity:animation.in.from.opacity,scale:animation.in.from.scale,filter:`blur(${animation.in.from.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.from.is3D===\"2D\"?animation.in.from.rotate2D:0,rotateX:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.x:0,rotateY:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.y:0,rotateZ:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.z:0},animate:state===\"entering\"?{opacity:animation.in.to.opacity,scale:animation.in.to.scale,filter:`blur(${animation.in.to.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.to.is3D===\"2D\"?animation.in.to.rotate2D:0,rotateX:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.x:0,rotateY:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.y:0,rotateZ:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.z:0}:{opacity:animation.out.opacity,scale:animation.out.scale,filter:`blur(${animation.out.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.out.is3D===\"2D\"?animation.out.rotate2D:0,rotateX:animation.out.is3D===\"3D\"?animation.out.rotate3D.x:0,rotateY:animation.out.is3D===\"3D\"?animation.out.rotate3D.y:0,rotateZ:animation.out.is3D===\"3D\"?animation.out.rotate3D.z:0},transition:state===\"entering\"?animation.in.transition:animation.out.transition,style:{position:\"absolute\",width:`${style.width}px`,height:`${style.height}px`,backgroundImage:`url(${(_images_position=images[position])!==null&&_images_position!==void 0?_images_position:\"\"})`,backgroundSize:style.fit===\"fill\"?\"cover\":\"contain\",backgroundPosition:\"center\",backgroundRepeat:\"no-repeat\",borderRadius:`${style.radius}px`,pointerEvents:\"none\",perspective:perspective.enabled?`${perspective.value}px`:\"none\"}},id);})})});}CursorImageTrail.displayName=\"Cursor Image Trail\";addPropertyControls(CursorImageTrail,{images:{type:ControlType.Array,title:\"Images\",propertyControl:{type:ControlType.Image}},style:{type:ControlType.Object,title:\"Style\",controls:{width:{type:ControlType.Number,title:\"Width\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},height:{type:ControlType.Number,title:\"Height\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:500,unit:\"px\",step:1,displayStepper:true},fit:{type:ControlType.Enum,title:\"Type\",options:[\"fill\",\"fit\"],optionTitles:[\"Fill\",\"Fit\"],defaultValue:\"fill\",description:\"Style the images that will appear.\"}}},frequency:{type:ControlType.Number,title:\"Frequency\",defaultValue:35,min:1,max:50,step:1,displayStepper:false,description:\"How frequently these images appear.\"},visibleFor:{type:ControlType.Number,title:\"Visible For\",defaultValue:1,min:.1,max:10,step:.1,unit:\"s\",displayStepper:true,description:\"How long they're visible for before they animate out.\"},animation:{type:ControlType.Object,title:\"Animation\",controls:{in:{type:ControlType.Object,title:\"In\",controls:{from:{type:ControlType.Object,title:\"From\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},to:{type:ControlType.Object,title:\"To\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:0,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},transition:{type:ControlType.Transition,title:\"Transition\"}}},out:{type:ControlType.Object,title:\"Out\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"},transition:{type:ControlType.Transition,title:\"Transition\"}}}}},perspective:{type:ControlType.Object,title:\"Perspective\",description:\"More components at [Framer University](https://frameruni.link/cc).\",controls:{enabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},value:{type:ControlType.Number,title:\"Value\",defaultValue:1200,min:500,max:5e3,step:10,displayStepper:true,hidden:props=>!props.enabled}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorImageTrail\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CursorImageTrail_Prod.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * Responsive Image\n * By Benjamin\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n *\n */export default function Image(props){const{image,alt,radius,padding,link,newTab,style,borderOptions,shadowOptions}=props;const wrapperStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",width:\"100%\",height:\"100%\",padding:padding};const borderAndShadow=(borderOptions,shadowOptions)=>{if(!shadowOptions&&!borderOptions)return undefined;if(shadowOptions&&!borderOptions){return`${shadowOptions.shadowX}px ${shadowOptions.shadowY}px ${shadowOptions.shadowBlur}px ${shadowOptions.shadowColor}`;}if(!shadowOptions&&borderOptions){return`inset 0 0 0 ${borderOptions.borderWidth}px ${borderOptions.borderColor}`;}if(shadowOptions&&borderOptions){return`inset 0 0 0 ${borderOptions.borderWidth}px ${borderOptions.borderColor}, ${shadowOptions.shadowX}px ${shadowOptions.shadowY}px ${shadowOptions.shadowBlur}px ${shadowOptions.shadowColor}`;}};const imageStyle={maxWidth:\"100%\",maxHeight:\"100%\",borderRadius:radius,webkitUserDrag:\"none\",userDrag:\"none\",userSelect:\"none\"};const shadowStyle={position:\"absolute\",inset:0,pointerEvents:\"none\",borderRadius:radius,boxShadow:borderAndShadow(borderOptions,shadowOptions)};const imageSource=(image===null||image===void 0?void 0:image.src)||\"https://framerusercontent.com/images/64n4wnVJKDJspLlFZ6DarCP0M4.jpg\";return link?/*#__PURE__*/_jsxs(\"a\",{href:link,title:alt,target:newTab?\"_blank\":\"_self\",style:wrapperStyle,children:[/*#__PURE__*/_jsx(\"img\",{style:imageStyle,src:imageSource,srcSet:image===null||image===void 0?void 0:image.srcSet,alt:alt}),/*#__PURE__*/_jsx(\"div\",{style:shadowStyle})]}):/*#__PURE__*/_jsxs(\"div\",{style:wrapperStyle,children:[/*#__PURE__*/_jsx(\"img\",{style:imageStyle,src:imageSource,srcSet:image===null||image===void 0?void 0:image.srcSet,alt:alt}),/*#__PURE__*/_jsx(\"div\",{style:shadowStyle})]});}addPropertyControls(Image,{image:{title:\"Image\",type:ControlType.ResponsiveImage},alt:{type:ControlType.String,title:\"Alt\",placeholder:\"Alt Text\"},radius:{title:\"Radius\",type:ControlType.Number,min:0,max:100,step:1,displayStepper:true},padding:{title:\"Padding\",type:ControlType.Number,min:0,max:100,step:1,displayStepper:true},link:{type:ControlType.Link,title:\"Link\"},newTab:{type:ControlType.Boolean,title:\"New Tab\",hidden:props=>!props.link},borderOptions:{type:ControlType.Object,optional:true,title:\"Border\",icon:\"effect\",controls:{borderColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"rgba(0,0,0,0.2)\"},borderWidth:{type:ControlType.Number,title:\"Width\",min:0,displayStepper:true,defaultValue:1}}},shadowOptions:{type:ControlType.Object,title:\"Shadow\",optional:true,icon:\"effect\",controls:{shadowX:{type:ControlType.Number,title:\"X\",min:0,defaultValue:0},shadowY:{type:ControlType.Number,title:\"Y\",min:0,defaultValue:2},shadowBlur:{type:ControlType.Number,title:\"Blur\",min:0,defaultValue:4},shadowColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"rgba(0,0,0,0.2)\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Image\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Image.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image as Image1,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Image from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";const ImageFonts=getFonts(Image);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"qBdYPytJr\",\"ojhyxEvds\",\"lyV1NaZBG\",\"ulffoL0Fn\",\"VebngB1qK\",\"j3WgrqKPq\",\"ijYzDuSjU\"];const serializationHash=\"framer-8dFJB\";const variantClassNames={ijYzDuSjU:\"framer-v-ttoty4\",j3WgrqKPq:\"framer-v-u2zplc\",lyV1NaZBG:\"framer-v-1clm8kz\",ojhyxEvds:\"framer-v-5m5un0\",qBdYPytJr:\"framer-v-1ifny2d\",ulffoL0Fn:\"framer-v-1qlugvd\",VebngB1qK:\"framer-v-wfipkh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.84,0,.24,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={delay:.4,duration:1,ease:[.84,0,.24,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition4={delay:0,duration:0,ease:[.84,0,.24,1],type:\"tween\"};const transition5={damping:60,delay:0,mass:1,stiffness:150,type:\"spring\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - 1\":\"qBdYPytJr\",\"Desktop - 2\":\"ojhyxEvds\",\"Desktop - 3\":\"lyV1NaZBG\",\"Tablet - 1\":\"ulffoL0Fn\",\"Tablet - 2\":\"VebngB1qK\",\"Tablet - 3\":\"j3WgrqKPq\",\"Tablet - 4\":\"ijYzDuSjU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qBdYPytJr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qBdYPytJr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearlmbh3w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ojhyxEvds\"),400);});const onAppear1a24evx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lyV1NaZBG\"),800);});const onAppear1scqcn9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VebngB1qK\"),300);});const onAppearecm6zv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"j3WgrqKPq\"),500);});const onAppear1f75nza=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ijYzDuSjU\"),600);});useOnVariantChange(baseVariant,{default:onAppearlmbh3w,ijYzDuSjU:undefined,j3WgrqKPq:onAppear1f75nza,lyV1NaZBG:undefined,ojhyxEvds:onAppear1a24evx,ulffoL0Fn:onAppear1scqcn9,VebngB1qK:onAppearecm6zv});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ulffoL0Fn\",\"VebngB1qK\",\"j3WgrqKPq\",\"ijYzDuSjU\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ulffoL0Fn\",\"VebngB1qK\",\"j3WgrqKPq\",\"ijYzDuSjU\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"ijYzDuSjU\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ulffoL0Fn\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ifny2d\",className,classNames),\"data-framer-name\":\"Desktop - 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qBdYPytJr\",ref:refBinding,style:{...style},...addPropertyOverrides({ijYzDuSjU:{\"data-framer-name\":\"Tablet - 4\",\"data-highlight\":undefined},j3WgrqKPq:{\"data-framer-name\":\"Tablet - 3\"},lyV1NaZBG:{\"data-framer-name\":\"Desktop - 3\",\"data-highlight\":undefined},ojhyxEvds:{\"data-framer-name\":\"Desktop - 2\"},ulffoL0Fn:{\"data-framer-name\":\"Tablet - 1\"},VebngB1qK:{\"data-framer-name\":\"Tablet - 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({lyV1NaZBG:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gph9rt-container\",\"data-framer-name\":\"Logo desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dVfMucq85-container\",name:\"Logo desktop\",nodeId:\"dVfMucq85\",rendersWithMotion:true,scopeId:\"gvFhFWijk\",style:{scale:.7},variants:{lyV1NaZBG:{scale:1}},children:/*#__PURE__*/_jsx(Image,{alt:\"\",height:\"100%\",id:\"dVfMucq85\",image:addImageAlt({src:\"https://framerusercontent.com/images/GZgQkCq39y84ofgVVO7cV2XkUQ.png\",srcSet:\"https://framerusercontent.com/images/GZgQkCq39y84ofgVVO7cV2XkUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/GZgQkCq39y84ofgVVO7cV2XkUQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZgQkCq39y84ofgVVO7cV2XkUQ.png 2000w\"},\"\"),layoutId:\"dVfMucq85\",name:\"Logo desktop\",newTab:true,padding:0,radius:0,style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xedu3t\",\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"gQufQWb1T\",style:{opacity:1,scale:1},variants:{ijYzDuSjU:{opacity:1,scale:1},j3WgrqKPq:{opacity:.8,scale:.6},ulffoL0Fn:{scale:.6},VebngB1qK:{scale:.6}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1956nn5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dwgwH7fsJ-container\",nodeId:\"dwgwH7fsJ\",rendersWithMotion:true,scopeId:\"gvFhFWijk\",children:/*#__PURE__*/_jsx(Image,{alt:\"\",height:\"100%\",id:\"dwgwH7fsJ\",image:addImageAlt({src:\"https://framerusercontent.com/images/OLEhktnTd4bUNFdFyb78LNZ0OQ.png\"},\"\"),layoutId:\"dwgwH7fsJ\",newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ijYzDuSjU:{image:addImageAlt({src:\"https://framerusercontent.com/images/DVeNYWqvtd4yyNMRR37maZIb9ek.png\"},\"\")},j3WgrqKPq:{image:addImageAlt({src:\"https://framerusercontent.com/images/DVeNYWqvtd4yyNMRR37maZIb9ek.png\"},\"\")},ulffoL0Fn:{image:addImageAlt({src:\"https://framerusercontent.com/images/DVeNYWqvtd4yyNMRR37maZIb9ek.png\"},\"\")},VebngB1qK:{image:addImageAlt({src:\"https://framerusercontent.com/images/DVeNYWqvtd4yyNMRR37maZIb9ek.png\"},\"\")}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3g2tbe\",\"data-framer-name\":\"Slideshow mobile wrapper\",layoutDependency:layoutDependency,layoutId:\"inWCPQ6zM\",children:/*#__PURE__*/_jsx(Transition,{value:transition4,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1psqq97-container\",\"data-framer-name\":\"Slideshow mobile 2\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pAYZccgIj-container\",name:\"Slideshow mobile 2\",nodeId:\"pAYZccgIj\",rendersWithMotion:true,scopeId:\"gvFhFWijk\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"bottom\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:.5,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"pAYZccgIj\",intervalControl:.5,itemAmount:1,layoutId:\"pAYZccgIj\",name:\"Slideshow mobile 2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1537,pixelWidth:2049,sizes:\"400px\",src:\"https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg?lossless=1\",srcSet:\"https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg?lossless=1 2049w\"},className:\"framer-15s4xdv\",\"data-framer-name\":\"Slideshow-6\",layoutDependency:layoutDependency,layoutId:\"yEUmgRCKe\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1455,pixelWidth:1214,sizes:\"400px\",src:\"https://framerusercontent.com/images/tqqoNIqBXlvTti6L0iaua4atd6k.jpg\",srcSet:\"https://framerusercontent.com/images/tqqoNIqBXlvTti6L0iaua4atd6k.jpg?scale-down-to=1024 854w,https://framerusercontent.com/images/tqqoNIqBXlvTti6L0iaua4atd6k.jpg 1214w\"},className:\"framer-w0wnfz\",\"data-framer-name\":\"Slideshow-7\",layoutDependency:layoutDependency,layoutId:\"TQhlnKysH\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2020,pixelWidth:2020,sizes:\"400px\",src:\"https://framerusercontent.com/images/fDrFLRJ35euKs7LXUaWtWfTvPA.jpg\",srcSet:\"https://framerusercontent.com/images/fDrFLRJ35euKs7LXUaWtWfTvPA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fDrFLRJ35euKs7LXUaWtWfTvPA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fDrFLRJ35euKs7LXUaWtWfTvPA.jpg 2020w\"},className:\"framer-1qnywmn\",\"data-framer-name\":\"Slideshow-8\",layoutDependency:layoutDependency,layoutId:\"nV7jTxFDq\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2080,pixelWidth:3120,sizes:\"400px\",src:\"https://framerusercontent.com/images/WjHcf82O1E8FmJFmI62xhi6E.jpg\",srcSet:\"https://framerusercontent.com/images/WjHcf82O1E8FmJFmI62xhi6E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WjHcf82O1E8FmJFmI62xhi6E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WjHcf82O1E8FmJFmI62xhi6E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WjHcf82O1E8FmJFmI62xhi6E.jpg 3120w\"},className:\"framer-1me4f4c\",\"data-framer-name\":\"Slideshow-9\",layoutDependency:layoutDependency,layoutId:\"fPstadMJF\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1790,pixelWidth:2116,sizes:\"400px\",src:\"https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png\",srcSet:\"https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png 2116w\"},className:\"framer-2ur49l\",\"data-framer-name\":\"Slideshow-10\",layoutDependency:layoutDependency,layoutId:\"qeMTO63DA\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1790,pixelWidth:2116,sizes:\"400px\",src:\"https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png\",srcSet:\"https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Jqh3HNtYHoOxUkvi5bSG8upUg.png 2116w\"},className:\"framer-2ur49l\",\"data-framer-name\":\"Slideshow-10\",layoutDependency:layoutDependency,layoutId:\"qeMTO63DA\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:809,sizes:\"400px\",src:\"https://framerusercontent.com/images/an572quHV4WGSvRbPVxYPGZQ.jpg\",srcSet:\"https://framerusercontent.com/images/an572quHV4WGSvRbPVxYPGZQ.jpg?scale-down-to=1024 690w,https://framerusercontent.com/images/an572quHV4WGSvRbPVxYPGZQ.jpg 809w\"},className:\"framer-fk0jxa\",\"data-framer-name\":\"Slideshow-11\",layoutDependency:layoutDependency,layoutId:\"zysQIEk_o\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2162,pixelWidth:3852,sizes:\"400px\",src:\"https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png\",srcSet:\"https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png 3852w\"},className:\"framer-1if00sw\",\"data-framer-name\":\"Slideshow-12\",layoutDependency:layoutDependency,layoutId:\"T9N4NbV19\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2178,pixelWidth:1947,sizes:\"400px\",src:\"https://framerusercontent.com/images/4OHpP312V7C1TlDptKlFk8ZjAs.jpg\",srcSet:\"https://framerusercontent.com/images/4OHpP312V7C1TlDptKlFk8ZjAs.jpg?scale-down-to=1024 915w,https://framerusercontent.com/images/4OHpP312V7C1TlDptKlFk8ZjAs.jpg?scale-down-to=2048 1830w,https://framerusercontent.com/images/4OHpP312V7C1TlDptKlFk8ZjAs.jpg 1947w\"},className:\"framer-1ic18ou\",\"data-framer-name\":\"Slideshow-5\",layoutDependency:layoutDependency,layoutId:\"yZ2bXNEjg\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2080,pixelWidth:3120,sizes:\"400px\",src:\"https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg\",srcSet:\"https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg 3120w\"},className:\"framer-1ymmqek\",\"data-framer-name\":\"Slideshow-4\",layoutDependency:layoutDependency,layoutId:\"dQaxJ5XHP\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:809,pixelWidth:1217,sizes:\"400px\",src:\"https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg\",srcSet:\"https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg 1217w\"},className:\"framer-5ek94u\",\"data-framer-name\":\"Slideshow-3\",layoutDependency:layoutDependency,layoutId:\"ShWn9wJ9H\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:518,pixelWidth:994,sizes:\"400px\",src:\"https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png\",srcSet:\"https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png 994w\"},className:\"framer-1uyjq1z\",\"data-framer-name\":\"Slideshow-2\",layoutDependency:layoutDependency,layoutId:\"GeRedg_q6\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/qEDBMH90OWFgQSxi3VDmw4XAI.jpg\",srcSet:\"https://framerusercontent.com/images/qEDBMH90OWFgQSxi3VDmw4XAI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qEDBMH90OWFgQSxi3VDmw4XAI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qEDBMH90OWFgQSxi3VDmw4XAI.jpg 2000w\"},className:\"framer-1du3jre\",\"data-framer-name\":\"Slideshow-1\",layoutDependency:layoutDependency,layoutId:\"KurMHH58Q\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:1125,pixelWidth:1985,sizes:\"400px\",src:\"https://framerusercontent.com/images/lxlaP0oK2CG6ZDhAOPsFEL4Vc.jpg\",srcSet:\"https://framerusercontent.com/images/lxlaP0oK2CG6ZDhAOPsFEL4Vc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lxlaP0oK2CG6ZDhAOPsFEL4Vc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lxlaP0oK2CG6ZDhAOPsFEL4Vc.jpg 1985w\"},className:\"framer-kk0i7g\",\"data-framer-name\":\"Slideshow-13\",layoutDependency:layoutDependency,layoutId:\"hzDUPnzZr\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1728,sizes:\"400px\",src:\"https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg\",srcSet:\"https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg 1728w\"},className:\"framer-gmyh0x\",\"data-framer-name\":\"Slideshow-14\",layoutDependency:layoutDependency,layoutId:\"ic94YZFpm\"}),/*#__PURE__*/_jsx(Image1,{background:{alt:\"\",fit:\"fill\",pixelHeight:2080,pixelWidth:3120,sizes:\"400px\",src:\"https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg\",srcSet:\"https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg 3120w\"},className:\"framer-hp0ij\",\"data-framer-name\":\"Slideshow-15\",layoutDependency:layoutDependency,layoutId:\"oZQJBiR1T\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ex6fok-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kvjjAD7cw-container\",nodeId:\"kvjjAD7cw\",rendersWithMotion:true,scopeId:\"gvFhFWijk\",children:/*#__PURE__*/_jsx(Image,{alt:\"\",height:\"100%\",id:\"kvjjAD7cw\",image:addImageAlt({src:\"https://framerusercontent.com/images/n7Lee0abr56GyuSjhO7NijqM.png\",srcSet:\"https://framerusercontent.com/images/n7Lee0abr56GyuSjhO7NijqM.png?scale-down-to=512 512w,https://framerusercontent.com/images/n7Lee0abr56GyuSjhO7NijqM.png 792w\"},\"\"),layoutId:\"kvjjAD7cw\",newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ijYzDuSjU:{image:addImageAlt({src:\"https://framerusercontent.com/images/7aPKCH3IHUFlYXUqCZ6KgdBppKE.png\"},\"\")},j3WgrqKPq:{image:addImageAlt({src:\"https://framerusercontent.com/images/7aPKCH3IHUFlYXUqCZ6KgdBppKE.png\"},\"\")},ulffoL0Fn:{image:addImageAlt({src:\"https://framerusercontent.com/images/7aPKCH3IHUFlYXUqCZ6KgdBppKE.png\"},\"\")},VebngB1qK:{image:addImageAlt({src:\"https://framerusercontent.com/images/7aPKCH3IHUFlYXUqCZ6KgdBppKE.png\"},\"\")}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4do6cu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FAvawyPQ5-container\",nodeId:\"FAvawyPQ5\",rendersWithMotion:true,scopeId:\"gvFhFWijk\",children:/*#__PURE__*/_jsx(Image,{alt:\"\",height:\"100%\",id:\"FAvawyPQ5\",image:addImageAlt({src:\"https://framerusercontent.com/images/7aPKCH3IHUFlYXUqCZ6KgdBppKE.png\"},\"\"),layoutId:\"FAvawyPQ5\",newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({ijYzDuSjU:{image:addImageAlt({src:\"https://framerusercontent.com/images/VyuxRwbpuSw7TQjeiH4FeP81Ds.png\"},\"\")},j3WgrqKPq:{image:addImageAlt({src:\"https://framerusercontent.com/images/VyuxRwbpuSw7TQjeiH4FeP81Ds.png\"},\"\")},VebngB1qK:{image:addImageAlt({src:\"https://framerusercontent.com/images/VyuxRwbpuSw7TQjeiH4FeP81Ds.png\"},\"\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Transition,{value:transition5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lcohp\",\"data-framer-name\":\"Mask Mobile\",layoutDependency:layoutDependency,layoutId:\"gtTh63bVZ\",style:{backgroundColor:\"var(--token-e33c3ba9-31c2-46b2-a046-e687109c3532, rgb(15, 14, 14))\",opacity:.9},variants:{ijYzDuSjU:{backgroundColor:\"rgb(0, 0, 0)\"},j3WgrqKPq:{backgroundColor:\"rgb(0, 0, 0)\"},ulffoL0Fn:{backgroundColor:\"rgb(0, 0, 0)\"},VebngB1qK:{backgroundColor:\"rgb(0, 0, 0)\"}}})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gi8q6r\",\"data-framer-name\":\"Mask Desktop\",layoutDependency:layoutDependency,layoutId:\"V2oKL4SkX\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:.9}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8dFJB.framer-1thvred, .framer-8dFJB .framer-1thvred { display: block; }\",\".framer-8dFJB.framer-1ifny2d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-8dFJB .framer-1gph9rt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8dFJB .framer-1xedu3t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8dFJB .framer-1956nn5-container { aspect-ratio: 2.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 242px; }\",\".framer-8dFJB .framer-3g2tbe { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 149px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-8dFJB .framer-1psqq97-container { flex: none; height: 135px; position: relative; width: 173px; }\",\".framer-8dFJB .framer-15s4xdv, .framer-8dFJB .framer-w0wnfz, .framer-8dFJB .framer-1qnywmn, .framer-8dFJB .framer-1me4f4c, .framer-8dFJB .framer-2ur49l, .framer-8dFJB .framer-fk0jxa, .framer-8dFJB .framer-1if00sw, .framer-8dFJB .framer-1ic18ou, .framer-8dFJB .framer-1ymmqek, .framer-8dFJB .framer-5ek94u, .framer-8dFJB .framer-1uyjq1z, .framer-8dFJB .framer-1du3jre, .framer-8dFJB .framer-kk0i7g, .framer-8dFJB .framer-gmyh0x, .framer-8dFJB .framer-hp0ij { height: 300px; position: relative; width: 400px; }\",\".framer-8dFJB .framer-ex6fok-container { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 400px; }\",\".framer-8dFJB .framer-4do6cu-container { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 240px; }\",\".framer-8dFJB .framer-15lcohp { bottom: -615px; flex: none; height: 216%; overflow: visible; position: absolute; right: -700px; width: 275%; z-index: 1; }\",\".framer-8dFJB .framer-gi8q6r { flex: none; height: 100%; overflow: visible; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8dFJB.framer-1ifny2d, .framer-8dFJB .framer-1xedu3t, .framer-8dFJB .framer-3g2tbe { gap: 0px; } .framer-8dFJB.framer-1ifny2d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8dFJB.framer-1ifny2d > :first-child { margin-left: 0px; } .framer-8dFJB.framer-1ifny2d > :last-child { margin-right: 0px; } .framer-8dFJB .framer-1xedu3t > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8dFJB .framer-1xedu3t > :first-child, .framer-8dFJB .framer-3g2tbe > :first-child { margin-top: 0px; } .framer-8dFJB .framer-1xedu3t > :last-child, .framer-8dFJB .framer-3g2tbe > :last-child { margin-bottom: 0px; } .framer-8dFJB .framer-3g2tbe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-8dFJB.framer-v-5m5un0 .framer-gi8q6r { width: 40%; }\",\".framer-8dFJB.framer-v-1clm8kz .framer-gi8q6r { height: 100%; right: -450px; width: 20%; }\",\".framer-8dFJB.framer-v-1qlugvd.framer-1ifny2d, .framer-8dFJB.framer-v-wfipkh.framer-1ifny2d, .framer-8dFJB.framer-v-u2zplc.framer-1ifny2d { overflow: visible; width: min-content; }\",\".framer-8dFJB.framer-v-1qlugvd .framer-1xedu3t, .framer-8dFJB.framer-v-wfipkh .framer-1xedu3t, .framer-8dFJB.framer-v-u2zplc .framer-1xedu3t { gap: 0px; }\",\".framer-8dFJB.framer-v-1qlugvd .framer-1956nn5-container, .framer-8dFJB.framer-v-wfipkh .framer-1956nn5-container, .framer-8dFJB.framer-v-u2zplc .framer-1956nn5-container { height: var(--framer-aspect-ratio-supported, 79px); width: 145px; }\",\".framer-8dFJB.framer-v-1qlugvd .framer-ex6fok-container, .framer-8dFJB.framer-v-wfipkh .framer-ex6fok-container, .framer-8dFJB.framer-v-u2zplc .framer-ex6fok-container { height: var(--framer-aspect-ratio-supported, 68px); width: 240px; }\",\".framer-8dFJB.framer-v-1qlugvd .framer-15lcohp { bottom: unset; height: 189%; right: 0px; top: -21px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8dFJB.framer-v-1qlugvd .framer-1xedu3t { gap: 0px; } .framer-8dFJB.framer-v-1qlugvd .framer-1xedu3t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8dFJB.framer-v-1qlugvd .framer-1xedu3t > :first-child { margin-top: 0px; } .framer-8dFJB.framer-v-1qlugvd .framer-1xedu3t > :last-child { margin-bottom: 0px; } }\",\".framer-8dFJB.framer-v-wfipkh .framer-4do6cu-container, .framer-8dFJB.framer-v-u2zplc .framer-4do6cu-container { height: var(--framer-aspect-ratio-supported, 101px); }\",\".framer-8dFJB.framer-v-wfipkh .framer-15lcohp { bottom: unset; height: 104%; right: 0px; top: -11px; width: 40%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8dFJB.framer-v-wfipkh .framer-1xedu3t { gap: 0px; } .framer-8dFJB.framer-v-wfipkh .framer-1xedu3t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8dFJB.framer-v-wfipkh .framer-1xedu3t > :first-child { margin-top: 0px; } .framer-8dFJB.framer-v-wfipkh .framer-1xedu3t > :last-child { margin-bottom: 0px; } }\",\".framer-8dFJB.framer-v-u2zplc .framer-15lcohp { bottom: unset; height: 100%; right: -400px; top: 0px; width: 20%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8dFJB.framer-v-u2zplc .framer-1xedu3t { gap: 0px; } .framer-8dFJB.framer-v-u2zplc .framer-1xedu3t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8dFJB.framer-v-u2zplc .framer-1xedu3t > :first-child { margin-top: 0px; } .framer-8dFJB.framer-v-u2zplc .framer-1xedu3t > :last-child { margin-bottom: 0px; } }\",\".framer-8dFJB.framer-v-ttoty4.framer-1ifny2d { overflow: visible; padding: 37px 0px 37px 0px; width: min-content; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-1xedu3t { gap: 0px; height: 430px; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-1956nn5-container { height: var(--framer-aspect-ratio-supported, 119px); width: 219px; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-3g2tbe { overflow: hidden; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-ex6fok-container { height: var(--framer-aspect-ratio-supported, 56px); width: 198px; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-4do6cu-container { height: var(--framer-aspect-ratio-supported, 124px); width: 294px; }\",\".framer-8dFJB.framer-v-ttoty4 .framer-15lcohp { bottom: unset; height: 100%; right: -686px; top: 9px; width: 20%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8dFJB.framer-v-ttoty4 .framer-1xedu3t { gap: 0px; } .framer-8dFJB.framer-v-ttoty4 .framer-1xedu3t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8dFJB.framer-v-ttoty4 .framer-1xedu3t > :first-child { margin-top: 0px; } .framer-8dFJB.framer-v-ttoty4 .framer-1xedu3t > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 275\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ojhyxEvds\":{\"layout\":[\"fixed\",\"auto\"]},\"lyV1NaZBG\":{\"layout\":[\"fixed\",\"auto\"]},\"ulffoL0Fn\":{\"layout\":[\"auto\",\"auto\"]},\"VebngB1qK\":{\"layout\":[\"auto\",\"auto\"]},\"j3WgrqKPq\":{\"layout\":[\"auto\",\"auto\"]},\"ijYzDuSjU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergvFhFWijk=withCSS(Component,css,\"framer-8dFJB\");export default FramergvFhFWijk;FramergvFhFWijk.displayName=\"Logo\";FramergvFhFWijk.defaultProps={height:275,width:1100};addPropertyControls(FramergvFhFWijk,{variant:{options:[\"qBdYPytJr\",\"ojhyxEvds\",\"lyV1NaZBG\",\"ulffoL0Fn\",\"VebngB1qK\",\"j3WgrqKPq\",\"ijYzDuSjU\"],optionTitles:[\"Desktop - 1\",\"Desktop - 2\",\"Desktop - 3\",\"Tablet - 1\",\"Tablet - 2\",\"Tablet - 3\",\"Tablet - 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergvFhFWijk,[{explicitInter:true,fonts:[]},...ImageFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergvFhFWijk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"275\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ojhyxEvds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lyV1NaZBG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ulffoL0Fn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VebngB1qK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j3WgrqKPq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ijYzDuSjU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gvFhFWijk.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CursorImageTrail from\"https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js\";import Logo from\"https://framerusercontent.com/modules/lF1154fik8qErw0K4p6p/TLAHvpSmpYqnFFCCaYgj/gvFhFWijk.js\";import PageWrapperPadding from\"https://framerusercontent.com/modules/5XXrEgmRA81AQ0dZ8ZJs/3xkcC35oSmI2d1RzS4VD/h4a7dWxv8.js\";const CursorImageTrailFonts=getFonts(CursorImageTrail);const PageWrapperPaddingFonts=getFonts(PageWrapperPadding);const LogoFonts=getFonts(Logo);const cycleOrder=[\"Hr_kcqoMp\",\"HdG4uFWWd\",\"MyCxo7sp9\",\"gIq9XrlvE\"];const serializationHash=\"framer-PqzxV\";const variantClassNames={gIq9XrlvE:\"framer-v-1mtuu2n\",HdG4uFWWd:\"framer-v-bi7tnd\",Hr_kcqoMp:\"framer-v-1oqbgug\",MyCxo7sp9:\"framer-v-11fql2k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:180,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Start\":\"Hr_kcqoMp\",\"Desktop End\":\"HdG4uFWWd\",\"Tablet End\":\"gIq9XrlvE\",Tablet:\"MyCxo7sp9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Hr_kcqoMp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Hr_kcqoMp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1kss8zw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HdG4uFWWd\"),2100);});const onAppearhceduy=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HdG4uFWWd\"),3e3);});const onAppear1nonlnd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gIq9XrlvE\"),1400);});useOnVariantChange(baseVariant,{default:onAppear1kss8zw,gIq9XrlvE:undefined,HdG4uFWWd:onAppearhceduy,MyCxo7sp9:onAppear1nonlnd});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"MyCxo7sp9\",\"gIq9XrlvE\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oqbgug\",className,classNames),\"data-framer-name\":\"Desktop - Start\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Hr_kcqoMp\",ref:refBinding,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({gIq9XrlvE:{\"data-framer-name\":\"Tablet End\",\"data-highlight\":undefined},HdG4uFWWd:{\"data-framer-name\":\"Desktop End\"},MyCxo7sp9:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1por2yn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pRni3vtDm-container\",nodeId:\"pRni3vtDm\",rendersWithMotion:true,scopeId:\"havcw67HW\",children:/*#__PURE__*/_jsx(CursorImageTrail,{animation:{in:{from:{blur:0,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.95},to:{blur:0,is3D:\"2D\",opacity:1,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:1},transition:{damping:100,delay:0,mass:1,stiffness:464,type:\"spring\"}},out:{blur:0,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.9,transition:{delay:0,duration:.4,ease:[.84,0,.24,1],type:\"tween\"}}},frequency:20,height:\"100%\",id:\"pRni3vtDm\",images:[\"https://framerusercontent.com/images/tiAq4zuiVZ5xNEl284dma8wgFt8.jpg\",\"https://framerusercontent.com/images/tqqoNIqBXlvTti6L0iaua4atd6k.jpg\",\"https://framerusercontent.com/images/Fr9bVBxh3vMnjFQMFuoZJVSm7M.jpg\",\"https://framerusercontent.com/images/lxlaP0oK2CG6ZDhAOPsFEL4Vc.jpg\",\"https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg\",\"https://framerusercontent.com/images/ZHNTrHlVXdLrBqsECtiFteTAc.jpg\",\"https://framerusercontent.com/images/RFfaow8k08RLkxKKWNjk53jn4.jpg\",\"https://framerusercontent.com/images/YIYsaJrcdxvqjtqGfzzmK5A4wY.jpg\",\"https://framerusercontent.com/images/i84sSKgiiCeTNQ1meOm9mKrD0.png\",\"https://framerusercontent.com/images/an572quHV4WGSvRbPVxYPGZQ.jpg\",\"https://framerusercontent.com/images/9WJ2N7XAJUxpBTPBUxn46i3DKg.jpg\",\"https://framerusercontent.com/images/Phb7D4JoyRBjkDuMNGSCWaC1NQ8.jpg\"],layoutId:\"pRni3vtDm\",perspective:{enabled:false,value:1200},style:{fit:\"fill\",height:170,radius:0,width:245},visibleFor:.5,width:\"100%\",...addPropertyOverrides({HdG4uFWWd:{animation:{in:{from:{blur:0,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.8},to:{blur:0,is3D:\"2D\",opacity:1,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:1},transition:{damping:60,delay:0,mass:1,stiffness:600,type:\"spring\"}},out:{blur:0,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.9,transition:{damping:60,delay:0,mass:1,stiffness:600,type:\"spring\"}}}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nu0dcn\",\"data-framer-name\":\"Hero\",layoutDependency:layoutDependency,layoutId:\"yXIpDg7bP\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:10,y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||960)-0)*1-0-10)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vdzvnm-container\",layoutDependency:layoutDependency,layoutId:\"yXIpDg7bPGLoulUyQV-container\",nodeId:\"yXIpDg7bPGLoulUyQV\",rendersWithMotion:true,scopeId:\"havcw67HW\",children:/*#__PURE__*/_jsx(PageWrapperPadding,{height:\"100%\",id:\"yXIpDg7bPGLoulUyQV\",layoutId:\"yXIpDg7bPGLoulUyQV\",variant:\"MAsJj1Ki9\",width:\"100%\",...addPropertyOverrides({gIq9XrlvE:{variant:\"ZTUvY15qg\"},MyCxo7sp9:{variant:\"ZTUvY15qg\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqvxd5\",\"data-framer-name\":\"Main Container\",layoutDependency:layoutDependency,layoutId:\"yXIpDg7bPLPG7yPbUs\",children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Erin Collett is a NYC based Vietnamese-Australian cinematographer creating commercials, documentaries, and narrative films.\"})}),className:\"framer-1tyc2k\",fonts:[\"FS;Switzer-medium\"],layoutDependency:layoutDependency,layoutId:\"p3zyHFcf1\",style:{\"--extracted-r6o4lv\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{gIq9XrlvE:{opacity:1},HdG4uFWWd:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gIq9XrlvE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"}})})},HdG4uFWWd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"}})})},MyCxo7sp9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Erin Collett is a NYC based Vietnamese-Australian cinematographer creating commercials, documentaries, and narrative films.\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||960)-0)*1-0-(((componentViewport?.height||960)-0)*1-0)*1)/2)+0+(((((componentViewport?.height||960)-0)*1-0)*1-40-275)/2+0+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uqevcl-container\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"t5S4QEWTd-container\",name:\"Logo\",nodeId:\"t5S4QEWTd\",rendersWithMotion:true,scopeId:\"havcw67HW\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"t5S4QEWTd\",layoutId:\"t5S4QEWTd\",name:\"Logo\",style:{width:\"100%\"},variant:\"qBdYPytJr\",width:\"100%\",...addPropertyOverrides({gIq9XrlvE:{variant:\"ulffoL0Fn\"},MyCxo7sp9:{variant:\"ulffoL0Fn\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:10,y:(componentViewport?.y||0)+0+(0+(((componentViewport?.height||960)-0)*1-0-10)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12wv69p-container\",layoutDependency:layoutDependency,layoutId:\"yXIpDg7bPi8FoisL_A-container\",nodeId:\"yXIpDg7bPi8FoisL_A\",rendersWithMotion:true,scopeId:\"havcw67HW\",children:/*#__PURE__*/_jsx(PageWrapperPadding,{height:\"100%\",id:\"yXIpDg7bPi8FoisL_A\",layoutId:\"yXIpDg7bPi8FoisL_A\",variant:\"MAsJj1Ki9\",width:\"100%\",...addPropertyOverrides({gIq9XrlvE:{variant:\"ZTUvY15qg\"},MyCxo7sp9:{variant:\"ZTUvY15qg\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PqzxV.framer-1wpw5xf, .framer-PqzxV .framer-1wpw5xf { display: block; }\",\".framer-PqzxV.framer-1oqbgug { height: 960px; overflow: visible; position: relative; width: 1200px; }\",\".framer-PqzxV .framer-1por2yn-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: -1; }\",\".framer-PqzxV .framer-nu0dcn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; pointer-events: auto; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-PqzxV .framer-vdzvnm-container, .framer-PqzxV .framer-12wv69p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PqzxV .framer-jqvxd5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; max-width: 1800px; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-PqzxV .framer-1tyc2k { bottom: 40px; flex: none; height: 60px; left: calc(50.00000000000002% - min(490px, 100%) / 2); max-width: 490px; position: absolute; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-PqzxV .framer-1uqevcl-container { flex: none; height: auto; position: relative; width: 75%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqzxV .framer-nu0dcn, .framer-PqzxV .framer-jqvxd5 { gap: 0px; } .framer-PqzxV .framer-nu0dcn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PqzxV .framer-nu0dcn > :first-child { margin-left: 0px; } .framer-PqzxV .framer-nu0dcn > :last-child { margin-right: 0px; } .framer-PqzxV .framer-jqvxd5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PqzxV .framer-jqvxd5 > :first-child { margin-top: 0px; } .framer-PqzxV .framer-jqvxd5 > :last-child { margin-bottom: 0px; } }\",\".framer-PqzxV.framer-v-bi7tnd .framer-1por2yn-container { z-index: 10; }\",\".framer-PqzxV.framer-v-bi7tnd .framer-nu0dcn { pointer-events: none; }\",\".framer-PqzxV.framer-v-bi7tnd .framer-1tyc2k { bottom: 60px; }\",\".framer-PqzxV.framer-v-11fql2k .framer-1tyc2k { bottom: 10px; }\",\".framer-PqzxV.framer-v-11fql2k .framer-1uqevcl-container, .framer-PqzxV.framer-v-1mtuu2n .framer-1uqevcl-container { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 960\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HdG4uFWWd\":{\"layout\":[\"fixed\",\"fixed\"]},\"MyCxo7sp9\":{\"layout\":[\"fixed\",\"fixed\"]},\"gIq9XrlvE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerhavcw67HW=withCSS(Component,css,\"framer-PqzxV\");export default Framerhavcw67HW;Framerhavcw67HW.displayName=\"Home/Hero image\";Framerhavcw67HW.defaultProps={height:960,width:1200};addPropertyControls(Framerhavcw67HW,{variant:{options:[\"Hr_kcqoMp\",\"HdG4uFWWd\",\"MyCxo7sp9\",\"gIq9XrlvE\"],optionTitles:[\"Desktop - Start\",\"Desktop End\",\"Tablet\",\"Tablet End\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerhavcw67HW,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"}]},...CursorImageTrailFonts,...PageWrapperPaddingFonts,...LogoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerhavcw67HW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HdG4uFWWd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MyCxo7sp9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gIq9XrlvE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"960\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Switzer-medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-MdhsZ .framer-styles-preset-18y6hp2:not(.rich-text-wrapper), .framer-MdhsZ .framer-styles-preset-18y6hp2.rich-text-wrapper h4 { --framer-font-family: \"Switzer\", \"Switzer Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-c3043347-e55d-4e8f-a620-23399553e32c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-MdhsZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-ExtraBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-ExtraBoldItalic\"]);export const fonts=[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/if4nAQEfO1l3iBiurvlUSTaMA.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/GdJ7SQjcmkU1sz7lk5lMpKUlKY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/sOA6LVskcCqlqggyjIZe0Zh39UQ.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/zUCSsMbWBcHOQoATrhsPVigkc.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6eYp9yIAUvPZY7o0yfI4e2OP6g.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/aKoimhPBfs6C7Am2HTTVjGcpE.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/L9nHaKi7ULzGWchEehsfwttxOwM.woff2\",weight:\"800\"}]}];export const css=['.framer-sxms2 .framer-styles-preset-s4d9pu:not(.rich-text-wrapper), .framer-sxms2 .framer-styles-preset-s4d9pu.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 90px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 800; --framer-letter-spacing: -0.07px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-sxms2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-ExtraBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-pYV73 .framer-styles-preset-buq0w4:not(.rich-text-wrapper), .framer-pYV73 .framer-styles-preset-buq0w4.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.07px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-pYV73\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Instagram from\"https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/8ScWawSL1gtbsgAxdHrd/Instagram.js\";import PageWrapperPadding from\"https://framerusercontent.com/modules/iTn2NoRPRjgpIbsgU41S/tSrH4fOmq1bo7W0ZSsuD/h4a7dWxv8.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Footer from\"#framer/local/canvasComponent/FzGxIX_0w/FzGxIX_0w.js\";import PageWrapperPadding1 from\"#framer/local/canvasComponent/h4a7dWxv8/h4a7dWxv8.js\";import HomeHeroImage from\"#framer/local/canvasComponent/havcw67HW/havcw67HW.js\";import TitleStackComponent from\"#framer/local/canvasComponent/IgvHq5Qdp/IgvHq5Qdp.js\";import Header from\"#framer/local/canvasComponent/qzJw0x7Z2/qzJw0x7Z2.js\";import CTA from\"#framer/local/canvasComponent/wFewXqNUs/wFewXqNUs.js\";import*as sharedStyle2 from\"#framer/local/css/CyzLJ4gPb/CyzLJ4gPb.js\";import*as sharedStyle1 from\"#framer/local/css/DUtY4NdAH/DUtY4NdAH.js\";import*as sharedStyle from\"#framer/local/css/FPlJ6EjlF/FPlJ6EjlF.js\";import*as sharedStyle6 from\"#framer/local/css/kk1g8TeHD/kk1g8TeHD.js\";import*as sharedStyle8 from\"#framer/local/css/kNbyyREyw/kNbyyREyw.js\";import*as sharedStyle3 from\"#framer/local/css/t94ZdY5FP/t94ZdY5FP.js\";import*as sharedStyle7 from\"#framer/local/css/tZ4O7Vwuj/tZ4O7Vwuj.js\";import*as sharedStyle4 from\"#framer/local/css/VBO7ISlDB/VBO7ISlDB.js\";import*as sharedStyle5 from\"#framer/local/css/zInhp5Um3/zInhp5Um3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const HeaderFonts=getFonts(Header);const ContainerWithFX=withFX(Container);const HomeHeroImageFonts=getFonts(HomeHeroImage);const PageWrapperPaddingFonts=getFonts(PageWrapperPadding);const VimeoFonts=getFonts(Vimeo);const MotionAWithFX=withFX(motion.a);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const TitleStackComponentFonts=getFonts(TitleStackComponent);const InstagramFonts=getFonts(Instagram);const EmbedFonts=getFonts(Embed);const PageWrapperPadding1Fonts=getFonts(PageWrapperPadding1);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={Ko98DDp3s:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1400px)\",XfrW6L4qg:\"(min-width: 810px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-n1NMR\";const variantClassNames={Ko98DDp3s:\"framer-v-1fht3sn\",WQLkyLRf1:\"framer-v-72rtr7\",XfrW6L4qg:\"framer-v-qzscfl\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={damping:40,delay:0,mass:1,stiffness:180,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Ko98DDp3s\",Tablet:\"XfrW6L4qg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"tVfxM62W3\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"UvHArxetG\");const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const elementId2=useRouteElementId(\"Dco9MfE7N\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"iA4MbzHCn\");const ref6=React.useRef(null);const elementId4=useRouteElementId(\"ux72z83Ry\");const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId5=useRouteElementId(\"oVKP3YjGk\");const ref9=React.useRef(null);const elementId6=useRouteElementId(\"zewrlTm3v\");const elementId7=useRouteElementId(\"aHkaU_qGI\");const ref10=React.useRef(null);const ref11=React.useRef(null);const elementId8=useRouteElementId(\"YQQz847mR\");const ref12=React.useRef(null);const elementId9=useRouteElementId(\"EgJi17U85\");const elementId10=useRouteElementId(\"Ys36cTO51\");const elementId11=useRouteElementId(\"pVMzS1Sv_\");const elementId12=useRouteElementId(\"MBozDvGHE\");const ref13=React.useRef(null);const ref14=React.useRef(null);const ref15=React.useRef(null);const elementId13=useRouteElementId(\"mUg9NsqlJ\");const ref16=React.useRef(null);const elementId14=useRouteElementId(\"H1HtrwmTA\");const ref17=React.useRef(null);const elementId15=useRouteElementId(\"ZQ6VCINWR\");const ref18=React.useRef(null);const elementId16=useRouteElementId(\"htIbUke8d\");const elementId17=useRouteElementId(\"D7med5GW3\");const elementId18=useRouteElementId(\"Vw7aFLXxj\");const ref19=React.useRef(null);const ref20=React.useRef(null);const elementId19=useRouteElementId(\"SDvGT4ctL\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Ko98DDp3s\")return true;return false;};const ref21=React.useRef(null);const elementId20=useRouteElementId(\"IOOq0_ozI\");const ref22=React.useRef(null);const elementId21=useRouteElementId(\"vExnC0EIX\");const ref23=React.useRef(null);const elementId22=useRouteElementId(\"DtP58chv7\");const ref24=React.useRef(null);const ref25=React.useRef(null);const elementId23=useRouteElementId(\"YLyQvKZRl\");const ref26=React.useRef(null);const elementId24=useRouteElementId(\"sTU48F99K\");const elementId25=useRouteElementId(\"Cod3okvct\");const ref27=React.useRef(null);const ref28=React.useRef(null);const elementId26=useRouteElementId(\"gbu2cU7Cy\");const ref29=React.useRef(null);const elementId27=useRouteElementId(\"VeKWHE38N\");const ref30=React.useRef(null);const elementId28=useRouteElementId(\"Ylypu9wZV\");const ref31=React.useRef(null);const ref32=React.useRef(null);const elementId29=useRouteElementId(\"ABW1SxGcq\");const ref33=React.useRef(null);const ref34=React.useRef(null);const elementId30=useRouteElementId(\"UYd5iwSmD\");const ref35=React.useRef(null);const elementId31=useRouteElementId(\"pueQWnrBL\");const elementId32=useRouteElementId(\"hfBVOzjDO\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Ko98DDp3s\")return false;return true;};const elementId33=useRouteElementId(\"U4dAZI7a7\");const ref36=React.useRef(null);const elementId34=useRouteElementId(\"cu7alJeMD\");const ref37=React.useRef(null);const elementId35=useRouteElementId(\"kpSMl_rur\");const ref38=React.useRef(null);const ref39=React.useRef(null);const elementId36=useRouteElementId(\"q78Ou55Qr\");const ref40=React.useRef(null);const elementId37=useRouteElementId(\"KyRnP1NbT\");const elementId38=useRouteElementId(\"sBmmR28tS\");const elementId39=useRouteElementId(\"tGsvNM87W\");const ref41=React.useRef(null);const ref42=React.useRef(null);const elementId40=useRouteElementId(\"QlhDpqAgC\");const elementId41=useRouteElementId(\"YIToH42ME\");const ref43=React.useRef(null);const ref44=React.useRef(null);const elementId42=useRouteElementId(\"TlSMrZu5v\");const ref45=React.useRef(null);const elementId43=useRouteElementId(\"V0JqvDGes\");const ref46=React.useRef(null);const elementId44=useRouteElementId(\"LO2X9j0MG\");const ref47=React.useRef(null);const elementId45=useRouteElementId(\"J3339KQLl\");const ref48=React.useRef(null);const elementId46=useRouteElementId(\"KO0c1D2ba\");const ref49=React.useRef(null);const elementId47=useRouteElementId(\"dAqKezYuO\");const elementId48=useRouteElementId(\"ITc6yYdOq\");const elementId49=useRouteElementId(\"dTTtQy9Bk\");const ref50=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",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-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ks9ibs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wro57xPxE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"wro57xPxE\",intensity:5,layoutId:\"wro57xPxE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{height:40},XfrW6L4qg:{height:60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-121tak3-container\",layoutScroll:true,nodeId:\"tafPA8JW7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{style:{width:\"100%\"},variant:\"dflfIZTlA\"},XfrW6L4qg:{variant:\"dflfIZTlA\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"tafPA8JW7\",layoutId:\"tafPA8JW7\",style:{height:\"100%\",width:\"100%\"},variant:\"El8a_dQRG\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192z71s\",\"data-framer-name\":\"Page Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-8lwr0o\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{height:678,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9974)`,y:undefined},XfrW6L4qg:{height:921.196,width:\"807.5764px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:954.4892,width:\"1401px\",y:(componentViewport?.y||0)+0+200+0+0+48+-.6196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ieujuj-container\",nodeId:\"DxtLJ5W1j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{variant:\"MyCxo7sp9\"},XfrW6L4qg:{variant:\"MyCxo7sp9\"}},children:/*#__PURE__*/_jsx(HomeHeroImage,{height:\"100%\",id:\"DxtLJ5W1j\",layoutId:\"DxtLJ5W1j\",style:{height:\"100%\",width:\"100%\"},variant:\"Hr_kcqoMp\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igq53s\",\"data-framer-name\":\"Works\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:10,y:(componentViewport?.y||0)+0+200+0+1001.25+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jv6lf9-container\",isModuleExternal:true,nodeId:\"O5XTrM8IM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{variant:\"ZTUvY15qg\"},XfrW6L4qg:{variant:\"ZTUvY15qg\"}},children:/*#__PURE__*/_jsx(PageWrapperPadding,{height:\"100%\",id:\"O5XTrM8IM\",layoutId:\"O5XTrM8IM\",variant:\"MAsJj1Ki9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1627d5x\",\"data-framer-name\":\"Main Container\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JRfKQzQi8:\"commercial-reel\"},unresolvedPathSlugs:{JRfKQzQi8:{collectionId:\"W375kyQsw\",collectionItemId:\"Mxxp0zRiB\"}},webPageId:\"A9atpvYvV\"},motionChild:true,nodeId:\"Dco9MfE7N\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-177hhfn framer-lux5qc\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\"Commercial Reel\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1726cj\",\"data-styles-preset\":\"DUtY4NdAH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},XfrW6L4qg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Commercial Reel\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1726cj\",\"data-styles-preset\":\"DUtY4NdAH\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Commercial Reel\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1726cj\",\"data-styles-preset\":\"DUtY4NdAH\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-bks1ft\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12mkwkb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dSysz6hKY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dSysz6hKY\",isMixedBorderRadius:false,layoutId:\"dSysz6hKY\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/815733195#t=0\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x1392u\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x3mmzx\",\"data-framer-name\":\"FEATURED WORK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Why\"})})},XfrW6L4qg:{viewBox:\"0 0 433 108\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Why\"})}),className:\"framer-fm45f3\",fonts:[\"Inter\"],id:elementId4,ref:ref7,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"My goal is simple: to make our collaboration enjoyable, seamless, and impactful from start to finish. \"}),\"I'll bring your vision to life, creatively tackle any challenges, and remain flexible to the needs of the project and your greater goals. \"]})}),className:\"framer-1o49tdu\",fonts:[\"Inter\"],id:elementId5,ref:ref8,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Your project's success is deeply important to me, \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"not just in crafting visually captivating imagery but in the journey and the process it took to get there. My goal is ensuring your story resonates profoundly with audiences, festivals, and award juries alike.\"})]})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\"Above all, I'm dedicated to seeing your project succeed and gain the recognition it deserves. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Your project's success is deeply important to me, \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"not just in crafting visually captivating imagery but in the journey and the process it took to get there. My goal is ensuring your story resonates profoundly with audiences, festivals, and award juries alike. \"})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Here on my homepage you\u2019ll get a clear sense of my style and what it's like working with me.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D6Y0kHvRJ\"},motionChild:true,nodeId:\"zewrlTm3v\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-th5v8x\",\"data-styles-preset\":\"kk1g8TeHD\",children:\"If you prefer to dive straight into my work then [CLICK HERE]. \"})})})]}),className:\"framer-1or2izk\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId6,ref:ref9,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{href:{webPageId:\"D6Y0kHvRJ\"},openInNewTab:false}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uXi4l3Exr\"},motionChild:true,nodeId:\"aHkaU_qGI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e7hq3c framer-lux5qc\",\"data-framer-name\":\"carousel narratove\",id:elementId7,ref:ref5,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5nlgr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z2P9Yry7V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{speed:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Z2P9Yry7V\",layoutId:\"Z2P9Yry7V\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4050,pixelHeight:6e3,pixelWidth:4050,sizes:\"168px\",src:\"https://framerusercontent.com/images/kEbTjCC9AquXhjPMSGVNoBnsVZQ.jpg\",srcSet:\"https://framerusercontent.com/images/kEbTjCC9AquXhjPMSGVNoBnsVZQ.jpg?scale-down-to=1024 691w,https://framerusercontent.com/images/kEbTjCC9AquXhjPMSGVNoBnsVZQ.jpg?scale-down-to=2048 1382w,https://framerusercontent.com/images/kEbTjCC9AquXhjPMSGVNoBnsVZQ.jpg?scale-down-to=4096 2764w,https://framerusercontent.com/images/kEbTjCC9AquXhjPMSGVNoBnsVZQ.jpg 4050w\"},className:\"framer-jbry6g\",\"data-framer-name\":\"Saung 1Sheet_R2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2304,intrinsicWidth:1728,pixelHeight:2304,pixelWidth:1728,sizes:\"187px\",src:\"https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg\",srcSet:\"https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/lB4vlGrM1YYzHsIkk0ZMQoGDwE.jpg 1728w\"},className:\"framer-1it8nn3\",\"data-framer-name\":\"Daddy IssuesJPG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1129,intrinsicWidth:849,pixelHeight:1129,pixelWidth:849,sizes:\"186px\",src:\"https://framerusercontent.com/images/i95jLy6vM5Ok9UPsejBr9fKuwpU.png\",srcSet:\"https://framerusercontent.com/images/i95jLy6vM5Ok9UPsejBr9fKuwpU.png?scale-down-to=1024 770w,https://framerusercontent.com/images/i95jLy6vM5Ok9UPsejBr9fKuwpU.png 849w\"},className:\"framer-1lw513x\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.57.16\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1131,intrinsicWidth:764,pixelHeight:1131,pixelWidth:764,sizes:\"171px\",src:\"https://framerusercontent.com/images/zKQc1xX9h7NzfiX9ErraQfKiOMY.png\",srcSet:\"https://framerusercontent.com/images/zKQc1xX9h7NzfiX9ErraQfKiOMY.png?scale-down-to=1024 691w,https://framerusercontent.com/images/zKQc1xX9h7NzfiX9ErraQfKiOMY.png 764w\"},className:\"framer-12d9ty0\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.56.31\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1135,intrinsicWidth:768,pixelHeight:1135,pixelWidth:768,sizes:\"174px\",src:\"https://framerusercontent.com/images/HZO0hKFduSm2ebPcs1R1CmJ4o8.png\",srcSet:\"https://framerusercontent.com/images/HZO0hKFduSm2ebPcs1R1CmJ4o8.png?scale-down-to=1024 692w,https://framerusercontent.com/images/HZO0hKFduSm2ebPcs1R1CmJ4o8.png 768w\"},className:\"framer-ij9ris\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.55.31\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1115,intrinsicWidth:719,pixelHeight:1115,pixelWidth:719,sizes:\"162px\",src:\"https://framerusercontent.com/images/ahENpnLlT6NAKtI7lia9AJfKM.png\",srcSet:\"https://framerusercontent.com/images/ahENpnLlT6NAKtI7lia9AJfKM.png?scale-down-to=1024 660w,https://framerusercontent.com/images/ahENpnLlT6NAKtI7lia9AJfKM.png 719w\"},className:\"framer-75wwc8\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.53.25\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1134,intrinsicWidth:801,pixelHeight:1134,pixelWidth:801,sizes:\"180px\",src:\"https://framerusercontent.com/images/g5dDlEIxHUUBphzmNKkCXJKE4rk.png\",srcSet:\"https://framerusercontent.com/images/g5dDlEIxHUUBphzmNKkCXJKE4rk.png?scale-down-to=1024 723w,https://framerusercontent.com/images/g5dDlEIxHUUBphzmNKkCXJKE4rk.png 801w\"},className:\"framer-1fprm5f\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.54.51\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1382,intrinsicWidth:978,pixelHeight:1382,pixelWidth:978,sizes:\"180px\",src:\"https://framerusercontent.com/images/SWVH1sKAzJPX5XfgSRi8EuNxPs.png\",srcSet:\"https://framerusercontent.com/images/SWVH1sKAzJPX5XfgSRi8EuNxPs.png?scale-down-to=1024 724w,https://framerusercontent.com/images/SWVH1sKAzJPX5XfgSRi8EuNxPs.png 978w\"},className:\"framer-o7wyp9\",\"data-framer-name\":\"Screenshot 2025-03-16 at 1.06.24\\xe2\\x80\\xafPM\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Cinematography has always felt like quiet magic to me \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\u2014 the way light can evoke deep emotions or how a single frame can tell an entire story. Curiosity first drew me behind the camera, but it's capturing genuine moments, beautifully odd details, and imaginative worlds that keep me fascinated.\"})]})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref11,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Cinematography has always felt like quiet magic to me \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\u2014 the way light can evoke deep emotions or how a single frame can tell an entire story. Curiosity first drew me behind the camera, but it's capturing genuine moments, beautifully odd details, and imaginative worlds that keep me fascinated.\"})]})}),className:\"framer-1rfwud8\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId8,ref:ref11,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative problem-solving genuinely excites me\u2014thats the challenge of filmmaking, whether adjusting to harness the natural lighting or  overcoming challenging shooting conditions, problem solving is the job and i love it.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref12,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative problem-solving genuinely excites me\u2014thats the challenge of filmmaking, whether adjusting to harness the natural lighting or  overcoming challenging shooting conditions, problem solving is the job and i love it.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(143, 133, 133)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-axa6rr\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId9,ref:ref12,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{href:{pathVariables:{Odhfwbi5r:\"narrativeshowreel\"},unresolvedPathSlugs:{Odhfwbi5r:{collectionId:\"SHKk1Mqwy\",collectionItemId:\"Br6uL1a77\"}},webPageId:\"U1GRmo64J\"}}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{lzpgdJyx8:\"narrative-showreel\"},unresolvedPathSlugs:{lzpgdJyx8:{collectionId:\"tGp0ppeCw\",collectionItemId:\"sBVTpDwUg\"}},webPageId:\"oBkPeyY3A\"},motionChild:true,nodeId:\"Ys36cTO51\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]},XfrW6L4qg:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o8ua4x framer-lux5qc\",\"data-framer-appear-id\":\"o8ua4x\",id:elementId10,ref:ref6,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n2bc3q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NaPeRyxwu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NaPeRyxwu\",isMixedBorderRadius:false,layoutId:\"NaPeRyxwu\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/815733225#t=0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\"Narrative Reel\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1726cj\",\"data-styles-preset\":\"DUtY4NdAH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Narrative Reel\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1726cj\",\"data-styles-preset\":\"DUtY4NdAH\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1084ol9\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ilk0lp\",\"data-framer-name\":\"Cta Button\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jrbowd\",\"data-framer-name\":\"FEATURED WORK\",id:elementId11,ref:ref10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Featured work\"})})},XfrW6L4qg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-qsgm8h\",\"data-styles-preset\":\"tZ4O7Vwuj\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Featured \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21.977011494252874px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"work\"]})}),viewBox:\"0 0 962 336\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Featured work\"})}),className:\"framer-drf28i\",fonts:[\"Inter\"],id:elementId12,ref:ref13,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JRfKQzQi8:\"c3\"},unresolvedPathSlugs:{JRfKQzQi8:{collectionId:\"W375kyQsw\",collectionItemId:\"ntOr4MMAF\"}},webPageId:\"A9atpvYvV\"},motionChild:true,nodeId:\"mUg9NsqlJ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref14,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref15,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yr7too framer-lux5qc\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mbt2k8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mgHZZ9CWM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mgHZZ9CWM\",isMixedBorderRadius:false,layoutId:\"mgHZZ9CWM\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/791025022\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{height:173,y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:161,width:\"316px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+2530+123,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1izq9r7-container\",nodeId:\"RF9PuuUv1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Exceptional Everyday\",E8lop28VC:\"Commercial\",height:\"100%\",hGFlbnUao:\"Production co: Naked City Films\",id:\"RF9PuuUv1\",layoutId:\"RF9PuuUv1\",npbMSv4TZ:\" Chris Shimojima\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Cinematographer\"})})})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JRfKQzQi8:\"queer-summer\"},unresolvedPathSlugs:{JRfKQzQi8:{collectionId:\"W375kyQsw\",collectionItemId:\"hDzPWvXU6\"}},webPageId:\"A9atpvYvV\"},motionChild:true,nodeId:\"rWCQyd8m_\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e7p66g framer-lux5qc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fkl3j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref15,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref16,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dssix\",id:elementId14,ref:ref15,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:139,width:\"267px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+2947+24+0+0+153,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10d4mo3-container\",nodeId:\"VtkyA32Bw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Queer Summer\",E8lop28VC:\"Commercial\",height:\"100%\",hGFlbnUao:\"Tyler Morgan\",id:\"VtkyA32Bw\",layoutId:\"VtkyA32Bw\",npbMSv4TZ:\"Bronson Farr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Cinematographer\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-myvqx2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PNXKFhwda\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PNXKFhwda\",isMixedBorderRadius:false,layoutId:\"PNXKFhwda\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1064394302?share=copy\",width:\"100%\"})})})]})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{S0a3TSCu7:\"touching-invisible\"},unresolvedPathSlugs:{S0a3TSCu7:{collectionId:\"xyOsRmPA7\",collectionItemId:\"YEVkfRssM\"}},webPageId:\"IdbltXlo_\"},motionChild:true,nodeId:\"ZQ6VCINWR\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref16,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref17,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14hfrek framer-lux5qc\",id:elementId15,ref:ref16,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzz0gs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s9c_l3oQr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"s9c_l3oQr\",isMixedBorderRadius:false,layoutId:\"s9c_l3oQr\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/392861865\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:139,width:\"296px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+3450+111,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1exn2bp-container\",nodeId:\"KRYwlejfA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Almost Invisible\",E8lop28VC:\"Music Video\",height:\"100%\",hGFlbnUao:\"Artist: Tuarrah\",id:\"KRYwlejfA\",layoutId:\"KRYwlejfA\",npbMSv4TZ:\"Erin Collett\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Cinematographer\"})})})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{lzpgdJyx8:\"eden\"},unresolvedPathSlugs:{lzpgdJyx8:{collectionId:\"tGp0ppeCw\",collectionItemId:\"hdpjBxYBs\"}},webPageId:\"oBkPeyY3A\"},motionChild:true,nodeId:\"htIbUke8d\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref17,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref17,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref18,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17o01yt framer-lux5qc\",id:elementId16,ref:ref17,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:\"384px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+3821+102.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1782awo-container\",nodeId:\"XzOCseHSs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Eden\",E8lop28VC:\"Tv Series\",height:\"100%\",hGFlbnUao:\"cinematographer Geoffrey Hall\",id:\"XzOCseHSs\",layoutId:\"XzOCseHSs\",npbMSv4TZ:\"John Curran, Mirrah Folkes \",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"2nd unit Cinematographer\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckhr9i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j8kCivZqc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"j8kCivZqc\",isMixedBorderRadius:false,layoutId:\"j8kCivZqc\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/579975460\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1geeu2v\",\"data-framer-name\":\"VISUAL STYLE\",id:elementId17,ref:ref18,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Visual Style\"})})},XfrW6L4qg:{viewBox:\"0 0 651 108\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Visual Style\"})}),className:\"framer-17fnjfs\",fonts:[\"Inter\"],id:elementId18,ref:ref19,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref20,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"My visual style is shaped by a fascination with movement, texture, and the quality of light.\"}),\" It\u2019s influenced by my curiosity for unusual moments, deep contrasts, and emotional storytelling. I strive to create imagery that feels emotionally authentic or visually striking, and when it serves, both. My creative approach is immersive, detail-oriented, and emphasizes clear communication and planning, enabling me to execute confidently and efficiently when i get to set.\"]})}),className:\"framer-1dx6i0f\",fonts:[\"Inter\"],id:elementId19,ref:ref20,verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kjpxy0 hidden-72rtr7 hidden-qzscfl\",\"data-framer-name\":\"Cta Button\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref21,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[\"In my personal work, I\u2019m drawn to camera techniques that either deeply immerse you in a character\u2019s experience or that arrest you in its visual choreography and spectacle\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\".\"})]})}),className:\"framer-16t9ktn\",fonts:[\"Inter\"],id:elementId20,ref:ref21,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref22,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Flexibility is essential to my process\"}),\". I\u2019m always ready to creatively adapt, collaborate closely, and quickly find solutions when challenges arise. My commitment to the success of each project means your vision\u2014and the potential for your work to gain recognition and awards\u2014is always at the forefront of my mind.\"]})}),className:\"framer-11a5sj3\",fonts:[\"Inter\"],id:elementId21,ref:ref22,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref23,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[\"I draw inspiration from films like \",/*#__PURE__*/_jsx(\"em\",{children:\"Barry Lyndon\"}),\" and \",/*#__PURE__*/_jsx(\"em\",{children:\"Walkabout\"})]}),\" for their visual richness and emotional depth; cinematographers such as Emmanuel Lubezki and Greig Fraser, and the photographic work of Gregory Crewdson for their distinctive visual styles; as well as from dance films like \",/*#__PURE__*/_jsx(\"em\",{children:\"Pina\"}),\" and the paintings of Caravaggio for their boldness, originality and use of light.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\"I haven't yet shot the film that fully defines my style\u2014but I sense it growing closer, frame by frame.\"})]}),className:\"framer-1aufkcx\",fonts:[\"Inter\",\"Inter-Italic\"],id:elementId22,ref:ref23,verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kz1vkg hidden-72rtr7 hidden-qzscfl\",\"data-framer-name\":\"Cta Button\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref24,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref25,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mhjnj7\",\"data-framer-name\":\"Insta Stack\",id:elementId23,ref:ref24,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bcegxy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jEFmjVFT2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"jEFmjVFT2\",layoutId:\"jEFmjVFT2\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/C3ECZ4vvQeX/?hl=en\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17wsucc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"z89DTMQj2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"z89DTMQj2\",layoutId:\"z89DTMQj2\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/BkvmGiwnxPm/?hl=en\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aj8qtn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KypsrbGaR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"KypsrbGaR\",layoutId:\"KypsrbGaR\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/B5Y4_mehqrf/?hl=en\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Qi4RmvS9x\"},motionChild:true,nodeId:\"sTU48F99K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref26,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vpcxux framer-lux5qc\",id:elementId24,ref:ref26,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Career Highlights and Awards\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"notable achievements in my career are films like\\xa0\",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Not Going Quietly\"})}),\"\\xa0(SXSW Audience Award, Tribeca),\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Minted\"}),\"\\xa0(Tribeca, PBS, Netflix)\"]}),\", and the \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[\"NY Emmy-awarded\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Lifeline \u2013 A Doctor\u2019s Commitment to 9/11 First Responders\"})]}),\". Each project has enriched my storytelling approach, sharpening my artistic and technical perspectives and expanding my capacity to craft memorable visuals.\"]})]}),fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"bottom\"},XfrW6L4qg:{__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref25,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref27,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Career Highlights and Awards\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"Throughout my career, I've been honored with notable achievements,with films like\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Not Going Quietly\"}),\"\\xa0(SXSW Audience Award, Tribeca),\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Minted\"}),\"\\xa0(Tribeca, PBS, Netflix), and the NY Emmy-awarded\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Lifeline \u2013 A Doctor\u2019s Commitment to 9/11 First Responders\"}),\". Each project has enriched my storytelling approach, sharpening my artistic and technical perspectives and expanding my capacity to craft memorable visuals.\"]})]}),fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"center\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref25,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:\" Highlights and Awards\"})}),className:\"framer-1uv992t\",fonts:[\"Inter\"],id:elementId25,ref:ref25,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Career Highlights and Awards\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"notable achievements in my career are films like\\xa0\",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Not Going Quietly\"})}),\"\\xa0(SXSW Audience Award, Tribeca),\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Minted\"}),\"\\xa0(Tribeca, PBS, Netflix)\"]}),\", and the \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[\"NY Emmy-awarded\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Lifeline \u2013 A Doctor\u2019s Commitment to 9/11 First Responders\"})]}),\". Each project has enriched my storytelling approach, sharpening my artistic and technical perspectives and expanding my capacity to craft memorable visuals.\"]})]}),fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"bottom\"},XfrW6L4qg:{__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref25,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref27,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Career Highlights and Awards\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"Throughout my career, I've been honored with notable achievements,with films like\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Not Going Quietly\"}),\"\\xa0(SXSW Audience Award, Tribeca),\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Minted\"}),\"\\xa0(Tribeca, PBS, Netflix), and the NY Emmy-awarded\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Lifeline \u2013 A Doctor\u2019s Commitment to 9/11 First Responders\"}),\". Each project has enriched my storytelling approach, sharpening my artistic and technical perspectives and expanding my capacity to craft memorable visuals.\"]})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref28,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"Some notable achievements, in my career are\\xa0\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Not Going Quietly\"})}),\"\\xa0(SXSW Audience Award, Tribeca),\\xa0\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Minted\"})}),\"\\xa0(Tribeca, PBS, Netflix), and the NY Emmy-awarded\\xa0\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Lifeline \u2013 A Doctor\u2019s Commitment to 9/11 First Responders\"})}),\". \"]})}),className:\"framer-1jwrtwd\",fonts:[\"Inter\",\"Inter-Italic\"],id:elementId26,ref:ref28,verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref27,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref30,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref27,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref29,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18f04f4-container\",id:elementId27,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VeKWHE38N\",ref:ref27,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"VeKWHE38N\",layoutId:\"VeKWHE38N\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:809,intrinsicWidth:1217,pixelHeight:809,pixelWidth:1217,sizes:\"439px\",src:\"https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg\",srcSet:\"https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pp1ml3z1H53ftF1z3N8WbqcZKLU.jpg 1217w\"},className:\"framer-dm4y6b\",\"data-framer-name\":\"IMG 9465\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1068,intrinsicWidth:1229,pixelHeight:1068,pixelWidth:1229,sizes:\"303px\",src:\"https://framerusercontent.com/images/NU3ih9pBn9JlRnNNMr8UzsPZWGQ.jpg\",srcSet:\"https://framerusercontent.com/images/NU3ih9pBn9JlRnNNMr8UzsPZWGQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NU3ih9pBn9JlRnNNMr8UzsPZWGQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NU3ih9pBn9JlRnNNMr8UzsPZWGQ.jpg 1229w\"},className:\"framer-ccvaqa\",\"data-framer-name\":\"IMG 9466\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:518,intrinsicWidth:994,pixelHeight:518,pixelWidth:994,sizes:\"508px\",src:\"https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png\",srcSet:\"https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Euw8nEdKWwawDg5fVjw7F59ZA.png 994w\"},className:\"framer-nmp1i4\",\"data-framer-name\":\"Screenshot 2025-03-08 at 3.24.42\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:1498,pixelHeight:1192,pixelWidth:1498,sizes:\"344px\",src:\"https://framerusercontent.com/images/wRYlixS4RIBw792dQIxNPDPoU.png\",srcSet:\"https://framerusercontent.com/images/wRYlixS4RIBw792dQIxNPDPoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/wRYlixS4RIBw792dQIxNPDPoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wRYlixS4RIBw792dQIxNPDPoU.png 1498w\"},className:\"framer-eiem6k\",\"data-framer-name\":\"Screenshot 2025-03-11 at 1.37.33\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2162,intrinsicWidth:3852,pixelHeight:2162,pixelWidth:3852,sizes:\"480px\",src:\"https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png\",srcSet:\"https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wTBipOVnM9eHxk2ks6oW7KkKf0.png 3852w\"},className:\"framer-1e9j360\",\"data-framer-name\":\"Screenshot 2025-03-08 at 3.26.03\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2176,intrinsicWidth:4030,pixelHeight:2176,pixelWidth:4030,sizes:\"509px\",src:\"https://framerusercontent.com/images/WWEKSl1y0tNlUNmjntpj4AXRPU8.png\",srcSet:\"https://framerusercontent.com/images/WWEKSl1y0tNlUNmjntpj4AXRPU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WWEKSl1y0tNlUNmjntpj4AXRPU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WWEKSl1y0tNlUNmjntpj4AXRPU8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WWEKSl1y0tNlUNmjntpj4AXRPU8.png 4030w\"},className:\"framer-1jiy670\",\"data-framer-name\":\"Screenshot 2025-03-08 at 3.55.08\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:544,intrinsicWidth:964,pixelHeight:544,pixelWidth:964,sizes:\"578px\",src:\"https://framerusercontent.com/images/CZmz8wBYowb1ggXRcDdaYjh0fEc.png\",srcSet:\"https://framerusercontent.com/images/CZmz8wBYowb1ggXRcDdaYjh0fEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CZmz8wBYowb1ggXRcDdaYjh0fEc.png 964w\"},className:\"framer-khiibm\",\"data-framer-name\":\"Screenshot 2025-03-08 at 3.58.01\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1330,intrinsicWidth:2364,pixelHeight:1330,pixelWidth:2364,sizes:\"439px\",src:\"https://framerusercontent.com/images/SHMjlrC0QNPrK318i2r1ZR41Y.png\",srcSet:\"https://framerusercontent.com/images/SHMjlrC0QNPrK318i2r1ZR41Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/SHMjlrC0QNPrK318i2r1ZR41Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SHMjlrC0QNPrK318i2r1ZR41Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SHMjlrC0QNPrK318i2r1ZR41Y.png 2364w\"},className:\"framer-omlu0u\",\"data-framer-name\":\"Screenshot 2025-03-16 at 12.33.19\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:683,intrinsicWidth:1024,pixelHeight:683,pixelWidth:1024,sizes:\"377px\",src:\"https://framerusercontent.com/images/iJKD28z9K0QxWwJVWDS5v3rlTQ.jpg\",srcSet:\"https://framerusercontent.com/images/iJKD28z9K0QxWwJVWDS5v3rlTQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iJKD28z9K0QxWwJVWDS5v3rlTQ.jpg 1024w\"},className:\"framer-1wrv7a9\",\"data-framer-name\":\"Emmy22-winners-7225-2a576\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1412,intrinsicWidth:1556,pixelHeight:1412,pixelWidth:1556,sizes:\"328px\",src:\"https://framerusercontent.com/images/2DJYMIOY97XvsdiIrFKmKAP74xA.png\",srcSet:\"https://framerusercontent.com/images/2DJYMIOY97XvsdiIrFKmKAP74xA.png?scale-down-to=512 512w,https://framerusercontent.com/images/2DJYMIOY97XvsdiIrFKmKAP74xA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2DJYMIOY97XvsdiIrFKmKAP74xA.png 1556w\"},className:\"framer-wj79lm\",\"data-framer-name\":\"Screenshot 2025-03-16 at 1.30.01\\xe2\\x80\\xafPM\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-z8p4yo hidden-72rtr7 hidden-qzscfl\",id:elementId28,ref:ref31,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref31,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref32,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xbnrd0\",\"data-framer-name\":\"FEATURED WORK\",id:elementId29,ref:ref33,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"The PRocess\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"The PRocess\"})}),className:\"framer-1ovdv14\",fonts:[\"Inter\"],id:\"1ovdv14\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{href:{pathVariables:{Odhfwbi5r:\"narrativeshowreel\"},unresolvedPathSlugs:{Odhfwbi5r:{collectionId:\"SHKk1Mqwy\",collectionItemId:\"Br6uL1a77\"}},webPageId:\"U1GRmo64J\"}}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W0WcigiCd:\"minted\"},unresolvedPathSlugs:{W0WcigiCd:{collectionId:\"vGYGMP_d3\",collectionItemId:\"RpqsF_ZEf\"}},webPageId:\"PwcODGCwa\"},motionChild:true,nodeId:\"UYd5iwSmD\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref29,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref35,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1},XfrW6L4qg:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionAWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref29,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref34,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1etuoqm framer-lux5qc\",\"data-framer-appear-id\":\"1etuoqm\",id:elementId30,ref:ref29,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qsmzj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"klZSzNL24\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"klZSzNL24\",isMixedBorderRadius:false,layoutId:\"klZSzNL24\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1063912086?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{width:\"355px\",y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"331px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+5683+148.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mv2si-container\",nodeId:\"SEzTlu7cF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Minted\",E8lop28VC:\"Feature Documentary\",height:\"100%\",hGFlbnUao:\"Production co: Peoples Tv\",id:\"SEzTlu7cF\",layoutId:\"SEzTlu7cF\",npbMSv4TZ:\"Nicholas Bruckman\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Cinematographer\"})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{href:{webPageId:\"VOoiQq_KX\"}}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W0WcigiCd:\"lifeline\"},unresolvedPathSlugs:{W0WcigiCd:{collectionId:\"vGYGMP_d3\",collectionItemId:\"b9RhDmtCq\"}},webPageId:\"PwcODGCwa\"},motionChild:true,nodeId:\"pueQWnrBL\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref34,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref34,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref35,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10vak4c framer-lux5qc\",id:elementId31,ref:ref34,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{width:\"381px\",y:undefined},XfrW6L4qg:{width:\"614px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"569px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+6148+112,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ko3tp-container\",nodeId:\"GAwQXN22Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Lifeline - A Doctors Commitment to 911 First Responders\",E8lop28VC:\"Mini Doc\",height:\"100%\",hGFlbnUao:\"NY emmy WinneR\",id:\"GAwQXN22Y\",layoutId:\"GAwQXN22Y\",npbMSv4TZ:\"Sunita Reed, Peter logue\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Cinematographer\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jd5iq2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SIu3yMZP7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SIu3yMZP7\",isMixedBorderRadius:false,layoutId:\"SIu3yMZP7\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/791025317\",width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W0WcigiCd:\"not-going-quetly\"},unresolvedPathSlugs:{W0WcigiCd:{collectionId:\"vGYGMP_d3\",collectionItemId:\"XfUie_tIw\"}},webPageId:\"PwcODGCwa\"},motionChild:true,nodeId:\"hfBVOzjDO\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref35,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref34,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref35,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15uehjg framer-lux5qc\",id:elementId32,ref:ref35,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9he09c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YgiaDNqEU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"YgiaDNqEU\",isMixedBorderRadius:false,layoutId:\"YgiaDNqEU\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1063915534?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{width:\"381px\",y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"432px\",y:(componentViewport?.y||0)+0+200+0+1001.25+0+10+0+6540+147.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18jghgl-container\",nodeId:\"k_voFvbi7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TitleStackComponent,{aHOaAyNFE:\"Not going Quitely\",E8lop28VC:\"Feature Doc\",height:\"100%\",hGFlbnUao:\"Production co: Peoples Tv\",id:\"k_voFvbi7\",layoutId:\"k_voFvbi7\",npbMSv4TZ:\"Nicholas Bruckman\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xhnIHRFWc:\"Additional Cinematography\"})})})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdehq5\",\"data-framer-name\":\"Services Offered\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{viewBox:\"0 0 876 108\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref31,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.55,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"SERVICES OFFERED\"})}),className:\"framer-wrhx7p hidden-1fht3sn\",fonts:[\"Inter\"],id:elementId33,ref:ref36,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref32,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Development\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"My goal is to understand your project's visual, emotional, and thematic language.\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Together, we'll define a visual identity that aligns with your storytelling objectives.\"})]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Customized mood boards\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", detailed shot lists, and immersive pre-visualizations including custom AI-generated imagery built for your project.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Comprehensive lighting and mood references\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" paired with character lookbooks to guide production design.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"In-depth\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"visual breakdowns of your script and treatment\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\", highlighting key emotional and thematic beats.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Consultation on visual storytelling, symbolism, and color theory\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" to strengthen narrative cohesion.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Strategic identification of visual cornerstones\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" within your story structure and pivotal scene turning points.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tailored recommendations for cameras and lenses\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" optimized to capture your project's unique aesthetic.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"A clear production roadmap\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" with defined milestones to streamline collaboration.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Technical feasibility consultation\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" from camera dept perspective, assessing alignment with budget and resources.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Narrative visual impact analysis\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to heighten audience engagement based on genre and market analysis.\"})]})})]})]}),className:\"framer-hns67y hidden-1fht3sn\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId34,ref:ref32,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref37,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Production is execution time \u2014transforming planning into reality. I try to foster a collaborative and inspiring environment for creativity to thrive.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Seasoned, decisive leadership\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" ensuring smooth operations on set.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Proactive creation of creative options\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", maximizing flexibility for directors.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Clear, open, and consistent communication\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" across all departments.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Adaptive problem-solving\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to swiftly navigate on-set challenges.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Commitment to cultivating \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"a supportive and creative environment\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" for directors and talent to flourish.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Emphasis on \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"thoughtful, emotional storytelling\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" through dynamic visual language.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Maintaining an \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"approachable, positive, and professional atmosphere\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" throughout production.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"On-set efficiency strategies\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to optimize shooting schedules without sacrificing creative quality.\"})]})})]})]}),className:\"framer-17bjug2 hidden-72rtr7 hidden-qzscfl\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId35,ref:ref37,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref38,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref39,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r3hzmg\",id:elementId36,ref:ref38,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Scene Breakdown From Beta Fish\"})}),className:\"framer-1708a2k\",fonts:[\"Inter\"],id:\"1708a2k\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1igsz8z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq8kzz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f97hOhifz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"position: relative; width: 100%; height: 0; padding-top: 100.0000%;\\n padding-bottom: 0; box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16); margin-top: 1.6em; margin-bottom: 0.9em; overflow: hidden;\\n border-radius: 8px; will-change: transform;\">\\n  <iframe loading=\"lazy\" style=\"position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0;margin: 0;\"\\n    src=\"https://www.canva.com/design/DAGiG_ktEWo/cTtZxHl50pTXe1xTCRuO0g/view?embed\" allowfullscreen=\"allowfullscreen\" allow=\"fullscreen\">\\n  </iframe>\\n</div>\\n<a href=\"https:&#x2F;&#x2F;www.canva.com&#x2F;design&#x2F;DAGiG_ktEWo&#x2F;cTtZxHl50pTXe1xTCRuO0g&#x2F;view?utm_content=DAGiG_ktEWo&amp;utm_campaign=designshare&amp;utm_medium=embeds&amp;utm_source=link\" target=\"_blank\" rel=\"noopener\">Beta Fish : Scene 16</a> by Narratale',id:\"f97hOhifz\",layoutId:\"f97hOhifz\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref40,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref38,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Development\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"My goal is to understand your project's visual, emotional, and thematic language.\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" Together, we'll define a visual identity that aligns with your storytelling objectives.\"})]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Customized mood boards\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", detailed shot lists, and immersive pre-visualizations including custom AI-generated imagery built for your project.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Comprehensive lighting and mood references\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" paired with character lookbooks to guide production design.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"In-depth\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"visual breakdowns of your script and treatment\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\", highlighting key emotional and thematic beats.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Consultation on visual storytelling, symbolism, and color theory\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" to strengthen narrative cohesion.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Strategic identification of visual cornerstones\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" within your story structure and pivotal scene turning points.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tailored recommendations for cameras and lenses\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" optimized to capture your project's unique aesthetic.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"A clear production roadmap\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" with defined milestones to streamline collaboration.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Technical feasibility consultation\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" from camera dept perspective, assessing alignment with budget and resources.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Narrative visual impact analysis\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to heighten audience engagement based on genre and market analysis.\"})]})})]})]}),className:\"framer-1v32d7n hidden-72rtr7 hidden-qzscfl\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId37,ref:ref40,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref39,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pre-Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"This is where we solidify our creative vision. My approach blends my experience with technology, providing robust pre-production support to set your project up for success.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Expert crew recommendations \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"tailored to your project's scale and needs, along with detailed logistical planning.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creation of a comprehensive Style Bible\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", featuring key art, precise scene breakdowns, lighting templates, and shot list examples.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Extensive and immersive location scouting,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" complete with interactive 3D renders for enhanced visual planning.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"lighting simulations and visualizations built in Unreal Engine\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" to preemptively resolve creative and technical challenges.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Collaborative shot planning\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" using interactive digital platforms (Canva, Miro) to facilitate seamless team integration.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Detailed lighting diagrams\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" and consultations with relevant departments to ensure alignment across creative and technical teams.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Comprehensive location analysis\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", emphasizing optimal lighting conditions and ideal shoot timings.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Detailed shot lists and dynamic animatics\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" combining location imagery with AI-enhanced visualization techniques.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Risk assessment and contingency planning\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to proactively manage logistical and creative challenges.\"})]})})]})]}),className:\"framer-17d9097 hidden-72rtr7 hidden-qzscfl\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId38,ref:ref39,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref39,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pre-Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"This is where we solidify our creative vision. My approach blends my experience with technology, providing robust pre-production support to set your project up for success.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Expert crew recommendations \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"tailored to your project's scale and needs, along with detailed logistical planning.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creation of a comprehensive Style Bible\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", featuring key art, precise scene breakdowns, lighting templates, and shot list examples.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Extensive and immersive location scouting,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" complete with interactive 3D renders for enhanced visual planning.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"lighting simulations and visualizations built in Unreal Engine\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" to preemptively resolve creative and technical challenges.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Collaborative shot planning\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" using interactive digital platforms (Canva, Miro) to facilitate seamless team integration.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Detailed lighting diagrams\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" and consultations with relevant departments to ensure alignment across creative and technical teams.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Comprehensive location analysis\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", emphasizing optimal lighting conditions and ideal shoot timings.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Detailed shot lists and dynamic animatics\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" combining location imagery with AI-enhanced visualization techniques.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Risk assessment and contingency planning\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to proactively manage logistical and creative challenges.\"})]})})]})]}),className:\"framer-3iopeg hidden-1fht3sn\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId39,ref:ref41,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref42,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref42,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref37,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nqpjhf\",id:elementId40,ref:ref42,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqp6d3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tp7MAnBvz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://lumalabs.ai/embed/5c559632-2351-4c8d-b81e-3eaab5529121?mode=sparkles&background=%23ffffff&color=%23000000&showTitle=true&loadBg=true&logoPosition=bottom-left&infoPosition=bottom-right&cinematicVideo=undefined&showMenu=false\" width=\"664\" height=\"500\" frameborder=\"0\" title=\"luma embed\" style=\"border: none;\"></iframe>',id:\"tp7MAnBvz\",layoutId:\"tp7MAnBvz\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-33alam\",\"data-styles-preset\":\"FPlJ6EjlF\",style:{\"--framer-text-alignment\":\"center\"},children:\"3d scan form the short film Beta Fish\"})}),className:\"framer-lfkfes\",fonts:[\"Inter\"],id:\"lfkfes\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref37,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Production is execution time \u2014transforming planning into reality. I try to foster a collaborative and inspiring environment for creativity to thrive.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Seasoned, decisive leadership\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" ensuring smooth operations on set.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Proactive creation of creative options\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", maximizing flexibility for directors.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Clear, open, and consistent communication\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" across all departments.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Adaptive problem-solving\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to swiftly navigate on-set challenges.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Commitment to cultivating \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"a supportive and creative environment\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" for directors and talent to flourish.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Emphasis on \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"thoughtful, emotional storytelling\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" through dynamic visual language.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Maintaining an \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"approachable, positive, and professional atmosphere\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" throughout production.\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"On-set efficiency strategies\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" to optimize shooting schedules without sacrificing creative quality.\"})]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1nepgcl hidden-1fht3sn\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId41,ref:ref43,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref44,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Post-Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"I remain actively involved post-production to guarantee your project's visual excellence and cohesive storytelling.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Development of precise \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"grading references\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" for streamlined collaboration with your colorist.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Active participation and \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"detailed feedback during color grading \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"sessions to ensure visual fidelity to our original vision.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Support in marketing efforts,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" leveraging visuals strategically to maximize project impact.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ongoing \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"consultation and adjustments \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"to ensure consistency and quality throughout post-production phases.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Collaboration and guidance for \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"visual effects integration\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", ensuring seamless practical and digital effects.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Archival and future-proofing strategies, including \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"digital storage, file management, and long-term footage accessibility.\"})]})})]})]}),className:\"framer-1ky6ca0 hidden-72rtr7 hidden-qzscfl\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId42,ref:ref44,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref45,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-18y6hp2\",\"data-styles-preset\":\"CyzLJ4gPb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Post-Production\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"I remain actively involved post-production to guarantee your project's visual excellence and cohesive storytelling.\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Development of precise \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"grading references\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" for streamlined collaboration with your colorist.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Active participation and \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"detailed feedback during color grading \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"sessions to ensure visual fidelity to our original vision.\"})]})}),/*#__PURE__*/_jsx(\"li\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Support in marketing efforts,\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" leveraging visuals strategically to maximize project impact.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ongoing \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"consultation and adjustments \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"to ensure consistency and quality throughout post-production phases.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Collaboration and guidance for \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"visual effects integration\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\", ensuring seamless practical and digital effects.\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46a3b889-2dd9-45aa-8318-a60fe2e63f4b, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Archival and future-proofing strategies, including \"})}),/*#__PURE__*/_jsx(\"strong\",{children:\"digital storage, file management, and long-term footage accessibility.\"})]})})]})]}),className:\"framer-1r7qllv hidden-1fht3sn\",fonts:[\"Inter\",\"Inter-Bold\"],id:elementId43,ref:ref45,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2o7lmf hidden-72rtr7 hidden-qzscfl\",\"data-framer-name\":\"Cta Button\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref46,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref30,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j0o1z9\",\"data-framer-name\":\"About\",id:elementId44,ref:ref46,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{viewBox:\"0 0 580 108\"},XfrW6L4qg:{viewBox:\"0 0 580 108\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref47,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",children:\"A short bio\"})}),className:\"framer-o4mjzb\",fonts:[\"Inter\"],id:elementId45,ref:ref47,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f23138\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{verticalAlignment:\"bottom\"},XfrW6L4qg:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref48,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref49,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref48,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 110, 110)\"},children:[\"My filmmaking journey began learning from and assisting visionary directors Jane Campion and John Curran on influential projects like\\xa0\",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"Top of the Lake\"}),\",\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Tracks\"}),\",\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Chappaquiddick\"}),\",\"]}),\" and \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:[\"HBO\u2019s\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"Lewis and Clark\"})]}),\". Collaborating closely with cinematographers Adam Arkapaw, Mandy Walker, and Rob Hardy, I absorbed the delicate craft of visual storytelling\u2014each frame a lesson in the profound magic that lies at the intersection of vision and technique.\"]})}),className:\"framer-roglgy\",fonts:[\"Inter\",\"Inter-Italic\"],id:elementId46,ref:ref48,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref49,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref25,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref49,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref30,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:.01,className:\"framer-1gsgfxn-container\",id:elementId47,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dAqKezYuO\",ref:ref49,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"dAqKezYuO\",layoutId:\"dAqKezYuO\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1280,pixelHeight:1280,pixelWidth:1280,sizes:\"222px\",src:\"https://framerusercontent.com/images/qOyrDxmm7P6iTwU9VOfTOyCpVY.jpg\",srcSet:\"https://framerusercontent.com/images/qOyrDxmm7P6iTwU9VOfTOyCpVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qOyrDxmm7P6iTwU9VOfTOyCpVY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOyrDxmm7P6iTwU9VOfTOyCpVY.jpg 1280w\"},className:\"framer-9hbjw7\",\"data-framer-name\":\"IMG 1260\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/w5SRLeUxIyLLDY2evNgm4AcpmM.jpg\",srcSet:\"https://framerusercontent.com/images/w5SRLeUxIyLLDY2evNgm4AcpmM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w5SRLeUxIyLLDY2evNgm4AcpmM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w5SRLeUxIyLLDY2evNgm4AcpmM.jpg 1920w\"},className:\"framer-ya87ez\",\"data-framer-name\":\"IMG 0075\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/uirlgU6jZ33vJQvEcajRpUpN8.jpg\",srcSet:\"https://framerusercontent.com/images/uirlgU6jZ33vJQvEcajRpUpN8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uirlgU6jZ33vJQvEcajRpUpN8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uirlgU6jZ33vJQvEcajRpUpN8.jpg 1920w\"},className:\"framer-1pnqe62\",\"data-framer-name\":\"IMG 0697\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/zdq2v3Sdydl5VPMw1shEF1yeRA.jpg\",srcSet:\"https://framerusercontent.com/images/zdq2v3Sdydl5VPMw1shEF1yeRA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zdq2v3Sdydl5VPMw1shEF1yeRA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zdq2v3Sdydl5VPMw1shEF1yeRA.jpg 1920w\"},className:\"framer-1qqs572\",\"data-framer-name\":\"IMG 0087\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"210px\",src:\"https://framerusercontent.com/images/Ie0GqAO2efHc8vF2rR3h0PBs.jpg\",srcSet:\"https://framerusercontent.com/images/Ie0GqAO2efHc8vF2rR3h0PBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ie0GqAO2efHc8vF2rR3h0PBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ie0GqAO2efHc8vF2rR3h0PBs.jpg 1920w\"},className:\"framer-4r9ffr\",\"data-framer-name\":\"IMG 0088\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"209px\",src:\"https://framerusercontent.com/images/r26hcXWV24pXCVKB3hGl7QR03o.jpg\",srcSet:\"https://framerusercontent.com/images/r26hcXWV24pXCVKB3hGl7QR03o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/r26hcXWV24pXCVKB3hGl7QR03o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/r26hcXWV24pXCVKB3hGl7QR03o.jpg 1920w\"},className:\"framer-10lylpj\",\"data-framer-name\":\"IMG 0738\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg\",srcSet:\"https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg 1920w\"},className:\"framer-9cgg3e\",\"data-framer-name\":\"IMG 0704\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg\",srcSet:\"https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uxCCQqDKLLwidi9U9EJgMJHWlY.jpg 1920w\"},className:\"framer-9cgg3e\",\"data-framer-name\":\"IMG 0704\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1280,pixelHeight:1280,pixelWidth:1280,sizes:\"139px\",src:\"https://framerusercontent.com/images/vt65WwPk3HOZ0fyv2x0giSfDhX4.jpg\",srcSet:\"https://framerusercontent.com/images/vt65WwPk3HOZ0fyv2x0giSfDhX4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vt65WwPk3HOZ0fyv2x0giSfDhX4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vt65WwPk3HOZ0fyv2x0giSfDhX4.jpg 1280w\"},className:\"framer-10pmnwj\",\"data-framer-name\":\"IMG 0759\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1280,pixelHeight:1280,pixelWidth:1280,sizes:\"139px\",src:\"https://framerusercontent.com/images/3QAqPWdasR6MgmgTGFjGoU4cuyM.jpg\",srcSet:\"https://framerusercontent.com/images/3QAqPWdasR6MgmgTGFjGoU4cuyM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3QAqPWdasR6MgmgTGFjGoU4cuyM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3QAqPWdasR6MgmgTGFjGoU4cuyM.jpg 1280w\"},className:\"framer-1ccar6k\",\"data-framer-name\":\"IMG 0716\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/hzxjglIXpyPaeWdKsDYYGcMxNw.jpg\",srcSet:\"https://framerusercontent.com/images/hzxjglIXpyPaeWdKsDYYGcMxNw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hzxjglIXpyPaeWdKsDYYGcMxNw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hzxjglIXpyPaeWdKsDYYGcMxNw.jpg 1920w\"},className:\"framer-1bw90k\",\"data-framer-name\":\"IMG 0701\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/PLpcwb8YgP23uKi7oSEaNxExo.jpg\",srcSet:\"https://framerusercontent.com/images/PLpcwb8YgP23uKi7oSEaNxExo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PLpcwb8YgP23uKi7oSEaNxExo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PLpcwb8YgP23uKi7oSEaNxExo.jpg 1920w\"},className:\"framer-1ywrqua\",\"data-framer-name\":\"IMG 0084\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/9MO64aKv6JqXmEzRLWA4YhzCA.jpg\",srcSet:\"https://framerusercontent.com/images/9MO64aKv6JqXmEzRLWA4YhzCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9MO64aKv6JqXmEzRLWA4YhzCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9MO64aKv6JqXmEzRLWA4YhzCA.jpg 1920w\"},className:\"framer-1f202fr\",\"data-framer-name\":\"IMG 0089\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"209px\",src:\"https://framerusercontent.com/images/nTwChQDCcf2o0UpNZvo8ygReagE.jpg\",srcSet:\"https://framerusercontent.com/images/nTwChQDCcf2o0UpNZvo8ygReagE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nTwChQDCcf2o0UpNZvo8ygReagE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nTwChQDCcf2o0UpNZvo8ygReagE.jpg 1920w\"},className:\"framer-1v1sswb\",\"data-framer-name\":\"IMG 0766\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/ShS0Md2iuDAukwauKnRmgqHz20.jpg\",srcSet:\"https://framerusercontent.com/images/ShS0Md2iuDAukwauKnRmgqHz20.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ShS0Md2iuDAukwauKnRmgqHz20.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ShS0Md2iuDAukwauKnRmgqHz20.jpg 1920w\"},className:\"framer-lrfki2\",\"data-framer-name\":\"IMG 0728\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2592,intrinsicWidth:1936,pixelHeight:2592,pixelWidth:1936,sizes:\"191px\",src:\"https://framerusercontent.com/images/6diYRd4FnZrGmClccRWMpd5n9Bc.jpg\",srcSet:\"https://framerusercontent.com/images/6diYRd4FnZrGmClccRWMpd5n9Bc.jpg?scale-down-to=1024 764w,https://framerusercontent.com/images/6diYRd4FnZrGmClccRWMpd5n9Bc.jpg?scale-down-to=2048 1529w,https://framerusercontent.com/images/6diYRd4FnZrGmClccRWMpd5n9Bc.jpg 1936w\"},className:\"framer-f4rdx1\",\"data-framer-name\":\"IMG 2443\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/7vnIseHyJCHs7Oq6VOCOrBXMNhc.jpg\",srcSet:\"https://framerusercontent.com/images/7vnIseHyJCHs7Oq6VOCOrBXMNhc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7vnIseHyJCHs7Oq6VOCOrBXMNhc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7vnIseHyJCHs7Oq6VOCOrBXMNhc.jpg 1920w\"},className:\"framer-t4www\",\"data-framer-name\":\"IMG 0090\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/JIEwdgMTIi0yq8gjwk8VCAGN3jQ.jpg\",srcSet:\"https://framerusercontent.com/images/JIEwdgMTIi0yq8gjwk8VCAGN3jQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JIEwdgMTIi0yq8gjwk8VCAGN3jQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JIEwdgMTIi0yq8gjwk8VCAGN3jQ.jpg 1920w\"},className:\"framer-1qq6vkp\",\"data-framer-name\":\"IMG 0774\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg\",srcSet:\"https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg 1920w\"},className:\"framer-yi4wxb\",\"data-framer-name\":\"IMG 0733\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg\",srcSet:\"https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0qNZVNxR0nwj1arKpxm1Bcl1Oo.jpg 1920w\"},className:\"framer-yi4wxb\",\"data-framer-name\":\"IMG 0733\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1936,intrinsicWidth:2592,pixelHeight:1936,pixelWidth:2592,sizes:\"245px\",src:\"https://framerusercontent.com/images/oeRDJxQXH0cSpfht6Paxwbyk.jpg\",srcSet:\"https://framerusercontent.com/images/oeRDJxQXH0cSpfht6Paxwbyk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oeRDJxQXH0cSpfht6Paxwbyk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oeRDJxQXH0cSpfht6Paxwbyk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oeRDJxQXH0cSpfht6Paxwbyk.jpg 2592w\"},className:\"framer-1kpvtb\",\"data-framer-name\":\"IMG 0912\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/S14etkj5suAuLLmZRJ2z3pfcv0.jpg\",srcSet:\"https://framerusercontent.com/images/S14etkj5suAuLLmZRJ2z3pfcv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S14etkj5suAuLLmZRJ2z3pfcv0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/S14etkj5suAuLLmZRJ2z3pfcv0.jpg 1920w\"},className:\"framer-olnjsr\",\"data-framer-name\":\"IMG 0393\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/RGVuzqwFd35Liu04WIbD6FrDJA.jpg\",srcSet:\"https://framerusercontent.com/images/RGVuzqwFd35Liu04WIbD6FrDJA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RGVuzqwFd35Liu04WIbD6FrDJA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RGVuzqwFd35Liu04WIbD6FrDJA.jpg 1920w\"},className:\"framer-5r1kpk\",\"data-framer-name\":\"IMG 0095\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"210px\",src:\"https://framerusercontent.com/images/IkFBUrpjxtrhmEk5m5OwsUhvw9w.jpg\",srcSet:\"https://framerusercontent.com/images/IkFBUrpjxtrhmEk5m5OwsUhvw9w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IkFBUrpjxtrhmEk5m5OwsUhvw9w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IkFBUrpjxtrhmEk5m5OwsUhvw9w.jpg 1920w\"},className:\"framer-1drz5it\",\"data-framer-name\":\"IMG 0072\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/lEhKSTuzsQ1As7v7FtSbEVrNI.jpg\",srcSet:\"https://framerusercontent.com/images/lEhKSTuzsQ1As7v7FtSbEVrNI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lEhKSTuzsQ1As7v7FtSbEVrNI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lEhKSTuzsQ1As7v7FtSbEVrNI.jpg 1920w\"},className:\"framer-gu95a1\",\"data-framer-name\":\"IMG 1222\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/NDDppqMjmwuaxh9UZDsOUVVZpQ.jpg\",srcSet:\"https://framerusercontent.com/images/NDDppqMjmwuaxh9UZDsOUVVZpQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NDDppqMjmwuaxh9UZDsOUVVZpQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDDppqMjmwuaxh9UZDsOUVVZpQ.jpg 1920w\"},className:\"framer-uhpioo\",\"data-framer-name\":\"IMG 1440\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"209px\",src:\"https://framerusercontent.com/images/hRJTFPQWgFzd1CesyHuuTw6syc.jpg\",srcSet:\"https://framerusercontent.com/images/hRJTFPQWgFzd1CesyHuuTw6syc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hRJTFPQWgFzd1CesyHuuTw6syc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hRJTFPQWgFzd1CesyHuuTw6syc.jpg 1920w\"},className:\"framer-1ayotxo\",\"data-framer-name\":\"IMG 0407\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:1920,pixelHeight:1920,pixelWidth:1920,sizes:\"208px\",src:\"https://framerusercontent.com/images/sjXQTCqIVBpTaL7Sdi5vvu2IT3A.jpg\",srcSet:\"https://framerusercontent.com/images/sjXQTCqIVBpTaL7Sdi5vvu2IT3A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sjXQTCqIVBpTaL7Sdi5vvu2IT3A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjXQTCqIVBpTaL7Sdi5vvu2IT3A.jpg 1920w\"},className:\"framer-nui5lk\",\"data-framer-name\":\"IMG 0101\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:\"139px\",y:(componentViewport?.y||0)+0+200+0+16042.25+0+506,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uarzg8-container hidden-1fht3sn\",nodeId:\"B6dERbI0f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XfrW6L4qg:{variant:\"ZTUvY15qg\"}},children:/*#__PURE__*/_jsx(PageWrapperPadding1,{height:\"100%\",id:\"B6dERbI0f\",layoutId:\"B6dERbI0f\",style:{height:\"100%\",width:\"100%\"},variant:\"MAsJj1Ki9\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref30,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xrtbp5\",\"data-framer-name\":\"Lets work together\",id:elementId48,ref:ref30,children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:erincollettfilms@gmail.com\",motionChild:true,nodeId:\"u3nTqtAgu\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-aktnid framer-lux5qc\",id:\"aktnid\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lets work together\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-buq0w4\",\"data-styles-preset\":\"VBO7ISlDB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},XfrW6L4qg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lets work together\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19f89p8\",\"data-styles-preset\":\"kNbyyREyw\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.7,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-s4d9pu\",\"data-styles-preset\":\"t94ZdY5FP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lets work together\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19f89p8\",\"data-styles-preset\":\"kNbyyREyw\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-9znf7i\",fonts:[\"Inter\"],id:elementId49,ref:ref50,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Interested in collaborating or simply exploring some visual ideas together?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\" Let's set up a casual chat or complimentary visual consultation\u2014no strings attached. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"I\u2019m excited to bring your creative vision to life.\"})]}),verticalAlignment:\"bottom\"},XfrW6L4qg:{verticalAlignment:\"center\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"Interested in collaborating or simply exploring some visual ideas together?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\" Let's set up a casual chat or complimentary visual consultation\u2014no strings attached. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cwpo7n\",\"data-styles-preset\":\"zInhp5Um3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c3043347-e55d-4e8f-a620-23399553e32c, rgb(255, 255, 255))\"},children:\"I\u2019m excited to bring your creative vision to life.\"})]}),className:\"framer-h78trp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+200+0+16611.25+0+705,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c0388k-container\",nodeId:\"PQauZB7al\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{b9yKLW66_:\"mailto:erincollettfilms@gmail.com\",H2TRXG61U:true,height:\"100%\",id:\"PQauZB7al\",layoutId:\"PQauZB7al\",tRYYjKr5O:\"Let's connect!\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i14hg1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bTATzLtXR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"bTATzLtXR\",layoutId:\"bTATzLtXR\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1455,intrinsicWidth:1214,pixelHeight:1455,pixelWidth:1214,sizes:\"178px\",src:\"https://framerusercontent.com/images/TB9D4T2cgA92fNPrhlFPSfiXOoc.jpg\",srcSet:\"https://framerusercontent.com/images/TB9D4T2cgA92fNPrhlFPSfiXOoc.jpg?scale-down-to=1024 854w,https://framerusercontent.com/images/TB9D4T2cgA92fNPrhlFPSfiXOoc.jpg 1214w\"},className:\"framer-15qbyag\",\"data-framer-name\":\"IMG 3889\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"305px\",src:\"https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg\",srcSet:\"https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/qxKBxWcQJ3roOJmS7OPCLoNZ0.jpg 6000w\"},className:\"framer-1b7ndp1\",\"data-framer-name\":\"R0009988\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:4480,pixelWidth:6720,sizes:\"305px\",src:\"https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg\",srcSet:\"https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg 6720w\"},className:\"framer-3btgpy\",\"data-framer-name\":\"0L6A9264\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:4480,pixelWidth:6720,sizes:\"305px\",src:\"https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg\",srcSet:\"https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OyDL3JLDTj3PzY0BmhNLoqRDrcQ.jpg 6720w\"},className:\"framer-3btgpy\",\"data-framer-name\":\"0L6A9264\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,pixelHeight:4032,pixelWidth:3024,sizes:\"284px\",src:\"https://framerusercontent.com/images/9Sp5sTa2W6MoQx7UyWrITb5dHs.jpg\",srcSet:\"https://framerusercontent.com/images/9Sp5sTa2W6MoQx7UyWrITb5dHs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/9Sp5sTa2W6MoQx7UyWrITb5dHs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/9Sp5sTa2W6MoQx7UyWrITb5dHs.jpg 3024w\"},className:\"framer-8gz8ka\",\"data-framer-name\":\"IMG 6408\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"297px\",src:\"https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg\",srcSet:\"https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg 6000w\"},className:\"framer-6x1qtw\",\"data-framer-name\":\"R0010010\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"297px\",src:\"https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg\",srcSet:\"https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bFZhkv64sNvCnjRpGnSZ7BwWiFs.jpg 6000w\"},className:\"framer-6x1qtw\",\"data-framer-name\":\"R0010010\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"297px\",src:\"https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg\",srcSet:\"https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OFE7UkfE3VmvkiDyh4YOK8OnRQ.jpg 6240w\"},className:\"framer-1shl0sb\",\"data-framer-name\":\"XE4F3823\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"281px\",src:\"https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg\",srcSet:\"https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/yLWItjWjwsybrQSYcYogVnGqoxo.jpg 6240w\"},className:\"framer-1pojbuo\",\"data-framer-name\":\"XE4F3712\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,sizes:\"277px\",src:\"https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg\",srcSet:\"https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/hnFtWkK1Q8UQTga5g8NV7WG7sA.jpg 6000w\"},className:\"framer-1s6h8eg\",\"data-framer-name\":\"R0009986\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:\"256px\",src:\"https://framerusercontent.com/images/cSZ83GzFrNCCimH7e9kOubD3Yw.jpg\",srcSet:\"https://framerusercontent.com/images/cSZ83GzFrNCCimH7e9kOubD3Yw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cSZ83GzFrNCCimH7e9kOubD3Yw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cSZ83GzFrNCCimH7e9kOubD3Yw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cSZ83GzFrNCCimH7e9kOubD3Yw.jpg 4032w\"},className:\"framer-v89900\",\"data-framer-name\":\"IMG 6368\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"297px\",src:\"https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg\",srcSet:\"https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg 6240w\"},className:\"framer-12uip8y\",\"data-framer-name\":\"XE4F4053\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"297px\",src:\"https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg\",srcSet:\"https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/6mGqaVrUFas6nNtaL4B9wuRqQ.jpg 6240w\"},className:\"framer-12uip8y\",\"data-framer-name\":\"XE4F4053\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"295px\",src:\"https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg\",srcSet:\"https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/lH07P1WvJGqTEVhnLNkPUQ11g.jpg 6240w\"},className:\"framer-l0vc5q\",\"data-framer-name\":\"XE4F4148\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"262px\",src:\"https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg\",srcSet:\"https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1LhJbmjbTW3uhrqfZVzqjEaeug.jpg 6000w\"},className:\"framer-1d0py0a\",\"data-framer-name\":\"R0013515\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,sizes:\"284px\",src:\"https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg\",srcSet:\"https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/hVZklnOI7zHLp3ZyHgjKnszyE0.jpg 6000w\"},className:\"framer-15f0rqg\",\"data-framer-name\":\"R0010051\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"294px\",src:\"https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg\",srcSet:\"https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/MfSeshercY5x9vdlbzS6SpFZg.jpg 6240w\"},className:\"framer-14egyad\",\"data-framer-name\":\"XE4F4508\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"296px\",src:\"https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg\",srcSet:\"https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/QUy8PlztOoVT36mHtS2X4u3ssE.jpg 6240w\"},className:\"framer-ter7i8\",\"data-framer-name\":\"XE4F4149\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"281px\",src:\"https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg\",srcSet:\"https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/wi1XxbhYIhGaYOME1JbXypLMEk.jpg 6000w\"},className:\"framer-110mpva\",\"data-framer-name\":\"R0013786\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"267px\",src:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg\",srcSet:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg 3840w\"},className:\"framer-cldlxy\",\"data-framer-name\":\"IMG 5211\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"267px\",src:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg\",srcSet:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg 3840w\"},className:\"framer-cldlxy\",\"data-framer-name\":\"IMG 5211\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"312px\",src:\"https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg\",srcSet:\"https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/SkOEa9DOkqkvklLKWVYCjvlke0.jpg 6240w\"},className:\"framer-1swo3mm\",\"data-framer-name\":\"XE4F4626\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"297px\",src:\"https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg\",srcSet:\"https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/LDjqXMgdfOb40qsoCZInOOI8qE.jpg 6240w\"},className:\"framer-15hdfvl\",\"data-framer-name\":\"XE4F4862\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"267px\",src:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg\",srcSet:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg 3840w\"},className:\"framer-cldlxy\",\"data-framer-name\":\"IMG 5211\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4352,pixelHeight:3264,pixelWidth:4352,sizes:\"241px\",src:\"https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg\",srcSet:\"https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4NsGbriSyclJtLg6Fk5cwlY.jpg 4352w\"},className:\"framer-xjxu5a\",\"data-framer-name\":\"R0011618\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:4480,pixelWidth:6720,sizes:\"307px\",src:\"https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg\",srcSet:\"https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/aZJLqZM2E2ejZdUZcmaS5BoWY.jpg 6720w\"},className:\"framer-1amfe9v\",\"data-framer-name\":\"0L6A8726\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,pixelHeight:4160,pixelWidth:6240,sizes:\"299px\",src:\"https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg\",srcSet:\"https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZF5sqdMnnt16NnliWEP4yejw.jpg 6240w\"},className:\"framer-1techvs\",\"data-framer-name\":\"XE4F5949\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"267px\",src:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg\",srcSet:\"https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZNsUUmS0qF3zGU2apnDTTwSJQo.jpg 3840w\"},className:\"framer-cldlxy\",\"data-framer-name\":\"IMG 5211\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:3840,pixelHeight:2560,pixelWidth:3840,sizes:\"274px\",src:\"https://framerusercontent.com/images/xd5KMBnSqkeSOlUUNRV9OaZJ0.jpg\",srcSet:\"https://framerusercontent.com/images/xd5KMBnSqkeSOlUUNRV9OaZJ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xd5KMBnSqkeSOlUUNRV9OaZJ0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xd5KMBnSqkeSOlUUNRV9OaZJ0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xd5KMBnSqkeSOlUUNRV9OaZJ0.jpg 3840w\"},className:\"framer-1c3o6uy\",\"data-framer-name\":\"IMG 5219\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:4480,pixelWidth:6720,sizes:\"312px\",src:\"https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg\",srcSet:\"https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zlkJSuHlPScjpPjHg2sAhZ3xc.jpg 6720w\"},className:\"framer-1exrtj4\",\"data-framer-name\":\"0L6A9079\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:\"388px\",src:\"https://framerusercontent.com/images/8dbDRDWyzMkXIqGDCZukNNs3ks.jpg\",srcSet:\"https://framerusercontent.com/images/8dbDRDWyzMkXIqGDCZukNNs3ks.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8dbDRDWyzMkXIqGDCZukNNs3ks.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8dbDRDWyzMkXIqGDCZukNNs3ks.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8dbDRDWyzMkXIqGDCZukNNs3ks.jpg 4032w\"},className:\"framer-cit6hg\",\"data-framer-name\":\"IMG 20180619_152136\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{y:undefined},XfrW6L4qg:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:10,y:(componentViewport?.y||0)+0+200+0+17589.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7fwatu-container\",nodeId:\"PKfC0D3Is\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{variant:\"ZTUvY15qg\"},XfrW6L4qg:{variant:\"ZTUvY15qg\"}},children:/*#__PURE__*/_jsx(PageWrapperPadding1,{height:\"100%\",id:\"PKfC0D3Is\",layoutId:\"PKfC0D3Is\",variant:\"MAsJj1Ki9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-24q84h\",\"data-framer-name\":\"Footer wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{height:125,width:componentViewport?.width||\"100vw\",y:undefined},XfrW6L4qg:{height:115,width:\"808px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:\"1400px\",y:(componentViewport?.y||0)+0+200+0+17599.25+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s87un1-container\",nodeId:\"WfElmGSZ4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ko98DDp3s:{style:{height:\"100%\",width:\"100%\"},variant:\"AuG9w1pea\"},XfrW6L4qg:{style:{height:\"100%\",width:\"100%\"},variant:\"AuG9w1pea\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WfElmGSZ4\",layoutId:\"WfElmGSZ4\",style:{width:\"100%\"},variant:\"ReVZk2wRR\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n1NMR.framer-lux5qc, .framer-n1NMR .framer-lux5qc { display: block; }\",\".framer-n1NMR.framer-72rtr7 { 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: 1400px; }\",\".framer-n1NMR .framer-1ks9ibs-container, .framer-n1NMR .framer-1jv6lf9-container, .framer-n1NMR .framer-1c0388k-container, .framer-n1NMR .framer-7fwatu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-n1NMR .framer-121tak3-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-n1NMR .framer-192z71s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-n1NMR .framer-8lwr0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100.125vh; justify-content: center; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-ieujuj-container { flex: none; height: 100%; position: relative; width: 100%; z-index: 1; }\",\".framer-n1NMR .framer-igq53s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-1627d5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-177hhfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 401px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-bks1ft { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 132px; position: relative; white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-12mkwkb-container { flex: none; height: 429px; position: relative; width: 633px; }\",\".framer-n1NMR .framer-x1392u, .framer-n1NMR .framer-z8p4yo { align-content: center; align-items: center; background-color: #000000; 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: 1408px; }\",\".framer-n1NMR .framer-x3mmzx, .framer-n1NMR .framer-jrbowd, .framer-n1NMR .framer-kdehq5, .framer-n1NMR .framer-1nqpjhf, .framer-n1NMR .framer-xrtbp5 { 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-n1NMR .framer-fm45f3, .framer-n1NMR .framer-drf28i, .framer-n1NMR .framer-17fnjfs { flex: none; height: auto; opacity: 0.55; position: relative; white-space: pre-wrap; width: 1052px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1o49tdu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1081px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1or2izk, .framer-n1NMR .framer-1rfwud8, .framer-n1NMR .framer-axa6rr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1081px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1e7hq3c, .framer-n1NMR .framer-aktnid { 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; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-y5nlgr-container { flex: none; height: 294px; position: relative; width: 854px; }\",\".framer-n1NMR .framer-jbry6g { aspect-ratio: 0.675 / 1; height: var(--framer-aspect-ratio-supported, 249px); overflow: visible; position: relative; width: 168px; }\",\".framer-n1NMR .framer-1it8nn3 { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 187px; }\",\".framer-n1NMR .framer-1lw513x { aspect-ratio: 0.7519929140832595 / 1; height: var(--framer-aspect-ratio-supported, 248px); overflow: visible; position: relative; width: 186px; }\",\".framer-n1NMR .framer-12d9ty0 { aspect-ratio: 0.6755083996463307 / 1; height: var(--framer-aspect-ratio-supported, 253px); overflow: visible; position: relative; width: 171px; }\",\".framer-n1NMR .framer-ij9ris { aspect-ratio: 0.6766519823788546 / 1; height: var(--framer-aspect-ratio-supported, 257px); overflow: visible; position: relative; width: 174px; }\",\".framer-n1NMR .framer-75wwc8 { aspect-ratio: 0.6448430493273543 / 1; height: var(--framer-aspect-ratio-supported, 251px); overflow: visible; position: relative; width: 162px; }\",\".framer-n1NMR .framer-1fprm5f { aspect-ratio: 0.7063492063492064 / 1; height: var(--framer-aspect-ratio-supported, 255px); overflow: visible; position: relative; width: 180px; }\",\".framer-n1NMR .framer-o7wyp9 { aspect-ratio: 0.7076700434153401 / 1; height: var(--framer-aspect-ratio-supported, 255px); overflow: visible; position: relative; width: 180px; }\",\".framer-n1NMR .framer-o8ua4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 425px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-1n2bc3q-container { flex: none; height: 417px; position: relative; width: 777px; }\",\".framer-n1NMR .framer-1084ol9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 128px; position: relative; white-space: pre-wrap; width: 254px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1ilk0lp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 54px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-1yr7too { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: center; overflow: hidden; padding: 19px 0px 19px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-mbt2k8-container { flex: none; height: 369px; position: relative; width: 647px; }\",\".framer-n1NMR .framer-1izq9r7-container { flex: none; height: 161px; position: relative; width: 316px; }\",\".framer-n1NMR .framer-1e7p66g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-19fkl3j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-n1NMR .framer-dssix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 29px 0px 29px 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-10d4mo3-container { flex: none; height: 139px; position: relative; width: 267px; }\",\".framer-n1NMR .framer-myvqx2-container { flex: none; height: 387px; position: relative; width: 689px; }\",\".framer-n1NMR .framer-14hfrek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-1pzz0gs-container { flex: none; height: 361px; position: relative; width: 628px; }\",\".framer-n1NMR .framer-1exn2bp-container { flex: none; height: 139px; position: relative; width: 296px; }\",\".framer-n1NMR .framer-17o01yt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: 361px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-1782awo-container { flex: none; height: 156px; position: relative; width: 384px; }\",\".framer-n1NMR .framer-1ckhr9i-container { flex: none; height: 310px; position: relative; width: 638px; }\",\".framer-n1NMR .framer-1geeu2v { 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: 75px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-1dx6i0f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 149px; position: relative; white-space: pre-wrap; width: 1017px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-kjpxy0, .framer-n1NMR .framer-kz1vkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 61px; justify-content: center; overflow: hidden; padding: 41px 0px 41px 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-16t9ktn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 78px; position: relative; white-space: pre-wrap; width: 1017px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-11a5sj3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 88px; position: relative; white-space: pre-wrap; width: 1017px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1aufkcx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 187px; position: relative; white-space: pre-wrap; width: 1014px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-mhjnj7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 204px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1078px; }\",\".framer-n1NMR .framer-1bcegxy-container { flex: none; height: 100%; position: relative; width: 288px; }\",\".framer-n1NMR .framer-17wsucc-container { flex: none; height: 209px; position: relative; width: 287px; }\",\".framer-n1NMR .framer-1aj8qtn-container { flex: none; height: 100%; position: relative; width: 285px; }\",\".framer-n1NMR .framer-1vpcxux { 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; text-decoration: none; width: 100%; }\",\".framer-n1NMR .framer-1uv992t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1297px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1jwrtwd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 118px; position: relative; white-space: pre-wrap; width: 992px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-18f04f4-container { flex: none; height: 211px; position: relative; width: 897px; }\",\".framer-n1NMR .framer-dm4y6b { aspect-ratio: 1.504326328800989 / 1; height: var(--framer-aspect-ratio-supported, 292px); overflow: visible; position: relative; width: 439px; }\",\".framer-n1NMR .framer-ccvaqa { aspect-ratio: 1.150749063670412 / 1; height: var(--framer-aspect-ratio-supported, 264px); overflow: visible; position: relative; width: 303px; }\",\".framer-n1NMR .framer-nmp1i4 { aspect-ratio: 1.9189189189189189 / 1; height: var(--framer-aspect-ratio-supported, 265px); overflow: visible; position: relative; width: 508px; }\",\".framer-n1NMR .framer-eiem6k { aspect-ratio: 1.2567114093959733 / 1; height: var(--framer-aspect-ratio-supported, 274px); overflow: visible; position: relative; width: 344px; }\",\".framer-n1NMR .framer-1e9j360 { aspect-ratio: 1.7816836262719704 / 1; height: var(--framer-aspect-ratio-supported, 270px); overflow: visible; position: relative; width: 480px; }\",\".framer-n1NMR .framer-1jiy670 { aspect-ratio: 1.8520220588235294 / 1; height: var(--framer-aspect-ratio-supported, 275px); overflow: visible; position: relative; width: 509px; }\",\".framer-n1NMR .framer-khiibm { aspect-ratio: 1.7720588235294117 / 1; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 578px; }\",\".framer-n1NMR .framer-omlu0u { aspect-ratio: 1.7774436090225565 / 1; height: var(--framer-aspect-ratio-supported, 247px); overflow: visible; position: relative; width: 439px; }\",\".framer-n1NMR .framer-1wrv7a9 { aspect-ratio: 1.499267935578331 / 1; height: var(--framer-aspect-ratio-supported, 252px); overflow: visible; position: relative; width: 377px; }\",\".framer-n1NMR .framer-wj79lm { aspect-ratio: 1.1019830028328612 / 1; height: var(--framer-aspect-ratio-supported, 298px); overflow: visible; position: relative; width: 328px; }\",\".framer-n1NMR .framer-xbnrd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 132px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-n1NMR .framer-1ovdv14 { flex: none; height: 146px; opacity: 0.55; position: relative; white-space: pre-wrap; width: 384px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1etuoqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: 455px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1302px; }\",\".framer-n1NMR .framer-9qsmzj-container { flex: none; height: 350px; position: relative; width: 676px; }\",\".framer-n1NMR .framer-18mv2si-container { flex: none; height: 158px; position: relative; width: 331px; }\",\".framer-n1NMR .framer-10vak4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: 382px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1301px; }\",\".framer-n1NMR .framer-11ko3tp-container { flex: none; height: 158px; position: relative; width: 569px; }\",\".framer-n1NMR .framer-jd5iq2-container { flex: none; height: 376px; position: relative; width: 565px; }\",\".framer-n1NMR .framer-15uehjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 453px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1303px; }\",\".framer-n1NMR .framer-9he09c-container { flex: none; height: 401px; position: relative; width: 587px; }\",\".framer-n1NMR .framer-18jghgl-container { flex: none; height: 158px; position: relative; width: 432px; }\",\".framer-n1NMR .framer-wrhx7p { flex: none; height: auto; opacity: 0.55; position: relative; white-space: pre-wrap; width: 1297px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-hns67y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 966px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-17bjug2, .framer-n1NMR .framer-17d9097, .framer-n1NMR .framer-1ky6ca0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-r3hzmg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1343px; justify-content: center; overflow: hidden; padding: 58px 0px 58px 0px; position: relative; width: 1283px; }\",\".framer-n1NMR .framer-1708a2k { flex: none; height: auto; opacity: 0.55; position: relative; white-space: pre-wrap; width: 548px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1igsz8z { flex: none; height: 96%; overflow: hidden; position: relative; width: 921px; }\",\".framer-n1NMR .framer-lq8kzz-container { flex: none; height: 80%; left: -99px; position: absolute; right: -84px; top: calc(51.22463261021696% - 80.1259622113366% / 2); }\",\".framer-n1NMR .framer-1v32d7n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-3iopeg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1025px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-uqp6d3-container { flex: none; height: 457px; position: relative; width: 775px; }\",\".framer-n1NMR .framer-lfkfes { flex: none; height: auto; opacity: 0.55; position: relative; white-space: pre-wrap; width: 364px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1nepgcl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1041px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1r7qllv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1045px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-2o7lmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 82px; justify-content: center; overflow: hidden; padding: 41px 0px 41px 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-j0o1z9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-o4mjzb { flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 871px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-f23138 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1048px; }\",\".framer-n1NMR .framer-roglgy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 149px; position: relative; white-space: pre-wrap; width: 1022px; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-1gsgfxn-container { flex: none; height: 229px; opacity: 0.01; position: relative; width: 1048px; }\",\".framer-n1NMR .framer-9hbjw7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 222px); overflow: visible; position: relative; width: 222px; }\",\".framer-n1NMR .framer-ya87ez, .framer-n1NMR .framer-1pnqe62, .framer-n1NMR .framer-1qqs572, .framer-n1NMR .framer-9cgg3e, .framer-n1NMR .framer-1bw90k, .framer-n1NMR .framer-1ywrqua, .framer-n1NMR .framer-1f202fr, .framer-n1NMR .framer-lrfki2, .framer-n1NMR .framer-t4www, .framer-n1NMR .framer-1qq6vkp, .framer-n1NMR .framer-yi4wxb, .framer-n1NMR .framer-olnjsr, .framer-n1NMR .framer-5r1kpk, .framer-n1NMR .framer-gu95a1, .framer-n1NMR .framer-uhpioo, .framer-n1NMR .framer-nui5lk { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 208px); overflow: visible; position: relative; width: 208px; }\",\".framer-n1NMR .framer-4r9ffr, .framer-n1NMR .framer-1drz5it { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: relative; width: 210px; }\",\".framer-n1NMR .framer-10lylpj, .framer-n1NMR .framer-1v1sswb, .framer-n1NMR .framer-1ayotxo { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 209px); overflow: visible; position: relative; width: 209px; }\",\".framer-n1NMR .framer-10pmnwj, .framer-n1NMR .framer-1ccar6k { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 139px); overflow: visible; position: relative; width: 139px; }\",\".framer-n1NMR .framer-f4rdx1 { aspect-ratio: 0.7469135802469136 / 1; height: var(--framer-aspect-ratio-supported, 256px); overflow: visible; position: relative; width: 191px; }\",\".framer-n1NMR .framer-1kpvtb { aspect-ratio: 1.3388429752066116 / 1; height: var(--framer-aspect-ratio-supported, 183px); overflow: visible; position: relative; width: 245px; }\",\".framer-n1NMR .framer-1uarzg8-container { flex: none; height: 63px; position: relative; width: 139px; }\",\".framer-n1NMR .framer-9znf7i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 225px; opacity: 0.7; position: relative; white-space: pre-wrap; width: 64%; word-break: break-word; word-wrap: break-word; }\",\".framer-n1NMR .framer-h78trp { --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-n1NMR .framer-1i14hg1-container { flex: none; height: 229px; position: relative; width: 1028px; }\",\".framer-n1NMR .framer-15qbyag { aspect-ratio: 0.8343642611683849 / 1; height: var(--framer-aspect-ratio-supported, 214px); overflow: visible; position: relative; width: 178px; }\",\".framer-n1NMR .framer-1b7ndp1, .framer-n1NMR .framer-3btgpy { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 204px); overflow: visible; position: relative; width: 305px; }\",\".framer-n1NMR .framer-8gz8ka { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 379px); overflow: visible; position: relative; width: 284px; }\",\".framer-n1NMR .framer-6x1qtw, .framer-n1NMR .framer-1shl0sb, .framer-n1NMR .framer-12uip8y, .framer-n1NMR .framer-15hdfvl { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 198px); overflow: visible; position: relative; width: 297px; }\",\".framer-n1NMR .framer-1pojbuo { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 188px); overflow: visible; position: relative; width: 281px; }\",\".framer-n1NMR .framer-1s6h8eg { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 416px); overflow: visible; position: relative; width: 277px; }\",\".framer-n1NMR .framer-v89900 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 192px); overflow: visible; position: relative; width: 256px; }\",\".framer-n1NMR .framer-l0vc5q { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 197px); overflow: visible; position: relative; width: 295px; }\",\".framer-n1NMR .framer-1d0py0a { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 175px); overflow: visible; position: relative; width: 262px; }\",\".framer-n1NMR .framer-15f0rqg { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 426px); overflow: visible; position: relative; width: 284px; }\",\".framer-n1NMR .framer-14egyad { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 196px); overflow: visible; position: relative; width: 294px; }\",\".framer-n1NMR .framer-ter7i8 { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 198px); overflow: visible; position: relative; width: 296px; }\",\".framer-n1NMR .framer-110mpva { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 187px); overflow: visible; position: relative; width: 281px; }\",\".framer-n1NMR .framer-cldlxy { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 178px); overflow: visible; position: relative; width: 267px; }\",\".framer-n1NMR .framer-1swo3mm, .framer-n1NMR .framer-1exrtj4 { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 208px); overflow: visible; position: relative; width: 312px; }\",\".framer-n1NMR .framer-xjxu5a { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 181px); overflow: visible; position: relative; width: 241px; }\",\".framer-n1NMR .framer-1amfe9v { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 205px); overflow: visible; position: relative; width: 307px; }\",\".framer-n1NMR .framer-1techvs { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 199px); overflow: visible; position: relative; width: 299px; }\",\".framer-n1NMR .framer-1c3o6uy { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 183px); overflow: visible; position: relative; width: 274px; }\",\".framer-n1NMR .framer-cit6hg { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 291px); overflow: visible; position: relative; width: 388px; }\",\".framer-n1NMR .framer-24q84h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-n1NMR .framer-1s87un1-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-n1NMR.framer-72rtr7, .framer-n1NMR .framer-192z71s, .framer-n1NMR .framer-8lwr0o, .framer-n1NMR .framer-igq53s, .framer-n1NMR .framer-1627d5x, .framer-n1NMR .framer-177hhfn, .framer-n1NMR .framer-x1392u, .framer-n1NMR .framer-x3mmzx, .framer-n1NMR .framer-1e7hq3c, .framer-n1NMR .framer-o8ua4x, .framer-n1NMR .framer-1ilk0lp, .framer-n1NMR .framer-jrbowd, .framer-n1NMR .framer-1yr7too, .framer-n1NMR .framer-1e7p66g, .framer-n1NMR .framer-19fkl3j, .framer-n1NMR .framer-dssix, .framer-n1NMR .framer-14hfrek, .framer-n1NMR .framer-17o01yt, .framer-n1NMR .framer-1geeu2v, .framer-n1NMR .framer-kjpxy0, .framer-n1NMR .framer-kz1vkg, .framer-n1NMR .framer-mhjnj7, .framer-n1NMR .framer-1vpcxux, .framer-n1NMR .framer-z8p4yo, .framer-n1NMR .framer-xbnrd0, .framer-n1NMR .framer-1etuoqm, .framer-n1NMR .framer-10vak4c, .framer-n1NMR .framer-15uehjg, .framer-n1NMR .framer-kdehq5, .framer-n1NMR .framer-r3hzmg, .framer-n1NMR .framer-1nqpjhf, .framer-n1NMR .framer-2o7lmf, .framer-n1NMR .framer-j0o1z9, .framer-n1NMR .framer-f23138, .framer-n1NMR .framer-xrtbp5, .framer-n1NMR .framer-aktnid, .framer-n1NMR .framer-24q84h { gap: 0px; } .framer-n1NMR.framer-72rtr7 > *, .framer-n1NMR .framer-192z71s > *, .framer-n1NMR .framer-8lwr0o > *, .framer-n1NMR .framer-igq53s > *, .framer-n1NMR .framer-1ilk0lp > *, .framer-n1NMR .framer-kjpxy0 > *, .framer-n1NMR .framer-kz1vkg > *, .framer-n1NMR .framer-2o7lmf > *, .framer-n1NMR .framer-j0o1z9 > *, .framer-n1NMR .framer-24q84h > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n1NMR.framer-72rtr7 > :first-child, .framer-n1NMR .framer-192z71s > :first-child, .framer-n1NMR .framer-8lwr0o > :first-child, .framer-n1NMR .framer-igq53s > :first-child, .framer-n1NMR .framer-1627d5x > :first-child, .framer-n1NMR .framer-x1392u > :first-child, .framer-n1NMR .framer-x3mmzx > :first-child, .framer-n1NMR .framer-1ilk0lp > :first-child, .framer-n1NMR .framer-jrbowd > :first-child, .framer-n1NMR .framer-19fkl3j > :first-child, .framer-n1NMR .framer-1geeu2v > :first-child, .framer-n1NMR .framer-kjpxy0 > :first-child, .framer-n1NMR .framer-kz1vkg > :first-child, .framer-n1NMR .framer-1vpcxux > :first-child, .framer-n1NMR .framer-z8p4yo > :first-child, .framer-n1NMR .framer-xbnrd0 > :first-child, .framer-n1NMR .framer-kdehq5 > :first-child, .framer-n1NMR .framer-r3hzmg > :first-child, .framer-n1NMR .framer-1nqpjhf > :first-child, .framer-n1NMR .framer-2o7lmf > :first-child, .framer-n1NMR .framer-j0o1z9 > :first-child, .framer-n1NMR .framer-f23138 > :first-child, .framer-n1NMR .framer-xrtbp5 > :first-child, .framer-n1NMR .framer-24q84h > :first-child { margin-top: 0px; } .framer-n1NMR.framer-72rtr7 > :last-child, .framer-n1NMR .framer-192z71s > :last-child, .framer-n1NMR .framer-8lwr0o > :last-child, .framer-n1NMR .framer-igq53s > :last-child, .framer-n1NMR .framer-1627d5x > :last-child, .framer-n1NMR .framer-x1392u > :last-child, .framer-n1NMR .framer-x3mmzx > :last-child, .framer-n1NMR .framer-1ilk0lp > :last-child, .framer-n1NMR .framer-jrbowd > :last-child, .framer-n1NMR .framer-19fkl3j > :last-child, .framer-n1NMR .framer-1geeu2v > :last-child, .framer-n1NMR .framer-kjpxy0 > :last-child, .framer-n1NMR .framer-kz1vkg > :last-child, .framer-n1NMR .framer-1vpcxux > :last-child, .framer-n1NMR .framer-z8p4yo > :last-child, .framer-n1NMR .framer-xbnrd0 > :last-child, .framer-n1NMR .framer-kdehq5 > :last-child, .framer-n1NMR .framer-r3hzmg > :last-child, .framer-n1NMR .framer-1nqpjhf > :last-child, .framer-n1NMR .framer-2o7lmf > :last-child, .framer-n1NMR .framer-j0o1z9 > :last-child, .framer-n1NMR .framer-f23138 > :last-child, .framer-n1NMR .framer-xrtbp5 > :last-child, .framer-n1NMR .framer-24q84h > :last-child { margin-bottom: 0px; } .framer-n1NMR .framer-1627d5x > *, .framer-n1NMR .framer-x1392u > *, .framer-n1NMR .framer-x3mmzx > *, .framer-n1NMR .framer-jrbowd > *, .framer-n1NMR .framer-19fkl3j > *, .framer-n1NMR .framer-1geeu2v > *, .framer-n1NMR .framer-1vpcxux > *, .framer-n1NMR .framer-z8p4yo > *, .framer-n1NMR .framer-xbnrd0 > *, .framer-n1NMR .framer-kdehq5 > *, .framer-n1NMR .framer-r3hzmg > *, .framer-n1NMR .framer-1nqpjhf > *, .framer-n1NMR .framer-xrtbp5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-n1NMR .framer-177hhfn > *, .framer-n1NMR .framer-o8ua4x > *, .framer-n1NMR .framer-1e7p66g > *, .framer-n1NMR .framer-dssix > *, .framer-n1NMR .framer-14hfrek > *, .framer-n1NMR .framer-15uehjg > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-n1NMR .framer-177hhfn > :first-child, .framer-n1NMR .framer-1e7hq3c > :first-child, .framer-n1NMR .framer-o8ua4x > :first-child, .framer-n1NMR .framer-1yr7too > :first-child, .framer-n1NMR .framer-1e7p66g > :first-child, .framer-n1NMR .framer-dssix > :first-child, .framer-n1NMR .framer-14hfrek > :first-child, .framer-n1NMR .framer-17o01yt > :first-child, .framer-n1NMR .framer-mhjnj7 > :first-child, .framer-n1NMR .framer-1etuoqm > :first-child, .framer-n1NMR .framer-10vak4c > :first-child, .framer-n1NMR .framer-15uehjg > :first-child, .framer-n1NMR .framer-aktnid > :first-child { margin-left: 0px; } .framer-n1NMR .framer-177hhfn > :last-child, .framer-n1NMR .framer-1e7hq3c > :last-child, .framer-n1NMR .framer-o8ua4x > :last-child, .framer-n1NMR .framer-1yr7too > :last-child, .framer-n1NMR .framer-1e7p66g > :last-child, .framer-n1NMR .framer-dssix > :last-child, .framer-n1NMR .framer-14hfrek > :last-child, .framer-n1NMR .framer-17o01yt > :last-child, .framer-n1NMR .framer-mhjnj7 > :last-child, .framer-n1NMR .framer-1etuoqm > :last-child, .framer-n1NMR .framer-10vak4c > :last-child, .framer-n1NMR .framer-15uehjg > :last-child, .framer-n1NMR .framer-aktnid > :last-child { margin-right: 0px; } .framer-n1NMR .framer-1e7hq3c > *, .framer-n1NMR .framer-aktnid > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n1NMR .framer-1yr7too > * { margin: 0px; margin-left: calc(82px / 2); margin-right: calc(82px / 2); } .framer-n1NMR .framer-17o01yt > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-n1NMR .framer-mhjnj7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-n1NMR .framer-1etuoqm > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-n1NMR .framer-10vak4c > * { margin: 0px; margin-left: calc(57px / 2); margin-right: calc(57px / 2); } .framer-n1NMR .framer-f23138 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,\"@media (min-width: 810px) and (max-width: 1399px) { .framer-n1NMR.framer-72rtr7 { width: 810px; } .framer-n1NMR .framer-121tak3-container { height: 60px; } .framer-n1NMR .framer-192z71s { width: 807px; } .framer-n1NMR .framer-8lwr0o { height: 100vh; padding: 80px 0px 0px 0px; } .framer-n1NMR .framer-177hhfn { gap: 0px; height: min-content; order: 0; } .framer-n1NMR .framer-bks1ft { height: 198px; } .framer-n1NMR .framer-12mkwkb-container { height: 302px; width: 458px; } .framer-n1NMR .framer-x1392u { order: 1; } .framer-n1NMR .framer-x3mmzx { padding: 27px 0px 27px 0px; } .framer-n1NMR .framer-fm45f3, .framer-n1NMR .framer-drf28i, .framer-n1NMR .framer-17fnjfs, .framer-n1NMR .framer-wrhx7p, .framer-n1NMR .framer-o4mjzb { white-space: pre; width: 717px; } .framer-n1NMR .framer-1o49tdu { order: 2; width: 646px; } .framer-n1NMR .framer-1or2izk { order: 5; width: 646px; } .framer-n1NMR .framer-1e7hq3c { order: 6; } .framer-n1NMR .framer-1rfwud8 { order: 3; width: 646px; } .framer-n1NMR .framer-axa6rr { order: 4; width: 646px; } .framer-n1NMR .framer-o8ua4x { gap: 23px; height: min-content; order: 7; width: 804px; will-change: var(--framer-will-change-effect-override, transform); } .framer-n1NMR .framer-1n2bc3q-container { height: 303px; width: 415px; } .framer-n1NMR .framer-1ilk0lp { height: 36px; order: 8; } .framer-n1NMR .framer-jrbowd { order: 9; padding: 27px 0px 27px 0px; } .framer-n1NMR .framer-1yr7too { gap: 35px; order: 10; width: 772px; } .framer-n1NMR .framer-mbt2k8-container { height: 216px; width: 395px; } .framer-n1NMR .framer-1e7p66g { gap: 0px; order: 11; width: 772px; } .framer-n1NMR .framer-myvqx2-container { height: 278px; width: 358px; } .framer-n1NMR .framer-14hfrek { gap: 38px; order: 12; width: 772px; } .framer-n1NMR .framer-1pzz0gs-container { height: 319px; width: 457px; } .framer-n1NMR .framer-17o01yt { gap: 0px; height: min-content; order: 13; width: 764px; } .framer-n1NMR .framer-1ckhr9i-container { height: 294px; width: 314px; } .framer-n1NMR .framer-1geeu2v { order: 16; padding: 27px 0px 27px 0px; } .framer-n1NMR .framer-1dx6i0f, .framer-n1NMR .framer-16t9ktn, .framer-n1NMR .framer-11a5sj3, .framer-n1NMR .framer-1aufkcx, .framer-n1NMR .framer-hns67y, .framer-n1NMR .framer-3iopeg, .framer-n1NMR .framer-1nepgcl, .framer-n1NMR .framer-1r7qllv { width: 646px; } .framer-n1NMR .framer-mhjnj7 { width: 809px; } .framer-n1NMR .framer-1bcegxy-container, .framer-n1NMR .framer-17wsucc-container, .framer-n1NMR .framer-1aj8qtn-container { flex: 1 0 0px; width: 1px; } .framer-n1NMR .framer-1vpcxux { order: 14; } .framer-n1NMR .framer-1uv992t { width: 749px; } .framer-n1NMR .framer-1jwrtwd { height: auto; width: 749px; } .framer-n1NMR .framer-18f04f4-container { height: 341px; order: 15; width: 100%; } .framer-n1NMR .framer-1etuoqm { gap: 28px; height: min-content; order: 18; width: 770px; will-change: var(--framer-will-change-effect-override, transform); } .framer-n1NMR .framer-9qsmzj-container { height: 286px; width: 335px; } .framer-n1NMR .framer-10vak4c { flex-direction: column; gap: 0px; height: min-content; order: 19; width: 769px; } .framer-n1NMR .framer-11ko3tp-container { order: 1; width: 614px; } .framer-n1NMR .framer-jd5iq2-container { height: 303px; order: 0; width: 57%; } .framer-n1NMR .framer-15uehjg { gap: 31px; height: min-content; order: 20; width: 100%; } .framer-n1NMR .framer-9he09c-container { height: 308px; width: 360px; } .framer-n1NMR .framer-1708a2k { order: 0; } .framer-n1NMR .framer-1igsz8z { height: 93%; order: 1; width: 849px; } .framer-n1NMR .framer-j0o1z9 { padding: 20px 0px 0px 0px; width: 100%; } .framer-n1NMR .framer-f23138 { gap: 24px; padding: 9px 0px 9px 0px; width: 100%; } .framer-n1NMR .framer-roglgy { height: auto; order: 0; width: 739px; } .framer-n1NMR .framer-1gsgfxn-container { height: 342px; order: 1; width: 100%; } .framer-n1NMR .framer-aktnid { padding: 41px 0px 41px 0px; } .framer-n1NMR .framer-9znf7i { height: 212px; width: 88%; } .framer-n1NMR .framer-1i14hg1-container { height: 342px; width: 100%; } .framer-n1NMR .framer-1s87un1-container { height: 115px; width: 808px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-n1NMR .framer-177hhfn, .framer-n1NMR .framer-o8ua4x, .framer-n1NMR .framer-1yr7too, .framer-n1NMR .framer-1e7p66g, .framer-n1NMR .framer-14hfrek, .framer-n1NMR .framer-17o01yt, .framer-n1NMR .framer-1etuoqm, .framer-n1NMR .framer-10vak4c, .framer-n1NMR .framer-15uehjg, .framer-n1NMR .framer-f23138 { gap: 0px; } .framer-n1NMR .framer-177hhfn > *, .framer-n1NMR .framer-1e7p66g > *, .framer-n1NMR .framer-17o01yt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-n1NMR .framer-177hhfn > :first-child, .framer-n1NMR .framer-o8ua4x > :first-child, .framer-n1NMR .framer-1yr7too > :first-child, .framer-n1NMR .framer-1e7p66g > :first-child, .framer-n1NMR .framer-14hfrek > :first-child, .framer-n1NMR .framer-17o01yt > :first-child, .framer-n1NMR .framer-1etuoqm > :first-child, .framer-n1NMR .framer-15uehjg > :first-child { margin-left: 0px; } .framer-n1NMR .framer-177hhfn > :last-child, .framer-n1NMR .framer-o8ua4x > :last-child, .framer-n1NMR .framer-1yr7too > :last-child, .framer-n1NMR .framer-1e7p66g > :last-child, .framer-n1NMR .framer-14hfrek > :last-child, .framer-n1NMR .framer-17o01yt > :last-child, .framer-n1NMR .framer-1etuoqm > :last-child, .framer-n1NMR .framer-15uehjg > :last-child { margin-right: 0px; } .framer-n1NMR .framer-o8ua4x > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-n1NMR .framer-1yr7too > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-n1NMR .framer-14hfrek > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-n1NMR .framer-1etuoqm > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-n1NMR .framer-10vak4c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n1NMR .framer-10vak4c > :first-child, .framer-n1NMR .framer-f23138 > :first-child { margin-top: 0px; } .framer-n1NMR .framer-10vak4c > :last-child, .framer-n1NMR .framer-f23138 > :last-child { margin-bottom: 0px; } .framer-n1NMR .framer-15uehjg > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-n1NMR .framer-f23138 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-n1NMR.framer-72rtr7, .framer-n1NMR .framer-1627d5x { width: 390px; } .framer-n1NMR .framer-121tak3-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-n1NMR .framer-192z71s, .framer-n1NMR .framer-f23138 { width: 100%; } .framer-n1NMR .framer-8lwr0o { height: min-content; order: 0; padding: 0px; } .framer-n1NMR .framer-ieujuj-container { height: 678px; order: 0; width: 100%; } .framer-n1NMR .framer-igq53s { justify-content: center; order: 1; padding: 3px 0px 3px 0px; } .framer-n1NMR .framer-177hhfn { flex-direction: column; gap: 0px; height: min-content; justify-content: flex-end; order: 0; } .framer-n1NMR .framer-bks1ft { height: 68px; order: 1; width: 392px; } .framer-n1NMR .framer-12mkwkb-container { height: 195px; order: 0; width: 350px; } .framer-n1NMR .framer-x1392u, .framer-n1NMR .framer-10d4mo3-container, .framer-n1NMR .framer-1exn2bp-container, .framer-n1NMR .framer-1782awo-container, .framer-n1NMR .framer-lfkfes { order: 1; } .framer-n1NMR .framer-x3mmzx { gap: 0px; height: 116px; width: 390px; } .framer-n1NMR .framer-fm45f3, .framer-n1NMR .framer-17fnjfs { order: 0; width: 364px; } .framer-n1NMR .framer-1o49tdu { order: 2; width: 350px; } .framer-n1NMR .framer-1or2izk { order: 6; width: 350px; } .framer-n1NMR .framer-1e7hq3c { order: 3; padding: 36px 0px 36px 0px; } .framer-n1NMR .framer-y5nlgr-container { height: 257px; width: 724px; } .framer-n1NMR .framer-1rfwud8 { order: 4; width: 350px; } .framer-n1NMR .framer-axa6rr { order: 5; width: 350px; } .framer-n1NMR .framer-o8ua4x { flex-direction: column; gap: 0px; height: min-content; order: 7; padding: 40px 0px 40px 0px; } .framer-n1NMR .framer-1n2bc3q-container { height: 197px; order: 0; width: 343px; } .framer-n1NMR .framer-1084ol9 { height: 63px; order: 1; width: 159px; } .framer-n1NMR .framer-1ilk0lp { height: 61px; order: 14; padding: 41px 0px 41px 0px; } .framer-n1NMR .framer-jrbowd { gap: 0px; height: 172px; order: 8; width: 390px; } .framer-n1NMR .framer-drf28i { height: 118px; order: 0; width: 364px; } .framer-n1NMR .framer-1yr7too { flex-direction: column; gap: 26px; order: 9; padding: 0px; } .framer-n1NMR .framer-mbt2k8-container { height: 178px; order: 0; width: 352px; } .framer-n1NMR .framer-1izq9r7-container { height: 173px; order: 1; } .framer-n1NMR .framer-1e7p66g { flex-direction: column; gap: 23px; order: 10; padding: 17px 0px 17px 0px; } .framer-n1NMR .framer-19fkl3j { flex: none; order: 0; width: 100%; } .framer-n1NMR .framer-dssix { flex-direction: column; gap: 18px; } .framer-n1NMR .framer-myvqx2-container { height: 199px; order: 0; width: 348px; } .framer-n1NMR .framer-14hfrek { flex-direction: column; gap: 0px; order: 11; } .framer-n1NMR .framer-1pzz0gs-container { height: 193px; order: 0; width: 352px; } .framer-n1NMR .framer-17o01yt { flex-direction: column; gap: 0px; height: min-content; order: 12; padding: 10px 0px 10px 0px; width: 100%; } .framer-n1NMR .framer-1ckhr9i-container { height: 192px; order: 0; width: 91%; } .framer-n1NMR .framer-1geeu2v { gap: 0px; order: 16; width: 390px; } .framer-n1NMR .framer-1dx6i0f { height: auto; order: 1; width: 350px; } .framer-n1NMR .framer-kjpxy0, .framer-n1NMR .framer-kdehq5 { order: 2; } .framer-n1NMR .framer-16t9ktn { height: auto; order: 3; width: 350px; } .framer-n1NMR .framer-11a5sj3 { height: auto; order: 4; width: 350px; } .framer-n1NMR .framer-1aufkcx { height: auto; order: 5; width: 350px; } .framer-n1NMR .framer-kz1vkg, .framer-n1NMR .framer-24q84h { order: 6; } .framer-n1NMR .framer-mhjnj7 { align-content: center; align-items: center; flex-direction: column; height: 807px; order: 7; width: 390px; } .framer-n1NMR .framer-1bcegxy-container { height: 300px; width: 394px; } .framer-n1NMR .framer-17wsucc-container { height: 259px; width: 100%; } .framer-n1NMR .framer-1aj8qtn-container { height: 253px; width: 100%; } .framer-n1NMR .framer-1vpcxux { order: 17; padding: 8px 0px 8px 0px; } .framer-n1NMR .framer-1uv992t { width: 85%; } .framer-n1NMR .framer-1jwrtwd { height: auto; width: 85%; } .framer-n1NMR .framer-18f04f4-container { order: 15; } .framer-n1NMR .framer-z8p4yo { order: 13; } .framer-n1NMR .framer-xbnrd0 { gap: 0px; order: 0; } .framer-n1NMR .framer-1ovdv14 { order: 0; } .framer-n1NMR .framer-1etuoqm { flex-direction: column; gap: 10px; height: min-content; order: 18; padding: 7px 0px 7px 0px; width: 100%; } .framer-n1NMR .framer-9qsmzj-container { height: 210px; order: 0; width: 349px; } .framer-n1NMR .framer-18mv2si-container { order: 1; width: 355px; } .framer-n1NMR .framer-10vak4c { flex-direction: column; gap: 0px; height: 390px; justify-content: flex-start; order: 20; width: 389px; } .framer-n1NMR .framer-11ko3tp-container, .framer-n1NMR .framer-18jghgl-container { order: 1; width: 381px; } .framer-n1NMR .framer-jd5iq2-container { height: 235px; order: 0; width: 348px; } .framer-n1NMR .framer-15uehjg { flex-direction: column; gap: 0px; height: min-content; order: 19; width: 100%; } .framer-n1NMR .framer-9he09c-container { height: 229px; order: 0; width: 353px; } .framer-n1NMR .framer-r3hzmg { gap: 21px; height: 840px; width: 430px; } .framer-n1NMR .framer-1igsz8z { height: 70%; width: 823px; } .framer-n1NMR .framer-lq8kzz-container { height: 70%; left: calc(48.602673147023104% - 506px / 2); right: unset; top: calc(51.90972222222224% - 69.96527777777779% / 2); width: 506px; } .framer-n1NMR .framer-1nqpjhf { height: 346px; padding: 58px 0px 58px 0px; width: 390px; } .framer-n1NMR .framer-uqp6d3-container { height: 192px; order: 0; width: 394px; } .framer-n1NMR .framer-j0o1z9 { align-content: flex-end; align-items: flex-end; justify-content: flex-end; order: 3; padding: 55px 0px 0px 0px; } .framer-n1NMR .framer-o4mjzb { white-space: pre; width: 100%; } .framer-n1NMR .framer-roglgy { height: auto; width: 86%; } .framer-n1NMR .framer-xrtbp5 { order: 4; } .framer-n1NMR .framer-aktnid { padding: 20px 0px 20px 0px; } .framer-n1NMR .framer-9znf7i { height: 142px; width: 90%; } .framer-n1NMR .framer-h78trp { width: 83%; } .framer-n1NMR .framer-7fwatu-container { order: 5; } .framer-n1NMR .framer-1s87un1-container { height: 125px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-n1NMR .framer-177hhfn, .framer-n1NMR .framer-x3mmzx, .framer-n1NMR .framer-o8ua4x, .framer-n1NMR .framer-jrbowd, .framer-n1NMR .framer-1yr7too, .framer-n1NMR .framer-1e7p66g, .framer-n1NMR .framer-dssix, .framer-n1NMR .framer-14hfrek, .framer-n1NMR .framer-17o01yt, .framer-n1NMR .framer-1geeu2v, .framer-n1NMR .framer-mhjnj7, .framer-n1NMR .framer-xbnrd0, .framer-n1NMR .framer-1etuoqm, .framer-n1NMR .framer-10vak4c, .framer-n1NMR .framer-15uehjg, .framer-n1NMR .framer-r3hzmg { gap: 0px; } .framer-n1NMR .framer-177hhfn > *, .framer-n1NMR .framer-x3mmzx > *, .framer-n1NMR .framer-o8ua4x > *, .framer-n1NMR .framer-jrbowd > *, .framer-n1NMR .framer-14hfrek > *, .framer-n1NMR .framer-17o01yt > *, .framer-n1NMR .framer-1geeu2v > *, .framer-n1NMR .framer-mhjnj7 > *, .framer-n1NMR .framer-xbnrd0 > *, .framer-n1NMR .framer-10vak4c > *, .framer-n1NMR .framer-15uehjg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n1NMR .framer-177hhfn > :first-child, .framer-n1NMR .framer-x3mmzx > :first-child, .framer-n1NMR .framer-o8ua4x > :first-child, .framer-n1NMR .framer-jrbowd > :first-child, .framer-n1NMR .framer-1yr7too > :first-child, .framer-n1NMR .framer-1e7p66g > :first-child, .framer-n1NMR .framer-dssix > :first-child, .framer-n1NMR .framer-14hfrek > :first-child, .framer-n1NMR .framer-17o01yt > :first-child, .framer-n1NMR .framer-1geeu2v > :first-child, .framer-n1NMR .framer-mhjnj7 > :first-child, .framer-n1NMR .framer-xbnrd0 > :first-child, .framer-n1NMR .framer-1etuoqm > :first-child, .framer-n1NMR .framer-10vak4c > :first-child, .framer-n1NMR .framer-15uehjg > :first-child, .framer-n1NMR .framer-r3hzmg > :first-child { margin-top: 0px; } .framer-n1NMR .framer-177hhfn > :last-child, .framer-n1NMR .framer-x3mmzx > :last-child, .framer-n1NMR .framer-o8ua4x > :last-child, .framer-n1NMR .framer-jrbowd > :last-child, .framer-n1NMR .framer-1yr7too > :last-child, .framer-n1NMR .framer-1e7p66g > :last-child, .framer-n1NMR .framer-dssix > :last-child, .framer-n1NMR .framer-14hfrek > :last-child, .framer-n1NMR .framer-17o01yt > :last-child, .framer-n1NMR .framer-1geeu2v > :last-child, .framer-n1NMR .framer-mhjnj7 > :last-child, .framer-n1NMR .framer-xbnrd0 > :last-child, .framer-n1NMR .framer-1etuoqm > :last-child, .framer-n1NMR .framer-10vak4c > :last-child, .framer-n1NMR .framer-15uehjg > :last-child, .framer-n1NMR .framer-r3hzmg > :last-child { margin-bottom: 0px; } .framer-n1NMR .framer-1yr7too > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-n1NMR .framer-1e7p66g > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-n1NMR .framer-dssix > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-n1NMR .framer-1etuoqm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-n1NMR .framer-r3hzmg > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12624\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XfrW6L4qg\":{\"layout\":[\"fixed\",\"auto\"]},\"Ko98DDp3s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"tVfxM62W3\":{\"pattern\":\":tVfxM62W3\",\"name\":\"hero\"},\"UvHArxetG\":{\"pattern\":\":UvHArxetG\",\"name\":\"works\"},\"Dco9MfE7N\":{\"pattern\":\":Dco9MfE7N\",\"name\":\"commercial-reel\"},\"iA4MbzHCn\":{\"pattern\":\":iA4MbzHCn\",\"name\":\"the-why\"},\"ux72z83Ry\":{\"pattern\":\":ux72z83Ry\",\"name\":\"the-why\"},\"oVKP3YjGk\":{\"pattern\":\":oVKP3YjGk\",\"name\":\"cinemtaography-has\"},\"zewrlTm3v\":{\"pattern\":\":zewrlTm3v\",\"name\":\"your-project\"},\"aHkaU_qGI\":{\"pattern\":\":aHkaU_qGI\",\"name\":\"carousel-posters\"},\"YQQz847mR\":{\"pattern\":\":YQQz847mR\",\"name\":\"when-we-collab\"},\"EgJi17U85\":{\"pattern\":\":EgJi17U85\",\"name\":\"creative-problem\"},\"Ys36cTO51\":{\"pattern\":\":Ys36cTO51\",\"name\":\"narrative-reel\"},\"pVMzS1Sv_\":{\"pattern\":\":pVMzS1Sv_\",\"name\":\"featured-work\"},\"MBozDvGHE\":{\"pattern\":\":MBozDvGHE\",\"name\":\"featured-work\"},\"mUg9NsqlJ\":{\"pattern\":\":mUg9NsqlJ\",\"name\":\"exceptionaleveryday\"},\"H1HtrwmTA\":{\"pattern\":\":H1HtrwmTA\",\"name\":\"queer-summer\"},\"ZQ6VCINWR\":{\"pattern\":\":ZQ6VCINWR\",\"name\":\"almost-invisible\"},\"htIbUke8d\":{\"pattern\":\":htIbUke8d\",\"name\":\"eden\"},\"D7med5GW3\":{\"pattern\":\":D7med5GW3\",\"name\":\"style\"},\"Vw7aFLXxj\":{\"pattern\":\":Vw7aFLXxj\",\"name\":\"\"},\"SDvGT4ctL\":{\"pattern\":\":SDvGT4ctL\",\"name\":\"my-visual-style\"},\"IOOq0_ozI\":{\"pattern\":\":IOOq0_ozI\",\"name\":\"in-my-personal\"},\"vExnC0EIX\":{\"pattern\":\":vExnC0EIX\",\"name\":\"flexibility-is-essential\"},\"DtP58chv7\":{\"pattern\":\":DtP58chv7\",\"name\":\"i-draw-inspiration\"},\"YLyQvKZRl\":{\"pattern\":\":YLyQvKZRl\",\"name\":\"insta-stack\"},\"sTU48F99K\":{\"pattern\":\":sTU48F99K\",\"name\":\"documentaries\"},\"Cod3okvct\":{\"pattern\":\":Cod3okvct\",\"name\":\"highlights-awards\"},\"gbu2cU7Cy\":{\"pattern\":\":gbu2cU7Cy\",\"name\":\"career-highlights\"},\"VeKWHE38N\":{\"pattern\":\":VeKWHE38N\",\"name\":\"bts-carousel\"},\"Ylypu9wZV\":{\"pattern\":\":Ylypu9wZV\",\"name\":\"the-process\"},\"ABW1SxGcq\":{\"pattern\":\":ABW1SxGcq\",\"name\":\"\"},\"UYd5iwSmD\":{\"pattern\":\":UYd5iwSmD\",\"name\":\"minted\"},\"pueQWnrBL\":{\"pattern\":\":pueQWnrBL\",\"name\":\"lifeline\"},\"hfBVOzjDO\":{\"pattern\":\":hfBVOzjDO\",\"name\":\"not-going-quietly\"},\"U4dAZI7a7\":{\"pattern\":\":U4dAZI7a7\",\"name\":\"the-process\"},\"cu7alJeMD\":{\"pattern\":\":cu7alJeMD\",\"name\":\"development\"},\"kpSMl_rur\":{\"pattern\":\":kpSMl_rur\",\"name\":\"production\"},\"q78Ou55Qr\":{\"pattern\":\":q78Ou55Qr\",\"name\":\"canva\"},\"KyRnP1NbT\":{\"pattern\":\":KyRnP1NbT\",\"name\":\"development\"},\"sBmmR28tS\":{\"pattern\":\":sBmmR28tS\",\"name\":\"pre-production\"},\"tGsvNM87W\":{\"pattern\":\":tGsvNM87W\",\"name\":\"development\"},\"QlhDpqAgC\":{\"pattern\":\":QlhDpqAgC\",\"name\":\"3d-scan\"},\"YIToH42ME\":{\"pattern\":\":YIToH42ME\",\"name\":\"development\"},\"TlSMrZu5v\":{\"pattern\":\":TlSMrZu5v\",\"name\":\"post-production\"},\"V0JqvDGes\":{\"pattern\":\":V0JqvDGes\",\"name\":\"post-production\"},\"LO2X9j0MG\":{\"pattern\":\":LO2X9j0MG\",\"name\":\"about\"},\"J3339KQLl\":{\"pattern\":\":J3339KQLl\",\"name\":\"a-short-bio\"},\"KO0c1D2ba\":{\"pattern\":\":KO0c1D2ba\",\"name\":\"my-filmmaking-journey\"},\"dAqKezYuO\":{\"pattern\":\":dAqKezYuO\",\"name\":\"bts-tracks\"},\"ITc6yYdOq\":{\"pattern\":\":ITc6yYdOq\",\"name\":\"lets-work-together\"},\"dTTtQy9Bk\":{\"pattern\":\":dTTtQy9Bk\",\"name\":\"lets-work-together\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-n1NMR\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12624,width:1400};addFonts(FrameraugiA20Il,[{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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]},...SmoothScrollFonts,...HeaderFonts,...HomeHeroImageFonts,...PageWrapperPaddingFonts,...VimeoFonts,...TickerFonts,...TitleStackComponentFonts,...InstagramFonts,...EmbedFonts,...PageWrapperPadding1Fonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"tVfxM62W3\\\":{\\\"pattern\\\":\\\":tVfxM62W3\\\",\\\"name\\\":\\\"hero\\\"},\\\"UvHArxetG\\\":{\\\"pattern\\\":\\\":UvHArxetG\\\",\\\"name\\\":\\\"works\\\"},\\\"Dco9MfE7N\\\":{\\\"pattern\\\":\\\":Dco9MfE7N\\\",\\\"name\\\":\\\"commercial-reel\\\"},\\\"iA4MbzHCn\\\":{\\\"pattern\\\":\\\":iA4MbzHCn\\\",\\\"name\\\":\\\"the-why\\\"},\\\"ux72z83Ry\\\":{\\\"pattern\\\":\\\":ux72z83Ry\\\",\\\"name\\\":\\\"the-why\\\"},\\\"oVKP3YjGk\\\":{\\\"pattern\\\":\\\":oVKP3YjGk\\\",\\\"name\\\":\\\"cinemtaography-has\\\"},\\\"zewrlTm3v\\\":{\\\"pattern\\\":\\\":zewrlTm3v\\\",\\\"name\\\":\\\"your-project\\\"},\\\"aHkaU_qGI\\\":{\\\"pattern\\\":\\\":aHkaU_qGI\\\",\\\"name\\\":\\\"carousel-posters\\\"},\\\"YQQz847mR\\\":{\\\"pattern\\\":\\\":YQQz847mR\\\",\\\"name\\\":\\\"when-we-collab\\\"},\\\"EgJi17U85\\\":{\\\"pattern\\\":\\\":EgJi17U85\\\",\\\"name\\\":\\\"creative-problem\\\"},\\\"Ys36cTO51\\\":{\\\"pattern\\\":\\\":Ys36cTO51\\\",\\\"name\\\":\\\"narrative-reel\\\"},\\\"pVMzS1Sv_\\\":{\\\"pattern\\\":\\\":pVMzS1Sv_\\\",\\\"name\\\":\\\"featured-work\\\"},\\\"MBozDvGHE\\\":{\\\"pattern\\\":\\\":MBozDvGHE\\\",\\\"name\\\":\\\"featured-work\\\"},\\\"mUg9NsqlJ\\\":{\\\"pattern\\\":\\\":mUg9NsqlJ\\\",\\\"name\\\":\\\"exceptionaleveryday\\\"},\\\"H1HtrwmTA\\\":{\\\"pattern\\\":\\\":H1HtrwmTA\\\",\\\"name\\\":\\\"queer-summer\\\"},\\\"ZQ6VCINWR\\\":{\\\"pattern\\\":\\\":ZQ6VCINWR\\\",\\\"name\\\":\\\"almost-invisible\\\"},\\\"htIbUke8d\\\":{\\\"pattern\\\":\\\":htIbUke8d\\\",\\\"name\\\":\\\"eden\\\"},\\\"D7med5GW3\\\":{\\\"pattern\\\":\\\":D7med5GW3\\\",\\\"name\\\":\\\"style\\\"},\\\"Vw7aFLXxj\\\":{\\\"pattern\\\":\\\":Vw7aFLXxj\\\",\\\"name\\\":\\\"\\\"},\\\"SDvGT4ctL\\\":{\\\"pattern\\\":\\\":SDvGT4ctL\\\",\\\"name\\\":\\\"my-visual-style\\\"},\\\"IOOq0_ozI\\\":{\\\"pattern\\\":\\\":IOOq0_ozI\\\",\\\"name\\\":\\\"in-my-personal\\\"},\\\"vExnC0EIX\\\":{\\\"pattern\\\":\\\":vExnC0EIX\\\",\\\"name\\\":\\\"flexibility-is-essential\\\"},\\\"DtP58chv7\\\":{\\\"pattern\\\":\\\":DtP58chv7\\\",\\\"name\\\":\\\"i-draw-inspiration\\\"},\\\"YLyQvKZRl\\\":{\\\"pattern\\\":\\\":YLyQvKZRl\\\",\\\"name\\\":\\\"insta-stack\\\"},\\\"sTU48F99K\\\":{\\\"pattern\\\":\\\":sTU48F99K\\\",\\\"name\\\":\\\"documentaries\\\"},\\\"Cod3okvct\\\":{\\\"pattern\\\":\\\":Cod3okvct\\\",\\\"name\\\":\\\"highlights-awards\\\"},\\\"gbu2cU7Cy\\\":{\\\"pattern\\\":\\\":gbu2cU7Cy\\\",\\\"name\\\":\\\"career-highlights\\\"},\\\"VeKWHE38N\\\":{\\\"pattern\\\":\\\":VeKWHE38N\\\",\\\"name\\\":\\\"bts-carousel\\\"},\\\"Ylypu9wZV\\\":{\\\"pattern\\\":\\\":Ylypu9wZV\\\",\\\"name\\\":\\\"the-process\\\"},\\\"ABW1SxGcq\\\":{\\\"pattern\\\":\\\":ABW1SxGcq\\\",\\\"name\\\":\\\"\\\"},\\\"UYd5iwSmD\\\":{\\\"pattern\\\":\\\":UYd5iwSmD\\\",\\\"name\\\":\\\"minted\\\"},\\\"pueQWnrBL\\\":{\\\"pattern\\\":\\\":pueQWnrBL\\\",\\\"name\\\":\\\"lifeline\\\"},\\\"hfBVOzjDO\\\":{\\\"pattern\\\":\\\":hfBVOzjDO\\\",\\\"name\\\":\\\"not-going-quietly\\\"},\\\"U4dAZI7a7\\\":{\\\"pattern\\\":\\\":U4dAZI7a7\\\",\\\"name\\\":\\\"the-process\\\"},\\\"cu7alJeMD\\\":{\\\"pattern\\\":\\\":cu7alJeMD\\\",\\\"name\\\":\\\"development\\\"},\\\"kpSMl_rur\\\":{\\\"pattern\\\":\\\":kpSMl_rur\\\",\\\"name\\\":\\\"production\\\"},\\\"q78Ou55Qr\\\":{\\\"pattern\\\":\\\":q78Ou55Qr\\\",\\\"name\\\":\\\"canva\\\"},\\\"KyRnP1NbT\\\":{\\\"pattern\\\":\\\":KyRnP1NbT\\\",\\\"name\\\":\\\"development\\\"},\\\"sBmmR28tS\\\":{\\\"pattern\\\":\\\":sBmmR28tS\\\",\\\"name\\\":\\\"pre-production\\\"},\\\"tGsvNM87W\\\":{\\\"pattern\\\":\\\":tGsvNM87W\\\",\\\"name\\\":\\\"development\\\"},\\\"QlhDpqAgC\\\":{\\\"pattern\\\":\\\":QlhDpqAgC\\\",\\\"name\\\":\\\"3d-scan\\\"},\\\"YIToH42ME\\\":{\\\"pattern\\\":\\\":YIToH42ME\\\",\\\"name\\\":\\\"development\\\"},\\\"TlSMrZu5v\\\":{\\\"pattern\\\":\\\":TlSMrZu5v\\\",\\\"name\\\":\\\"post-production\\\"},\\\"V0JqvDGes\\\":{\\\"pattern\\\":\\\":V0JqvDGes\\\",\\\"name\\\":\\\"post-production\\\"},\\\"LO2X9j0MG\\\":{\\\"pattern\\\":\\\":LO2X9j0MG\\\",\\\"name\\\":\\\"about\\\"},\\\"J3339KQLl\\\":{\\\"pattern\\\":\\\":J3339KQLl\\\",\\\"name\\\":\\\"a-short-bio\\\"},\\\"KO0c1D2ba\\\":{\\\"pattern\\\":\\\":KO0c1D2ba\\\",\\\"name\\\":\\\"my-filmmaking-journey\\\"},\\\"dAqKezYuO\\\":{\\\"pattern\\\":\\\":dAqKezYuO\\\",\\\"name\\\":\\\"bts-tracks\\\"},\\\"ITc6yYdOq\\\":{\\\"pattern\\\":\\\":ITc6yYdOq\\\",\\\"name\\\":\\\"lets-work-together\\\"},\\\"dTTtQy9Bk\\\":{\\\"pattern\\\":\\\":dTTtQy9Bk\\\",\\\"name\\\":\\\"lets-work-together\\\"}}\",\"framerIntrinsicHeight\":\"12624\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XfrW6L4qg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ko98DDp3s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "clamp", "t", "i", "e", "Animate", "s", "o", "n", "l", "Dimensions", "window", "Emitter", "VirtualScroll", "r", "h", "Lenis", "a", "c", "d", "u", "p", "m", "v", "g", "w", "S", "f", "SmoothScrollComponent", "props", "intensity", "lenis", "pe", "ue", "error", "checkForStopScroll", "stopScrollElement", "htmlElement", "hasHiddenOverflow", "stopScrollObserver", "htmlStyleObserver", "allElements", "i", "element", "computedStyle", "window", "styleError", "Lenis", "raf", "time", "animationId", "anchorLinksData", "anchor", "isInternalLink", "hasHash", "anchorElement", "href", "decodedHref", "scrollMargin", "targetElement", "marginStyle", "targetError", "anchorError", "handleClick", "e", "handlers", "index", "p", "SmoothScroll", "withCSS", "SmoothScroll_Prod_default", "addPropertyControls", "ControlType", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "SettingsMessage", "title", "description", "containerStyle", "u", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "useImagePreloader", "imageUrls", "imagesPreloaded", "setImagesPreloaded", "ye", "ue", "isMounted", "imagePromises", "url", "resolve", "reject", "img", "error", "CursorImageTrail", "images", "style", "frequency", "visibleFor", "perspective", "animation", "props", "threshold", "mousePos", "setMousePos", "isHovering", "setIsHovering", "currentImageIndex", "setCurrentImageIndex", "activeImages", "setActiveImages", "isInViewport", "setIsInViewport", "componentRef", "pe", "observer", "entry", "handleMouseMove", "event", "rect", "x", "y", "handleMouseEnter", "handleMouseLeave", "lastImage", "newImage", "prev", "p", "SettingsMessage", "Frame", "AnimatePresence", "id", "position", "state", "_images_position", "motion", "addPropertyControls", "ControlType", "Image", "props", "image", "alt", "radius", "padding", "link", "newTab", "style", "borderOptions", "shadowOptions", "wrapperStyle", "borderAndShadow", "imageStyle", "shadowStyle", "imageSource", "u", "p", "addPropertyControls", "ControlType", "ImageFonts", "getFonts", "Image", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "addImageAlt", "image", "alt", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition4", "transition5", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearlmbh3w", "args", "onAppear1a24evx", "onAppear1scqcn9", "onAppearecm6zv", "onAppear1f75nza", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramergvFhFWijk", "withCSS", "gvFhFWijk_default", "addPropertyControls", "ControlType", "addFonts", "CursorImageTrailFonts", "getFonts", "CursorImageTrail", "PageWrapperPaddingFonts", "h4a7dWxv8_default", "LogoFonts", "gvFhFWijk_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1kss8zw", "args", "onAppearhceduy", "onAppear1nonlnd", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerhavcw67HW", "withCSS", "havcw67HW_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "HeaderFonts", "qzJw0x7Z2_default", "ContainerWithFX", "withFX", "Container", "HomeHeroImageFonts", "havcw67HW_default", "PageWrapperPaddingFonts", "h4a7dWxv8_default", "VimeoFonts", "Vimeo_default", "MotionAWithFX", "motion", "MotionDivWithFX", "RichTextWithFX", "RichText2", "TickerFonts", "Ticker", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "TitleStackComponentFonts", "IgvHq5Qdp_default", "InstagramFonts", "Instagram", "EmbedFonts", "Embed", "PageWrapperPadding1Fonts", "CTAFonts", "wFewXqNUs_default", "FooterFonts", "FzGxIX_0w_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "animation2", "animation3", "animation4", "transition2", "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", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "ref3", "ref4", "elementId2", "ref5", "elementId3", "ref6", "elementId4", "ref7", "ref8", "elementId5", "ref9", "elementId6", "elementId7", "ref10", "ref11", "elementId8", "ref12", "elementId9", "elementId10", "elementId11", "elementId12", "ref13", "ref14", "ref15", "elementId13", "ref16", "elementId14", "ref17", "elementId15", "ref18", "elementId16", "elementId17", "elementId18", "ref19", "ref20", "elementId19", "isDisplayed", "ref21", "elementId20", "ref22", "elementId21", "ref23", "elementId22", "ref24", "ref25", "elementId23", "ref26", "elementId24", "elementId25", "ref27", "ref28", "elementId26", "ref29", "elementId27", "ref30", "elementId28", "ref31", "ref32", "elementId29", "ref33", "ref34", "elementId30", "ref35", "elementId31", "elementId32", "isDisplayed1", "elementId33", "ref36", "elementId34", "ref37", "elementId35", "ref38", "ref39", "elementId36", "ref40", "elementId37", "elementId38", "elementId39", "ref41", "ref42", "elementId40", "elementId41", "ref43", "ref44", "elementId42", "ref45", "elementId43", "ref46", "elementId44", "ref47", "elementId45", "ref48", "elementId46", "ref49", "elementId47", "elementId48", "elementId49", "ref50", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Link", "x", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
