{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vHMQZCcJrnOKXcATR7kG/TwwW05uYUGBC2kmzGt5R/Main.js", "ssg:https://framerusercontent.com/modules/5qG7xm8FYKGOq1JnHAO0/77bpb8PNyqf50Q9eF64U/Parallax.js", "ssg:https://framerusercontent.com/modules/ijb2Dr6htRAUWIddUudD/K6yrSfFoM9b4BIR1rkLC/DUK5Ru5Ch.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{useViewportScroll,useTransform,useScroll}from\"framer-motion\";export function loader(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{opacity:0},transition:{opacity:{delay:1.45,duration:.35}}});};}export function innerLoader(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{opacity:0},transition:{opacity:{delay:.25,duration:.35}}});};}export function slidesExit(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{y:50},transition:{delay:1.15,ease:\"eaeeIn\",duration:.4}});};}export function footerParallax(Component){return props=>{const[scrollPosition,setScrollPosition]=useState(0);const componentRef=useRef(null);useEffect(()=>{const handleScroll=()=>{const{top,bottom}=componentRef.current.getBoundingClientRect();const{innerHeight}=window;// Calculate the scroll progress from 0 to 1\nconst progress=Math.max(0,Math.min((innerHeight-top)/(innerHeight+bottom),1));// Update the scroll position state\nsetScrollPosition(progress);};// Attach the scroll event listener\nwindow.addEventListener(\"scroll\",handleScroll);return()=>{// Detach the scroll event listener on component unmount\nwindow.removeEventListener(\"scroll\",handleScroll);};},[]);return /*#__PURE__*/ _jsx(\"div\",{ref:componentRef,children:/*#__PURE__*/ _jsx(Component,{...props,animate:{y:`calc(${scrollPosition*50}% - 50%)`}})});};}export function agencyExit(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,animate:{y:-50},transition:{delay:1.15,ease:\"eaeeIn\",duration:.4}});};}export function useParallax(Component){return props=>{let ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"start end\",\"end start\"]});const y=useTransform(scrollYProgress,[0,1],[\"0%\",\"40%\"]);return /*#__PURE__*/ _jsx(Component,{...props,ref:ref,style:{y:y,willChange:\"transform\"}});};}export function willChange(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,style:{willChange:\"transform\"}});};}export function showNav(Component){return props=>{const{scrollY}=useViewportScroll();const[hidden,setHidden]=useState(true);const[scrolled,setScrolled]=useState(false);const[windowWidth,setWindowWidth]=useState(0);const{scrollYProgress}=useScroll();const y=useTransform(scrollYProgress,[0,1],[1,100]);/** this onUpdate function will be called in the `scrollY.onChange` callback **/ function update(){const windowHeight=window.innerHeight;const documentHeight=document.documentElement.scrollHeight;const currentScroll=window.pageYOffset||document.documentElement.scrollTop;if(documentHeight-currentScroll-windowHeight<=windowHeight&&windowWidth<=908){setHidden(true);}else if(documentHeight-currentScroll-windowHeight/2<=windowHeight&&windowWidth>908){setHidden(true);}else if(currentScroll>10){setHidden(false);}else{if(!scrolled){setHidden(true);setScrolled(true);}}}/** update the onChange callback to call for `update()` **/ useEffect(()=>{setWindowWidth(window.innerWidth);update();return scrollY.onChange(()=>update());});useEffect(()=>{update();const handleResize=()=>{setWindowWidth(window.innerWidth);update();setScrolled(false);};window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[]);/** add this const **/ const variants={/** this is the \"visible\" key and it's correlating styles **/ visible:{y:0},/** this is the \"hidden\" key and it's correlating styles **/ hidden:{y:windowWidth<=809?\"100px\":\"-100px\"}};return /*#__PURE__*/ _jsx(Component,{...props,variants:variants,/** it's right here that we match our boolean state with these variant keys **/ animate:hidden?\"hidden\":\"visible\",/** I'm also going to add a custom easing curve and duration for the animation **/ transition:{ease:[.1,.25,.3,1],duration:.6}});};}export function innerShowNav(Component){return props=>{const{scrollY}=useViewportScroll();const[hidden,setHidden]=useState(false);const[scrolled,setScrolled]=useState(false);const[windowWidth,setWindowWidth]=useState(0);const{scrollYProgress}=useScroll();const y=useTransform(scrollYProgress,[0,1],[1,100]);/** this onUpdate function will be called in the `scrollY.onChange` callback **/ function update(){const windowHeight=window.innerHeight;const documentHeight=document.documentElement.scrollHeight;const currentScroll=window.pageYOffset||document.documentElement.scrollTop;if(documentHeight-currentScroll-windowHeight<=windowHeight&&windowWidth<=908){setHidden(true);}else if(documentHeight-currentScroll-windowHeight/2<=windowHeight&&windowWidth>908){setHidden(true);}else if(currentScroll>10){setHidden(false);}}/** update the onChange callback to call for `update()` **/ useEffect(()=>{setWindowWidth(window.innerWidth);update();return scrollY.onChange(()=>update());});useEffect(()=>{update();const handleResize=()=>{setWindowWidth(window.innerWidth);update();setScrolled(false);};window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[]);/** add this const **/ const variants={/** this is the \"visible\" key and it's correlating styles **/ visible:{y:0},/** this is the \"hidden\" key and it's correlating styles **/ hidden:{y:windowWidth<=809?\"100px\":\"-100px\"}};return /*#__PURE__*/ _jsx(Component,{...props,variants:variants,/** it's right here that we match our boolean state with these variant keys **/ animate:hidden?\"hidden\":\"visible\",/** I'm also going to add a custom easing curve and duration for the animation **/ transition:{ease:[.1,.25,.3,1],duration:.6}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"loader\":{\"type\":\"reactHoc\",\"name\":\"loader\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"innerLoader\":{\"type\":\"reactHoc\",\"name\":\"innerLoader\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"willChange\":{\"type\":\"reactHoc\",\"name\":\"willChange\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showNav\":{\"type\":\"reactHoc\",\"name\":\"showNav\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"footerParallax\":{\"type\":\"reactHoc\",\"name\":\"footerParallax\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"slidesExit\":{\"type\":\"reactHoc\",\"name\":\"slidesExit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useParallax\":{\"type\":\"reactHoc\",\"name\":\"useParallax\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"innerShowNav\":{\"type\":\"reactHoc\",\"name\":\"innerShowNav\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"agencyExit\":{\"type\":\"reactHoc\",\"name\":\"agencyExit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Main.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef}from\"react\";import{motion,useTransform,useScroll}from\"framer-motion\";export function useParallax(Component){return props=>{let ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"start end\",\"end start\"]});const y=useTransform(scrollYProgress,[0,1],[\"0%\",\"40%\"]);return /*#__PURE__*/ _jsx(motion.div,{ref:ref,style:{position:\"relative\",width:\"100%\",height:\"140%\",y:y,willChange:\"transform\"},children:/*#__PURE__*/ _jsx(Component,{...props,style:{width:\"100%\"}})});};}export function useParallaxMedium(Component){return props=>{let ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"start end\",\"end start\"]});const y=useTransform(scrollYProgress,[0,1],[\"0%\",\"20%\"]);return /*#__PURE__*/ _jsx(motion.div,{ref:ref,style:{position:\"relative\",width:\"100%\",height:\"120%\",y:y,willChange:\"transform\"},children:/*#__PURE__*/ _jsx(Component,{...props,style:{width:\"100%\"}})});};}export function willChange(Component){return props=>{return /*#__PURE__*/ _jsx(Component,{...props,style:{willChange:\"transform\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"useParallax\":{\"type\":\"reactHoc\",\"name\":\"useParallax\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useParallaxMedium\":{\"type\":\"reactHoc\",\"name\":\"useParallaxMedium\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"willChange\":{\"type\":\"reactHoc\",\"name\":\"willChange\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Parallax.map", "// Generated by Framer (b2eeca0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{willChange}from\"https://framerusercontent.com/modules/vHMQZCcJrnOKXcATR7kG/TwwW05uYUGBC2kmzGt5R/Main.js\";import{useParallax,willChange as willChange1}from\"https://framerusercontent.com/modules/5qG7xm8FYKGOq1JnHAO0/77bpb8PNyqf50Q9eF64U/Parallax.js\";const ImageWillChange=willChange(Image);const ImageWillChange1=willChange1(Image);const MotionDivUseParallax=useParallax(motion.div);const cycleOrder=[\"r8QWdgZoF\",\"WHbS2IPVt\"];const variantClassNames={r8QWdgZoF:\"framer-v-1ml59mb\",WHbS2IPVt:\"framer-v-1k717tt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={mobile:\"WHbS2IPVt\",parallax:\"r8QWdgZoF\"};const transitions={default:{damping:60,delay:0,duration:.4,ease:[.25,1,.5,1],mass:1,stiffness:500,type:\"tween\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"r8QWdgZoF\",image:h9l4V7QJU={src:new URL(\"assets/IhqwySQTof17DdSpFtgJnMQmY4.jpg\",\"https://framerusercontent.com/modules/ijb2Dr6htRAUWIddUudD/K6yrSfFoM9b4BIR1rkLC/DUK5Ru5Ch.js\").href,srcSet:`${new URL(\"assets/512/IhqwySQTof17DdSpFtgJnMQmY4.jpg\",\"https://framerusercontent.com/modules/ijb2Dr6htRAUWIddUudD/K6yrSfFoM9b4BIR1rkLC/DUK5Ru5Ch.js\").href} 512w, ${new URL(\"assets/1024/IhqwySQTof17DdSpFtgJnMQmY4.jpg\",\"https://framerusercontent.com/modules/ijb2Dr6htRAUWIddUudD/K6yrSfFoM9b4BIR1rkLC/DUK5Ru5Ch.js\").href} 1024w, ${new URL(\"assets/IhqwySQTof17DdSpFtgJnMQmY4.jpg\",\"https://framerusercontent.com/modules/ijb2Dr6htRAUWIddUudD/K6yrSfFoM9b4BIR1rkLC/DUK5Ru5Ch.js\").href} 1060w`},radius:QYbsn1ipi=0,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"r8QWdgZoF\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"WHbS2IPVt\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"WHbS2IPVt\")return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-nVXyf\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1ml59mb\",className),\"data-framer-name\":\"parallax\",layoutDependency:layoutDependency,layoutId:\"r8QWdgZoF\",ref:ref,style:{borderBottomLeftRadius:QYbsn1ipi,borderBottomRightRadius:QYbsn1ipi,borderTopLeftRadius:QYbsn1ipi,borderTopRightRadius:QYbsn1ipi,...style},transition:transition,...addPropertyOverrides({WHbS2IPVt:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-97l7wk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bbwEu_NUh\",transition:transition,children:[isDisplayed()&&/*#__PURE__*/ _jsx(ImageWillChange,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1884,intrinsicWidth:1060,pixelHeight:1884,pixelWidth:1060,...toResponsiveImage(h9l4V7QJU)},className:\"framer-mfg6ai\",\"data-framer-name\":\"image-component\",layoutDependency:layoutDependency,layoutId:\"PpXS9psEm\",transition:transition,...addPropertyOverrides({WHbS2IPVt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1884,intrinsicWidth:1060,pixelHeight:1884,pixelWidth:1060,sizes:\"1072px\",...toResponsiveImage(h9l4V7QJU)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/ _jsx(MotionDivUseParallax,{className:\"framer-50luz2\",\"data-framer-name\":\"Parallax\",layoutDependency:layoutDependency,layoutId:\"Mf3OyHkQT\",transition:transition,children:/*#__PURE__*/ _jsx(ImageWillChange1,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1884,intrinsicWidth:1060,pixelHeight:1884,pixelWidth:1060,sizes:\"1072px\",...toResponsiveImage(h9l4V7QJU)},className:\"framer-1x6fj8y\",\"data-framer-name\":\"image-component\",layoutDependency:layoutDependency,layoutId:\"MfrNCrDtu\",transition:transition})})]})})})});});const css=['.framer-nVXyf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nVXyf .framer-6tc6gy { display: block; }\",\".framer-nVXyf .framer-1ml59mb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 720px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1072px; will-change: transform; }\",\".framer-nVXyf .framer-97l7wk { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-nVXyf .framer-mfg6ai, .framer-nVXyf .framer-1x6fj8y { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-nVXyf .framer-50luz2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nVXyf .framer-1ml59mb, .framer-nVXyf .framer-97l7wk, .framer-nVXyf .framer-50luz2 { gap: 0px; } .framer-nVXyf .framer-1ml59mb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-nVXyf .framer-1ml59mb > :first-child { margin-top: 0px; } .framer-nVXyf .framer-1ml59mb > :last-child { margin-bottom: 0px; } .framer-nVXyf .framer-97l7wk > *, .framer-nVXyf .framer-50luz2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nVXyf .framer-97l7wk > :first-child, .framer-nVXyf .framer-50luz2 > :first-child { margin-left: 0px; } .framer-nVXyf .framer-97l7wk > :last-child, .framer-nVXyf .framer-50luz2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 1072\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WHbS2IPVt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"h9l4V7QJU\":\"image\",\"QYbsn1ipi\":\"radius\"}\n */ const FramerDUK5Ru5Ch=withCSS(Component,css,\"framer-nVXyf\");export default FramerDUK5Ru5Ch;FramerDUK5Ru5Ch.displayName=\"Inner/paralax\";FramerDUK5Ru5Ch.defaultProps={height:720,width:1072};addPropertyControls(FramerDUK5Ru5Ch,{variant:{options:[\"r8QWdgZoF\",\"WHbS2IPVt\"],optionTitles:[\"parallax\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},h9l4V7QJU:{__defaultAssetReference:\"data:framer/asset-reference,IhqwySQTof17DdSpFtgJnMQmY4.jpg?originalFilename=slides-img-temp.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},QYbsn1ipi:{defaultValue:0,title:\"Radius\",type:ControlType.Number}});addFonts(FramerDUK5Ru5Ch,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDUK5Ru5Ch\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"720\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WHbS2IPVt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"h9l4V7QJU\\\":\\\"image\\\",\\\"QYbsn1ipi\\\":\\\"radius\\\"}\",\"framerIntrinsicWidth\":\"1072\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DUK5Ru5Ch.map"],
  "mappings": "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",
  "names": ["willChange", "Component", "props", "p", "useParallax", "Component", "props", "ref", "pe", "scrollYProgress", "useScroll", "y", "useTransform", "p", "motion", "willChange", "Component", "props", "p", "ImageWillChange", "willChange", "Image2", "ImageWillChange1", "MotionDivUseParallax", "useParallax", "motion", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "h9l4V7QJU", "QYbsn1ipi", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "LayoutGroup", "cx", "u", "css", "FramerDUK5Ru5Ch", "withCSS", "DUK5Ru5Ch_default", "addPropertyControls", "ControlType", "addFonts"]
}
