{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/wcHpgIhIMvxWVY132xNn/UbKJnZcUk7TQHLnjR9Ed/ForwardTraffic_Prod.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/i6V3Ew144ApuJybM26tP/HejOxcHj44ZTkZEKjM35/VS16epDIT.js", "ssg:https://framerusercontent.com/modules/rWxA7CSNJwrLIOovvBTO/hMflYqXesfvXxw9eaMKV/QNDk9nei9.js", "ssg:https://framerusercontent.com/modules/U84ghBb4Sbzi4weaQXB0/ka0HaYwJZRfhdPYyIM9N/MW0EIl7JM.js", "ssg:https://framerusercontent.com/modules/lucLIgrNmZBS93A0dYIH/wLnRTUYWf8lTrYqEhVjw/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n */function ForwardTraffic(props){const{redirectUrl,openInNewTab}=props;const[hasRedirected,setHasRedirected]=React.useState(false);React.useEffect(()=>{// Check if we're in the Framer environment\nconst isInFramerEnvironment=()=>{return typeof window!==\"undefined\"&&(window[\"Framer\"]!==undefined||window[\"__framer__\"]!==undefined);};// Only redirect if we're not in the Framer environment and haven't redirected yet\nif(!isInFramerEnvironment()&&!hasRedirected){let finalUrl=redirectUrl;if(!finalUrl.startsWith(\"https://\")&&!finalUrl.startsWith(\"http://\")){finalUrl=\"https://\"+finalUrl;}setHasRedirected(true);if(openInNewTab){window.open(finalUrl,\"_blank\");}else{window.location.href=finalUrl;}}},[redirectUrl,openInNewTab,hasRedirected]);// Render nothing\nreturn /*#__PURE__*/_jsx(_Fragment,{});}ForwardTraffic.displayName=\"Forward Traffic\";addPropertyControls(ForwardTraffic,{redirectUrl:{title:\"URL\",type:ControlType.String,defaultValue:\"framer.university\",description:\"Enter the URL to redirect to when the page is visited.\"},openInNewTab:{title:\"New Tab\",type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default ForwardTraffic;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ForwardTraffic\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ForwardTraffic_Prod.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,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/qaEH9DfjngowZETWjJw1/wH7GfQJTZr6UU4WBQheL/iVNztHxPD.js\";const serializationHash=\"framer-WTitH\";const variantClassNames={V1lgzcR9R:\"framer-v-1lfgxi7\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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,text,title,width,...props})=>{var _ref,_ref1;return{...props,grcX31Gbt:(_ref=title!==null&&title!==void 0?title:props.grcX31Gbt)!==null&&_ref!==void 0?_ref:\"Framer & Webflow Expertise\",v0inGeQ2t:(_ref1=text!==null&&text!==void 0?text:props.v0inGeQ2t)!==null&&_ref1!==void 0?_ref1:\"Create fast, responsive, and stunning websites\"};};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,grcX31Gbt,v0inGeQ2t,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"V1lgzcR9R\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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-1lfgxi7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"V1lgzcR9R\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pequps\",\"data-framer-name\":\"Spark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PJ4mThPAU\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 4.356 7.726 C 5.34 7.89 6.11 8.66 6.274 9.644 L 7 14 L 7.726 9.644 C 7.89 8.66 8.66 7.89 9.644 7.726 L 14 7 L 9.644 6.274 C 8.66 6.11 7.89 5.34 7.726 4.356 L 7 0 L 6.274 4.356 C 6.11 5.34 5.34 6.11 4.356 6.274 L 0 7 Z\" fill=\"var(--token-edcca4a2-fd8f-4d0d-bc2a-82dcf6156ba9, rgb(172, 153, 255)) /* {&quot;name&quot;:&quot;Purple/80&quot;} */\"></path></svg>',svgContentId:11040372185,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18t0dp0\",layoutDependency:layoutDependency,layoutId:\"Yo_5HK1G4\",style:{backgroundColor:\"var(--token-082950e0-e8a8-4371-a3eb-3df032d71578, rgb(26, 26, 26))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ks0g07\",\"data-styles-preset\":\"iVNztHxPD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, rgb(230, 230, 230)))\"},children:\"Responsive Design\"})}),className:\"framer-x58206\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q3vhn_zfV\",style:{\"--extracted-r6o4lv\":\"var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, rgb(230, 230, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:grcX31Gbt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(117, 117, 117)))\",\"--framer-text-transform\":\"inherit\"},children:\"Create fast, responsive, and stunning websites\"})}),className:\"framer-16u3qud\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rweYFmEpd\",style:{\"--extracted-r6o4lv\":\"var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(117, 117, 117))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v0inGeQ2t,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WTitH.framer-afpujf, .framer-WTitH .framer-afpujf { display: block; }\",\".framer-WTitH.framer-1lfgxi7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 12px; position: relative; width: min-content; }\",\".framer-WTitH .framer-pequps { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-WTitH .framer-18t0dp0 { 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: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-WTitH .framer-x58206, .framer-WTitH .framer-16u3qud { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WTitH.framer-1lfgxi7, .framer-WTitH .framer-18t0dp0 { gap: 0px; } .framer-WTitH.framer-1lfgxi7 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WTitH.framer-1lfgxi7 > :first-child { margin-left: 0px; } .framer-WTitH.framer-1lfgxi7 > :last-child { margin-right: 0px; } .framer-WTitH .framer-18t0dp0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WTitH .framer-18t0dp0 > :first-child { margin-top: 0px; } .framer-WTitH .framer-18t0dp0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55.5\n * @framerIntrinsicWidth 319\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"grcX31Gbt\":\"title\",\"v0inGeQ2t\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVS16epDIT=withCSS(Component,css,\"framer-WTitH\");export default FramerVS16epDIT;FramerVS16epDIT.displayName=\"Skill Pill\";FramerVS16epDIT.defaultProps={height:55.5,width:319};addPropertyControls(FramerVS16epDIT,{grcX31Gbt:{defaultValue:\"Framer & Webflow Expertise\",displayTextArea:false,title:\"Title\",type:ControlType.String},v0inGeQ2t:{defaultValue:\"Create fast, responsive, and stunning websites\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerVS16epDIT,[{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\":\"FramerVS16epDIT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"319\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"55.5\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"grcX31Gbt\\\":\\\"title\\\",\\\"v0inGeQ2t\\\":\\\"text\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import SkillPill from\"https://framerusercontent.com/modules/i6V3Ew144ApuJybM26tP/HejOxcHj44ZTkZEKjM35/VS16epDIT.js\";const SkillPillFonts=getFonts(SkillPill);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-LYaS4\";const variantClassNames={LGdAgZyn4:\"framer-v-zabozp\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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:\"LGdAgZyn4\",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-zabozp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LGdAgZyn4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5vopx3-container\",layoutDependency:layoutDependency,layoutId:\"DgqLAl336-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.2,id:\"DgqLAl336\",layoutId:\"DgqLAl336\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"281.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1449chh-container\",layoutDependency:layoutDependency,layoutId:\"sHPswar0U-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"UI/UX Design\",height:\"100%\",id:\"sHPswar0U\",layoutId:\"sHPswar0U\",v0inGeQ2t:\"Design experiences your users will love.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"322.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wsa4fj-container\",layoutDependency:layoutDependency,layoutId:\"xDJTQyGWy-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Framer & Webflow Expertise\",height:\"100%\",id:\"xDJTQyGWy\",layoutId:\"xDJTQyGWy\",v0inGeQ2t:\"Create fast, responsive, and stunning websites.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"317.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ur061a-container\",layoutDependency:layoutDependency,layoutId:\"FBYR7UAzo-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"AI Automation\",height:\"100%\",id:\"FBYR7UAzo\",layoutId:\"FBYR7UAzo\",v0inGeQ2t:\"Simplify your workflows and scale effortlessly.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"323.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fvwyjs-container\",layoutDependency:layoutDependency,layoutId:\"Fa0HbA49D-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"SEO Mastery\",height:\"100%\",id:\"Fa0HbA49D\",layoutId:\"Fa0HbA49D\",v0inGeQ2t:\"Build sites that rank, attract traffic, and convert.\",width:\"100%\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgg4wx-container\",layoutDependency:layoutDependency,layoutId:\"zO0DW107B-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.2,id:\"zO0DW107B\",layoutId:\"zO0DW107B\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"501.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k5370t-container\",layoutDependency:layoutDependency,layoutId:\"gdFxQqLZY-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Transparent Communication\",height:\"100%\",id:\"gdFxQqLZY\",layoutId:\"gdFxQqLZY\",v0inGeQ2t:\"Regular updates and feedback loops to ensure your vision is perfectly realized.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"324px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9q5v6-container\",layoutDependency:layoutDependency,layoutId:\"lAtVcGH4n-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Conversion Optimizatio\",height:\"100%\",id:\"lAtVcGH4n\",layoutId:\"lAtVcGH4n\",v0inGeQ2t:\" Crafting pages that turn visitors into customers\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"525.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ugg1e-container\",layoutDependency:layoutDependency,layoutId:\"XIKm29WRT-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Custom Integrations\",height:\"100%\",id:\"XIKm29WRT\",layoutId:\"XIKm29WRT\",v0inGeQ2t:\"Seamless connections to tools like CRMs, payment systems, or analytics platforms.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"351.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14jgxgo-container\",layoutDependency:layoutDependency,layoutId:\"FTeWecy4I-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Strategy-Driven Design\",height:\"100%\",id:\"FTeWecy4I\",layoutId:\"FTeWecy4I\",v0inGeQ2t:\"Websites built with your goals and audience in mind.\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wy91v8-container\",layoutDependency:layoutDependency,layoutId:\"JX_zhcuIW-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.2,id:\"JX_zhcuIW\",layoutId:\"JX_zhcuIW\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"432.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e5rod3-container\",layoutDependency:layoutDependency,layoutId:\"SrSN1C3s2-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Performance Optimization\",height:\"100%\",id:\"SrSN1C3s2\",layoutId:\"SrSN1C3s2\",v0inGeQ2t:\" Lightning-fast loading speeds for better user experience and SEO.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"407.5px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a7kpmb-container\",layoutDependency:layoutDependency,layoutId:\"J495x4bxN-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Responsive Across Devices\",height:\"100%\",id:\"J495x4bxN\",layoutId:\"J495x4bxN\",v0inGeQ2t:\"Flawless designs for mobile, tablet, and desktop Enven iPhone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"468px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjmcxr-container\",layoutDependency:layoutDependency,layoutId:\"UCRrmwTbj-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Analytics Setup\",height:\"100%\",id:\"UCRrmwTbj\",layoutId:\"UCRrmwTbj\",v0inGeQ2t:\"Integrate tools like Google Analytics to track your website\u2019s performance.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"276px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q8cu8t-container\",layoutDependency:layoutDependency,layoutId:\"Hl_mgWO4d-container\",children:/*#__PURE__*/_jsx(SkillPill,{grcX31Gbt:\"Scalable Solutions\",height:\"100%\",id:\"Hl_mgWO4d\",layoutId:\"Hl_mgWO4d\",v0inGeQ2t:\"Websites that grow with your business.\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LYaS4.framer-1jr6dp8, .framer-LYaS4 .framer-1jr6dp8 { display: block; }\",\".framer-LYaS4.framer-zabozp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 340px; }\",\".framer-LYaS4 .framer-5vopx3-container, .framer-LYaS4 .framer-jgg4wx-container, .framer-LYaS4 .framer-1wy91v8-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-LYaS4 .framer-1449chh-container, .framer-LYaS4 .framer-wsa4fj-container, .framer-LYaS4 .framer-1ur061a-container, .framer-LYaS4 .framer-1fvwyjs-container, .framer-LYaS4 .framer-1k5370t-container, .framer-LYaS4 .framer-1e9q5v6-container, .framer-LYaS4 .framer-4ugg1e-container, .framer-LYaS4 .framer-14jgxgo-container, .framer-LYaS4 .framer-e5rod3-container, .framer-LYaS4 .framer-1a7kpmb-container, .framer-LYaS4 .framer-1pjmcxr-container, .framer-LYaS4 .framer-1q8cu8t-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LYaS4.framer-zabozp { gap: 0px; } .framer-LYaS4.framer-zabozp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LYaS4.framer-zabozp > :first-child { margin-top: 0px; } .framer-LYaS4.framer-zabozp > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQNDk9nei9=withCSS(Component,css,\"framer-LYaS4\");export default FramerQNDk9nei9;FramerQNDk9nei9.displayName=\"Skills Ticker\";FramerQNDk9nei9.defaultProps={height:210,width:340};addFonts(FramerQNDk9nei9,[{explicitInter:true,fonts:[]},...SkillPillFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQNDk9nei9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"340\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"210\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cbb0119)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PolySans Bulky\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PolySans Bulky\",source:\"custom\",url:\"https://framerusercontent.com/assets/3N49nU67LWVSy29X0hpYmDalcGU.woff2\"}]}];export const css=['.framer-wfvCH .framer-styles-preset-194lgyw:not(.rich-text-wrapper), .framer-wfvCH .framer-styles-preset-194lgyw.rich-text-wrapper h2 { --framer-font-family: \"PolySans Bulky\", \"PolySans Bulky Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, #e6e6e6); --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-wfvCH .framer-styles-preset-194lgyw:not(.rich-text-wrapper), .framer-wfvCH .framer-styles-preset-194lgyw.rich-text-wrapper h2 { --framer-font-family: \"PolySans Bulky\", \"PolySans Bulky Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, #e6e6e6); --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: 390px) { .framer-wfvCH .framer-styles-preset-194lgyw:not(.rich-text-wrapper), .framer-wfvCH .framer-styles-preset-194lgyw.rich-text-wrapper h2 { --framer-font-family: \"PolySans Bulky\", \"PolySans Bulky Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, #e6e6e6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 389px) and (min-width: 0px) { .framer-wfvCH .framer-styles-preset-194lgyw:not(.rich-text-wrapper), .framer-wfvCH .framer-styles-preset-194lgyw.rich-text-wrapper h2 { --framer-font-family: \"PolySans Bulky\", \"PolySans Bulky Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, #e6e6e6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-wfvCH\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import ForwardTraffic from\"https://framerusercontent.com/modules/wcHpgIhIMvxWVY132xNn/UbKJnZcUk7TQHLnjR9Ed/ForwardTraffic_Prod.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Footer from\"#framer/local/canvasComponent/CSekcQJaC/CSekcQJaC.js\";import TopHeader from\"#framer/local/canvasComponent/KevZ0cWUM/KevZ0cWUM.js\";import Heading3Component from\"#framer/local/canvasComponent/meLEkhFU1/meLEkhFU1.js\";import TestimonialsSlider from\"#framer/local/canvasComponent/nr7ZbHRxx/nr7ZbHRxx.js\";import ContactMe from\"#framer/local/canvasComponent/OjieEYg8y/OjieEYg8y.js\";import ProjectCard from\"#framer/local/canvasComponent/oQjPvqzI7/oQjPvqzI7.js\";import SkillsTicker from\"#framer/local/canvasComponent/QNDk9nei9/QNDk9nei9.js\";import Button from\"#framer/local/canvasComponent/QT_ceSX_a/QT_ceSX_a.js\";import StackCard from\"#framer/local/canvasComponent/S4RGKFkXv/S4RGKFkXv.js\";import NavBar from\"#framer/local/canvasComponent/uW7Rf70nN/uW7Rf70nN.js\";import Portfolio from\"#framer/local/collection/OWrml_lsJ/OWrml_lsJ.js\";import*as sharedStyle1 from\"#framer/local/css/iVNztHxPD/iVNztHxPD.js\";import*as sharedStyle2 from\"#framer/local/css/m9toE_RQB/m9toE_RQB.js\";import*as sharedStyle3 from\"#framer/local/css/MW0EIl7JM/MW0EIl7JM.js\";import*as sharedStyle from\"#framer/local/css/uhOHFKyeX/uhOHFKyeX.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const ForwardTrafficFonts=getFonts(ForwardTraffic);const TopHeaderFonts=getFonts(TopHeader);const ButtonFonts=getFonts(Button);const Heading3ComponentFonts=getFonts(Heading3Component);const SkillsTickerFonts=getFonts(SkillsTicker);const StackCardFonts=getFonts(StackCard);const ProjectCardFonts=getFonts(ProjectCard);const TestimonialsSliderFonts=getFonts(TestimonialsSlider);const ContactMeFonts=getFonts(ContactMe);const EmbedFonts=getFonts(Embed);const NavBarFonts=getFonts(NavBar);const FooterFonts=getFonts(Footer);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={ChwonlLWB:\"(min-width: 390px) and (max-width: 809px)\",kBSjzfD0q:\"(max-width: 389px)\",lNTScfeRr:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fxNWr\";const variantClassNames={ChwonlLWB:\"framer-v-69jwlt\",kBSjzfD0q:\"framer-v-yhdo0g\",lNTScfeRr:\"framer-v-17skm0m\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={filter:\"blur(5px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition1={bounce:0,delay:.05,duration:.8,type:\"spring\"};const textEffect={effect:animation,startDelay:.5,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const animation1={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:12};const transition2={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect1={effect:animation1,startDelay:.6,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone Large\":\"ChwonlLWB\",\"Phone Small\":\"kBSjzfD0q\",Desktop:\"WQLkyLRf1\",Tablet:\"lNTScfeRr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XOuFvIrziZSsu4kSmx,fnCfRcpTWZSsu4kSmx,pGgLM3iR2ZSsu4kSmx,dkYbE4q_5ZSsu4kSmx,cpBBnDgi4ZSsu4kSmx,QpAGtRV8iZSsu4kSmx,idZSsu4kSmx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"l3tzrO2Ht\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, rgb(8, 25, 39)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xtrsyv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Nk0JyigXs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Nk0JyigXs\",intensity:10,layoutId:\"Nk0JyigXs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15e1b90-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nBuz1hTwl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ForwardTraffic,{height:\"100%\",id:\"nBuz1hTwl\",layoutId:\"nBuz1hTwl\",openInNewTab:false,redirectUrl:\"ryanhridoy.framer.website\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 850px)`,y:undefined},kBSjzfD0q:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 850px)`,y:undefined},lNTScfeRr:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 850px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:\"850px\",y:(componentViewport?.y||0)+24+448,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cza43k-container\",nodeId:\"IyjfJSPY6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"yMmBA6GSp\"},kBSjzfD0q:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"C1vI95ved\"},lNTScfeRr:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(TopHeader,{height:\"100%\",id:\"IyjfJSPY6\",layoutId:\"IyjfJSPY6\",style:{maxWidth:\"100%\"},variant:\"pVr4hklKA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u6aah8\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jzkv00\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBSjzfD0q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cfpb1b\",\"data-styles-preset\":\"uhOHFKyeX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Design. Develop. Transform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cfpb1b\",\"data-styles-preset\":\"uhOHFKyeX\",children:\"Design. Develop. Transform.\"})}),className:\"framer-vv2l3p\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ks0g07\",\"data-styles-preset\":\"iVNztHxPD\",children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Hey!\"}),\"\\xa0\"]}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(204, 204, 204))\"},children:[\"I\u2019m Hridoy, better known as \",/*#__PURE__*/_jsx(\"strong\",{children:\"NickName Hridoy\"}),\" in the digital world.\"]})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ks0g07\",\"data-styles-preset\":\"iVNztHxPD\",style:{\"--framer-text-color\":\"var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(204, 204, 204))\"},children:[\"I'm design & develop websites that do more than; look good\u2014I\u2019m the guy who blends \",/*#__PURE__*/_jsx(\"strong\",{children:\"No-Code magic\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"SEO strategy\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"AI automation\"}),\" to create websites that \",/*#__PURE__*/_jsx(\"em\",{children:\"don\u2019t just sit there\"}),\"\u2014they work, grow, and sell.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks0g07\",\"data-styles-preset\":\"iVNztHxPD\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-d19b80\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9l8lti\",\"data-styles-preset\":\"m9toE_RQB\",children:'\"I don\u2019t build websites; I craft systems that turn ideas into impact\" '}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9l8lti\",\"data-styles-preset\":\"m9toE_RQB\",style:{\"--framer-text-color\":\"var(--token-5dba2f36-f761-4284-aa70-8fb4dfbc6075, rgb(117, 117, 117))\"},children:\"- Nickname Hridoy\"})]}),className:\"framer-18x6d14\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"E8Y7WlIrd\"},implicitPathVariables:undefined},{href:{webPageId:\"E8Y7WlIrd\"},implicitPathVariables:undefined},{href:{webPageId:\"E8Y7WlIrd\"},implicitPathVariables:undefined},{href:{webPageId:\"E8Y7WlIrd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kaoa7j-container\",nodeId:\"WnWHjCq20\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{xHgnq0CWi:resolvedLinks[2]},kBSjzfD0q:{xHgnq0CWi:resolvedLinks[3]},lNTScfeRr:{xHgnq0CWi:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"WnWHjCq20\",layoutId:\"WnWHjCq20\",OMJHz5GW3:\"ArrowRight\",OPkk1akkG:\"More about Me\",style:{width:\"100%\"},variant:\"M54GDIn2x\",width:\"100%\",xHgnq0CWi:resolvedLinks[0]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tzda2m\",\"data-framer-name\":\"About Columns\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pnrcrb\",\"data-framer-name\":\"Skills Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3mpuiv-container\",nodeId:\"QlWYS5cv9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Heading3Component,{dUH00jQQe:\"What I Offer??\",height:\"100%\",id:\"QlWYS5cv9\",layoutId:\"QlWYS5cv9\",RtmqkByJN:\"DiamondsFour\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:undefined},kBSjzfD0q:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 800px), 1px), 800px) - 48px)`,y:(componentViewport?.y||0)+24+1418.4+0+24+46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ofm5r-container\",nodeId:\"YKw_lrycW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SkillsTicker,{height:\"100%\",id:\"YKw_lrycW\",layoutId:\"YKw_lrycW\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lpdrm3\",\"data-framer-name\":\"SKILL SET\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvjdnx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBSjzfD0q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-194lgyw\",\"data-styles-preset\":\"MW0EIl7JM\",style:{\"--framer-text-alignment\":\"left\"},children:\"The Tools Behind the Magic. \uD83E\uDEF0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-194lgyw\",\"data-styles-preset\":\"MW0EIl7JM\",children:\"The Tools Behind the Magic. \uD83E\uDEF0\"})}),className:\"framer-mfvm59\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks0g07\",\"data-styles-preset\":\"iVNztHxPD\",style:{\"--framer-text-color\":\"var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, rgb(216, 210, 194))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Great work comes from the right tools\u2014and knowing how to use them.\"})})}),className:\"framer-10vqq93\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-196x2q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:(componentViewport?.y||0)+24+1746.4+24+209.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z50xqq-container\",nodeId:\"i9y5ZtZ6A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"VMEz3cUkE\"},kBSjzfD0q:{variant:\"VMEz3cUkE\"}},children:/*#__PURE__*/_jsx(StackCard,{height:\"100%\",id:\"i9y5ZtZ6A\",IEkmpBacR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"\\xa0I use Figma to craft intuitive user interfaces and use \",/*#__PURE__*/_jsx(\"strong\",{children:\"Photoshop\"}),\" to refine visuals. Together, they make ideas look stunning and functional.\"]})}),layoutId:\"i9y5ZtZ6A\",nKAFGmbSy:\"Design is where it all begins.\",QaiJyHKxB:\"FigmaLogo\",QZTVCusZj:\"Where Ideas Take Shape. \uD83C\uDFDD\uFE0F\",style:{width:\"100%\"},variant:\"AiVIa5bfq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:(componentViewport?.y||0)+24+1746.4+24+209.2+0+209,children:/*#__PURE__*/_jsx(Container,{className:\"framer-39c6wa-container\",nodeId:\"irrWFf8Ep\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"VMEz3cUkE\"},kBSjzfD0q:{variant:\"VMEz3cUkE\"}},children:/*#__PURE__*/_jsx(StackCard,{height:\"100%\",id:\"irrWFf8Ep\",IEkmpBacR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"With Framer and Webflow, I create responsive, fast, and dynamic websites without writing a single line of code.\"})}),layoutId:\"irrWFf8Ep\",nKAFGmbSy:\"Build Smarter, Not Harder.\",QaiJyHKxB:\"FramerLogo\",QZTVCusZj:\"No-Code Power: Framer, Webflow \uD83E\uDDD1\u200D\uD83D\uDCBB\",style:{width:\"100%\"},variant:\"XpRPHbfkj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:(componentViewport?.y||0)+24+1746.4+24+209.2+0+418,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u6oj32-container\",nodeId:\"FAhrb541_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"VMEz3cUkE\"},kBSjzfD0q:{variant:\"VMEz3cUkE\"}},children:/*#__PURE__*/_jsx(StackCard,{height:\"100%\",id:\"FAhrb541_\",IEkmpBacR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Notion help me manage tasks, track progress, and keep projects on schedule, ensuring nothing falls through the cracks.\"})}),layoutId:\"FAhrb541_\",nKAFGmbSy:\"Stay Organized, Stay Ahead\",QaiJyHKxB:\"Clipboard\",QZTVCusZj:\"Streamlined Workflow: Notion \",style:{width:\"100%\"},variant:\"AiVIa5bfq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:(componentViewport?.y||0)+24+1746.4+24+209.2+0+627,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnwd22-container\",nodeId:\"lb4vEL3tm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"VMEz3cUkE\"},kBSjzfD0q:{variant:\"VMEz3cUkE\"}},children:/*#__PURE__*/_jsx(StackCard,{height:\"100%\",id:\"lb4vEL3tm\",IEkmpBacR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Whether it\u2019s WhatsApp for quick chats, Slack for real-time updates, Trello for workflows, or Markup for feedback, these tools keep us aligned and efficient.\"})}),layoutId:\"lb4vEL3tm\",nKAFGmbSy:\"Communication Fuels Progress.\",QaiJyHKxB:\"SlackLogo\",QZTVCusZj:\"Collaboration-First: WhatsApp, Slack, Trello, Markup \uD83E\uDD19\",style:{width:\"100%\"},variant:\"AiVIa5bfq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 800px) - 48px)`,y:(componentViewport?.y||0)+24+1746.4+24+209.2+0+836,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wtbff-container\",nodeId:\"lGLohflaH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"VMEz3cUkE\"},kBSjzfD0q:{variant:\"VMEz3cUkE\"}},children:/*#__PURE__*/_jsx(StackCard,{height:\"100%\",id:\"lGLohflaH\",IEkmpBacR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"I have a secret weapon in my toolbox\u2014something that adds a unique edge to every project. Curious? Let\u2019s work together and find out!\"})}),layoutId:\"lGLohflaH\",nKAFGmbSy:\"Some tools are best revealed in action.\",QaiJyHKxB:\"Pen\",QZTVCusZj:\"Other: Secret Tool \uD83D\uDE09\",style:{width:\"100%\"},variant:\"AiVIa5bfq\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-homld7\",\"data-framer-name\":\"Projects Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1g16l-container\",nodeId:\"aZrj8lTI5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Heading3Component,{dUH00jQQe:\"Latest Creations\",height:\"100%\",id:\"aZrj8lTI5\",layoutId:\"aZrj8lTI5\",RtmqkByJN:\"GridNine\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1kd4k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZSsu4kSmx\",data:Portfolio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"ZSsu4kSmx\",name:\"XOuFvIrzi\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"fnCfRcpTW\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"pGgLM3iR2\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"dkYbE4q_5\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"cpBBnDgi4\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"QpAGtRV8i\",type:\"Identifier\"},{collection:\"ZSsu4kSmx\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cpBBnDgi4:cpBBnDgi4ZSsu4kSmx,dkYbE4q_5:dkYbE4q_5ZSsu4kSmx,fnCfRcpTW:fnCfRcpTWZSsu4kSmx,id:idZSsu4kSmx,pGgLM3iR2:pGgLM3iR2ZSsu4kSmx,QpAGtRV8i:QpAGtRV8iZSsu4kSmx,XOuFvIrzi:XOuFvIrziZSsu4kSmx},index)=>{XOuFvIrziZSsu4kSmx??=\"\";pGgLM3iR2ZSsu4kSmx??=\"\";dkYbE4q_5ZSsu4kSmx??=\"\";cpBBnDgi4ZSsu4kSmx??=\"\";QpAGtRV8iZSsu4kSmx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZSsu4kSmx-${idZSsu4kSmx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XOuFvIrzi:XOuFvIrziZSsu4kSmx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{XOuFvIrzi:XOuFvIrziZSsu4kSmx},webPageId:\"YzWhOkhF7\"},implicitPathVariables:undefined},{href:{pathVariables:{XOuFvIrzi:XOuFvIrziZSsu4kSmx},webPageId:\"YzWhOkhF7\"},implicitPathVariables:undefined},{href:{pathVariables:{XOuFvIrzi:XOuFvIrziZSsu4kSmx},webPageId:\"YzWhOkhF7\"},implicitPathVariables:undefined},{href:{pathVariables:{XOuFvIrzi:XOuFvIrziZSsu4kSmx},webPageId:\"YzWhOkhF7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14114xp-container\",nodeId:\"kBmni33Tt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{MQi5_Hkqb:resolvedLinks1[2]},kBSjzfD0q:{MQi5_Hkqb:resolvedLinks1[3]},lNTScfeRr:{MQi5_Hkqb:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{Cu90T0hY2:dkYbE4q_5ZSsu4kSmx,height:\"100%\",I9ARnjUGV:QpAGtRV8iZSsu4kSmx,id:\"kBmni33Tt\",layoutId:\"kBmni33Tt\",MQi5_Hkqb:resolvedLinks1[0],Sp38293i8:pGgLM3iR2ZSsu4kSmx,style:{width:\"100%\"},u8yfX48dR:toResponsiveImage(fnCfRcpTWZSsu4kSmx),width:\"100%\",XCArE8shj:cpBBnDgi4ZSsu4kSmx})})})})})})},idZSsu4kSmx);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VHPjjv0yh\"},implicitPathVariables:undefined},{href:{webPageId:\"VHPjjv0yh\"},implicitPathVariables:undefined},{href:{webPageId:\"VHPjjv0yh\"},implicitPathVariables:undefined},{href:{webPageId:\"VHPjjv0yh\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywwo6k-container\",nodeId:\"mll_RQY8m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{xHgnq0CWi:resolvedLinks2[2]},kBSjzfD0q:{xHgnq0CWi:resolvedLinks2[3]},lNTScfeRr:{xHgnq0CWi:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"mll_RQY8m\",layoutId:\"mll_RQY8m\",OMJHz5GW3:\"ArrowRight\",OPkk1akkG:\"All Projects\",style:{width:\"100%\"},variant:\"M54GDIn2x\",width:\"100%\",xHgnq0CWi:resolvedLinks2[0]})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:undefined},kBSjzfD0q:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:384,y:(componentViewport?.y||0)+24+3854.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-183a4id-container\",nodeId:\"ME5SLl0EN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{style:{width:\"100%\"},variant:\"wqBzj_ehT\"},kBSjzfD0q:{style:{width:\"100%\"},variant:\"PQRKCF1Oe\"}},children:/*#__PURE__*/_jsx(TestimonialsSlider,{height:\"100%\",id:\"ME5SLl0EN\",layoutId:\"ME5SLl0EN\",variant:\"CxNJdzWDs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1343pf0\",\"data-framer-name\":\"ContactSection\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{height:undefined,y:undefined},kBSjzfD0q:{height:111,y:undefined},lNTScfeRr:{height:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211.6,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+24+4262.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18471cd-container\",nodeId:\"NSr7kEZwn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"sVobDwOYP\"},kBSjzfD0q:{variant:\"sVobDwOYP\"}},children:/*#__PURE__*/_jsx(ContactMe,{height:\"100%\",id:\"NSr7kEZwn\",layoutId:\"NSr7kEZwn\",style:{height:\"100%\",width:\"100%\"},variant:\"TU1INKwKg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1re1kzp\",\"data-framer-name\":\"Let's Talk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{viewBox:\"0 0 1213 53\"},kBSjzfD0q:{viewBox:\"0 0 1213 53\"},lNTScfeRr:{viewBox:\"0 0 1213 53\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BvbHlTYW5zIEJ1bGt5\",\"--framer-font-family\":'\"PolySans Bulky\", \"PolySans Bulky Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1db46974-80cb-4f40-8b04-f7d1b6afee50, rgb(230, 230, 230))\"},children:\"Your ideas deserve more than a sketch\u2014they deserve life.\"})}),className:\"framer-185ue7b\",fonts:[\"CUSTOM;PolySans Bulky\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9l8lti\",\"data-styles-preset\":\"m9toE_RQB\",style:{\"--framer-text-alignment\":\"center\"},children:\"-Hridoy\"})}),className:\"framer-qvzxlx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17mr2uy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-murtl9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cfpb1b\",\"data-styles-preset\":\"uhOHFKyeX\",style:{\"--framer-text-alignment\":\"center\"},children:\"OR\"})}),className:\"framer-12pb2xm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qhpti9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9e37l-container\",id:elementId,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l3tzrO2Ht\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Cal inline embed code begins -->\\n<div style=\"width:100%;height:100%;overflow:scroll\" id=\"my-cal-inline\"></div>\\n<script type=\"text/javascript\">\\n  (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement(\"script\")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; typeof namespace === \"string\" ? (cal.ns[namespace] = api) && p(api, ar) : p(cal, ar); return; } p(cal, ar); }; })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\nCal(\"init\",  {origin:\"https://cal.com\"});\\n\\n  Cal(\"inline\", {\\n\telementOrSelector:\"#my-cal-inline\",\\n\tcalLink: \"nnh-hridoy-hzuqc9/20\",\\n\tlayout: \"month_view\"\\n  });\\n\\n  Cal(\"ui\", {\"styles\":{\"branding\":{\"brandColor\":\"#000000\"}},\"hideEventTypeDetails\":false,\"layout\":\"month_view\"});\\n  </script>\\n  <!-- Cal inline embed code ends -->',id:\"l3tzrO2Ht\",layoutId:\"l3tzrO2Ht\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://calendly.com/nicknamehridoy/development\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:890},kBSjzfD0q:{y:890}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,y:910,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a1bb1a-container\",layoutScroll:true,nodeId:\"Bt6JSuTzr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kBSjzfD0q:{variant:\"q2v686jQ6\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"Bt6JSuTzr\",layoutId:\"Bt6JSuTzr\",variant:\"ElaOWGx1a\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{y:undefined},kBSjzfD0q:{y:undefined},lNTScfeRr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+24+5816.200000000001,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-shzdr4-container\",\"data-framer-appear-id\":\"shzdr4\",initial:animation3,nodeId:\"m8a3wWU8D\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwonlLWB:{variant:\"rxBllgsbk\"},kBSjzfD0q:{variant:\"rxBllgsbk\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"m8a3wWU8D\",layoutId:\"m8a3wWU8D\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"kkFFHIaEg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fxNWr.framer-lux5qc, .framer-fxNWr .framer-lux5qc { display: block; }\",\".framer-fxNWr.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, #081927); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 24px 102px 24px; position: relative; width: 1200px; }\",\".framer-fxNWr .framer-xtrsyv-container, .framer-fxNWr .framer-15e1b90-container, .framer-fxNWr .framer-183a4id-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fxNWr .framer-cza43k-container { flex: none; height: auto; max-width: 850px; position: relative; width: auto; }\",\".framer-fxNWr .framer-1u6aah8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, #0f0f0f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fxNWr .framer-jzkv00 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-vv2l3p, .framer-fxNWr .framer-d19b80, .framer-fxNWr .framer-18x6d14, .framer-fxNWr .framer-mfvm59, .framer-fxNWr .framer-10vqq93, .framer-fxNWr .framer-185ue7b, .framer-fxNWr .framer-qvzxlx, .framer-fxNWr .framer-12pb2xm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fxNWr .framer-kaoa7j-container, .framer-fxNWr .framer-3mpuiv-container, .framer-fxNWr .framer-9ofm5r-container, .framer-fxNWr .framer-z50xqq-container, .framer-fxNWr .framer-39c6wa-container, .framer-fxNWr .framer-1u6oj32-container, .framer-fxNWr .framer-1nnwd22-container, .framer-fxNWr .framer-5wtbff-container, .framer-fxNWr .framer-w1g16l-container, .framer-fxNWr .framer-ywwo6k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fxNWr .framer-tzda2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-1pnrcrb { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, #0f0f0f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fxNWr .framer-1lpdrm3, .framer-fxNWr .framer-homld7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, #0f0f0f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fxNWr .framer-cvjdnx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-196x2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-x1kd4k { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-14114xp-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-fxNWr .framer-1343pf0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-4fee7da4-7ef6-44cb-ba43-d1c61be70cd1, #0f0f0f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fxNWr .framer-18471cd-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fxNWr .framer-1re1kzp { 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: 24px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-17mr2uy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fxNWr .framer-murtl9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1294px; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fxNWr .framer-qhpti9 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fxNWr .framer-1q9e37l-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-fxNWr .framer-a1bb1a-container { bottom: 12px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 9; }\",\".framer-fxNWr .framer-shzdr4-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fxNWr.framer-72rtr7, .framer-fxNWr .framer-1u6aah8, .framer-fxNWr .framer-jzkv00, .framer-fxNWr .framer-tzda2m, .framer-fxNWr .framer-1pnrcrb, .framer-fxNWr .framer-1lpdrm3, .framer-fxNWr .framer-cvjdnx, .framer-fxNWr .framer-196x2q, .framer-fxNWr .framer-homld7, .framer-fxNWr .framer-1343pf0, .framer-fxNWr .framer-1re1kzp, .framer-fxNWr .framer-17mr2uy, .framer-fxNWr .framer-murtl9, .framer-fxNWr .framer-qhpti9 { gap: 0px; } .framer-fxNWr.framer-72rtr7 > *, .framer-fxNWr .framer-1u6aah8 > *, .framer-fxNWr .framer-jzkv00 > *, .framer-fxNWr .framer-1pnrcrb > *, .framer-fxNWr .framer-1lpdrm3 > *, .framer-fxNWr .framer-homld7 > *, .framer-fxNWr .framer-1343pf0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fxNWr.framer-72rtr7 > :first-child, .framer-fxNWr .framer-1u6aah8 > :first-child, .framer-fxNWr .framer-jzkv00 > :first-child, .framer-fxNWr .framer-1pnrcrb > :first-child, .framer-fxNWr .framer-1lpdrm3 > :first-child, .framer-fxNWr .framer-cvjdnx > :first-child, .framer-fxNWr .framer-196x2q > :first-child, .framer-fxNWr .framer-homld7 > :first-child, .framer-fxNWr .framer-1343pf0 > :first-child, .framer-fxNWr .framer-1re1kzp > :first-child, .framer-fxNWr .framer-murtl9 > :first-child { margin-top: 0px; } .framer-fxNWr.framer-72rtr7 > :last-child, .framer-fxNWr .framer-1u6aah8 > :last-child, .framer-fxNWr .framer-jzkv00 > :last-child, .framer-fxNWr .framer-1pnrcrb > :last-child, .framer-fxNWr .framer-1lpdrm3 > :last-child, .framer-fxNWr .framer-cvjdnx > :last-child, .framer-fxNWr .framer-196x2q > :last-child, .framer-fxNWr .framer-homld7 > :last-child, .framer-fxNWr .framer-1343pf0 > :last-child, .framer-fxNWr .framer-1re1kzp > :last-child, .framer-fxNWr .framer-murtl9 > :last-child { margin-bottom: 0px; } .framer-fxNWr .framer-tzda2m > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-fxNWr .framer-tzda2m > :first-child, .framer-fxNWr .framer-17mr2uy > :first-child, .framer-fxNWr .framer-qhpti9 > :first-child { margin-left: 0px; } .framer-fxNWr .framer-tzda2m > :last-child, .framer-fxNWr .framer-17mr2uy > :last-child, .framer-fxNWr .framer-qhpti9 > :last-child { margin-right: 0px; } .framer-fxNWr .framer-cvjdnx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-fxNWr .framer-196x2q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-fxNWr .framer-1re1kzp > *, .framer-fxNWr .framer-murtl9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fxNWr .framer-17mr2uy > *, .framer-fxNWr .framer-qhpti9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-fxNWr.framer-72rtr7 { width: 810px; } .framer-fxNWr .framer-cza43k-container { width: 100%; } .framer-fxNWr .framer-185ue7b { white-space: pre; }}\",\"@media (min-width: 390px) and (max-width: 809px) { .framer-fxNWr.framer-72rtr7 { width: 390px; } .framer-fxNWr .framer-cza43k-container, .framer-fxNWr .framer-183a4id-container { width: 100%; } .framer-fxNWr .framer-tzda2m { flex-direction: column; } .framer-fxNWr .framer-1pnrcrb { flex: none; height: 250px; width: 100%; } .framer-fxNWr .framer-x1kd4k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-fxNWr .framer-14114xp-container { align-self: unset; } .framer-fxNWr .framer-185ue7b { white-space: pre; } .framer-fxNWr .framer-murtl9 { height: 700px; } .framer-fxNWr .framer-a1bb1a-container { bottom: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fxNWr .framer-tzda2m, .framer-fxNWr .framer-x1kd4k { gap: 0px; } .framer-fxNWr .framer-tzda2m > *, .framer-fxNWr .framer-x1kd4k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fxNWr .framer-tzda2m > :first-child, .framer-fxNWr .framer-x1kd4k > :first-child { margin-top: 0px; } .framer-fxNWr .framer-tzda2m > :last-child, .framer-fxNWr .framer-x1kd4k > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 389px) { .framer-fxNWr.framer-72rtr7 { padding: 24px 24px 88px 24px; width: 320px; } .framer-fxNWr .framer-cza43k-container, .framer-fxNWr .framer-183a4id-container { width: 100%; } .framer-fxNWr .framer-jzkv00 { order: 0; } .framer-fxNWr .framer-kaoa7j-container { order: 1; } .framer-fxNWr .framer-tzda2m { flex-direction: column; } .framer-fxNWr .framer-1pnrcrb { flex: none; width: 100%; } .framer-fxNWr .framer-x1kd4k { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-fxNWr .framer-18471cd-container { bottom: unset; height: 111px; top: calc(49.54954954954957% - 111px / 2); } .framer-fxNWr .framer-185ue7b { white-space: pre; } .framer-fxNWr .framer-murtl9 { height: 700px; } .framer-fxNWr .framer-a1bb1a-container { bottom: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fxNWr .framer-tzda2m { gap: 0px; } .framer-fxNWr .framer-tzda2m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fxNWr .framer-tzda2m > :first-child { margin-top: 0px; } .framer-fxNWr .framer-tzda2m > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lNTScfeRr\":{\"layout\":[\"fixed\",\"auto\"]},\"ChwonlLWB\":{\"layout\":[\"fixed\",\"auto\"]},\"kBSjzfD0q\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"l3tzrO2Ht\":{\"pattern\":\":l3tzrO2Ht\",\"name\":\"book-a-meeting\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-fxNWr\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4600,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{family:\"PolySans Bulky\",source:\"custom\",url:\"https://framerusercontent.com/assets/3N49nU67LWVSy29X0hpYmDalcGU.woff2\"}]},...SmoothScrollFonts,...ForwardTrafficFonts,...TopHeaderFonts,...ButtonFonts,...Heading3ComponentFonts,...SkillsTickerFonts,...StackCardFonts,...ProjectCardFonts,...TestimonialsSliderFonts,...ContactMeFonts,...EmbedFonts,...NavBarFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"l3tzrO2Ht\\\":{\\\"pattern\\\":\\\":l3tzrO2Ht\\\",\\\"name\\\":\\\"book-a-meeting\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lNTScfeRr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ChwonlLWB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kBSjzfD0q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "ForwardTraffic", "props", "redirectUrl", "openInNewTab", "hasRedirected", "setHasRedirected", "ye", "ue", "window", "finalUrl", "p", "l", "addPropertyControls", "ControlType", "ForwardTraffic_Prod_default", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "grcX31Gbt", "v0inGeQ2t", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerVS16epDIT", "withCSS", "VS16epDIT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SkillPillFonts", "getFonts", "VS16epDIT_default", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "VS16epDIT_default", "css", "FramerQNDk9nei9", "withCSS", "QNDk9nei9_default", "addFonts", "SkillPillFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "ForwardTrafficFonts", "ForwardTraffic_Prod_default", "TopHeaderFonts", "KevZ0cWUM_default", "ButtonFonts", "QT_ceSX_a_default", "Heading3ComponentFonts", "meLEkhFU1_default", "SkillsTickerFonts", "QNDk9nei9_default", "StackCardFonts", "S4RGKFkXv_default", "ProjectCardFonts", "oQjPvqzI7_default", "TestimonialsSliderFonts", "nr7ZbHRxx_default", "ContactMeFonts", "OjieEYg8y_default", "EmbedFonts", "Embed", "NavBarFonts", "uW7Rf70nN_default", "FooterFonts", "CSekcQJaC_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "animation1", "transition2", "textEffect1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "animation2", "animation3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "XOuFvIrziZSsu4kSmx", "fnCfRcpTWZSsu4kSmx", "pGgLM3iR2ZSsu4kSmx", "dkYbE4q_5ZSsu4kSmx", "cpBBnDgi4ZSsu4kSmx", "QpAGtRV8iZSsu4kSmx", "idZSsu4kSmx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "ForwardTraffic_Prod_default", "PropertyOverrides2", "KevZ0cWUM_default", "x", "RichText2", "ResolveLinks", "resolvedLinks", "QT_ceSX_a_default", "meLEkhFU1_default", "QNDk9nei9_default", "S4RGKFkXv_default", "ChildrenCanSuspend", "OWrml_lsJ_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "oQjPvqzI7_default", "resolvedLinks2", "nr7ZbHRxx_default", "OjieEYg8y_default", "Embed", "uW7Rf70nN_default", "ContainerWithOptimizedAppearEffect", "CSekcQJaC_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SmoothScrollFonts", "ForwardTrafficFonts", "TopHeaderFonts", "ButtonFonts", "Heading3ComponentFonts", "SkillsTickerFonts", "StackCardFonts", "ProjectCardFonts", "TestimonialsSliderFonts", "ContactMeFonts", "EmbedFonts", "NavBarFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
