{
  "version": 3,
  "sources": ["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://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/BXQ2QSPyAjTkJkDSFxrk/6uI6ATeZXMrxe7pn236W/qYPMKPYcq.js", "ssg:https://framerusercontent.com/modules/PqCIudw4KmBonMA4IV6c/03TqIyEpWV2HdA03UTDD/oakeXzPg4.js", "ssg:https://framerusercontent.com/modules/NhjOY7gMumSCedM2zWRz/ULrfZOg7wHbClpkKgMtk/cBJgZ6sWn.js", "ssg:https://framerusercontent.com/modules/3kNZr8EOWhnRHJMQfu1e/iZ5tPQ7ycUeLn5KlNHU1/AMIwMsmEt.js", "ssg:https://framerusercontent.com/modules/onZHE4Qj3ALnvlSU98lm/3vVTvRyYqqOVf7AbzsQa/EMA2EFeOp.js", "ssg:https://framerusercontent.com/modules/UiRTcbqBl1YfdaF7LUJW/3WrNqJ1dcHTdlbHlQJrZ/SL9WcvIfx.js", "ssg:https://framerusercontent.com/modules/ffmqMz8vs2rSPU3H7Jo7/pyYOxsiw14SiXDeBsdfU/mZBjQarnf.js", "ssg:https://framerusercontent.com/modules/YSo8yuRFTKaXxnQ5hhTF/G6mDq7CJi3dBbcfBFQrk/QaLjLOyvh.js", "ssg:https://framerusercontent.com/modules/0eW6k9CFXIsc4QnMtFYb/aUVwGykBMM8NnB3yZ62Q/ApIOqlbfS.js", "ssg:https://framerusercontent.com/modules/ixVbCphUuO8b8AMtAzgo/39MHvchdz79clIhOQmJt/cKelTRcpY.js", "ssg:https://framerusercontent.com/modules/ddYxFzWV9fgYYXT3b8Sl/Et4WSg4tUI6Hg1ZB9xzO/GqpJU7ruy.js", "ssg:https://framerusercontent.com/modules/LDojGtxxuqL9Lw8OBxnl/R8syvrGyxq2VNkRpt1E4/uMjMAKBbn.js", "ssg:https://framerusercontent.com/modules/4KixZg9LN8Yg3KwCccGa/tmdvphdgySCi9TonSk52/vefaMXUuI.js", "ssg:https://framerusercontent.com/modules/50LEEqNA2Ly0GaZimMG2/ofmLjpeMsN6aguJYRUEb/voSjwwTks.js"],
  "sourcesContent": ["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", "function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{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}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(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(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,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,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{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.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,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.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.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}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 e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{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),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}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,e){return(t%e+e)%e}(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,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (f074239)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-semibold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-Vr7qo .framer-styles-preset-1c1qnf8:not(.rich-text-wrapper), .framer-Vr7qo .framer-styles-preset-1c1qnf8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --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: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1329px) and (min-width: 810px) { .framer-Vr7qo .framer-styles-preset-1c1qnf8:not(.rich-text-wrapper), .framer-Vr7qo .framer-styles-preset-1c1qnf8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Vr7qo .framer-styles-preset-1c1qnf8:not(.rich-text-wrapper), .framer-Vr7qo .framer-styles-preset-1c1qnf8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 8px; --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: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.15em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-Vr7qo\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/BXQ2QSPyAjTkJkDSFxrk/6uI6ATeZXMrxe7pn236W/qYPMKPYcq.js\";const cycleOrder=[\"ZOz88F9t7\",\"NBbUxmrry\",\"dO5VssZ7p\"];const serializationHash=\"framer-UQv37\";const variantClassNames={dO5VssZ7p:\"framer-v-ajv8jc\",NBbUxmrry:\"framer-v-1e0rpib\",ZOz88F9t7:\"framer-v-1qgf812\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.5,type:\"spring\"};const transition2={bounce:0,delay:.1,duration:.5,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 transition3={bounce:0,delay:.2,duration:.5,type:\"spring\"};const transition4={bounce:0,delay:.3,duration:.5,type:\"spring\"};const transition5={bounce:0,delay:.4,duration:.5,type:\"spring\"};const transition6={bounce:0,delay:.5,duration:.5,type:\"spring\"};const transition7={bounce:0,delay:.6,duration:.5,type:\"spring\"};const transition8={bounce:0,delay:.7,duration:.5,type:\"spring\"};const transition9={bounce:0,delay:.8,duration:.5,type:\"spring\"};const transition10={bounce:0,delay:.9,duration:.5,type:\"spring\"};const transition11={bounce:0,delay:1,duration:.5,type:\"spring\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ZOz88F9t7\",\"Variant 2\":\"NBbUxmrry\",\"Variant 3\":\"dO5VssZ7p\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZOz88F9t7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZOz88F9t7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1rckn0l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NBbUxmrry\"),100);});const onAppearvmlrzt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dO5VssZ7p\"),4e3);});const onAppearxp7dr3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZOz88F9t7\"),100);});useOnVariantChange(baseVariant,{default:onAppear1rckn0l,dO5VssZ7p:onAppearxp7dr3,NBbUxmrry:onAppearvmlrzt});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1qgf812\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZOz88F9t7\",ref:ref??ref1,style:{...style},...addPropertyOverrides({dO5VssZ7p:{\"data-framer-name\":\"Variant 3\"},NBbUxmrry:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"L\"})}),className:\"framer-1sl2rnf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s33nowjOU\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"O\"})}),className:\"framer-1cax0an\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YML12mj7n\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"A\"})}),className:\"framer-37wibs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mx5eNK0kZ\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"D\"})}),className:\"framer-10yg9yu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bZOW2LLdF\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"I\"})}),className:\"framer-zm5epi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rplAe_7qV\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"N\"})}),className:\"framer-1fpp4oh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ejK5WZiwn\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"G\"})}),className:\"framer-f97s8o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"A0kATwjFL\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\".\"})}),className:\"framer-dv25ie\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LXryBpbKP\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\".\"})}),className:\"framer-1rhyzyz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rIevnetZt\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({NBbUxmrry:{value:transition11}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c1qnf8\",\"data-styles-preset\":\"qYPMKPYcq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\".\"})}),className:\"framer-bq4qko\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N7kkEGf7e\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{NBbUxmrry:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UQv37.framer-hn1884, .framer-UQv37 .framer-hn1884 { display: block; }\",\".framer-UQv37.framer-1qgf812 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UQv37 .framer-1sl2rnf, .framer-UQv37 .framer-1cax0an, .framer-UQv37 .framer-37wibs, .framer-UQv37 .framer-10yg9yu, .framer-UQv37 .framer-zm5epi, .framer-UQv37 .framer-1fpp4oh, .framer-UQv37 .framer-f97s8o, .framer-UQv37 .framer-dv25ie, .framer-UQv37 .framer-1rhyzyz, .framer-UQv37 .framer-bq4qko { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UQv37.framer-1qgf812 { gap: 0px; } .framer-UQv37.framer-1qgf812 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UQv37.framer-1qgf812 > :first-child { margin-left: 0px; } .framer-UQv37.framer-1qgf812 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 108\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NBbUxmrry\":{\"layout\":[\"auto\",\"auto\"]},\"dO5VssZ7p\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroakeXzPg4=withCSS(Component,css,\"framer-UQv37\");export default FrameroakeXzPg4;FrameroakeXzPg4.displayName=\"loading animation\";FrameroakeXzPg4.defaultProps={height:16,width:108};addPropertyControls(FrameroakeXzPg4,{variant:{options:[\"ZOz88F9t7\",\"NBbUxmrry\",\"dO5VssZ7p\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroakeXzPg4,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroakeXzPg4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"16\",\"framerIntrinsicWidth\":\"108\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NBbUxmrry\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dO5VssZ7p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oakeXzPg4.map", "// Generated by Framer (c126521)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LoadingAnimation from\"https://framerusercontent.com/modules/PqCIudw4KmBonMA4IV6c/03TqIyEpWV2HdA03UTDD/oakeXzPg4.js\";const LoadingAnimationFonts=getFonts(LoadingAnimation);const cycleOrder=[\"vtTkzSMDZ\",\"ii3eg75uT\"];const serializationHash=\"framer-cd6EQ\";const variantClassNames={ii3eg75uT:\"framer-v-5e0kxg\",vtTkzSMDZ:\"framer-v-1806q4j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.2,duration:1,ease:[.76,.04,.23,1],type:\"tween\"};const transition2={delay:.1,duration:1,ease:[.78,0,.23,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 transition3={delay:.2,duration:1,ease:[.78,0,.23,1],type:\"tween\"};const transition4={delay:.3,duration:1,ease:[.78,0,.23,1],type:\"tween\"};const transition5={delay:.4,duration:1,ease:[.78,0,.23,1],type:\"tween\"};const transition6={delay:.5,duration:1,ease:[.78,0,.23,1],type:\"tween\"};const transition7={delay:.6,duration:1,ease:[.78,0,.23,1],type:\"tween\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"ii3eg75uT\",Desktop:\"vtTkzSMDZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vtTkzSMDZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vtTkzSMDZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear5tcfga=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ii3eg75uT\"),100);});useOnVariantChange(baseVariant,{default:onAppear5tcfga});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1806q4j\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vtTkzSMDZ\",ref:ref??ref1,style:{...style},...addPropertyOverrides({ii3eg75uT:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15jb1u5\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"VDizoH2hh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tiutjf\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"mK4lLdkyc\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxabiv\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"hSeVSKjEM\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b21d1f\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"y2Jmm8D5w\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9f30e2\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"xhr0gt_iH\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gqhhmf\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"ltixcK4ob\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ikll7m\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"u5jDOYYSf\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b0u25i\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"VpW48He3f\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-djzcj6\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"k_szZhpmq\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t9ewlg\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"oFCNjvRtx\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19trlln\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"WnUD27WvO\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v85ed0\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"f5MUK1Atu\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({ii3eg75uT:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wu0vg3\",\"data-framer-name\":\"column\",layoutDependency:layoutDependency,layoutId:\"HBmliC1Ko\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"127px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||1038)-0-1e3)/2)+30,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zy1blb-container\",layoutDependency:layoutDependency,layoutId:\"L1hwm6Pu9-container\",style:{opacity:1},variants:{ii3eg75uT:{opacity:0}},children:/*#__PURE__*/_jsx(LoadingAnimation,{height:\"100%\",id:\"L1hwm6Pu9\",layoutId:\"L1hwm6Pu9\",style:{height:\"100%\",width:\"100%\"},variant:\"ZOz88F9t7\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cd6EQ.framer-65udta, .framer-cd6EQ .framer-65udta { display: block; }\",\".framer-cd6EQ.framer-1806q4j { 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: 1600px; }\",\".framer-cd6EQ .framer-15jb1u5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cd6EQ .framer-1tiutjf, .framer-cd6EQ .framer-1b21d1f, .framer-cd6EQ .framer-1gqhhmf, .framer-cd6EQ .framer-b0u25i, .framer-cd6EQ .framer-1t9ewlg, .framer-cd6EQ .framer-1v85ed0 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-cd6EQ .framer-zxabiv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-cd6EQ .framer-9f30e2, .framer-cd6EQ .framer-ikll7m, .framer-cd6EQ .framer-djzcj6, .framer-cd6EQ .framer-19trlln, .framer-cd6EQ .framer-wu0vg3 { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 1); left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-cd6EQ .framer-zy1blb-container { flex: none; height: 16px; left: calc(49.93750000000002% - 127px / 2); position: absolute; top: 30px; width: 127px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cd6EQ.framer-1806q4j, .framer-cd6EQ .framer-15jb1u5, .framer-cd6EQ .framer-zxabiv { gap: 0px; } .framer-cd6EQ.framer-1806q4j > *, .framer-cd6EQ .framer-15jb1u5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cd6EQ.framer-1806q4j > :first-child, .framer-cd6EQ .framer-15jb1u5 > :first-child { margin-left: 0px; } .framer-cd6EQ.framer-1806q4j > :last-child, .framer-cd6EQ .framer-15jb1u5 > :last-child { margin-right: 0px; } .framer-cd6EQ .framer-zxabiv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cd6EQ .framer-zxabiv > :first-child { margin-top: 0px; } .framer-cd6EQ .framer-zxabiv > :last-child { margin-bottom: 0px; } }\",\".framer-cd6EQ.framer-v-5e0kxg .framer-zxabiv, .framer-cd6EQ.framer-v-5e0kxg .framer-9f30e2, .framer-cd6EQ.framer-v-5e0kxg .framer-ikll7m, .framer-cd6EQ.framer-v-5e0kxg .framer-djzcj6, .framer-cd6EQ.framer-v-5e0kxg .framer-19trlln, .framer-cd6EQ.framer-v-5e0kxg .framer-wu0vg3 { height: calc(var(--framer-viewport-height, 100vh) * 0.009633911368015413); top: -10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1038\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ii3eg75uT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercBJgZ6sWn=withCSS(Component,css,\"framer-cd6EQ\");export default FramercBJgZ6sWn;FramercBJgZ6sWn.displayName=\"haroonMalikPageLoader\";FramercBJgZ6sWn.defaultProps={height:1038,width:1600};addPropertyControls(FramercBJgZ6sWn,{variant:{options:[\"vtTkzSMDZ\",\"ii3eg75uT\"],optionTitles:[\"Desktop\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercBJgZ6sWn,[{explicitInter:true,fonts:[]},...LoadingAnimationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercBJgZ6sWn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1038\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ii3eg75uT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cBJgZ6sWn.map", "// Generated by Framer (5bbf1f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-0yql7 .framer-styles-preset-cr5i7y:not(.rich-text-wrapper), .framer-0yql7 .framer-styles-preset-cr5i7y.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-0yql7 .framer-styles-preset-cr5i7y:not(.rich-text-wrapper), .framer-0yql7 .framer-styles-preset-cr5i7y.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-0yql7 .framer-styles-preset-cr5i7y:not(.rich-text-wrapper), .framer-0yql7 .framer-styles-preset-cr5i7y.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 10px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, #666776); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-0yql7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0e4fc27)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CursorImageTrail from\"https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3kNZr8EOWhnRHJMQfu1e/iZ5tPQ7ycUeLn5KlNHU1/AMIwMsmEt.js\";const CursorImageTrailFonts=getFonts(CursorImageTrail);const cycleOrder=[\"UoaQVHaLj\",\"guBPINtEk\",\"Ekn3yCgSa\",\"VBE9Mgq8J\"];const serializationHash=\"framer-0uMg0\";const variantClassNames={Ekn3yCgSa:\"framer-v-5ihidm\",guBPINtEk:\"framer-v-1un3vh9\",UoaQVHaLj:\"framer-v-1edk1ri\",VBE9Mgq8J:\"framer-v-s7vnjb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:0,duration:1,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};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:\"UoaQVHaLj\",Large:\"VBE9Mgq8J\",Phone:\"Ekn3yCgSa\",Tablet:\"guBPINtEk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"UoaQVHaLj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UoaQVHaLj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1edk1ri\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UoaQVHaLj\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({Ekn3yCgSa:{\"data-framer-name\":\"Phone\"},guBPINtEk:{\"data-framer-name\":\"Tablet\"},VBE9Mgq8J:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60r1xk\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"daq3If2YQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:\"HAROON A MALIK\"})}),className:\"framer-dohymt\",effect:textEffect,fonts:[\"FS;Poppins-bold\"],layoutDependency:layoutDependency,layoutId:\"cH1u5FKrc\",style:{\"--extracted-r6o4lv\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:[\"I design and build products that seamlessly fit into people\u2019s lives -\",/*#__PURE__*/_jsx(motion.br,{}),\"transforming everyday actions into verbs.\"]})}),className:\"framer-xedd1z\",effect:textEffect,fonts:[\"GF;Cormorant Garamond-regular\"],layoutDependency:layoutDependency,layoutId:\"wrbfsNL_a\",style:{\"--extracted-gdpscs\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ekn3yCgSa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:\"I design and build products that seamlessly fit into people\u2019s lives - transforming everyday actions into verbs.\"})})},guBPINtEk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:[\"I design and build products that seamlessly fit into people\u2019s lives -\",/*#__PURE__*/_jsx(motion.br,{}),\"transforming everyday actions into verbs.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(0+0+((componentViewport?.height||680)-200-311.20000000000005)/1*0)+0+98.8),pixelHeight:570,pixelWidth:555,sizes:\"85px\",src:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png\",srcSet:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png 555w\"},className:\"framer-1dzygpn\",layoutDependency:layoutDependency,layoutId:\"JrDkSeUrI\",...addPropertyOverrides({Ekn3yCgSa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(0+0+((componentViewport?.height||563)-150-326.20000000000005)/1*0)+20+70.8),pixelHeight:570,pixelWidth:555,sizes:\"85px\",src:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png\",srcSet:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png 555w\"}},guBPINtEk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+(0+0+((componentViewport?.height||610)-150-382.8)/1*0)+30+80.4),pixelHeight:570,pixelWidth:555,sizes:\"85px\",src:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png\",srcSet:\"https://framerusercontent.com/images/gPi97Zf1FFmCFxrNUueSlBeabk.png 555w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ycmms8\",layoutDependency:layoutDependency,layoutId:\"W4sS2Ngef\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wtjzs2\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"sgqYhqQD3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kdt9ip\",layoutDependency:layoutDependency,layoutId:\"A3fq9jKrN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cr5i7y\",\"data-styles-preset\":\"AMIwMsmEt\",children:\"Reach out to me at:\"})}),className:\"framer-haew28\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qq4DMQZWp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cr5i7y\",\"data-styles-preset\":\"AMIwMsmEt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:\"E: hello@haroonmalik.me \"})}),className:\"framer-1el7sr4\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QdHGFBZLy\",style:{\"--extracted-r6o4lv\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cr5i7y\",\"data-styles-preset\":\"AMIwMsmEt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\"},children:\"P: +46 76 310 05 83\"})}),className:\"framer-1voghs9\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b1YuTdDrx\",style:{\"--extracted-r6o4lv\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2nq4v\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"Kqsb0_Lx7\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2v45b\",layoutDependency:layoutDependency,layoutId:\"k6klzQx83\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/haroonahmadmalik/\",nodeId:\"Yq8b68sE_\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ejnrk framer-14f0wbn\",\"data-framer-name\":\"Vector\",fill:'var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, rgb(102, 103, 118)) /* {\"name\":\"Grey\"} */',intrinsicHeight:144,intrinsicWidth:144,layoutDependency:layoutDependency,layoutId:\"Yq8b68sE_\",svg:'<svg width=\"144\" height=\"144\" viewBox=\"0 0 144 144\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M133.714 0H10.2536C4.59643 0 0 4.66072 0 10.3821V133.618C0 139.339 4.59643 144 10.2536 144H133.714C139.371 144 144 139.339 144 133.618V10.3821C144 4.66072 139.371 0 133.714 0ZM43.5214 123.429H22.1786V54.7071H43.5536V123.429H43.5214ZM32.85 45.3214C26.0036 45.3214 20.475 39.7607 20.475 32.9464C20.475 26.1321 26.0036 20.5714 32.85 20.5714C39.6643 20.5714 45.225 26.1321 45.225 32.9464C45.225 39.7929 39.6964 45.3214 32.85 45.3214ZM123.525 123.429H102.182V90C102.182 82.0286 102.021 71.775 91.0929 71.775C79.9714 71.775 78.2679 80.4536 78.2679 89.4214V123.429H56.925V54.7071H77.4V64.0929H77.6893C80.55 58.6929 87.525 53.0036 97.9071 53.0036C119.507 53.0036 123.525 67.2429 123.525 85.7571V123.429Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zic5xy-container\",layoutDependency:layoutDependency,layoutId:\"tISLAp5tO-container\",children:/*#__PURE__*/_jsx(CursorImageTrail,{animation:{in:{from:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5},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:500,type:\"spring\"}},out:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}}},frequency:35,height:\"100%\",id:\"tISLAp5tO\",images:[\"https://framerusercontent.com/images/7XRTrJzTXWZ8WPWEGXLTfR2wo.png\",\"https://framerusercontent.com/images/QzCAR0BE7IrJOOdrRwDWMKd8qU.png\",\"https://framerusercontent.com/images/Vj0SABQ4wgWnOfSPv7DrZtJziM.png\",\"https://framerusercontent.com/images/3PfT470tvFswz9ccgCExkyOp0.png\",\"https://framerusercontent.com/images/pglpVuAg2VxJnjS3d4QxnnN4ec.png\",\"https://framerusercontent.com/images/14QoYUR3We02gFee3NUrkcPkog.png\",\"https://framerusercontent.com/images/iRfpCcJXuB7E5lMNhT2moV8z9U.png\",\"https://framerusercontent.com/images/FRpSDktuf7dHVD8ucrvDxqmmYGk.png\",\"https://framerusercontent.com/images/3PfT470tvFswz9ccgCExkyOp0.png\",\"https://framerusercontent.com/images/8e37zeCcSAfRTNKGorvqre8JfDo.png\"],layoutId:\"tISLAp5tO\",perspective:{enabled:false,value:1200},style:{fit:\"fit\",height:65,radius:0,width:65},visibleFor:1,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0uMg0.framer-14f0wbn, .framer-0uMg0 .framer-14f0wbn { display: block; }\",\".framer-0uMg0.framer-1edk1ri { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 680px; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1600px; }\",\".framer-0uMg0 .framer-60r1xk { 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 0px 20px 0px; position: relative; width: min-content; z-index: 6; }\",\".framer-0uMg0 .framer-dohymt, .framer-0uMg0 .framer-xedd1z, .framer-0uMg0 .framer-haew28, .framer-0uMg0 .framer-1el7sr4, .framer-0uMg0 .framer-1voghs9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0uMg0 .framer-1dzygpn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); overflow: hidden; position: relative; width: 85px; }\",\".framer-0uMg0 .framer-ycmms8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 6; }\",\".framer-0uMg0 .framer-wtjzs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-0uMg0 .framer-kdt9ip { 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: min-content; }\",\".framer-0uMg0 .framer-1n2nq4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-0uMg0 .framer-p2v45b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0uMg0 .framer-ejnrk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; text-decoration: none; width: 20px; }\",\".framer-0uMg0 .framer-zic5xy-container { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uMg0 .framer-60r1xk, .framer-0uMg0 .framer-ycmms8, .framer-0uMg0 .framer-wtjzs2, .framer-0uMg0 .framer-kdt9ip, .framer-0uMg0 .framer-1n2nq4v, .framer-0uMg0 .framer-p2v45b { gap: 0px; } .framer-0uMg0 .framer-60r1xk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0uMg0 .framer-60r1xk > :first-child, .framer-0uMg0 .framer-ycmms8 > :first-child, .framer-0uMg0 .framer-kdt9ip > :first-child { margin-top: 0px; } .framer-0uMg0 .framer-60r1xk > :last-child, .framer-0uMg0 .framer-ycmms8 > :last-child, .framer-0uMg0 .framer-kdt9ip > :last-child { margin-bottom: 0px; } .framer-0uMg0 .framer-ycmms8 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-0uMg0 .framer-wtjzs2 > *, .framer-0uMg0 .framer-p2v45b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0uMg0 .framer-wtjzs2 > :first-child, .framer-0uMg0 .framer-1n2nq4v > :first-child, .framer-0uMg0 .framer-p2v45b > :first-child { margin-left: 0px; } .framer-0uMg0 .framer-wtjzs2 > :last-child, .framer-0uMg0 .framer-1n2nq4v > :last-child, .framer-0uMg0 .framer-p2v45b > :last-child { margin-right: 0px; } .framer-0uMg0 .framer-kdt9ip > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0uMg0 .framer-1n2nq4v > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-0uMg0.framer-v-1un3vh9.framer-1edk1ri { height: 610px; padding: 50px 50px 100px 50px; width: 810px; }\",\".framer-0uMg0.framer-v-1un3vh9 .framer-60r1xk { gap: 15px; padding: 30px 0px 20px 0px; width: 100%; }\",\".framer-0uMg0.framer-v-1un3vh9 .framer-xedd1z, .framer-0uMg0.framer-v-5ihidm .framer-xedd1z { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0uMg0.framer-v-1un3vh9 .framer-ycmms8 { width: 100%; }\",\".framer-0uMg0.framer-v-1un3vh9 .framer-wtjzs2, .framer-0uMg0.framer-v-1un3vh9 .framer-1n2nq4v { padding: 30px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uMg0.framer-v-1un3vh9 .framer-60r1xk { gap: 0px; } .framer-0uMg0.framer-v-1un3vh9 .framer-60r1xk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0uMg0.framer-v-1un3vh9 .framer-60r1xk > :first-child { margin-top: 0px; } .framer-0uMg0.framer-v-1un3vh9 .framer-60r1xk > :last-child { margin-bottom: 0px; } }\",\".framer-0uMg0.framer-v-5ihidm.framer-1edk1ri { height: 563px; padding: 50px 25px 100px 25px; width: 390px; }\",\".framer-0uMg0.framer-v-5ihidm .framer-60r1xk { gap: 15px; padding: 20px 0px 20px 0px; width: 100%; }\",\".framer-0uMg0.framer-v-5ihidm .framer-ycmms8 { gap: 0px; width: 100%; }\",\".framer-0uMg0.framer-v-5ihidm .framer-wtjzs2 { gap: 15px; padding: 20px 0px 0px 0px; }\",\".framer-0uMg0.framer-v-5ihidm .framer-1n2nq4v { padding: 20px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uMg0.framer-v-5ihidm .framer-60r1xk, .framer-0uMg0.framer-v-5ihidm .framer-ycmms8, .framer-0uMg0.framer-v-5ihidm .framer-wtjzs2 { gap: 0px; } .framer-0uMg0.framer-v-5ihidm .framer-60r1xk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0uMg0.framer-v-5ihidm .framer-60r1xk > :first-child, .framer-0uMg0.framer-v-5ihidm .framer-ycmms8 > :first-child { margin-top: 0px; } .framer-0uMg0.framer-v-5ihidm .framer-60r1xk > :last-child, .framer-0uMg0.framer-v-5ihidm .framer-ycmms8 > :last-child { margin-bottom: 0px; } .framer-0uMg0.framer-v-5ihidm .framer-ycmms8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0uMg0.framer-v-5ihidm .framer-wtjzs2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-0uMg0.framer-v-5ihidm .framer-wtjzs2 > :first-child { margin-left: 0px; } .framer-0uMg0.framer-v-5ihidm .framer-wtjzs2 > :last-child { margin-right: 0px; } }\",\".framer-0uMg0.framer-v-s7vnjb.framer-1edk1ri { width: 1330px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 680\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1600px\",null,null]},\"guBPINtEk\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1600px\",null,null]},\"Ekn3yCgSa\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1600px\",null,null]},\"VBE9Mgq8J\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1600px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEMA2EFeOp=withCSS(Component,css,\"framer-0uMg0\");export default FramerEMA2EFeOp;FramerEMA2EFeOp.displayName=\"Footer\";FramerEMA2EFeOp.defaultProps={height:680,width:1600};addPropertyControls(FramerEMA2EFeOp,{variant:{options:[\"UoaQVHaLj\",\"guBPINtEk\",\"Ekn3yCgSa\",\"VBE9Mgq8J\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Large\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEMA2EFeOp,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjoq3FLsS6V7w.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/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\"}]},...CursorImageTrailFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEMA2EFeOp\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"680\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1600px\\\",null,null]},\\\"guBPINtEk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1600px\\\",null,null]},\\\"Ekn3yCgSa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1600px\\\",null,null]},\\\"VBE9Mgq8J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1600px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1600\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EMA2EFeOp.map", "// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Cormorant Garamond-300\",\"GF;Cormorant Garamond-regular\",\"GF;Cormorant Garamond-italic\",\"GF;Cormorant Garamond-300italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvvAWJ5heb_w.woff2\",weight:\"300\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjoq3FLsS6V7w.woff2\",weight:\"400\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtKkyuF7w6C.woff2\",weight:\"400\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-IxBKL_y94.woff2\",weight:\"300\"}]}];export const css=['.framer-THrHU .framer-styles-preset-ai6nq8:not(.rich-text-wrapper), .framer-THrHU .framer-styles-preset-ai6nq8.rich-text-wrapper h1 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --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: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1329px) and (min-width: 810px) { .framer-THrHU .framer-styles-preset-ai6nq8:not(.rich-text-wrapper), .framer-THrHU .framer-styles-preset-ai6nq8.rich-text-wrapper h1 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", 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: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-THrHU .framer-styles-preset-ai6nq8:not(.rich-text-wrapper), .framer-THrHU .framer-styles-preset-ai6nq8.rich-text-wrapper h1 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --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: 300; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 300; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-THrHU\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"TiC518czX\",\"lypGE49Xa\",\"cb1RgRGtn\",\"ULu3MriIw\",\"f8ekTytuo\",\"jQ0r5ZoRi\",\"c7iz8gw1B\",\"jKT70t6dX\",\"bC7ilVOCn\",\"zbl4s7sTt\"];const serializationHash=\"framer-MkIAU\";const variantClassNames={bC7ilVOCn:\"framer-v-j30oa\",c7iz8gw1B:\"framer-v-rw7cnk\",cb1RgRGtn:\"framer-v-74xq5c\",f8ekTytuo:\"framer-v-8tmqvp\",jKT70t6dX:\"framer-v-1ha2nh0\",jQ0r5ZoRi:\"framer-v-behmo8\",lypGE49Xa:\"framer-v-1vqpt8w\",TiC518czX:\"framer-v-bnkjm4\",ULu3MriIw:\"framer-v-1k05wwv\",zbl4s7sTt:\"framer-v-18d5bcu\"};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 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={\"Arrow-Right-Black\":\"lypGE49Xa\",\"Ash Black Circle\":\"TiC518czX\",\"Brown Circle\":\"cb1RgRGtn\",\"Brown-Arrow\":\"f8ekTytuo\",\"down-arrow\":\"bC7ilVOCn\",\"scroll-down\":\"zbl4s7sTt\",\"White Circle\":\"ULu3MriIw\",Close:\"jKT70t6dX\",Drag:\"jQ0r5ZoRi\",PlayShowreel:\"c7iz8gw1B\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TiC518czX\"};};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:\"TiC518czX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"lypGE49Xa\",\"f8ekTytuo\",\"jQ0r5ZoRi\",\"c7iz8gw1B\",\"jKT70t6dX\",\"bC7ilVOCn\",\"zbl4s7sTt\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"jQ0r5ZoRi\",\"c7iz8gw1B\",\"jKT70t6dX\",\"zbl4s7sTt\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"jQ0r5ZoRi\")return true;return false;};const isDisplayed3=()=>{if([\"lypGE49Xa\",\"f8ekTytuo\",\"c7iz8gw1B\",\"jKT70t6dX\",\"bC7ilVOCn\",\"zbl4s7sTt\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"c7iz8gw1B\")return true;return false;};const isDisplayed5=()=>{if([\"lypGE49Xa\",\"f8ekTytuo\",\"jQ0r5ZoRi\",\"c7iz8gw1B\",\"bC7ilVOCn\"].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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bnkjm4\",className,classNames),\"data-framer-name\":\"Ash Black Circle\",layoutDependency:layoutDependency,layoutId:\"TiC518czX\",ref:refBinding,style:{backdropFilter:\"blur(0px)\",backgroundColor:\"var(--token-ac0abbb4-7052-407f-a0cc-31ccd2bd2ea2, rgb(52, 53, 57))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,WebkitBackdropFilter:\"blur(0px)\",...style},variants:{c7iz8gw1B:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"},cb1RgRGtn:{backgroundColor:\"var(--token-f71b1b5b-27ea-4cc8-b078-274ae5437b43, rgb(142, 133, 126))\"},f8ekTytuo:{backgroundColor:\"var(--token-f71b1b5b-27ea-4cc8-b078-274ae5437b43, rgb(142, 133, 126))\"},jKT70t6dX:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"},ULu3MriIw:{backgroundColor:\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\"},zbl4s7sTt:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}},...addPropertyOverrides({bC7ilVOCn:{\"data-framer-name\":\"down-arrow\"},c7iz8gw1B:{\"data-framer-name\":\"PlayShowreel\"},cb1RgRGtn:{\"data-framer-name\":\"Brown Circle\"},f8ekTytuo:{\"data-framer-name\":\"Brown-Arrow\"},jKT70t6dX:{\"data-framer-name\":\"Close\"},jQ0r5ZoRi:{\"data-framer-name\":\"Drag\"},lypGE49Xa:{\"data-framer-name\":\"Arrow-Right-Black\"},ULu3MriIw:{\"data-framer-name\":\"White Circle\"},zbl4s7sTt:{\"data-framer-name\":\"scroll-down\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-k6yna1\",layoutDependency:layoutDependency,layoutId:\"rXwoCC5ql\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19q7h1b\",layoutDependency:layoutDependency,layoutId:\"lvyqwpOLs\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vy7mzc\",\"data-framer-name\":\"Arrow 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"V35SXdweZ\",style:{filter:\"brightness(2) grayscale(1)\",rotate:0,WebkitFilter:\"brightness(2) grayscale(1)\"},svg:'<svg width=\"22\" height=\"16\" viewBox=\"0 0 22 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.7071 8.70711C22.0976 8.31658 22.0976 7.68342 21.7071 7.2929L15.3431 0.928934C14.9526 0.538409 14.3195 0.538409 13.9289 0.928933C13.5384 1.31946 13.5384 1.95262 13.9289 2.34315L19.5858 8L13.9289 13.6569C13.5384 14.0474 13.5384 14.6805 13.9289 15.0711C14.3195 15.4616 14.9526 15.4616 15.3431 15.0711L21.7071 8.70711ZM-8.74228e-08 9L21 9L21 7L8.74228e-08 7L-8.74228e-08 9Z\" fill=\"#8E857E\"/>\\n</svg>\\n',variants:{bC7ilVOCn:{rotate:90}},withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"DRAG\"})}),className:\"framer-krwj69\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"vQpCPrgAk\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tzx6h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"cabJ2FK0L\",svg:'<svg width=\"26\" height=\"13\" viewBox=\"0 0 26 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.6494 12.5191L25.524 7.64698C26.1587 7.01259 26.1587 5.98233 25.524 5.34794L20.6494 0.475795C20.0147 -0.158598 18.984 -0.158598 18.3493 0.475795C17.7146 1.11019 17.7146 2.14044 18.3493 2.77484L20.4514 4.87595H5.54858L7.65072 2.77484C8.28542 2.14044 8.28542 1.11019 7.65072 0.475795C7.01601 -0.158598 5.98526 -0.158598 5.35055 0.475795L0.476028 5.34794C-0.158676 5.98233 -0.158676 7.01259 0.476028 7.64698L5.35055 12.5191C5.98526 13.1535 7.01601 13.1535 7.65072 12.5191C8.28542 11.8847 8.28542 10.8545 7.65072 10.2201L5.55366 8.12405H20.4565L18.3544 10.2252C17.7197 10.8596 17.7197 11.8898 18.3544 12.5242C18.9891 13.1586 20.0198 13.1586 20.6545 12.5242L20.6494 12.5191Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-svwmt8\",layoutDependency:layoutDependency,layoutId:\"ISzrlr8wO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1klt3ug\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"qUbpD14vE\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"0 0 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.125 0.882053C7.275 -0.255246 4.95 -0.292739 3.0625 0.769573C1.175 1.83188 0 3.83153 0 6.00615V49.9984C0 52.173 1.175 54.1726 3.0625 55.2349C4.95 56.2973 7.275 56.2473 9.125 55.1225L45.125 33.1264C46.9125 32.039 48 30.1019 48 28.0023C48 25.9026 46.9125 23.978 45.125 22.8782L9.125 0.882053Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"DRAG\"})}),className:\"framer-mv1nmo\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"OCLPrBJe3\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jKT70t6dX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"CLOSE\"})})},zbl4s7sTt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"SCROLL\"})})}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MkIAU.framer-1nf0lly, .framer-MkIAU .framer-1nf0lly { display: block; }\",\".framer-MkIAU.framer-bnkjm4 { height: 15px; overflow: hidden; position: relative; width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MkIAU .framer-k6yna1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-MkIAU .framer-19q7h1b { 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: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-MkIAU .framer-1vy7mzc { flex: none; height: 16px; position: relative; width: 22px; }\",\".framer-MkIAU .framer-krwj69, .framer-MkIAU .framer-mv1nmo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MkIAU .framer-tzx6h { flex: none; height: 13px; position: relative; width: 26px; }\",\".framer-MkIAU .framer-svwmt8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 5px; position: relative; width: min-content; }\",\".framer-MkIAU .framer-1klt3ug { flex: none; height: 21px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MkIAU .framer-19q7h1b, .framer-MkIAU .framer-svwmt8 { gap: 0px; } .framer-MkIAU .framer-19q7h1b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MkIAU .framer-19q7h1b > :first-child { margin-left: 0px; } .framer-MkIAU .framer-19q7h1b > :last-child { margin-right: 0px; } .framer-MkIAU .framer-svwmt8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MkIAU .framer-svwmt8 > :first-child { margin-top: 0px; } .framer-MkIAU .framer-svwmt8 > :last-child { margin-bottom: 0px; } }\",\".framer-MkIAU.framer-v-1vqpt8w.framer-bnkjm4, .framer-MkIAU.framer-v-8tmqvp.framer-bnkjm4, .framer-MkIAU.framer-v-rw7cnk.framer-bnkjm4, .framer-MkIAU.framer-v-1ha2nh0.framer-bnkjm4, .framer-MkIAU.framer-v-j30oa.framer-bnkjm4, .framer-MkIAU.framer-v-18d5bcu.framer-bnkjm4 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 75px); width: 75px; }\",\".framer-MkIAU.framer-v-1vqpt8w .framer-k6yna1, .framer-MkIAU.framer-v-8tmqvp .framer-k6yna1, .framer-MkIAU.framer-v-rw7cnk .framer-k6yna1, .framer-MkIAU.framer-v-1ha2nh0 .framer-k6yna1, .framer-MkIAU.framer-v-j30oa .framer-k6yna1, .framer-MkIAU.framer-v-18d5bcu .framer-k6yna1 { height: var(--framer-aspect-ratio-supported, 75px); }\",\".framer-MkIAU.framer-v-74xq5c.framer-bnkjm4, .framer-MkIAU.framer-v-1k05wwv.framer-bnkjm4 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 15px); }\",\".framer-MkIAU.framer-v-behmo8.framer-bnkjm4 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); width: 100px; }\",\".framer-MkIAU.framer-v-behmo8 .framer-k6yna1 { height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-MkIAU.framer-v-behmo8 .framer-19q7h1b, .framer-MkIAU.framer-v-rw7cnk .framer-19q7h1b, .framer-MkIAU.framer-v-1ha2nh0 .framer-19q7h1b, .framer-MkIAU.framer-v-18d5bcu .framer-19q7h1b { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MkIAU.framer-v-behmo8 .framer-19q7h1b { gap: 0px; } .framer-MkIAU.framer-v-behmo8 .framer-19q7h1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MkIAU.framer-v-behmo8 .framer-19q7h1b > :first-child { margin-top: 0px; } .framer-MkIAU.framer-v-behmo8 .framer-19q7h1b > :last-child { margin-bottom: 0px; } }\",\".framer-MkIAU.framer-v-rw7cnk .framer-svwmt8 { flex-direction: row; order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MkIAU.framer-v-rw7cnk .framer-19q7h1b, .framer-MkIAU.framer-v-rw7cnk .framer-svwmt8 { gap: 0px; } .framer-MkIAU.framer-v-rw7cnk .framer-19q7h1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MkIAU.framer-v-rw7cnk .framer-19q7h1b > :first-child { margin-top: 0px; } .framer-MkIAU.framer-v-rw7cnk .framer-19q7h1b > :last-child { margin-bottom: 0px; } .framer-MkIAU.framer-v-rw7cnk .framer-svwmt8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MkIAU.framer-v-rw7cnk .framer-svwmt8 > :first-child { margin-left: 0px; } .framer-MkIAU.framer-v-rw7cnk .framer-svwmt8 > :last-child { margin-right: 0px; } }\",\".framer-MkIAU.framer-v-1ha2nh0 .framer-mv1nmo, .framer-MkIAU.framer-v-18d5bcu .framer-mv1nmo { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MkIAU.framer-v-1ha2nh0 .framer-19q7h1b { gap: 0px; } .framer-MkIAU.framer-v-1ha2nh0 .framer-19q7h1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MkIAU.framer-v-1ha2nh0 .framer-19q7h1b > :first-child { margin-top: 0px; } .framer-MkIAU.framer-v-1ha2nh0 .framer-19q7h1b > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MkIAU.framer-v-18d5bcu .framer-19q7h1b { gap: 0px; } .framer-MkIAU.framer-v-18d5bcu .framer-19q7h1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MkIAU.framer-v-18d5bcu .framer-19q7h1b > :first-child { margin-top: 0px; } .framer-MkIAU.framer-v-18d5bcu .framer-19q7h1b > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15\n * @framerIntrinsicWidth 15\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lypGE49Xa\":{\"layout\":[\"fixed\",\"fixed\"]},\"cb1RgRGtn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ULu3MriIw\":{\"layout\":[\"fixed\",\"fixed\"]},\"f8ekTytuo\":{\"layout\":[\"fixed\",\"fixed\"]},\"jQ0r5ZoRi\":{\"layout\":[\"fixed\",\"fixed\"]},\"c7iz8gw1B\":{\"layout\":[\"fixed\",\"fixed\"]},\"jKT70t6dX\":{\"layout\":[\"fixed\",\"fixed\"]},\"bC7ilVOCn\":{\"layout\":[\"fixed\",\"fixed\"]},\"zbl4s7sTt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermZBjQarnf=withCSS(Component,css,\"framer-MkIAU\");export default FramermZBjQarnf;FramermZBjQarnf.displayName=\"CursorFollow\";FramermZBjQarnf.defaultProps={height:15,width:15};addPropertyControls(FramermZBjQarnf,{variant:{options:[\"TiC518czX\",\"lypGE49Xa\",\"cb1RgRGtn\",\"ULu3MriIw\",\"f8ekTytuo\",\"jQ0r5ZoRi\",\"c7iz8gw1B\",\"jKT70t6dX\",\"bC7ilVOCn\",\"zbl4s7sTt\"],optionTitles:[\"Ash Black Circle\",\"Arrow-Right-Black\",\"Brown Circle\",\"White Circle\",\"Brown-Arrow\",\"Drag\",\"PlayShowreel\",\"Close\",\"down-arrow\",\"scroll-down\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermZBjQarnf,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermZBjQarnf\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lypGE49Xa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cb1RgRGtn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ULu3MriIw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f8ekTytuo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jQ0r5ZoRi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c7iz8gw1B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jKT70t6dX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bC7ilVOCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zbl4s7sTt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"15\",\"framerIntrinsicWidth\":\"15\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mZBjQarnf.map", "// Generated by Framer (48da836)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-variable\",\"FS;Poppins-variableVF=IndnaHQiIDM2Nw==\",\"FS;Poppins-variableVF=IndnaHQiIDM2Nw==\",\"FS;Poppins-variableVF=IndnaHQiIDM2Nw==\"]);const variationAxes=[{defaultValue:100,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DXWQGUHDKBI6OC6VABLBIH32VNWJYNX7/AHNAY7DQAEGE2SZPLPBG5BENKLEA34XN/KYQLPR2735WAT5CT22Y22PYHV3W52QJO.woff2\",variationAxes,weight:\"400\"}]}];export const css=['.framer-TL5Pa .framer-styles-preset-wgt2us:not(.rich-text-wrapper), .framer-TL5Pa .framer-styles-preset-wgt2us.rich-text-wrapper p { --framer-font-family: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'salt\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 367; --framer-font-variation-axes-bold-italic: \"wght\" 367; --framer-font-variation-axes-italic: \"wght\" 367; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1599px) and (min-width: 1330px) { .framer-TL5Pa .framer-styles-preset-wgt2us:not(.rich-text-wrapper), .framer-TL5Pa .framer-styles-preset-wgt2us.rich-text-wrapper p { --framer-font-family: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'salt\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 367; --framer-font-variation-axes-bold-italic: \"wght\" 367; --framer-font-variation-axes-italic: \"wght\" 367; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 1329px) and (min-width: 810px) { .framer-TL5Pa .framer-styles-preset-wgt2us:not(.rich-text-wrapper), .framer-TL5Pa .framer-styles-preset-wgt2us.rich-text-wrapper p { --framer-font-family: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'salt\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 367; --framer-font-variation-axes-bold-italic: \"wght\" 367; --framer-font-variation-axes-italic: \"wght\" 367; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-TL5Pa .framer-styles-preset-wgt2us:not(.rich-text-wrapper), .framer-TL5Pa .framer-styles-preset-wgt2us.rich-text-wrapper p { --framer-font-family: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'salt\\' on; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 367; --framer-font-variation-axes-bold-italic: \"wght\" 367; --framer-font-variation-axes-italic: \"wght\" 367; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, #343539); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-TL5Pa\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Q247EYIcR:{hover:true}};const serializationHash=\"framer-JG1Z5\";const variantClassNames={Q247EYIcR:\"framer-v-g4sht5\"};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 transition1={bounce:0,delay:0,duration:1,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Q247EYIcR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-g4sht5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Q247EYIcR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"Q247EYIcR-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ibGFjaw==\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\",\"--framer-text-transform\":\"inherit\"},children:\"AROON\"})}),className:\"framer-j7l8n5\",fonts:[\"FS;Poppins-black\"],layoutDependency:layoutDependency,layoutId:\"YwJJ_k5wH\",style:{\"--extracted-r6o4lv\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ibGFjaw==\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0)))\",\"--framer-text-transform\":\"inherit\"},children:\"H\"})}),className:\"framer-1fhz6ie\",fonts:[\"FS;Poppins-black\"],layoutDependency:layoutDependency,layoutId:\"ziFYEuYfL\",style:{\"--extracted-r6o4lv\":\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xrte3\",layoutDependency:layoutDependency,layoutId:\"yyoHbUFU1\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JG1Z5.framer-587w0v, .framer-JG1Z5 .framer-587w0v { display: block; }\",\".framer-JG1Z5.framer-g4sht5 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 12px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 56px; }\",\".framer-JG1Z5 .framer-j7l8n5 { flex: none; height: auto; left: 9px; position: absolute; top: 142%; white-space: pre; width: auto; z-index: 2; }\",\".framer-JG1Z5 .framer-1fhz6ie { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-JG1Z5 .framer-6xrte3 { bottom: 2px; flex: none; height: 4px; left: 10px; overflow: visible; position: absolute; width: 10px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JG1Z5.framer-g4sht5 { gap: 0px; } .framer-JG1Z5.framer-g4sht5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-JG1Z5.framer-g4sht5 > :first-child { margin-left: 0px; } .framer-JG1Z5.framer-g4sht5 > :last-child { margin-right: 0px; } }\",\".framer-JG1Z5.framer-v-g4sht5.hover.framer-g4sht5 { aspect-ratio: 4.666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 12px); }\",\".framer-JG1Z5.framer-v-g4sht5.hover .framer-j7l8n5 { top: 50%; }\",\".framer-JG1Z5.framer-v-g4sht5.hover .framer-6xrte3 { bottom: -5px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LTyar9TXX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerApIOqlbfS=withCSS(Component,css,\"framer-JG1Z5\");export default FramerApIOqlbfS;FramerApIOqlbfS.displayName=\"LOGO\";FramerApIOqlbfS.defaultProps={height:12,width:56};addFonts(FramerApIOqlbfS,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerApIOqlbfS\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LTyar9TXX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"56\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ApIOqlbfS.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/3kNZr8EOWhnRHJMQfu1e/iZ5tPQ7ycUeLn5KlNHU1/AMIwMsmEt.js\";const cycleOrder=[\"GWbXKpJDg\",\"Je4sg87Rw\",\"CBik15myi\"];const serializationHash=\"framer-ozJB2\";const variantClassNames={CBik15myi:\"framer-v-50d2kt\",GWbXKpJDg:\"framer-v-1vgpxa3\",Je4sg87Rw:\"framer-v-10gdmyb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,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={\"Line IN\":\"Je4sg87Rw\",\"Line OUT\":\"CBik15myi\",Default:\"GWbXKpJDg\"};const getProps=({color,height,id,label,link2,smoothScroll,width,...props})=>{return{...props,kculbN8mH:color??props.kculbN8mH??\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",pjEv2jeHn:link2??props.pjEv2jeHn,TlGfaIGuI:smoothScroll??props.TlGfaIGuI??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"GWbXKpJDg\",X4kGlDs4u:label??props.X4kGlDs4u??\"UNDERLINE BUTTON\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,X4kGlDs4u,kculbN8mH,TlGfaIGuI,pjEv2jeHn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GWbXKpJDg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntersfj57p=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Je4sg87Rw\");});const onMouseLeave1it3434=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"CBik15myi\");});const onAppear1waqx40=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GWbXKpJDg\"),350);});useOnVariantChange(baseVariant,{CBik15myi:onAppear1waqx40});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({CBik15myi:{value:transition2},Je4sg87Rw:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:pjEv2jeHn,nodeId:\"GWbXKpJDg\",openInNewTab:false,smoothScroll:TlGfaIGuI,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1vgpxa3\",className,classNames)} framer-rk8qes`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GWbXKpJDg\",onMouseEnter:onMouseEntersfj57p,ref:ref??ref1,style:{...style},...addPropertyOverrides({CBik15myi:{\"data-framer-name\":\"Line OUT\",onMouseEnter:undefined},Je4sg87Rw:{\"data-framer-name\":\"Line IN\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1it3434}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cr5i7y\",\"data-styles-preset\":\"AMIwMsmEt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-kculbN8mH-cKelTRcpY))\"},children:\"UNDERLINE BUTTON\"})}),className:\"framer-xrawrm\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nOqHJkraF\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-kculbN8mH-cKelTRcpY)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-kculbN8mH-cKelTRcpY\":kculbN8mH},text:X4kGlDs4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-156qmbj\",\"data-framer-name\":\"Underline Wrap\",layoutDependency:layoutDependency,layoutId:\"IoShkkif3\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ioc2kr\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"wsxH4Xo5Z\",style:{backgroundColor:kculbN8mH}})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ozJB2.framer-rk8qes, .framer-ozJB2 .framer-rk8qes { display: block; }\",\".framer-ozJB2.framer-1vgpxa3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ozJB2 .framer-xrawrm { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ozJB2 .framer-156qmbj { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-ozJB2 .framer-1ioc2kr { bottom: 0px; flex: none; left: -10px; overflow: hidden; position: absolute; top: 0px; width: 1%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ozJB2.framer-1vgpxa3 { gap: 0px; } .framer-ozJB2.framer-1vgpxa3 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-ozJB2.framer-1vgpxa3 > :first-child { margin-top: 0px; } .framer-ozJB2.framer-1vgpxa3 > :last-child { margin-bottom: 0px; } }\",\".framer-ozJB2.framer-v-10gdmyb .framer-1ioc2kr { left: 0px; right: 0px; width: unset; }\",\".framer-ozJB2.framer-v-50d2kt .framer-1ioc2kr { left: unset; right: -10px; width: 1%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23\n * @framerIntrinsicWidth 129\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Je4sg87Rw\":{\"layout\":[\"auto\",\"auto\"]},\"CBik15myi\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"X4kGlDs4u\":\"label\",\"kculbN8mH\":\"color\",\"TlGfaIGuI\":\"smoothScroll\",\"pjEv2jeHn\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercKelTRcpY=withCSS(Component,css,\"framer-ozJB2\");export default FramercKelTRcpY;FramercKelTRcpY.displayName=\"Underline Button\";FramercKelTRcpY.defaultProps={height:23,width:129};addPropertyControls(FramercKelTRcpY,{variant:{options:[\"GWbXKpJDg\",\"Je4sg87Rw\",\"CBik15myi\"],optionTitles:[\"Default\",\"Line IN\",\"Line OUT\"],title:\"Variant\",type:ControlType.Enum},X4kGlDs4u:{defaultValue:\"UNDERLINE BUTTON\",displayTextArea:false,title:\"Label\",type:ControlType.String},kculbN8mH:{defaultValue:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",title:\"Color\",type:ControlType.Color},TlGfaIGuI:{defaultValue:true,title:\"Smooth Scroll\",type:ControlType.Boolean},pjEv2jeHn:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramercKelTRcpY,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercKelTRcpY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"23\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"129\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Je4sg87Rw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CBik15myi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"X4kGlDs4u\\\":\\\"label\\\",\\\"kculbN8mH\\\":\\\"color\\\",\\\"TlGfaIGuI\\\":\\\"smoothScroll\\\",\\\"pjEv2jeHn\\\":\\\"link2\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cKelTRcpY.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={gFWVJPQ_i:{hover:true}};const serializationHash=\"framer-W35mu\";const variantClassNames={gFWVJPQ_i:\"framer-v-1e9idkh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 getProps=({click,height,id,width,...props})=>{return{...props,PKxYDckK4:click??props.PKxYDckK4};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PKxYDckK4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gFWVJPQ_i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcq5an5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PKxYDckK4){const res=await PKxYDckK4(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1e9idkh\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gFWVJPQ_i\",onTap:onTapcq5an5,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"gFWVJPQ_i-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d55bxv\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"apa9DtkBO\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uewiga\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"T31bCmcmo\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W35mu.framer-1m6g1nk, .framer-W35mu .framer-1m6g1nk { display: block; }\",\".framer-W35mu.framer-1e9idkh { cursor: pointer; height: 40px; overflow: hidden; position: relative; width: 30px; }\",\".framer-W35mu .framer-1d55bxv { flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-W35mu .framer-uewiga { flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-W35mu.framer-v-1e9idkh.hover .framer-1d55bxv { left: 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"v8cs0gEsE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"PKxYDckK4\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGqpJU7ruy=withCSS(Component,css,\"framer-W35mu\");export default FramerGqpJU7ruy;FramerGqpJU7ruy.displayName=\"Icon\";FramerGqpJU7ruy.defaultProps={height:40,width:30};addPropertyControls(FramerGqpJU7ruy,{PKxYDckK4:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerGqpJU7ruy,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGqpJU7ruy\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v8cs0gEsE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"PKxYDckK4\\\":\\\"click\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GqpJU7ruy.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YSo8yuRFTKaXxnQ5hhTF/G6mDq7CJi3dBbcfBFQrk/QaLjLOyvh.js\";const enabledGestures={xiTZ4wNFE:{hover:true}};const serializationHash=\"framer-hnNCm\";const variantClassNames={xiTZ4wNFE:\"framer-v-1q9jibh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:.05,duration:.65,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 getProps=({height,id,link,title,width,...props})=>{return{...props,H7d7nTZgx:title??props.H7d7nTZgx??\"Home\",LXTtDZxhc:link??props.LXTtDZxhc};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,H7d7nTZgx,LXTtDZxhc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xiTZ4wNFE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:LXTtDZxhc,nodeId:\"xiTZ4wNFE\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1q9jibh\",className,classNames)} framer-kn7kb5`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xiTZ4wNFE\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"xiTZ4wNFE-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wgt2us\",\"data-styles-preset\":\"QaLjLOyvh\",children:\"Home\"})}),className:\"framer-14yqwbw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U0Hqv3fIr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:H7d7nTZgx,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hnNCm.framer-kn7kb5, .framer-hnNCm .framer-kn7kb5 { display: block; }\",\".framer-hnNCm.framer-1q9jibh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; text-decoration: none; width: 260px; }\",\".framer-hnNCm .framer-14yqwbw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hnNCm.framer-1q9jibh { gap: 0px; } .framer-hnNCm.framer-1q9jibh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hnNCm.framer-1q9jibh > :first-child { margin-left: 0px; } .framer-hnNCm.framer-1q9jibh > :last-child { margin-right: 0px; } }\",\".framer-hnNCm.framer-v-1q9jibh.hover.framer-1q9jibh { padding: 10px 0px 10px 20px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Gq9xiLOQI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"H7d7nTZgx\":\"title\",\"LXTtDZxhc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruMjMAKBbn=withCSS(Component,css,\"framer-hnNCm\");export default FrameruMjMAKBbn;FrameruMjMAKBbn.displayName=\"Simple-Link\";FrameruMjMAKBbn.defaultProps={height:45,width:260};addPropertyControls(FrameruMjMAKBbn,{H7d7nTZgx:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},LXTtDZxhc:{title:\"Link\",type:ControlType.Link}});addFonts(FrameruMjMAKBbn,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruMjMAKBbn\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gq9xiLOQI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"260\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"45\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"H7d7nTZgx\\\":\\\"title\\\",\\\"LXTtDZxhc\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YSo8yuRFTKaXxnQ5hhTF/G6mDq7CJi3dBbcfBFQrk/QaLjLOyvh.js\";const enabledGestures={ox2ByGp_q:{hover:true}};const serializationHash=\"framer-EmoLc\";const variantClassNames={ox2ByGp_q:\"framer-v-zkugxw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:.05,duration:.65,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 getProps=({height,id,link,title,width,...props})=>{return{...props,OEat7xqTk:title??props.OEat7xqTk??\"PaperTale\",oMGgm0VdJ:link??props.oMGgm0VdJ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oMGgm0VdJ,OEat7xqTk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ox2ByGp_q\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:oMGgm0VdJ,nodeId:\"ox2ByGp_q\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-zkugxw\",className,classNames)} framer-1jylzqr`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ox2ByGp_q\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"ox2ByGp_q-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q4bl53\",layoutDependency:layoutDependency,layoutId:\"GGFjkAIrU\",style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wgt2us\",\"data-styles-preset\":\"QaLjLOyvh\",children:\"PaperTale\"})}),className:\"framer-o35gc5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CMbSNikOt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OEat7xqTk,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EmoLc.framer-1jylzqr, .framer-EmoLc .framer-1jylzqr { display: block; }\",\".framer-EmoLc.framer-zkugxw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; text-decoration: none; width: 250px; }\",\".framer-EmoLc .framer-1q4bl53 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: visible; position: relative; width: 6px; }\",\".framer-EmoLc .framer-o35gc5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EmoLc.framer-zkugxw { gap: 0px; } .framer-EmoLc.framer-zkugxw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-EmoLc.framer-zkugxw > :first-child { margin-left: 0px; } .framer-EmoLc.framer-zkugxw > :last-child { margin-right: 0px; } }\",\".framer-EmoLc.framer-v-zkugxw.hover.framer-zkugxw { padding: 10px 0px 10px 20px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ugvX1epNq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oMGgm0VdJ\":\"link\",\"OEat7xqTk\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervefaMXUuI=withCSS(Component,css,\"framer-EmoLc\");export default FramervefaMXUuI;FramervefaMXUuI.displayName=\"Links-CS-Menu\";FramervefaMXUuI.defaultProps={height:45,width:250};addPropertyControls(FramervefaMXUuI,{oMGgm0VdJ:{title:\"Link\",type:ControlType.Link},OEat7xqTk:{defaultValue:\"PaperTale\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramervefaMXUuI,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervefaMXUuI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ugvX1epNq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"250\",\"framerIntrinsicHeight\":\"45\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"oMGgm0VdJ\\\":\\\"link\\\",\\\"OEat7xqTk\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/UiRTcbqBl1YfdaF7LUJW/3WrNqJ1dcHTdlbHlQJrZ/SL9WcvIfx.js\";import LOGO from\"https://framerusercontent.com/modules/0eW6k9CFXIsc4QnMtFYb/aUVwGykBMM8NnB3yZ62Q/ApIOqlbfS.js\";import UnderlineButton from\"https://framerusercontent.com/modules/ixVbCphUuO8b8AMtAzgo/39MHvchdz79clIhOQmJt/cKelTRcpY.js\";import Icon from\"https://framerusercontent.com/modules/ddYxFzWV9fgYYXT3b8Sl/Et4WSg4tUI6Hg1ZB9xzO/GqpJU7ruy.js\";import SimpleLink from\"https://framerusercontent.com/modules/LDojGtxxuqL9Lw8OBxnl/R8syvrGyxq2VNkRpt1E4/uMjMAKBbn.js\";import LinksCSMenu from\"https://framerusercontent.com/modules/4KixZg9LN8Yg3KwCccGa/tmdvphdgySCi9TonSk52/vefaMXUuI.js\";const LOGOFonts=getFonts(LOGO);const UnderlineButtonFonts=getFonts(UnderlineButton);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const IconFonts=getFonts(Icon);const SimpleLinkFonts=getFonts(SimpleLink);const LinksCSMenuFonts=getFonts(LinksCSMenu);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"E2WnUmbMW\",\"u3gUMPd7R\",\"lU6q5Fez5\",\"Sz8prF2h4\"];const serializationHash=\"framer-hFcHQ\";const variantClassNames={E2WnUmbMW:\"framer-v-am049r\",lU6q5Fez5:\"framer-v-ybfmj8\",Sz8prF2h4:\"framer-v-d6xmh\",u3gUMPd7R:\"framer-v-13688dd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition2={bounce:0,delay:0,duration:.65,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition3={bounce:.2,delay:.1,duration:1,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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={\"Homepage-Desktop-Slide\":\"Sz8prF2h4\",\"Homepage-Desktop\":\"lU6q5Fez5\",Desktop:\"E2WnUmbMW\",Phone:\"u3gUMPd7R\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"E2WnUmbMW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"E2WnUmbMW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const PKxYDckK4txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"u3gUMPd7R\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"u3gUMPd7R\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Sz8prF2h4\")return true;return false;};const router=useRouter();const isDisplayed3=()=>{if(baseVariant===\"Sz8prF2h4\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-am049r\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"E2WnUmbMW\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(223, 223, 223)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",WebkitBackdropFilter:\"blur(20px)\",...style},...addPropertyOverrides({lU6q5Fez5:{\"data-framer-name\":\"Homepage-Desktop\"},Sz8prF2h4:{\"data-framer-name\":\"Homepage-Desktop-Slide\"},u3gUMPd7R:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1363uy1\",layoutDependency:layoutDependency,layoutId:\"vgom_lD8i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b0g6h\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"T6cQ0i1yi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1itw5h0\",layoutDependency:layoutDependency,layoutId:\"PVxSTpZXq\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"eB255zeRM\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i9j1lr framer-djpd3d\",layoutDependency:layoutDependency,layoutId:\"eB255zeRM\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:12,width:\"56px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-63)/2)+31.5+0+-6+0,...addPropertyOverrides({Sz8prF2h4:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||65)-40-23)/2)+11.5+0+-6+0},u3gUMPd7R:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-40)/2)+7.199999999999999+0+6.800000000000006+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hl2aw4-container\",layoutDependency:layoutDependency,layoutId:\"NNHydiCyB-container\",style:{scale:1.2},children:/*#__PURE__*/_jsx(LOGO,{height:\"100%\",id:\"NNHydiCyB\",layoutId:\"NNHydiCyB\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqakqf\",layoutDependency:layoutDependency,layoutId:\"UnGr0ajt9\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1saWdodA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c0116e3d-95dd-4ed9-9f6e-97030df8264c, rgb(13, 15, 38)))\",\"--framer-text-transform\":\"uppercase\"},children:\"product designer /\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1saWdodA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-c0116e3d-95dd-4ed9-9f6e-97030df8264c, rgb(13, 15, 38)))\",\"--framer-text-transform\":\"uppercase\"},children:\"motion graphics artist\"})]}),className:\"framer-1o316qv\",fonts:[\"FS;Poppins-light\"],layoutDependency:layoutDependency,layoutId:\"V2RrOHd0x\",style:{\"--extracted-2gxw0f\":\"var(--token-c0116e3d-95dd-4ed9-9f6e-97030df8264c, rgb(13, 15, 38))\",\"--extracted-r6o4lv\":\"var(--token-c0116e3d-95dd-4ed9-9f6e-97030df8264c, rgb(13, 15, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uy2cq1\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"jG5ubJi3o\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zmcq80\",layoutDependency:layoutDependency,layoutId:\"jOZadErkp\",children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, rgb(102, 103, 118)))\",\"--framer-text-transform\":\"uppercase\"},children:[\"product DesigneR /\",/*#__PURE__*/_jsx(motion.br,{}),\"Motion graphics artist\"]})}),className:\"framer-1odnlp\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"HdESe6t3S\",style:{\"--extracted-r6o4lv\":\"var(--token-e797f9ee-5f1a-4891-8a6b-7c4320f7c827, rgb(102, 103, 118))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1noqdh7\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"uhOeieM9l\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":oOAinYAZq\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":oOAinYAZq\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Sz8prF2h4:{height:23,y:(componentViewport?.y||0)+(20+((componentViewport?.height||65)-40-23)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1mrus1d-container\",\"data-framer-appear-id\":\"1mrus1d\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"agarCY7wx-container\",optimized:true,children:/*#__PURE__*/_jsx(UnderlineButton,{height:\"100%\",id:\"agarCY7wx\",kculbN8mH:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",layoutId:\"agarCY7wx\",pjEv2jeHn:resolvedLinks[0],TlGfaIGuI:true,variant:\"GWbXKpJDg\",width:\"100%\",X4kGlDs4u:\"Home\",...addPropertyOverrides({Sz8prF2h4:{pjEv2jeHn:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lUXc4p6z7\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lUXc4p6z7\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Sz8prF2h4:{height:23,y:(componentViewport?.y||0)+(20+((componentViewport?.height||65)-40-23)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-zvib6n-container\",\"data-framer-appear-id\":\"zvib6n\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"leLb0bJJH-container\",optimized:true,children:/*#__PURE__*/_jsx(UnderlineButton,{height:\"100%\",id:\"leLb0bJJH\",kculbN8mH:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",layoutId:\"leLb0bJJH\",pjEv2jeHn:resolvedLinks1[0],TlGfaIGuI:true,variant:\"GWbXKpJDg\",width:\"100%\",X4kGlDs4u:\"Case Studies\",...addPropertyOverrides({Sz8prF2h4:{pjEv2jeHn:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ywBEEAmYz\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ywBEEAmYz\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Sz8prF2h4:{height:23,y:(componentViewport?.y||0)+(20+((componentViewport?.height||65)-40-23)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-tg5b3j-container\",\"data-framer-appear-id\":\"tg5b3j\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"gA26rM0Mw-container\",optimized:true,children:/*#__PURE__*/_jsx(UnderlineButton,{height:\"100%\",id:\"gA26rM0Mw\",kculbN8mH:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",layoutId:\"gA26rM0Mw\",pjEv2jeHn:resolvedLinks2[0],TlGfaIGuI:true,variant:\"GWbXKpJDg\",width:\"100%\",X4kGlDs4u:\"Expertise\",...addPropertyOverrides({Sz8prF2h4:{pjEv2jeHn:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SwC35xUmH\"},implicitPathVariables:undefined},{href:{webPageId:\"SwC35xUmH\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Sz8prF2h4:{height:23,y:(componentViewport?.y||0)+(20+((componentViewport?.height||65)-40-23)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1t3mml6-container\",\"data-framer-appear-id\":\"1t3mml6\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"dy0PGjIez-container\",optimized:true,children:/*#__PURE__*/_jsx(UnderlineButton,{height:\"100%\",id:\"dy0PGjIez\",kculbN8mH:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",layoutId:\"dy0PGjIez\",pjEv2jeHn:resolvedLinks3[0],TlGfaIGuI:true,variant:\"GWbXKpJDg\",width:\"100%\",X4kGlDs4u:\"About\",...addPropertyOverrides({Sz8prF2h4:{pjEv2jeHn:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14xl7h9\",layoutDependency:layoutDependency,layoutId:\"cCdoxqMD0\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/haroonahmadmalik/\",nodeId:\"UumrwDn_W\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-8xkym2 framer-djpd3d\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UumrwDn_W\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18.571 0 L 1.424 0 C 0.638 0 0 0.647 0 1.442 L 0 18.558 C 0 19.353 0.638 20 1.424 20 L 18.571 20 C 19.357 20 20 19.353 20 18.558 L 20 1.442 C 20 0.647 19.357 0 18.571 0 Z M 6.045 17.143 L 3.08 17.143 L 3.08 7.598 L 6.049 7.598 L 6.049 17.143 Z M 4.563 6.295 C 3.612 6.295 2.844 5.522 2.844 4.576 C 2.844 3.629 3.612 2.857 4.563 2.857 C 5.509 2.857 6.281 3.629 6.281 4.576 C 6.281 5.527 5.513 6.295 4.563 6.295 Z M 17.156 17.143 L 14.192 17.143 L 14.192 12.5 C 14.192 11.393 14.17 9.969 12.652 9.969 C 11.107 9.969 10.871 11.174 10.871 12.42 L 10.871 17.143 L 7.906 17.143 L 7.906 7.598 L 10.75 7.598 L 10.75 8.902 L 10.79 8.902 C 11.188 8.152 12.156 7.362 13.598 7.362 C 16.598 7.362 17.156 9.339 17.156 11.911 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11821409380,withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"30px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-63)/2)+11.5+0+0,...addPropertyOverrides({u3gUMPd7R:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-40)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1thn5zd-container\",id:`${layoutId}-1thn5zd`,layoutDependency:layoutDependency,layoutId:\"w4K_gnqD_-container\",ref:ref2,children:[/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"w4K_gnqD_\",layoutId:\"w4K_gnqD_\",PKxYDckK4:PKxYDckK4txyyif({overlay}),style:{height:\"100%\",width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1thn5zd`,offsetX:-114.00001270000001,offsetY:-44.9999954,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,...addPropertyOverrides({u3gUMPd7R:{offsetX:-98.00001270000001,offsetY:-47.9999954}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-lehlog\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"pwzPgihA1\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.15)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jw0qrh\",layoutDependency:layoutDependency,layoutId:\"SikTLud7P\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8poij6\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"hgggSm7If\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lyk2b2-container\",layoutDependency:layoutDependency,layoutId:\"LZxd4Bozy-container\",children:/*#__PURE__*/_jsx(SimpleLink,{H7d7nTZgx:\"Home\",height:\"100%\",id:\"LZxd4Bozy\",layoutId:\"LZxd4Bozy\",LXTtDZxhc:resolvedLinks4[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{LXTtDZxhc:resolvedLinks4[2]},u3gUMPd7R:{LXTtDZxhc:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"IwTQVBB98\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kohpqt framer-djpd3d\",layoutDependency:layoutDependency,layoutId:\"IwTQVBB98\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ai6nq8\",\"data-styles-preset\":\"SL9WcvIfx\",children:\"case studies\"})}),className:\"framer-1oxfcza\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fKoSvok8b\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O_8DDUQ_5\"},nodeId:\"YsDSCN2dv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6caq4p framer-djpd3d\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"YsDSCN2dv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O_8DDUQ_5\"},implicitPathVariables:undefined},{href:{webPageId:\"O_8DDUQ_5\"},implicitPathVariables:undefined},{href:{webPageId:\"O_8DDUQ_5\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ir6upp-container\",layoutDependency:layoutDependency,layoutId:\"UY7aO4sKM-container\",children:/*#__PURE__*/_jsx(LinksCSMenu,{height:\"100%\",id:\"UY7aO4sKM\",layoutId:\"UY7aO4sKM\",OEat7xqTk:\"PaperTale\",oMGgm0VdJ:resolvedLinks5[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{oMGgm0VdJ:resolvedLinks5[2]},u3gUMPd7R:{oMGgm0VdJ:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O_8DDUQ_5\"},nodeId:\"e6vdCQi1K\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r8w345 framer-djpd3d\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"e6vdCQi1K\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ksz4tn4Yx\"},implicitPathVariables:undefined},{href:{webPageId:\"ksz4tn4Yx\"},implicitPathVariables:undefined},{href:{webPageId:\"ksz4tn4Yx\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1psc90s-container\",layoutDependency:layoutDependency,layoutId:\"ZdfCLMM_l-container\",children:/*#__PURE__*/_jsx(LinksCSMenu,{height:\"100%\",id:\"ZdfCLMM_l\",layoutId:\"ZdfCLMM_l\",OEat7xqTk:\"Samsung\",oMGgm0VdJ:resolvedLinks6[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{oMGgm0VdJ:resolvedLinks6[2]},u3gUMPd7R:{oMGgm0VdJ:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O_8DDUQ_5\"},nodeId:\"u549zK42D\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1or1j3u framer-djpd3d\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"u549zK42D\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yhrTST_JZ\"},implicitPathVariables:undefined},{href:{webPageId:\"yhrTST_JZ\"},implicitPathVariables:undefined},{href:{webPageId:\"yhrTST_JZ\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9gzik-container\",layoutDependency:layoutDependency,layoutId:\"fYKRX8aLh-container\",children:/*#__PURE__*/_jsx(LinksCSMenu,{height:\"100%\",id:\"fYKRX8aLh\",layoutId:\"fYKRX8aLh\",OEat7xqTk:\"The view\",oMGgm0VdJ:resolvedLinks7[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{oMGgm0VdJ:resolvedLinks7[2]},u3gUMPd7R:{oMGgm0VdJ:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O_8DDUQ_5\"},nodeId:\"MU7bTxgTD\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fdbhl0 framer-djpd3d\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"MU7bTxgTD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(52, 53, 57, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ezIl7Ou7S\"},implicitPathVariables:undefined},{href:{webPageId:\"ezIl7Ou7S\"},implicitPathVariables:undefined},{href:{webPageId:\"ezIl7Ou7S\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sjcfgj-container\",layoutDependency:layoutDependency,layoutId:\"EESQVXv9O-container\",children:/*#__PURE__*/_jsx(LinksCSMenu,{height:\"100%\",id:\"EESQVXv9O\",layoutId:\"EESQVXv9O\",OEat7xqTk:\"Social Circle\",oMGgm0VdJ:resolvedLinks8[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{oMGgm0VdJ:resolvedLinks8[2]},u3gUMPd7R:{oMGgm0VdJ:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SwC35xUmH\"},nodeId:\"N0MShjlIs\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-i90bxg framer-djpd3d\",layoutDependency:layoutDependency,layoutId:\"N0MShjlIs\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SwC35xUmH\"},implicitPathVariables:undefined},{href:{webPageId:\"SwC35xUmH\"},implicitPathVariables:undefined},{href:{webPageId:\"SwC35xUmH\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"260px\",...addPropertyOverrides({u3gUMPd7R:{width:\"210px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lmdf2x-container\",layoutDependency:layoutDependency,layoutId:\"Q05X1lifR-container\",children:/*#__PURE__*/_jsx(SimpleLink,{H7d7nTZgx:\"About\",height:\"100%\",id:\"Q05X1lifR\",layoutId:\"Q05X1lifR\",LXTtDZxhc:resolvedLinks9[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({lU6q5Fez5:{LXTtDZxhc:resolvedLinks9[2]},u3gUMPd7R:{LXTtDZxhc:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-126uh7o\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"U6WUBdIv4\",onTap:onTap1wnntms({overlay}),style:{backgroundColor:\"var(--token-d28da3ff-ba8f-4e6a-b768-d83b21cb0b56, rgb(52, 53, 57))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy12YXJpYWJsZQ==\",\"--framer-font-family\":'\"Poppins Variable\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"CLOSE\"})}),className:\"framer-339lxk\",fonts:[\"FS;Poppins-variable\"],layoutDependency:layoutDependency,layoutId:\"dxDl00TrC\",style:{\"--extracted-r6o4lv\":\"var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({u3gUMPd7R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy12YXJpYWJsZQ==\",\"--framer-font-family\":'\"Poppins Variable\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9c8dc68-a4a7-49dc-8a04-fdf903fa3603, rgb(255, 255, 255)))\"},children:\"CLOSE\"})})}},baseVariant,gestureVariant)})})]})})})]})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hFcHQ.framer-djpd3d, .framer-hFcHQ .framer-djpd3d { display: block; }\",\".framer-hFcHQ.framer-am049r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 70px 20px 60px; position: relative; width: 1200px; }\",\".framer-hFcHQ .framer-1363uy1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-b0g6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-hFcHQ .framer-1itw5h0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 22px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-1i9j1lr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 13px; overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: 50%; width: min-content; z-index: 1; }\",\".framer-hFcHQ .framer-1hl2aw4-container { flex: none; height: 12px; position: relative; width: 56px; }\",\".framer-hFcHQ .framer-1uqakqf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px 0px 0px 170px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-1o316qv { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-hFcHQ .framer-1uy2cq1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-zmcq80 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-1odnlp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-hFcHQ .framer-1noqdh7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-1mrus1d-container, .framer-hFcHQ .framer-zvib6n-container, .framer-hFcHQ .framer-tg5b3j-container, .framer-hFcHQ .framer-1t3mml6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hFcHQ .framer-14xl7h9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-8xkym2 { flex: none; height: 20px; position: relative; text-decoration: none; width: 20px; }\",\".framer-hFcHQ .framer-1thn5zd-container { flex: none; height: 40px; position: relative; width: 30px; }\",\".framer-hFcHQ .framer-lehlog { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 420px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-hFcHQ .framer-jw0qrh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-hFcHQ .framer-8poij6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hFcHQ .framer-lyk2b2-container, .framer-hFcHQ .framer-1ir6upp-container, .framer-hFcHQ .framer-1psc90s-container, .framer-hFcHQ .framer-d9gzik-container, .framer-hFcHQ .framer-sjcfgj-container, .framer-hFcHQ .framer-lmdf2x-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-hFcHQ .framer-kohpqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-hFcHQ .framer-1oxfcza, .framer-hFcHQ .framer-339lxk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hFcHQ .framer-6caq4p, .framer-hFcHQ .framer-r8w345, .framer-hFcHQ .framer-1or1j3u, .framer-hFcHQ .framer-1fdbhl0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-hFcHQ .framer-i90bxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-hFcHQ .framer-126uh7o { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: -30px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 118px; overflow: hidden; padding: 0px; position: absolute; top: 385px; width: var(--framer-aspect-ratio-supported, 75px); will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFcHQ.framer-am049r, .framer-hFcHQ .framer-1363uy1, .framer-hFcHQ .framer-1itw5h0, .framer-hFcHQ .framer-1i9j1lr, .framer-hFcHQ .framer-1uqakqf, .framer-hFcHQ .framer-zmcq80, .framer-hFcHQ .framer-1noqdh7, .framer-hFcHQ .framer-14xl7h9, .framer-hFcHQ .framer-lehlog, .framer-hFcHQ .framer-jw0qrh, .framer-hFcHQ .framer-8poij6, .framer-hFcHQ .framer-kohpqt, .framer-hFcHQ .framer-6caq4p, .framer-hFcHQ .framer-r8w345, .framer-hFcHQ .framer-1or1j3u, .framer-hFcHQ .framer-1fdbhl0, .framer-hFcHQ .framer-i90bxg, .framer-hFcHQ .framer-126uh7o { gap: 0px; } .framer-hFcHQ.framer-am049r > *, .framer-hFcHQ .framer-1noqdh7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-hFcHQ.framer-am049r > :first-child, .framer-hFcHQ .framer-1363uy1 > :first-child, .framer-hFcHQ .framer-1itw5h0 > :first-child, .framer-hFcHQ .framer-1i9j1lr > :first-child, .framer-hFcHQ .framer-1uqakqf > :first-child, .framer-hFcHQ .framer-zmcq80 > :first-child, .framer-hFcHQ .framer-1noqdh7 > :first-child, .framer-hFcHQ .framer-14xl7h9 > :first-child, .framer-hFcHQ .framer-8poij6 > :first-child, .framer-hFcHQ .framer-kohpqt > :first-child, .framer-hFcHQ .framer-6caq4p > :first-child, .framer-hFcHQ .framer-r8w345 > :first-child, .framer-hFcHQ .framer-1or1j3u > :first-child, .framer-hFcHQ .framer-1fdbhl0 > :first-child, .framer-hFcHQ .framer-i90bxg > :first-child { margin-left: 0px; } .framer-hFcHQ.framer-am049r > :last-child, .framer-hFcHQ .framer-1363uy1 > :last-child, .framer-hFcHQ .framer-1itw5h0 > :last-child, .framer-hFcHQ .framer-1i9j1lr > :last-child, .framer-hFcHQ .framer-1uqakqf > :last-child, .framer-hFcHQ .framer-zmcq80 > :last-child, .framer-hFcHQ .framer-1noqdh7 > :last-child, .framer-hFcHQ .framer-14xl7h9 > :last-child, .framer-hFcHQ .framer-8poij6 > :last-child, .framer-hFcHQ .framer-kohpqt > :last-child, .framer-hFcHQ .framer-6caq4p > :last-child, .framer-hFcHQ .framer-r8w345 > :last-child, .framer-hFcHQ .framer-1or1j3u > :last-child, .framer-hFcHQ .framer-1fdbhl0 > :last-child, .framer-hFcHQ .framer-i90bxg > :last-child { margin-right: 0px; } .framer-hFcHQ .framer-1363uy1 > *, .framer-hFcHQ .framer-zmcq80 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hFcHQ .framer-1itw5h0 > *, .framer-hFcHQ .framer-1i9j1lr > *, .framer-hFcHQ .framer-1uqakqf > *, .framer-hFcHQ .framer-8poij6 > *, .framer-hFcHQ .framer-kohpqt > *, .framer-hFcHQ .framer-i90bxg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hFcHQ .framer-14xl7h9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-hFcHQ .framer-lehlog > *, .framer-hFcHQ .framer-jw0qrh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hFcHQ .framer-lehlog > :first-child, .framer-hFcHQ .framer-jw0qrh > :first-child, .framer-hFcHQ .framer-126uh7o > :first-child { margin-top: 0px; } .framer-hFcHQ .framer-lehlog > :last-child, .framer-hFcHQ .framer-jw0qrh > :last-child, .framer-hFcHQ .framer-126uh7o > :last-child { margin-bottom: 0px; } .framer-hFcHQ .framer-6caq4p > *, .framer-hFcHQ .framer-r8w345 > *, .framer-hFcHQ .framer-1or1j3u > *, .framer-hFcHQ .framer-1fdbhl0 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-hFcHQ .framer-126uh7o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-hFcHQ.framer-v-13688dd.framer-am049r { gap: 0px; padding: 20px 30px 20px 30px; width: 390px; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1363uy1 { gap: 30px; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1itw5h0 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 5px; min-height: unset; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1i9j1lr { left: 5px; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1uqakqf { flex: none; min-height: unset; padding: 0px 0px 0px 140px; width: 100%; }\",\".framer-hFcHQ.framer-v-13688dd .framer-zmcq80 { min-height: 22px; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1noqdh7 { flex: none; gap: 30px; width: min-content; }\",\".framer-hFcHQ.framer-v-13688dd .framer-lehlog { height: 350px; width: 250px; }\",\".framer-hFcHQ.framer-v-13688dd .framer-1ir6upp-container, .framer-hFcHQ.framer-v-13688dd .framer-1psc90s-container, .framer-hFcHQ.framer-v-13688dd .framer-d9gzik-container, .framer-hFcHQ.framer-v-13688dd .framer-sjcfgj-container, .framer-hFcHQ.framer-v-ybfmj8 .framer-1ir6upp-container, .framer-hFcHQ.framer-v-ybfmj8 .framer-1psc90s-container, .framer-hFcHQ.framer-v-ybfmj8 .framer-d9gzik-container, .framer-hFcHQ.framer-v-ybfmj8 .framer-sjcfgj-container { order: 0; }\",\".framer-hFcHQ.framer-v-13688dd .framer-126uh7o { left: 95px; top: 320px; width: var(--framer-aspect-ratio-supported, 70px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFcHQ.framer-v-13688dd.framer-am049r, .framer-hFcHQ.framer-v-13688dd .framer-1363uy1, .framer-hFcHQ.framer-v-13688dd .framer-1itw5h0, .framer-hFcHQ.framer-v-13688dd .framer-1noqdh7 { gap: 0px; } .framer-hFcHQ.framer-v-13688dd.framer-am049r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hFcHQ.framer-v-13688dd.framer-am049r > :first-child, .framer-hFcHQ.framer-v-13688dd .framer-1363uy1 > :first-child, .framer-hFcHQ.framer-v-13688dd .framer-1noqdh7 > :first-child { margin-left: 0px; } .framer-hFcHQ.framer-v-13688dd.framer-am049r > :last-child, .framer-hFcHQ.framer-v-13688dd .framer-1363uy1 > :last-child, .framer-hFcHQ.framer-v-13688dd .framer-1noqdh7 > :last-child { margin-right: 0px; } .framer-hFcHQ.framer-v-13688dd .framer-1363uy1 > *, .framer-hFcHQ.framer-v-13688dd .framer-1noqdh7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-hFcHQ.framer-v-13688dd .framer-1itw5h0 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-hFcHQ.framer-v-13688dd .framer-1itw5h0 > :first-child { margin-top: 0px; } .framer-hFcHQ.framer-v-13688dd .framer-1itw5h0 > :last-child { margin-bottom: 0px; } }\",\".framer-hFcHQ.framer-v-d6xmh .framer-1uy2cq1 { flex: none; gap: 0px; justify-content: center; width: min-content; }\",\".framer-hFcHQ.framer-v-d6xmh .framer-zmcq80, .framer-hFcHQ.framer-v-d6xmh .framer-14xl7h9 { flex: none; width: min-content; }\",\".framer-hFcHQ.framer-v-d6xmh .framer-1odnlp { flex: none; white-space: pre; width: auto; }\",\".framer-hFcHQ.framer-v-d6xmh .framer-1noqdh7 { gap: 65px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFcHQ.framer-v-d6xmh .framer-1uy2cq1, .framer-hFcHQ.framer-v-d6xmh .framer-1noqdh7 { gap: 0px; } .framer-hFcHQ.framer-v-d6xmh .framer-1uy2cq1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hFcHQ.framer-v-d6xmh .framer-1uy2cq1 > :first-child, .framer-hFcHQ.framer-v-d6xmh .framer-1noqdh7 > :first-child { margin-left: 0px; } .framer-hFcHQ.framer-v-d6xmh .framer-1uy2cq1 > :last-child, .framer-hFcHQ.framer-v-d6xmh .framer-1noqdh7 > :last-child { margin-right: 0px; } .framer-hFcHQ.framer-v-d6xmh .framer-1noqdh7 > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } }\",...sharedStyle.css,'.framer-hFcHQ[data-border=\"true\"]::after, .framer-hFcHQ [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u3gUMPd7R\":{\"layout\":[\"fixed\",\"auto\"]},\"lU6q5Fez5\":{\"layout\":[\"fixed\",\"auto\"]},\"Sz8prF2h4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervoSjwwTks=withCSS(Component,css,\"framer-hFcHQ\");export default FramervoSjwwTks;FramervoSjwwTks.displayName=\"Navigation\";FramervoSjwwTks.defaultProps={height:80,width:1200};addPropertyControls(FramervoSjwwTks,{variant:{options:[\"E2WnUmbMW\",\"u3gUMPd7R\",\"lU6q5Fez5\",\"Sz8prF2h4\"],optionTitles:[\"Desktop\",\"Phone\",\"Homepage-Desktop\",\"Homepage-Desktop-Slide\"],title:\"Variant\",type:ControlType.Enum}});const variationAxes=[{defaultValue:100,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramervoSjwwTks,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/SC7QJW6HNT3W42YFCVAWB3GI66BMNCKY/Q4ANQB6YZL7K35IAB3IPAE75W7PRJSDF/3HCNXVAKPOHOEI7LK7TGC54FOZT77SNM.woff2\",weight:\"300\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.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/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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DXWQGUHDKBI6OC6VABLBIH32VNWJYNX7/AHNAY7DQAEGE2SZPLPBG5BENKLEA34XN/KYQLPR2735WAT5CT22Y22PYHV3W52QJO.woff2\",variationAxes,weight:\"400\"}]},...LOGOFonts,...UnderlineButtonFonts,...IconFonts,...SimpleLinkFonts,...LinksCSMenuFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervoSjwwTks\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u3gUMPd7R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lU6q5Fez5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sz8prF2h4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./voSjwwTks.map"],
  "mappings": "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",
  "names": ["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", "clamp", "t", "e", "i", "Animate", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "transition4", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "transition11", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1rckn0l", "args", "onAppearvmlrzt", "onAppearxp7dr3", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FrameroakeXzPg4", "withCSS", "oakeXzPg4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LoadingAnimationFonts", "getFonts", "oakeXzPg4_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "transition4", "transition5", "transition6", "transition7", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear5tcfga", "args", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramercBJgZ6sWn", "withCSS", "cBJgZ6sWn_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "CursorImageTrailFonts", "getFonts", "CursorImageTrail", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Link", "SVG", "ComponentViewportProvider", "css", "FramerEMA2EFeOp", "withCSS", "EMA2EFeOp_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramermZBjQarnf", "withCSS", "mZBjQarnf_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "variationAxes", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerApIOqlbfS", "withCSS", "ApIOqlbfS_default", "addFonts", "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", "color", "height", "id", "label", "link2", "smoothScroll", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X4kGlDs4u", "kculbN8mH", "TlGfaIGuI", "pjEv2jeHn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntersfj57p", "args", "onMouseLeave1it3434", "onAppear1waqx40", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramercKelTRcpY", "withCSS", "cKelTRcpY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PKxYDckK4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcq5an5", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "css", "FramerGqpJU7ruy", "withCSS", "GqpJU7ruy_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "H7d7nTZgx", "LXTtDZxhc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FrameruMjMAKBbn", "withCSS", "uMjMAKBbn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oMGgm0VdJ", "OEat7xqTk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramervefaMXUuI", "withCSS", "vefaMXUuI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LOGOFonts", "getFonts", "ApIOqlbfS_default", "UnderlineButtonFonts", "cKelTRcpY_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "IconFonts", "GqpJU7ruy_default", "SimpleLinkFonts", "uMjMAKBbn_default", "LinksCSMenuFonts", "vefaMXUuI_default", "MotionDivWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "animation4", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "PKxYDckK4txyyif", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "ref2", "ref3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "SVG", "l", "AnimatePresence", "Floating", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "css", "FramervoSjwwTks", "withCSS", "voSjwwTks_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
