{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/BgTbfBU32TRmqAF7Fi3P/yp57ZVnxUUt9YeSAEV3M/nPw7tXjnX.js"],
  "sourcesContent": ["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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"IafPct03s\",\"k38P9TUsj\",\"s0lfwR6xL\"];const serializationHash=\"framer-HQJhK\";const variantClassNames={IafPct03s:\"framer-v-1urwbpy\",k38P9TUsj:\"framer-v-1nmu8ww\",s0lfwR6xL:\"framer-v-erbs9k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"IafPct03s\",Phone:\"s0lfwR6xL\",Tablet:\"k38P9TUsj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IafPct03s\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IafPct03s\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1urwbpy\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IafPct03s\",ref:refBinding,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({k38P9TUsj:{\"data-framer-name\":\"Tablet\"},s0lfwR6xL:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1tZWRpdW0=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(240, 240, 240))\"},children:\"Technologies and Platforms We Work With\"})}),className:\"framer-1ldryr4\",fonts:[\"FS;Archivo-medium\"],layoutDependency:layoutDependency,layoutId:\"HK0W5l2Lt\",style:{\"--extracted-1of0zx5\":\"rgb(240, 240, 240)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7kjs8d-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sHUS3SoIk-container\",nodeId:\"sHUS3SoIk\",rendersWithMotion:true,scopeId:\"nPw7tXjnX\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"sHUS3SoIk\",layoutId:\"sHUS3SoIk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ola0u\",\"data-framer-name\":\"Spine\",layoutDependency:layoutDependency,layoutId:\"SX5n5dYX3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17uy827\",\"data-framer-name\":\"spine_logo_dark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"neJQS2KvK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 26\"><path d=\"M 53.446 12.63 C 53.446 12.867 53.387 13.035 53.269 13.135 C 53.15 13.235 53.015 13.285 52.863 13.285 L 47.488 13.285 C 47.488 13.74 47.534 14.15 47.625 14.513 C 47.717 14.877 47.868 15.19 48.08 15.45 C 48.293 15.711 48.569 15.911 48.91 16.051 C 49.25 16.191 49.666 16.26 50.159 16.26 C 50.547 16.26 50.893 16.229 51.197 16.165 C 51.501 16.102 51.764 16.031 51.986 15.951 C 52.208 15.872 52.39 15.801 52.532 15.737 C 52.675 15.674 52.783 15.641 52.856 15.641 C 52.899 15.641 52.936 15.652 52.97 15.673 C 53.003 15.695 53.029 15.726 53.047 15.769 C 53.065 15.812 53.079 15.871 53.088 15.947 C 53.098 16.023 53.102 16.115 53.102 16.224 C 53.102 16.303 53.099 16.372 53.093 16.429 C 53.087 16.487 53.079 16.538 53.07 16.583 C 53.06 16.629 53.046 16.67 53.024 16.706 C 53.003 16.742 52.976 16.777 52.942 16.811 C 52.909 16.844 52.811 16.899 52.648 16.974 C 52.484 17.051 52.273 17.124 52.013 17.197 C 51.753 17.27 51.452 17.335 51.111 17.393 C 50.769 17.45 50.405 17.479 50.018 17.479 C 49.347 17.479 48.759 17.385 48.255 17.197 C 47.75 17.009 47.325 16.73 46.98 16.36 C 46.636 15.989 46.375 15.526 46.2 14.968 C 46.025 14.41 45.937 13.761 45.937 13.02 C 45.937 12.317 46.028 11.684 46.21 11.123 C 46.391 10.561 46.652 10.085 46.994 9.694 C 47.336 9.303 47.748 9.002 48.232 8.793 C 48.715 8.584 49.257 8.479 49.854 8.479 C 50.495 8.479 51.041 8.582 51.491 8.789 C 51.941 8.995 52.312 9.273 52.602 9.621 C 52.893 9.97 53.105 10.379 53.241 10.849 C 53.377 11.32 53.445 11.821 53.445 12.355 L 53.445 12.63 Z M 51.94 12.185 C 51.958 11.396 51.783 10.777 51.416 10.328 C 51.048 9.879 50.502 9.654 49.778 9.654 C 49.408 9.654 49.081 9.724 48.802 9.863 C 48.522 10.003 48.288 10.188 48.099 10.419 C 47.91 10.649 47.764 10.918 47.661 11.225 C 47.557 11.534 47.499 11.858 47.488 12.185 Z\" fill=\"rgb(85,85,85)\"></path><path d=\"M 42.266 17.081 C 42.266 17.129 42.254 17.171 42.23 17.203 C 42.206 17.237 42.167 17.266 42.112 17.29 C 42.058 17.314 41.982 17.333 41.886 17.345 C 41.789 17.357 41.668 17.363 41.523 17.363 C 41.372 17.363 41.248 17.357 41.151 17.345 C 41.055 17.333 40.979 17.314 40.925 17.29 C 40.87 17.266 40.831 17.237 40.807 17.203 C 40.783 17.17 40.771 17.129 40.771 17.081 L 40.771 12.285 C 40.771 11.818 40.735 11.441 40.663 11.157 C 40.59 10.871 40.484 10.626 40.345 10.42 C 40.206 10.213 40.026 10.055 39.805 9.947 C 39.585 9.838 39.329 9.783 39.039 9.783 C 38.664 9.783 38.289 9.917 37.915 10.183 C 37.54 10.451 37.147 10.841 36.736 11.357 L 36.736 17.081 C 36.736 17.13 36.724 17.171 36.7 17.204 C 36.676 17.237 36.637 17.267 36.582 17.291 C 36.528 17.315 36.453 17.333 36.356 17.345 C 36.26 17.357 36.136 17.363 35.985 17.363 C 35.839 17.363 35.718 17.357 35.622 17.345 C 35.525 17.333 35.447 17.315 35.39 17.291 C 35.333 17.267 35.294 17.237 35.272 17.204 C 35.251 17.171 35.241 17.129 35.241 17.081 L 35.241 8.891 C 35.241 8.843 35.25 8.802 35.268 8.769 C 35.286 8.735 35.323 8.705 35.376 8.678 C 35.431 8.651 35.5 8.633 35.585 8.623 C 35.669 8.614 35.781 8.609 35.92 8.609 C 36.054 8.609 36.164 8.614 36.252 8.623 C 36.34 8.633 36.407 8.651 36.456 8.678 C 36.505 8.705 36.539 8.735 36.56 8.769 C 36.582 8.802 36.592 8.843 36.592 8.891 L 36.592 9.974 C 37.051 9.458 37.509 9.081 37.965 8.841 C 38.421 8.602 38.883 8.482 39.348 8.482 C 39.892 8.482 40.35 8.574 40.722 8.759 C 41.093 8.945 41.394 9.191 41.624 9.501 C 41.854 9.81 42.018 10.173 42.118 10.589 C 42.218 11.004 42.268 11.503 42.268 12.085 L 42.268 17.081 Z\" fill=\"rgb(85,85,85)\"></path><path d=\"M 24.375 7.907 C 24.416 9.159 25.279 9.854 27.001 10.124 C 28.46 10.354 29.776 10.237 30.206 8.982 C 31.043 6.536 29.056 7.145 27.335 6.873 C 25.613 6.601 24.309 5.897 24.375 7.907 Z M 24.892 13.047 C 25.052 13.981 25.92 14.517 27.248 14.481 C 28.576 14.444 29.567 13.924 29.705 12.916 C 29.959 11.05 28.494 11.771 27.166 11.807 C 25.837 11.844 24.577 11.213 24.892 13.047 Z M 26.62 17.325 C 26.884 18.023 27.608 18.317 28.586 18.107 C 29.563 17.898 30.239 17.573 30.184 16.778 C 30.085 15.306 29.119 15.769 28.142 15.979 C 27.164 16.187 26.105 15.955 26.62 17.325 Z M 27.459 20.585 C 27.536 21.174 28.043 21.521 28.838 21.515 C 29.634 21.509 30.236 21.194 30.338 20.563 C 30.53 19.395 29.64 19.829 28.845 19.836 C 28.048 19.842 27.308 19.43 27.459 20.585 Z\" fill=\"rgb(255,64,0)\"></path><path d=\"M 20.507 12.858 C 20.507 13.574 20.43 14.218 20.276 14.788 C 20.121 15.358 19.895 15.842 19.596 16.239 C 19.297 16.637 18.926 16.943 18.484 17.158 C 18.043 17.373 17.538 17.481 16.97 17.481 C 16.728 17.481 16.504 17.457 16.299 17.408 C 16.093 17.359 15.892 17.284 15.696 17.181 C 15.499 17.078 15.304 16.948 15.11 16.79 C 14.917 16.632 14.711 16.447 14.494 16.235 L 14.494 20.329 C 14.494 20.378 14.482 20.42 14.458 20.457 C 14.434 20.493 14.395 20.524 14.34 20.548 C 14.285 20.572 14.21 20.59 14.114 20.603 C 14.017 20.615 13.893 20.621 13.742 20.621 C 13.597 20.621 13.476 20.615 13.379 20.603 C 13.282 20.591 13.205 20.573 13.148 20.548 C 13.09 20.524 13.051 20.493 13.03 20.457 C 13.008 20.421 12.998 20.378 12.998 20.329 L 12.998 8.891 C 12.998 8.836 13.007 8.792 13.025 8.759 C 13.043 8.725 13.08 8.697 13.134 8.672 C 13.189 8.648 13.258 8.631 13.342 8.622 C 13.427 8.613 13.529 8.609 13.651 8.609 C 13.778 8.609 13.882 8.613 13.963 8.622 C 14.045 8.632 14.113 8.648 14.167 8.672 C 14.222 8.696 14.26 8.725 14.281 8.759 C 14.302 8.792 14.313 8.836 14.313 8.891 L 14.313 9.992 C 14.56 9.737 14.799 9.515 15.029 9.328 C 15.259 9.14 15.49 8.983 15.723 8.859 C 15.955 8.735 16.194 8.64 16.439 8.577 C 16.685 8.513 16.943 8.482 17.215 8.482 C 17.808 8.482 18.313 8.597 18.729 8.827 C 19.146 9.058 19.486 9.373 19.749 9.773 C 20.012 10.174 20.204 10.639 20.325 11.171 C 20.446 11.701 20.507 12.263 20.507 12.858 Z M 18.956 13.031 C 18.956 12.612 18.923 12.207 18.86 11.816 C 18.796 11.424 18.687 11.077 18.531 10.774 C 18.376 10.47 18.168 10.228 17.906 10.046 C 17.645 9.864 17.319 9.773 16.93 9.773 C 16.735 9.773 16.544 9.803 16.355 9.86 C 16.166 9.917 15.975 10.008 15.78 10.133 C 15.585 10.257 15.382 10.421 15.168 10.624 C 14.956 10.827 14.73 11.077 14.494 11.375 L 14.494 14.633 C 14.907 15.137 15.3 15.521 15.671 15.788 C 16.041 16.055 16.431 16.188 16.838 16.188 C 17.215 16.188 17.54 16.097 17.81 15.916 C 18.081 15.734 18.3 15.491 18.467 15.188 C 18.635 14.885 18.758 14.545 18.837 14.169 C 18.917 13.793 18.956 13.413 18.956 13.031 Z\" fill=\"rgb(85,85,85)\"></path><path d=\"M 9.372 14.851 C 9.372 15.269 9.295 15.643 9.141 15.971 C 8.987 16.298 8.767 16.574 8.483 16.799 C 8.198 17.023 7.86 17.193 7.467 17.309 C 7.074 17.423 6.642 17.482 6.171 17.482 C 5.88 17.482 5.604 17.459 5.341 17.413 C 5.078 17.368 4.842 17.31 4.634 17.24 C 4.426 17.171 4.249 17.098 4.104 17.021 C 3.958 16.946 3.852 16.877 3.786 16.817 C 3.719 16.756 3.671 16.671 3.641 16.562 C 3.611 16.453 3.595 16.304 3.595 16.116 C 3.595 16.001 3.601 15.904 3.613 15.825 C 3.625 15.746 3.641 15.683 3.659 15.634 C 3.677 15.585 3.702 15.551 3.735 15.529 C 3.769 15.508 3.809 15.497 3.849 15.497 C 3.916 15.497 4.014 15.539 4.144 15.62 C 4.274 15.702 4.434 15.791 4.625 15.888 C 4.815 15.985 5.041 16.075 5.3 16.157 C 5.56 16.239 5.86 16.279 6.198 16.279 C 6.452 16.279 6.681 16.252 6.887 16.197 C 7.093 16.142 7.271 16.062 7.422 15.956 C 7.571 15.853 7.691 15.714 7.771 15.551 C 7.853 15.388 7.894 15.194 7.894 14.969 C 7.894 14.739 7.835 14.545 7.717 14.387 C 7.599 14.23 7.443 14.09 7.25 13.969 C 7.056 13.847 6.839 13.74 6.597 13.646 C 6.355 13.552 6.106 13.453 5.849 13.35 C 5.592 13.247 5.34 13.131 5.096 13 C 4.856 12.872 4.634 12.712 4.438 12.522 C 4.245 12.335 4.089 12.11 3.971 11.849 C 3.853 11.588 3.794 11.275 3.794 10.911 C 3.794 10.589 3.857 10.282 3.981 9.987 C 4.104 9.693 4.291 9.435 4.538 9.214 C 4.786 8.993 5.096 8.815 5.468 8.681 C 5.839 8.548 6.273 8.481 6.769 8.481 C 6.986 8.481 7.204 8.499 7.421 8.536 C 7.639 8.572 7.835 8.618 8.011 8.672 C 8.186 8.727 8.335 8.786 8.46 8.849 C 8.584 8.913 8.678 8.969 8.741 9.017 C 8.804 9.066 8.847 9.108 8.868 9.145 C 8.89 9.181 8.904 9.222 8.913 9.268 C 8.923 9.313 8.931 9.37 8.941 9.436 C 8.95 9.503 8.954 9.585 8.954 9.682 C 8.954 9.785 8.95 9.875 8.941 9.95 C 8.931 10.026 8.917 10.088 8.895 10.137 C 8.874 10.186 8.848 10.22 8.819 10.241 C 8.788 10.263 8.755 10.273 8.719 10.273 C 8.664 10.273 8.585 10.24 8.483 10.173 C 8.38 10.106 8.247 10.035 8.084 9.959 C 7.921 9.883 7.729 9.812 7.508 9.745 C 7.288 9.678 7.035 9.645 6.752 9.645 C 6.498 9.645 6.274 9.674 6.08 9.731 C 5.886 9.789 5.728 9.871 5.604 9.977 C 5.481 10.084 5.387 10.21 5.323 10.355 C 5.26 10.501 5.229 10.659 5.229 10.829 C 5.229 11.065 5.289 11.264 5.41 11.424 C 5.53 11.585 5.687 11.726 5.881 11.848 C 6.074 11.969 6.295 12.078 6.543 12.175 C 6.791 12.272 7.044 12.372 7.3 12.475 C 7.557 12.578 7.811 12.694 8.062 12.821 C 8.313 12.948 8.535 13.103 8.728 13.284 C 8.921 13.466 9.077 13.685 9.195 13.939 C 9.313 14.195 9.372 14.499 9.372 14.851 Z\" fill=\"rgb(85,85,85)\"></path></svg>',svgContentId:11883852284,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f2ckii\",\"data-framer-name\":\"angular\",layoutDependency:layoutDependency,layoutId:\"phfV8idiu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2v5tqs\",\"data-framer-name\":\"angular\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"GKa8NPls8\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3 16.575 49.52 0l47.77 16.28-7.735 61.547L49.52 100 10.11 78.121 3 16.575Z\" fill=\"#E23237\"/><path d=\"M97.291 16.28 49.52 0v100l40.037-22.136 7.735-61.584Z\" fill=\"#B52E31\"/><path d=\"M49.593 11.676 20.606 76.169l10.829-.184 5.82-14.549h26.003L69.63 76.17l10.35.185-30.387-64.678Zm.074 20.663 9.797 20.479H41.048l8.619-20.479Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ks80f\",\"data-framer-name\":\"flutter\",layoutDependency:layoutDependency,layoutId:\"WhbCYiSsU\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-141or71\",\"data-framer-name\":\"flutter\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"Rjx2YHYln\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.399 65.395 10 49.996 60 0h30.794L25.399 65.395Zm65.395-19.258H60L48.465 57.672 63.864 73.07\" fill=\"#42A5F5\" fill-opacity=\".8\"/><path d=\"M48.465 88.465 60 100h30.794l-26.93-26.93\" fill=\"#0D47A1\"/><path d=\"M33.102 73.079 48.477 57.7l15.375 15.375-15.375 15.378L33.103 73.08Z\" fill=\"#42A5F5\"/><path d=\"M48.477 88.453 63.852 73.08l2.146 2.146L50.623 90.6l-2.146-2.146Z\" fill=\"url(#a)\"/><path d=\"m48.465 88.465 22.848-7.893-7.449-7.506\" fill=\"url(#b)\"/><defs><linearGradient id=\"a\" x1=\"56.167\" y1=\"80.763\" x2=\"58.314\" y2=\"82.909\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".2\" stop-opacity=\".15\"/><stop offset=\".85\" stop-color=\"#616161\" stop-opacity=\".01\"/></linearGradient><linearGradient id=\"b\" x1=\"48.471\" y1=\"80.766\" x2=\"71.318\" y2=\"80.766\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".2\" stop-opacity=\".55\"/><stop offset=\".85\" stop-color=\"#616161\" stop-opacity=\".01\"/></linearGradient></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pst3wt\",\"data-framer-name\":\"github\",layoutDependency:layoutDependency,layoutId:\"VBasJ7yMi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tgclgg\",\"data-framer-name\":\"github\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"WXKiFP0Kj\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50 1C22.39 1 0 23.386 0 51c0 22.092 14.326 40.835 34.193 47.446 2.499.463 3.416-1.085 3.416-2.405 0-1.192-.046-5.132-.067-9.31-13.91 3.025-16.846-5.899-16.846-5.899-2.274-5.78-5.552-7.316-5.552-7.316-4.536-3.103.342-3.04.342-3.04 5.021.353 7.665 5.153 7.665 5.153 4.46 7.644 11.697 5.434 14.55 4.157.449-3.232 1.745-5.438 3.175-6.686-11.106-1.265-22.78-5.552-22.78-24.71 0-5.46 1.953-9.92 5.151-13.421-.519-1.26-2.23-6.345.485-13.232 0 0 4.198-1.344 13.753 5.125 3.988-1.108 8.266-1.663 12.515-1.682 4.25.018 8.53.574 12.526 1.682 9.543-6.47 13.736-5.125 13.736-5.125 2.722 6.887 1.01 11.972.49 13.232 3.206 3.501 5.146 7.961 5.146 13.42 0 19.204-11.697 23.433-22.83 24.67 1.793 1.553 3.39 4.596 3.39 9.26 0 6.69-.057 12.075-.057 13.722 0 1.33.9 2.89 3.434 2.398C85.691 91.82 100 73.085 100 51.001c0-27.615-22.386-50-50-50Z\" fill=\"#fff\"/><path d=\"M18.726 72.227c-.11.248-.5.323-.856.153-.363-.164-.567-.502-.45-.752.108-.255.5-.327.862-.155.363.163.57.505.444.754Zm2.46 2.194c-.238.222-.705.119-1.021-.23-.327-.35-.388-.815-.146-1.04.245-.22.698-.117 1.025.232.327.352.39.815.142 1.039Zm1.687 2.808c-.306.213-.808.014-1.117-.431-.306-.445-.306-.978.007-1.192.31-.213.804-.021 1.117.42.306.452.306.986-.007 1.204Zm2.854 3.252c-.275.302-.858.221-1.285-.191-.437-.403-.56-.975-.284-1.278.277-.302.864-.217 1.294.192.434.402.567.978.275 1.277Zm3.687 1.098c-.12.392-.682.57-1.249.403-.565-.171-.935-.63-.821-1.025.117-.395.682-.58 1.253-.402.564.17.935.626.818 1.024Zm4.198.466c.014.412-.467.754-1.061.762-.598.013-1.082-.321-1.088-.727 0-.416.47-.755 1.067-.765.595-.011 1.082.32 1.082.73Zm4.123-.158c.071.402-.342.815-.932.925-.58.106-1.118-.142-1.192-.541-.072-.413.349-.826.928-.933.591-.102 1.12.14 1.196.549Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qrj4lk\",\"data-framer-name\":\"vuejs\",layoutDependency:layoutDependency,layoutId:\"q0LpT7bAI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-753miq\",\"data-framer-name\":\"vuejs\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"PW51ZZdEE\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80 7h20L50 93.25 0 7h38.25L50 27 61.5 7H80Z\" fill=\"#41B883\"/><path d=\"m0 7 50 86.25L100 7H80L50 58.75 19.75 7H0Z\" fill=\"#41B883\"/><path d=\"M19.75 7 50 59 80 7H61.5L50 27 38.25 7h-18.5Z\" fill=\"#35495E\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1meqyee\",\"data-framer-name\":\"c_\",layoutDependency:layoutDependency,layoutId:\"TVoY2yMSu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pq0ekg\",\"data-framer-name\":\"c_\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"SguGxk4vC\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M94.73 29.321c0-1.677-.359-3.158-1.084-4.43-.713-1.25-1.78-2.299-3.21-3.128-11.814-6.811-23.638-13.602-35.448-20.42-3.183-1.838-6.27-1.771-9.43.093C40.856 4.21 17.315 17.696 10.3 21.76c-2.889 1.673-4.295 4.232-4.295 7.56C6 43.015 6.005 56.713 6 70.412c0 1.64.344 3.093 1.037 4.346.713 1.288 1.795 2.365 3.26 3.213 7.014 4.063 30.558 17.549 35.26 20.323 3.16 1.865 6.248 1.932 9.432.093 11.81-6.819 23.635-13.61 35.45-20.42 1.464-.848 2.546-1.925 3.259-3.213.692-1.252 1.036-2.705 1.037-4.346 0 0 0-27.39-.005-41.088Z\" fill=\"#5C8DBC\"/><path d=\"M50.503 49.732 7.037 74.76c.713 1.288 1.795 2.365 3.26 3.213 7.014 4.063 30.558 17.549 35.26 20.323 3.16 1.865 6.248 1.932 9.432.093C66.8 91.57 78.624 84.78 90.44 77.968c1.464-.848 2.546-1.925 3.259-3.213L50.503 49.732Z\" fill=\"#1A4674\"/><path d=\"M37.629 57.145c2.53 4.416 7.284 7.394 12.738 7.394 5.488 0 10.27-3.016 12.787-7.479l-12.65-7.328-12.875 7.413Z\" fill=\"#1A4674\"/><path d=\"M94.73 29.322c0-1.677-.359-3.16-1.084-4.43l-43.143 24.84 43.195 25.024c.692-1.253 1.036-2.706 1.037-4.347 0 0 0-27.389-.005-41.087Z\" fill=\"#1B598E\"/><path d=\"M92.355 51.52H88.98v3.377h-3.376V51.52h-3.375v-3.375h3.375V44.77h3.376v3.376h3.375v3.375Zm-12.316 0h-3.375v3.377h-3.376V51.52h-3.375v-3.375h3.375V44.77h3.376v3.376h3.375v3.375Z\" fill=\"#fff\"/><path d=\"M63.154 57.06c-2.517 4.463-7.299 7.48-12.787 7.48-5.454 0-10.209-2.979-12.738-7.395a14.605 14.605 0 0 1-1.935-7.28c0-8.103 6.57-14.673 14.673-14.673 5.42 0 10.15 2.941 12.691 7.312l12.826-7.386c-5.098-8.8-14.615-14.72-25.517-14.72-16.274 0-29.467 13.194-29.467 29.468 0 5.339 1.42 10.346 3.903 14.664 5.084 8.846 14.63 14.803 25.564 14.803 10.956 0 20.515-5.98 25.593-14.853l-12.806-7.42Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ppg12h\",\"data-framer-name\":\"html5\",layoutDependency:layoutDependency,layoutId:\"rgM9ArRu7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-20vhgy\",\"data-framer-name\":\"html5\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"rg5Xb2itp\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.021 90.034 6 0h88.187l-8.022 89.986L50.02 100\" fill=\"#E44D26\"/><path d=\"M50.093 92.344V7.391h36.048L79.26 84.2\" fill=\"#F16529\"/><path d=\"M22.383 18.401h27.71v11.036H34.488L35.51 40.74h14.584v11.01H25.397l-3.014-33.349Zm3.5 38.892h11.084l.778 8.824 12.348 3.305v11.522l-22.654-6.32\" fill=\"#EBEBEB\"/><path d=\"M77.706 18.401H50.044v11.036h26.64L77.707 18.4ZM75.688 40.74H50.044v11.035h13.612l-1.288 14.342-12.324 3.305v11.473l22.606-6.271\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uq1h9\",\"data-framer-name\":\"java\",layoutDependency:layoutDependency,layoutId:\"tws91I2rW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-atqixx\",\"data-framer-name\":\"java\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"SyHvP7nVz\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M36.753 77.336s-3.822 2.222 2.72 2.974c7.924.904 11.973.775 20.706-.878 0 0 2.296 1.44 5.502 2.686-19.576 8.39-44.304-.486-28.928-4.782ZM34.36 66.388s-4.286 3.172 2.26 3.85c8.464.873 15.149.944 26.716-1.283 0 0 1.6 1.622 4.116 2.509-23.668 6.92-50.03.546-33.093-5.076Z\" fill=\"#5382A1\"/><path d=\"M54.527 47.816c4.823 5.553-1.268 10.55-1.268 10.55s12.248-6.322 6.623-14.24c-5.253-7.383-9.282-11.052 12.528-23.7 0 0-34.234 8.55-17.883 27.39\" fill=\"#E76F00\"/><path d=\"M80.418 85.434s2.827 2.33-3.115 4.133c-11.3 3.423-47.03 4.457-56.956.136-3.568-1.552 3.123-3.706 5.228-4.158 2.195-.476 3.45-.387 3.45-.387-3.968-2.796-25.648 5.489-11.012 7.86 39.913 6.474 72.757-2.914 62.404-7.584ZM38.59 55.044s-18.174 4.317-6.436 5.884c4.956.664 14.837.514 24.04-.257 7.522-.634 15.075-1.984 15.075-1.984s-2.653 1.136-4.571 2.446c-18.457 4.854-54.11 2.596-43.846-2.369 8.68-4.196 15.738-3.72 15.738-3.72Zm32.603 18.224c18.762-9.75 10.088-19.118 4.033-17.856-1.484.309-2.146.577-2.146.577s.551-.863 1.603-1.237c11.978-4.211 21.19 12.42-3.867 19.008 0 0 .29-.26.377-.492Z\" fill=\"#5382A1\"/><path d=\"M59.882 0s10.39 10.395-9.855 26.378c-16.234 12.82-3.702 20.131-.006 28.483-9.477-8.55-16.432-16.076-11.766-23.081C45.103 21.496 64.075 16.51 59.882 0\" fill=\"#E76F00\"/><path d=\"M40.434 99.686c18.009 1.153 45.663-.64 46.318-9.16 0 0-1.259 3.23-14.883 5.795-15.371 2.893-34.329 2.555-45.573.701 0 0 2.302 1.905 14.138 2.664\" fill=\"#5382A1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egtsad\",\"data-framer-name\":\"vscode\",layoutDependency:layoutDependency,layoutId:\"EzO2WybUI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p7fkcx\",\"data-framer-name\":\"vscode\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"TnhGyH93U\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.951 35.499s-2.435-1.756.488-4.1l6.81-6.09s1.948-2.05 4.008-.263l62.839 47.576v22.814s-.03 3.582-4.628 3.186L.951 35.5Z\" fill=\"#2489CA\"/><path d=\"M17.148 50.204.951 64.93s-1.664 1.238 0 3.45l7.52 6.84s1.787 1.918 4.425-.264l17.171-13.02-12.919-11.732Z\" fill=\"#1070B3\"/><path d=\"M45.584 50.326 75.29 27.644l-.193-22.692S73.827 0 69.596 2.577L30.067 38.554l15.517 11.772Z\" fill=\"#0877B9\"/><path d=\"M70.468 98.653c1.726 1.766 3.816 1.187 3.816 1.187l23.149-11.407c2.963-2.02 2.547-4.526 2.547-4.526V15.791c0-2.994-3.065-4.03-3.065-4.03l-20.063-9.67c-4.384-2.71-7.256.486-7.256.486s3.694-2.658 5.5 2.375V95.02c0 .619-.132 1.228-.396 1.776-.528 1.065-1.674 2.06-4.425 1.644l.193.213Z\" fill=\"#3C99D4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebnvl4\",\"data-framer-name\":\"csharp\",layoutDependency:layoutDependency,layoutId:\"KARdxeW8H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wvrnv0\",\"data-framer-name\":\"csharp\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"q3gEv6ov7\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M94.094 29.111c0-1.665-.356-3.136-1.076-4.398-.708-1.242-1.767-2.283-3.188-3.106C78.102 14.845 66.362 8.103 54.637 1.333c-3.16-1.825-6.225-1.758-9.363.093C40.606 4.18 17.234 17.57 10.27 21.603c-2.868 1.661-4.264 4.202-4.265 7.505-.004 13.6 0 27.2-.004 40.8 0 1.629.342 3.072 1.03 4.315.708 1.279 1.782 2.348 3.235 3.19 6.965 4.034 30.34 17.423 35.008 20.177 3.139 1.852 6.203 1.918 9.365.093 11.725-6.77 23.466-13.512 35.196-20.274 1.453-.842 2.528-1.911 3.235-3.19.688-1.243 1.03-2.686 1.03-4.314 0 0 0-27.194-.005-40.794Z\" fill=\"#A179DC\"/><path d=\"M50.184 49.376 7.03 74.222c.708 1.279 1.782 2.348 3.235 3.19 6.965 4.034 30.34 17.423 35.008 20.177 3.139 1.852 6.203 1.918 9.365.093 11.725-6.77 23.466-13.512 35.196-20.275 1.453-.84 2.528-1.91 3.235-3.189L50.184 49.376Z\" fill=\"#280068\"/><path d=\"M94.094 29.111c0-1.665-.356-3.136-1.076-4.398L50.184 49.376 93.07 74.219c.688-1.243 1.03-2.686 1.03-4.314 0 0 0-27.194-.005-40.794Z\" fill=\"#390091\"/><path d=\"M75.592 40.087v4.644h4.644v-4.644h2.323v4.644h4.644v2.323H82.56v4.644h4.644v2.322H82.56v4.644h-2.323V54.02h-4.644v4.644H73.27V54.02h-4.644v-2.322h4.644v-4.644h-4.644V44.73h4.644v-4.644h2.322Zm4.644 6.966h-4.644v4.645h4.644v-4.645Z\" fill=\"#fff\"/><path d=\"M50.279 16.762c12.114 0 22.69 6.579 28.356 16.358l-.056-.094-14.253 8.206c-2.808-4.754-7.955-7.963-13.861-8.029l-.186-.001c-9.006 0-16.306 7.3-16.306 16.306a16.229 16.229 0 0 0 2.15 8.09c2.81 4.907 8.095 8.216 14.156 8.216 6.099 0 11.413-3.351 14.209-8.31l-.068.119 14.231 8.244c-5.603 9.696-16.034 16.255-28.007 16.386l-.365.002c-12.152 0-22.759-6.62-28.41-16.45a32.598 32.598 0 0 1-4.337-16.297c0-18.085 14.661-32.746 32.747-32.746Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q1okrk\",\"data-framer-name\":\"framer\",layoutDependency:layoutDependency,layoutId:\"ZSyOAJqG5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pe20t6\",\"data-framer-name\":\"framer\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"QPZ2vcjfo\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M80.822 64.822c1.05 1.05.306 2.844-1.178 2.844H52c-.922 0-1.667.745-1.667 1.667v27.644c0 1.484-1.794 2.228-2.844 1.178L17.65 68.316a2.224 2.224 0 0 1-.65-1.572V36c0-.923.744-1.667 1.667-1.667h31.666l30.49 30.489ZM50.333 34.333 19.844 3.844C18.794 2.794 19.54 1 21.022 1H82c.922 0 1.667.744 1.667 1.666v30c0 .923-.745 1.667-1.667 1.667H50.333Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11nhi1w\",\"data-framer-name\":\"js\",layoutDependency:layoutDependency,layoutId:\"xQUCYauWo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lxaez9\",\"data-framer-name\":\"js\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"cQe3rzevZ\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100 0H0v100h100V0Z\" fill=\"#F7DF1E\"/><path d=\"M67.174 78.126c2.015 3.289 4.635 5.706 9.27 5.706 3.894 0 6.381-1.946 6.381-4.635 0-3.222-2.555-4.363-6.84-6.238l-2.35-1.008c-6.781-2.889-11.286-6.508-11.286-14.158 0-7.048 5.37-12.413 13.762-12.413 5.975 0 10.27 2.08 13.365 7.524l-7.317 4.698c-1.612-2.889-3.35-4.027-6.048-4.027-2.752 0-4.497 1.746-4.497 4.027 0 2.82 1.746 3.96 5.778 5.707l2.35 1.006c7.983 3.424 12.491 6.914 12.491 14.762 0 8.46-6.646 13.095-15.571 13.095-8.727 0-14.365-4.159-17.124-9.61l7.636-4.436Zm-33.195.814c1.477 2.62 2.82 4.834 6.048 4.834 3.087 0 5.035-1.208 5.035-5.905V45.916h9.397v32.08c0 9.73-5.705 14.159-14.032 14.159-7.524 0-11.881-3.894-14.097-8.584l7.65-4.63Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({s0lfwR6xL:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:11,overflow:false},gap:40,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k3gxy0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KRy6SybzS-container\",nodeId:\"KRy6SybzS\",rendersWithMotion:true,scopeId:\"nPw7tXjnX\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"KRy6SybzS\",layoutId:\"KRy6SybzS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bce0j5\",\"data-framer-name\":\"tailwindcss\",layoutDependency:layoutDependency,layoutId:\"TKwnZF5Cd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q83gn1\",\"data-framer-name\":\"tailwindcss\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"Ri50ipoN7\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50 20c-13.334 0-21.667 6.666-25 19.994 5-6.665 10.834-9.163 17.5-7.498 3.804.95 6.522 3.71 9.532 6.764 4.902 4.974 10.576 10.732 22.969 10.732 13.332 0 21.667-6.665 24.999-19.995-5 6.665-10.833 9.164-17.5 7.499-3.803-.95-6.521-3.71-9.531-6.764C68.067 25.758 62.392 20 50 20ZM25 49.992c-13.333 0-21.667 6.665-25 19.995 5-6.665 10.833-9.165 17.5-7.498 3.803.952 6.522 3.71 9.532 6.762C31.933 74.226 37.608 79.984 50 79.984c13.334 0 21.667-6.665 25-19.995-5 6.665-10.833 9.165-17.5 7.498-3.803-.95-6.522-3.71-9.532-6.763C43.066 55.75 37.393 49.992 25 49.992Z\" fill=\"#06B6D4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p6mbi5\",\"data-framer-name\":\"aws\",layoutDependency:layoutDependency,layoutId:\"STmsE6syH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xdiztl\",\"data-framer-name\":\"aws\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"aJ0leqC7w\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M28.181 41.718c0 1.23.133 2.228.366 2.96.266.732.599 1.53 1.064 2.395.167.266.233.532.233.765 0 .332-.2.665-.632.998l-2.095 1.396c-.3.2-.599.3-.865.3-.332 0-.665-.166-.997-.466a10.288 10.288 0 0 1-1.198-1.563 25.792 25.792 0 0 1-1.03-1.962c-2.595 3.06-5.855 4.59-9.779 4.59-2.794 0-5.022-.799-6.652-2.395-1.63-1.597-2.461-3.725-2.461-6.386 0-2.827.998-5.122 3.027-6.851 2.028-1.73 4.722-2.595 8.148-2.595 1.13 0 2.295.1 3.525.267 1.231.166 2.495.432 3.825.731v-2.428c0-2.527-.532-4.29-1.563-5.321-1.064-1.031-2.86-1.53-5.421-1.53-1.164 0-2.361.133-3.592.432-1.23.3-2.428.666-3.592 1.131a9.54 9.54 0 0 1-1.164.433c-.233.066-.4.1-.532.1-.466 0-.699-.333-.699-1.032v-1.63c0-.531.067-.93.233-1.163.166-.233.466-.466.931-.699 1.164-.599 2.561-1.098 4.191-1.497 1.63-.432 3.36-.631 5.188-.631 3.958 0 6.852.898 8.714 2.694 1.83 1.796 2.76 4.523 2.76 8.181v10.776h.067Zm-13.503 5.055c1.098 0 2.229-.2 3.426-.598 1.197-.4 2.261-1.131 3.16-2.129.532-.632.93-1.33 1.13-2.128.2-.798.333-1.763.333-2.894v-1.397a27.75 27.75 0 0 0-3.06-.565 25.05 25.05 0 0 0-3.126-.2c-2.229 0-3.858.433-4.956 1.33-1.098.899-1.63 2.163-1.63 3.825 0 1.564.4 2.728 1.23 3.526.8.831 1.963 1.23 3.493 1.23Zm26.707 3.592c-.599 0-.998-.1-1.264-.332-.266-.2-.499-.665-.698-1.297l-7.816-25.71c-.2-.665-.3-1.097-.3-1.33 0-.532.267-.831.799-.831h3.26c.631 0 1.063.1 1.296.332.266.2.466.666.666 1.297l5.587 22.018 5.188-22.018c.167-.665.366-1.097.632-1.297.266-.2.732-.332 1.33-.332h2.661c.632 0 1.065.1 1.33.332.267.2.5.666.633 1.297l5.255 22.284 5.753-22.284c.2-.665.433-1.097.665-1.297.267-.2.699-.332 1.298-.332h3.093c.532 0 .831.266.831.831 0 .166-.033.333-.066.532-.034.2-.1.466-.233.832L63.27 48.769c-.2.665-.433 1.098-.699 1.297-.266.2-.698.333-1.264.333h-2.86c-.632 0-1.064-.1-1.33-.333-.267-.233-.5-.665-.632-1.33L51.33 27.284l-5.122 21.419c-.167.665-.366 1.097-.632 1.33-.266.233-.732.332-1.33.332h-2.86Zm42.738.898c-1.73 0-3.46-.2-5.122-.598-1.663-.4-2.96-.832-3.825-1.33-.532-.3-.898-.633-1.03-.932-.134-.3-.2-.632-.2-.931v-1.696c0-.699.266-1.031.765-1.031.2 0 .399.033.598.1.2.066.5.199.832.332a18.06 18.06 0 0 0 3.658 1.164c1.33.266 2.628.4 3.958.4 2.095 0 3.725-.367 4.856-1.098 1.13-.732 1.73-1.796 1.73-3.16 0-.931-.3-1.696-.899-2.328-.598-.632-1.73-1.197-3.359-1.73l-4.822-1.496c-2.428-.765-4.224-1.896-5.322-3.393-1.097-1.463-1.663-3.093-1.663-4.822 0-1.397.3-2.628.898-3.692a8.551 8.551 0 0 1 2.395-2.727c.998-.765 2.128-1.33 3.459-1.73 1.33-.399 2.727-.565 4.19-.565.732 0 1.497.033 2.229.133.765.1 1.463.233 2.162.366.665.166 1.297.332 1.895.532.599.2 1.065.4 1.397.599.466.266.798.532.998.831.2.266.3.632.3 1.098v1.563c0 .698-.267 1.064-.766 1.064-.266 0-.698-.133-1.264-.399-1.895-.865-4.024-1.297-6.385-1.297-1.896 0-3.393.3-4.424.931-1.03.632-1.563 1.597-1.563 2.96 0 .931.333 1.73.998 2.362.665.632 1.896 1.264 3.658 1.829l4.723 1.497c2.395.764 4.124 1.829 5.155 3.192 1.031 1.364 1.53 2.927 1.53 4.657 0 1.43-.3 2.727-.864 3.858-.6 1.13-1.397 2.128-2.428 2.926-1.031.832-2.262 1.43-3.692 1.863-1.497.466-3.06.698-4.756.698Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M90.409 67.427C79.466 75.51 63.569 79.8 49.899 79.8c-19.157 0-36.418-7.085-49.456-18.858-1.03-.932-.1-2.195 1.131-1.464 14.102 8.182 31.496 13.138 49.49 13.138 12.139 0 25.476-2.528 37.748-7.716 1.83-.832 3.393 1.197 1.597 2.527Z\" fill=\"#F90\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.965 62.239c-1.397-1.796-9.246-.865-12.804-.433-1.065.134-1.231-.798-.267-1.496 6.253-4.39 16.53-3.127 17.727-1.663 1.198 1.497-.332 11.774-6.186 16.696-.898.765-1.762.366-1.363-.632 1.33-3.293 4.29-10.71 2.893-12.472Z\" fill=\"#F90\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n0rjfm\",\"data-framer-name\":\"laravel\",layoutDependency:layoutDependency,layoutId:\"rx6dL1mh9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vkopjr\",\"data-framer-name\":\"laravel\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"yjI8PAUCZ\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M98.494 22.485c.036.133.054.27.054.407v21.334a1.556 1.556 0 0 1-.782 1.35L79.86 55.884v20.434a1.56 1.56 0 0 1-.777 1.349L41.705 99.185c-.085.049-.179.08-.272.113-.035.011-.068.033-.105.043a1.565 1.565 0 0 1-.797 0c-.043-.012-.082-.035-.123-.051-.085-.031-.175-.058-.256-.105L2.782 77.668A1.558 1.558 0 0 1 2 76.318V12.317c0-.14.02-.276.055-.408.011-.045.039-.086.054-.13.03-.082.057-.166.1-.242.028-.05.071-.09.106-.138.045-.062.086-.126.138-.18.045-.045.103-.078.154-.117.056-.047.107-.097.171-.134h.002L21.466.208a1.56 1.56 0 0 1 1.555 0l18.686 10.759h.004c.062.039.115.087.171.132.05.039.107.074.152.117.054.056.093.12.14.182.033.047.078.088.105.139.044.077.07.159.1.24.017.045.044.086.055.133.036.132.054.269.055.406v39.975l15.57-8.965V22.89c0-.136.02-.274.055-.405.014-.046.039-.087.055-.132.03-.081.058-.165.1-.24.03-.051.073-.092.106-.139.046-.062.085-.126.14-.18.044-.046.1-.079.151-.117.059-.047.11-.098.171-.135h.002l18.688-10.758a1.557 1.557 0 0 1 1.556 0l18.686 10.758c.066.04.116.088.174.133.05.038.106.073.15.116.055.057.093.12.14.183.035.047.078.088.105.138.045.076.07.16.101.241.018.045.043.086.055.132Zm-3.06 20.84v-17.74l-6.54 3.764-9.034 5.202v17.74l15.575-8.965h-.002ZM76.746 75.419V57.666l-8.885 5.075-25.375 14.482v17.92l34.26-19.725ZM5.115 15.01v60.41l34.257 19.72V77.225L21.476 67.096l-.006-.004-.008-.004c-.06-.035-.11-.085-.167-.128-.049-.039-.105-.07-.148-.113l-.004-.005c-.05-.05-.085-.11-.128-.164-.04-.052-.086-.097-.117-.151l-.002-.006c-.035-.059-.056-.129-.082-.195-.025-.058-.058-.112-.073-.175v-.002c-.02-.074-.024-.151-.032-.227-.007-.058-.023-.117-.023-.175V23.975l-9.032-5.203-6.539-3.76v-.003Zm17.13-11.655L6.678 12.316l15.565 8.962 15.567-8.964-15.567-8.96h.003Zm8.097 55.93 9.032-5.2V15.01l-6.54 3.765-9.033 5.2V63.05l6.541-3.766ZM78.305 13.93l-15.567 8.962 15.567 8.962L93.87 22.89l-15.565-8.96Zm-1.558 20.62-9.033-5.2-6.54-3.765v17.74l9.032 5.2 6.541 3.766v-17.74Zm-35.82 39.98 22.834-13.036 11.413-6.513-15.555-8.956-17.91 10.31-16.323 9.398 15.541 8.797Z\" fill=\"#FF2D20\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kajlb2\",\"data-framer-name\":\"nodejs\",layoutDependency:layoutDependency,layoutId:\"Zr_MYPwge\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n3g1si\",\"data-framer-name\":\"nodejs\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"PTEkGsUI_\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M46.279 1.067c2.479-1.419 5.709-1.425 8.186 0C66.929 8.11 79.396 15.142 91.858 22.188c2.343 1.32 3.911 3.93 3.887 6.63v42.37c.018 2.813-1.705 5.484-4.178 6.774-12.422 7.004-24.838 14.016-37.259 21.02-2.53 1.447-5.825 1.336-8.277-.23-3.724-2.159-7.455-4.307-11.18-6.464-.76-.454-1.619-.815-2.156-1.553.475-.64 1.324-.72 2.015-1 1.554-.494 2.982-1.287 4.41-2.058.361-.247.802-.152 1.148.07 3.185 1.825 6.342 3.704 9.537 5.513.682.393 1.372-.13 1.955-.454 12.19-6.89 24.396-13.754 36.584-20.645a1.21 1.21 0 0 0 .664-1.192c.009-13.977.002-27.957.005-41.934a1.31 1.31 0 0 0-.781-1.307C75.852 20.756 63.479 13.774 51.102 6.8a1.29 1.29 0 0 0-1.458-.002c-12.378 6.976-24.749 13.965-37.126 20.936-.506.23-.845.738-.785 1.301.002 13.977 0 27.957 0 41.936a1.186 1.186 0 0 0 .673 1.177c3.303 1.873 6.61 3.733 9.915 5.6 1.862 1.001 4.149 1.597 6.2.829 1.81-.65 3.08-2.497 3.045-4.419.017-13.895-.009-27.793.013-41.687-.046-.617.54-1.126 1.14-1.068 1.586-.011 3.175-.022 4.762.004.663-.015 1.119.65 1.037 1.27-.007 13.984.017 27.968-.01 41.952.003 3.727-1.528 7.782-4.975 9.605-4.247 2.2-9.496 1.734-13.691-.376-3.632-1.812-7.098-3.952-10.666-5.894C6.697 76.681 4.983 74 5 71.19V28.818c-.026-2.757 1.604-5.413 4.021-6.714 12.42-7.01 24.84-14.024 37.258-21.037Z\" fill=\"#8CC84B\"/><path d=\"M57.114 30.418c5.417-.349 11.216-.207 16.091 2.462 3.774 2.045 5.867 6.337 5.933 10.53-.105.566-.696.878-1.236.839-1.572-.002-3.144.021-4.716-.01-.667.025-1.054-.59-1.138-1.18-.451-2.006-1.545-3.993-3.434-4.96-2.898-1.452-6.26-1.379-9.42-1.348-2.308.122-4.79.322-6.744 1.679-1.5 1.028-1.957 3.103-1.421 4.774.505 1.2 1.89 1.587 3.023 1.944 6.529 1.707 13.447 1.537 19.85 3.784 2.651.916 5.245 2.697 6.152 5.473 1.187 3.72.667 8.167-1.98 11.154-2.146 2.458-5.273 3.795-8.39 4.522-4.149.925-8.454.948-12.666.538-3.962-.452-8.084-1.493-11.142-4.192-2.614-2.27-3.892-5.808-3.765-9.222.03-.577.605-.979 1.157-.931 1.583-.013 3.165-.017 4.748.002.632-.046 1.101.5 1.133 1.097.292 1.911 1.01 3.917 2.678 5.05 3.216 2.076 7.253 1.934 10.936 1.992 3.052-.136 6.477-.176 8.967-2.193 1.314-1.15 1.703-3.075 1.348-4.731-.384-1.398-1.847-2.05-3.103-2.475-6.444-2.039-13.44-1.3-19.822-3.605-2.59-.915-5.096-2.647-6.092-5.309-1.389-3.767-.752-8.427 2.172-11.313 2.852-2.87 6.968-3.976 10.881-4.372Z\" fill=\"#8CC84B\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tlf3zl\",\"data-framer-name\":\"sass\",layoutDependency:layoutDependency,layoutId:\"SHdD6oJ9j\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e6q93j\",\"data-framer-name\":\"sass\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"F9WTkSmn2\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M86.108 56.112c-3.489.018-6.52.858-9.06 2.1-.931-1.845-1.863-3.489-2.027-4.694-.183-1.407-.402-2.265-.183-3.945.22-1.68 1.206-4.074 1.187-4.256-.018-.183-.219-1.041-2.228-1.06-2.01-.018-3.744.384-3.945.914-.201.53-.585 1.735-.84 2.977-.348 1.826-4.019 8.347-6.12 11.763-.675-1.334-1.26-2.503-1.388-3.434-.182-1.406-.401-2.265-.182-3.945.219-1.68 1.205-4.074 1.187-4.256-.018-.183-.22-1.041-2.228-1.06-2.01-.018-3.745.384-3.946.914-.2.53-.42 1.771-.84 2.977-.42 1.205-5.297 12.092-6.575 14.904a84.336 84.336 0 0 1-1.626 3.38s-.018.054-.073.146c-.347.675-.548 1.04-.548 1.04v.02c-.274.492-.566.949-.712.949-.11 0-.311-1.315.036-3.105.73-3.781 2.466-9.663 2.448-9.864 0-.11.328-1.132-1.133-1.662-1.425-.53-1.936.347-2.064.347-.128 0-.219.31-.219.31s1.59-6.611-3.032-6.611c-2.886 0-6.868 3.16-8.84 6.01a2156.81 2156.81 0 0 0-6.722 3.67c-1.078.603-2.192 1.206-3.233 1.772-.073-.073-.146-.164-.22-.237-5.589-5.973-15.927-10.192-15.488-18.21.164-2.923 1.169-10.595 19.854-19.91 15.38-7.58 27.617-5.48 29.736-.822 3.032 6.648-6.557 18.996-22.448 20.786-6.064.676-9.242-1.662-10.046-2.539-.84-.913-.968-.968-1.279-.785-.511.274-.182 1.096 0 1.57.475 1.242 2.43 3.434 5.736 4.512 2.922.95 10.027 1.48 18.63-1.845 9.626-3.726 17.152-14.082 14.941-22.759-2.21-8.803-16.822-11.708-30.649-6.794-8.22 2.922-17.133 7.525-23.544 13.516C.808 36.02-.397 42.212.096 44.806 1.868 54.01 14.562 60.001 19.64 64.44c-.256.146-.493.274-.694.383-2.539 1.26-12.22 6.32-14.63 11.672-2.74 6.064.438 10.411 2.538 10.996 6.521 1.808 13.224-1.443 16.823-6.813 3.598-5.37 3.16-12.348 1.497-15.544a.369.369 0 0 0-.073-.11c.658-.383 1.334-.785 1.991-1.169a97.029 97.029 0 0 1 3.672-2.064c-.621 1.699-1.078 3.726-1.297 6.649-.274 3.434 1.132 7.89 2.977 9.644.822.767 1.79.785 2.411.785 2.156 0 3.123-1.79 4.201-3.909 1.315-2.593 2.503-5.607 2.503-5.607s-1.48 8.146 2.538 8.146c1.462 0 2.941-1.9 3.599-2.867v.018s.036-.055.11-.183c.145-.237.237-.383.237-.383v-.037c.584-1.023 1.9-3.342 3.854-7.196 2.52-4.969 4.95-11.179 4.95-11.179s.219 1.516.968 4.037c.438 1.48 1.351 3.105 2.082 4.676-.584.822-.95 1.278-.95 1.278l.018.019c-.474.62-.986 1.296-1.552 1.954-1.991 2.375-4.365 5.096-4.694 5.882-.384.931-.293 1.607.438 2.155.53.402 1.48.456 2.448.402 1.79-.128 3.05-.566 3.671-.84.968-.348 2.1-.877 3.16-1.663 1.954-1.443 3.142-3.507 3.032-6.228-.055-1.498-.548-2.996-1.15-4.402.182-.256.346-.512.529-.767 3.087-4.512 5.48-9.462 5.48-9.462s.219 1.516.968 4.037c.365 1.279 1.114 2.667 1.771 4.018-2.904 2.357-4.694 5.096-5.333 6.886-1.15 3.325-.256 4.822 1.443 5.17.767.164 1.863-.201 2.667-.549a12.148 12.148 0 0 0 3.379-1.735c1.954-1.443 3.835-3.452 3.726-6.173-.055-1.242-.384-2.466-.84-3.653 2.465-1.023 5.644-1.59 9.698-1.115 8.695 1.023 10.412 6.448 10.083 8.731-.329 2.283-2.155 3.525-2.758 3.909-.603.384-.804.511-.749.785.073.402.365.384.877.31.712-.127 4.566-1.844 4.73-6.045.275-5.37-4.84-11.233-13.881-11.178Zm-67.07 22.612c-2.887 3.142-6.905 4.33-8.64 3.325-1.863-1.078-1.133-5.718 2.41-9.042 2.156-2.027 4.933-3.909 6.777-5.06.42-.255 1.041-.62 1.79-1.077.128-.073.201-.11.201-.11l.439-.274c1.296 4.75.054 8.932-2.978 12.238Zm21.004-14.283c-1.004 2.447-3.105 8.712-4.383 8.365-1.096-.292-1.772-5.041-.22-9.735.786-2.356 2.448-5.17 3.416-6.265 1.571-1.754 3.306-2.338 3.726-1.626.53.932-1.918 7.726-2.539 9.26Zm17.334 8.292c-.42.22-.822.365-1.004.256-.128-.073.182-.365.182-.365s2.174-2.338 3.032-3.398c.494-.62 1.078-1.352 1.7-2.173v.237c0 2.795-2.704 4.676-3.91 5.443Zm13.37-3.05c-.31-.22-.255-.95.786-3.233.402-.895 1.352-2.393 2.977-3.836.183.585.31 1.15.293 1.68-.019 3.526-2.54 4.84-4.055 5.389Z\" fill=\"#CD6799\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w6a641\",\"data-framer-name\":\"gitlab\",layoutDependency:layoutDependency,layoutId:\"jDKpm7sTi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1laifhj\",\"data-framer-name\":\"gitlab\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"h2sJu5DNT\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m50 96.118 18.413-56.669H31.587l18.412 56.669Z\" fill=\"#E24329\"/><path d=\"m50 96.118-18.413-56.67H5.782L50 96.119Z\" fill=\"#FC6D26\"/><path d=\"M5.782 39.449.186 56.67a3.812 3.812 0 0 0 1.385 4.262L50 96.118 5.78 39.449Z\" fill=\"#FCA326\"/><path d=\"M5.782 39.449h25.805L20.497 5.318c-.57-1.757-3.055-1.756-3.625 0L5.782 39.449Z\" fill=\"#E24329\"/><path d=\"m50 96.118 18.413-56.67h25.805l-44.219 56.67Z\" fill=\"#FC6D26\"/><path d=\"m94.218 39.449 5.595 17.221a3.81 3.81 0 0 1-1.385 4.262L50 96.118l44.218-56.669Z\" fill=\"#FCA326\"/><path d=\"M94.218 39.449H68.413l11.09-34.131c.57-1.757 3.055-1.756 3.625 0l11.09 34.131Z\" fill=\"#E24329\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-60dzqu\",\"data-framer-name\":\"reactjs\",layoutDependency:layoutDependency,layoutId:\"sJlv7hSwb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ttlzzu\",\"data-framer-name\":\"reactjs\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:101,layoutDependency:layoutDependency,layoutId:\"qDljtDiAI\",svg:'<svg width=\"101\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50.307 58.817a8.816 8.816 0 1 0 0-17.633 8.816 8.816 0 0 0 0 17.633Z\" fill=\"#61DAFB\"/><path d=\"M50.307 68.063c26.126 0 47.306-8.087 47.306-18.063 0-9.975-21.18-18.062-47.306-18.062C24.18 31.938 3 40.025 3 50.001c0 9.975 21.18 18.062 47.307 18.062Z\" stroke=\"#61DAFB\" stroke-width=\"5\"/><path d=\"M34.664 59.032C47.727 81.658 65.321 95.957 73.96 90.969c8.64-4.988 5.053-27.373-8.01-50C52.885 18.343 35.291 4.044 26.652 9.032c-8.639 4.988-5.052 27.373 8.011 50Z\" stroke=\"#61DAFB\" stroke-width=\"5\"/><path d=\"M34.664 40.97c-13.063 22.626-16.65 45.011-8.01 50 8.638 4.987 26.232-9.312 39.295-31.938 13.064-22.627 16.65-45.012 8.01-50-8.638-4.988-26.232 9.31-39.295 31.937Z\" stroke=\"#61DAFB\" stroke-width=\"5\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7v628e\",\"data-framer-name\":\"figma\",layoutDependency:layoutDependency,layoutId:\"nW9EVliu5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rornkf\",\"data-framer-name\":\"figma\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"iGZUCYPCC\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M33.333 100.001c9.2 0 16.667-7.467 16.667-16.667V66.667H33.333c-9.2 0-16.666 7.467-16.666 16.667 0 9.2 7.466 16.667 16.666 16.667Z\" fill=\"#0ACF83\"/><path d=\"M16.667 50c0-9.2 7.466-16.666 16.666-16.666H50v33.333H33.333c-9.2 0-16.666-7.467-16.666-16.667Z\" fill=\"#A259FF\"/><path d=\"M16.667 16.667C16.667 7.467 24.133 0 33.333 0H50v33.334H33.333c-9.2 0-16.666-7.467-16.666-16.667Z\" fill=\"#F24E1E\"/><path d=\"M50 0h16.667c9.2 0 16.666 7.467 16.666 16.667 0 9.2-7.466 16.667-16.666 16.667H50V0Z\" fill=\"#FF7262\"/><path d=\"M83.333 50c0 9.2-7.466 16.667-16.666 16.667S50 59.2 50 50c0-9.2 7.467-16.666 16.667-16.666 9.2 0 16.666 7.466 16.666 16.666Z\" fill=\"#1ABCFE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vsase\",\"data-framer-name\":\"swift\",layoutDependency:layoutDependency,layoutId:\"BVC8nHJYW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5o3nz\",\"data-framer-name\":\"swift\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"w06BZjm8C\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.218 0h55.369c2.694 0 5.31.43 7.848 1.329a22.055 22.055 0 0 1 9.489 6.718 21.906 21.906 0 0 1 4.803 10.703c.234 1.446.273 2.891.273 4.336V77.11c0 1.719-.078 3.476-.43 5.156a22.115 22.115 0 0 1-5.27 10.43c-2.617 2.93-6.053 5.117-9.763 6.289-2.264.703-4.607 1.015-6.99 1.015-1.053 0-55.485 0-56.305-.039a22.275 22.275 0 0 1-11.246-3.71 22.573 22.573 0 0 1-7.614-8.75C.898 84.493.156 81.133.156 77.773V22.227a20.743 20.743 0 0 1 2.07-9.57C3.905 9.14 6.52 6.055 9.762 3.867 13.08 1.603 16.986.275 20.968.08c.39-.079.82-.079 1.25-.079Z\" fill=\"url(#a)\"/><path d=\"M84.342 81.797a15.256 15.256 0 0 0-1.171-1.601 16.586 16.586 0 0 0-3.359-3.047c-1.561-1.055-3.397-1.719-5.27-1.797-1.329-.078-2.656.156-3.906.625-1.25.43-2.46 1.055-3.631 1.68-1.367.703-2.733 1.406-4.178 1.992a31.39 31.39 0 0 1-5.35 1.64c-2.303.43-4.646.587-6.95.547a46.954 46.954 0 0 1-12.339-1.875 46.67 46.67 0 0 1-10.035-4.335 51.752 51.752 0 0 1-7.77-5.508 56.806 56.806 0 0 1-5.545-5.508 60.317 60.317 0 0 1-3.358-4.297c-.43-.586-.82-1.21-1.171-1.836L0 47.344V22.15C0 9.922 9.879 0 22.1 0h19.72l14.603 14.844C89.38 37.266 78.72 61.993 78.72 61.993s9.372 10.547 5.623 19.804Z\" fill=\"url(#b)\"/><path d=\"M56.501 14.844c32.956 22.422 22.296 47.149 22.296 47.149s9.371 10.586 5.584 19.843c0 0-3.866-6.484-10.348-6.484-6.247 0-9.918 6.484-22.49 6.484-27.997 0-41.234-23.398-41.234-23.398 25.224 16.602 42.444 4.844 42.444 4.844C41.39 56.68 17.22 25.118 17.22 25.118c21.046 17.93 30.144 22.656 30.144 22.656-5.427-4.492-20.656-26.445-20.656-26.445C38.891 33.672 63.1 50.899 63.1 50.899c6.872-19.063-6.599-36.055-6.599-36.055Z\" fill=\"#fff\"/><defs><linearGradient id=\"a\" x1=\"59.465\" y1=\"-3.568\" x2=\"40.565\" y2=\"103.578\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FAAE42\"/><stop offset=\"1\" stop-color=\"#EF3E31\"/></linearGradient><linearGradient id=\"b\" x1=\"51\" y1=\"1.616\" x2=\"37.167\" y2=\"80.035\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#E39F3A\"/><stop offset=\"1\" stop-color=\"#D33929\"/></linearGradient></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nsmsp9\",\"data-framer-name\":\"python\",layoutDependency:layoutDependency,layoutId:\"lMbvnbxuw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1murgn3\",\"data-framer-name\":\"python\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"JO3JYqSS9\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.64 0C24.253 0 25.838 11.01 25.838 11.01l.029 11.405h24.225v3.424H16.245S0 23.997 0 49.612s14.179 24.706 14.179 24.706h8.462V62.433s-.457-14.179 13.952-14.179H60.62s13.5.218 13.5-13.047V13.274S76.17 0 49.64 0ZM36.282 7.67a4.354 4.354 0 0 1 4.358 4.359 4.355 4.355 0 0 1-6.027 4.027 4.353 4.353 0 0 1-2.69-4.027 4.355 4.355 0 0 1 4.359-4.358Z\" fill=\"url(#a)\"/><path d=\"M50.36 99.48c25.387 0 23.802-11.008 23.802-11.008l-.028-11.406H49.908v-3.424h33.847S100 75.484 100 49.869 85.821 25.162 85.821 25.162H77.36V37.05s.457 14.178-13.952 14.178H39.38s-13.5-.218-13.5 13.048v21.932s-2.05 13.274 24.48 13.274Zm13.359-7.669a4.353 4.353 0 0 1-4.358-4.358 4.356 4.356 0 0 1 7.44-3.083 4.356 4.356 0 0 1 .945 4.751 4.355 4.355 0 0 1-4.027 2.69Z\" fill=\"url(#b)\"/><defs><linearGradient id=\"a\" x1=\"9.61\" y1=\"8.948\" x2=\"59.167\" y2=\"58.011\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#387EB8\"/><stop offset=\"1\" stop-color=\"#366994\"/></linearGradient><linearGradient id=\"b\" x1=\"40.028\" y1=\"40.453\" x2=\"93.247\" y2=\"90.762\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFE052\"/><stop offset=\"1\" stop-color=\"#FFC331\"/></linearGradient></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nr2fox\",\"data-framer-name\":\"jquery\",layoutDependency:layoutDependency,layoutId:\"qn6sbyw1e\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ep9ytf\",\"data-framer-name\":\"jquery\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"dD3ZGMWHi\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.857 68.026c.096.217.205.417.321.617.054.117.13.237.196.346.108.216.225.425.338.633l.654 1.1c.12.204.237.404.375.604.229.392.5.775.737 1.167.109.163.209.325.33.488a25.52 25.52 0 0 0 1.32 1.879c.317.429.634.85.975 1.27.113.159.238.317.354.476l.921 1.116c.113.13.225.28.346.413.409.491.842.966 1.275 1.45 0 .008.013.017.021.029a12.64 12.64 0 0 0 1.75 1.808l.017.017c.333.342.666.68 1.02 1.013l.421.404c.463.433.925.862 1.413 1.279.008 0 .012.008.02.012l.238.209c.425.37.854.737 1.292 1.079l.52.437c.355.284.722.55 1.084.83l.567.433c.387.291.8.575 1.196.858.145.104.291.209.441.304l.121.096 1.171.767.5.333c.613.392 1.22.759 1.83 1.125.174.088.35.184.512.284.45.258.916.52 1.37.758.25.142.509.262.767.392.313.175.638.345.971.52.092.03.167.059.242.1l.016-.016c.138.062.267.129.4.196.5.25 1.021.487 1.563.72.1.042.208.084.317.142.6.263 1.2.513 1.82.754.142.042.292.113.438.167.562.212 1.142.43 1.717.633l.208.075c.637.217 1.267.425 1.917.621.15.042.304.096.462.138.663.2 1.304.437 1.975.562 42.805 7.763 55.242-25.608 55.242-25.608C87.108 84.597 68.562 88.168 51 84.193c-.65-.15-1.3-.358-1.959-.55a49.384 49.384 0 0 1-2.762-.87l.395.12-.258-.1c-.566-.192-1.112-.404-1.666-.617a6.385 6.385 0 0 0-.413-.158l-.046-.012a54.321 54.321 0 0 1-1.8-.759c-.129-.041-.237-.1-.367-.15-.7-.305-1.395-.625-2.083-.958l.575.254a6.243 6.243 0 0 1-.441-.216c-.392-.184-.784-.392-1.167-.588-.292-.138-.58-.286-.863-.442l.084.042c-.471-.25-.942-.52-1.417-.775-.142-.1-.304-.183-.467-.275a58.412 58.412 0 0 1-2.091-1.275l.262.158a8.527 8.527 0 0 1-.517-.346l.025.017a25.102 25.102 0 0 1-1.316-.867c-.142-.091-.271-.191-.417-.291a36.3 36.3 0 0 1-1.325-.95l.1.07c-.175-.141-.363-.274-.55-.412-.367-.287-.737-.562-1.104-.862l-.492-.392a42.29 42.29 0 0 1-1.542-1.288l-.004-.004-1.445-1.312-.417-.392c-.342-.346-.692-.675-1.042-1.017l-.404-.416a37.496 37.496 0 0 1-1.263-1.313l-.025-.029-.07-.058a74.824 74.824 0 0 1-1.305-1.471c-.112-.13-.216-.267-.333-.404l-.946-1.146a57.462 57.462 0 0 1-1.25-1.63l-.166-.233C8.966 49.043 5.44 30.78 13.237 15.796l-6.884 8.705c-8.854 12.663-7.758 29.13-.987 42.575.154.33.325.638.491.95Z\" fill=\"#1266A9\"/><path d=\"m35.679 49.785-.046-.067-.038-.05.084.117Z\" fill=\"#000\"/><path d=\"m40.337 55.251.375.375c.475.458.962.904 1.458 1.35l.063.054c.5.442 1.062.904 1.642 1.354l.087.067c.142.096.262.208.4.304.583.45 1.17.88 1.783 1.309l.063.037c.258.188.533.358.825.542.117.075.25.175.375.25.441.283.875.546 1.32.816.072.03.134.067.2.096.376.23.784.45 1.176.65.137.084.27.146.412.225.28.138.554.284.821.425l.133.059c.563.275 1.138.533 1.7.787.142.054.263.1.384.158.462.2.933.392 1.396.567.208.071.404.154.6.217.425.158.87.304 1.291.45l.584.187c.608.188 1.225.434 1.87.534C92.35 71.505 100 46.184 100 46.184c-6.888 9.863-20.217 14.563-34.421 10.892a34.26 34.26 0 0 1-2.108-.604l.237.066c-.2-.054-.375-.116-.567-.174-.433-.15-.879-.296-1.3-.45l-.6-.226c-.466-.187-.941-.362-1.395-.562-.142-.063-.271-.104-.38-.167-.583-.262-1.17-.52-1.741-.796l-.859-.445-.495-.25c-.384-.2-.738-.409-1.105-.621a2.322 2.322 0 0 1-.27-.15l.012.004c-.442-.275-.9-.542-1.325-.82-.142-.08-.27-.176-.404-.26l-.867-.562c-.6-.416-1.187-.862-1.783-1.295-.134-.121-.263-.221-.392-.33-6.246-4.887-11.17-11.566-13.508-19.13-2.463-7.862-1.921-16.678 2.333-23.833l-5.23 7.367c-6.42 9.171-6.058 21.43-1.058 31.13a37.44 37.44 0 0 0 2.859 4.745c.95 1.359 2 2.95 3.266 4.042.45.513.934 1 1.438 1.496Z\" fill=\"#1266A9\"/><path d=\"M56.941 5.863c-3.787 5.53-4.15 12.396-1.541 18.492 2.77 6.475 8.433 11.558 15.033 13.967.27.104.533.191.813.291l.366.113c.384.12.771.262 1.167.35 18.254 3.504 23.196-9.325 24.525-11.213-4.346 6.209-11.633 7.7-20.575 5.538a19.807 19.807 0 0 1-2.292-.709l.138.046a25.815 25.815 0 0 1-2.734-1.125l.159.071a26.875 26.875 0 0 1-4.538-2.767C59.47 22.876 54.53 11.371 59.745 2l-2.804 3.863Z\" fill=\"#1266A9\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14zulpd\",\"data-framer-name\":\"threejs\",layoutDependency:layoutDependency,layoutId:\"lMF16Gv2d\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5spdfk\",\"data-framer-name\":\"threejs\",fill:\"black\",intrinsicHeight:104,intrinsicWidth:103,layoutDependency:layoutDependency,layoutId:\"bpw4KYl1P\",svg:'<svg width=\"103\" height=\"104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M26.702 102 2 2l99.023 28.51L26.702 102Z\" stroke=\"#fff\" stroke-width=\"2.287\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/><path clip-rule=\"evenodd\" d=\"m51.493 16.258 12.342 50.015-49.484-14.26 37.142-35.755Z\" stroke=\"#fff\" stroke-width=\"2.287\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/><path clip-rule=\"evenodd\" d=\"m39.215 58.797-6.13-24.846 24.584 7.058-18.454 17.788ZM26.952 9.136l6.13 24.846-24.584-7.058L26.952 9.136ZM76.119 23.3l6.13 24.845-24.585-7.057L76.12 23.299ZM39.217 58.814l6.13 24.846-24.584-7.057 18.454-17.789Z\" stroke=\"#fff\" stroke-width=\"2.287\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HQJhK.framer-1bv9f7v, .framer-HQJhK .framer-1bv9f7v { display: block; }\",\".framer-HQJhK.framer-1urwbpy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 1200px; }\",\".framer-HQJhK .framer-1ldryr4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HQJhK .framer-7kjs8d-container, .framer-HQJhK .framer-k3gxy0-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-HQJhK .framer-1ola0u, .framer-HQJhK .framer-f2ckii, .framer-HQJhK .framer-4ks80f, .framer-HQJhK .framer-1pst3wt, .framer-HQJhK .framer-1qrj4lk, .framer-HQJhK .framer-1meqyee, .framer-HQJhK .framer-ppg12h, .framer-HQJhK .framer-11uq1h9, .framer-HQJhK .framer-1egtsad, .framer-HQJhK .framer-1ebnvl4, .framer-HQJhK .framer-q1okrk, .framer-HQJhK .framer-11nhi1w, .framer-HQJhK .framer-1bce0j5, .framer-HQJhK .framer-1p6mbi5, .framer-HQJhK .framer-1n0rjfm, .framer-HQJhK .framer-kajlb2, .framer-HQJhK .framer-tlf3zl, .framer-HQJhK .framer-w6a641, .framer-HQJhK .framer-60dzqu, .framer-HQJhK .framer-7v628e, .framer-HQJhK .framer-15vsase, .framer-HQJhK .framer-nsmsp9, .framer-HQJhK .framer-nr2fox, .framer-HQJhK .framer-14zulpd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HQJhK .framer-17uy827 { flex: none; height: 26px; position: relative; width: 58px; }\",\".framer-HQJhK .framer-2v5tqs, .framer-HQJhK .framer-141or71, .framer-HQJhK .framer-tgclgg, .framer-HQJhK .framer-753miq, .framer-HQJhK .framer-1pq0ekg, .framer-HQJhK .framer-20vhgy, .framer-HQJhK .framer-atqixx, .framer-HQJhK .framer-1p7fkcx, .framer-HQJhK .framer-wvrnv0, .framer-HQJhK .framer-pe20t6, .framer-HQJhK .framer-lxaez9, .framer-HQJhK .framer-q83gn1, .framer-HQJhK .framer-1xdiztl, .framer-HQJhK .framer-1vkopjr, .framer-HQJhK .framer-1n3g1si, .framer-HQJhK .framer-1e6q93j, .framer-HQJhK .framer-1laifhj, .framer-HQJhK .framer-1ttlzzu, .framer-HQJhK .framer-rornkf, .framer-HQJhK .framer-1l5o3nz, .framer-HQJhK .framer-1murgn3, .framer-HQJhK .framer-ep9ytf, .framer-HQJhK .framer-5spdfk { flex: none; height: 48px; position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HQJhK.framer-1urwbpy, .framer-HQJhK .framer-1ola0u, .framer-HQJhK .framer-f2ckii, .framer-HQJhK .framer-4ks80f, .framer-HQJhK .framer-1pst3wt, .framer-HQJhK .framer-1qrj4lk, .framer-HQJhK .framer-1meqyee, .framer-HQJhK .framer-ppg12h, .framer-HQJhK .framer-11uq1h9, .framer-HQJhK .framer-1egtsad, .framer-HQJhK .framer-1ebnvl4, .framer-HQJhK .framer-q1okrk, .framer-HQJhK .framer-11nhi1w, .framer-HQJhK .framer-1bce0j5, .framer-HQJhK .framer-1p6mbi5, .framer-HQJhK .framer-1n0rjfm, .framer-HQJhK .framer-kajlb2, .framer-HQJhK .framer-tlf3zl, .framer-HQJhK .framer-w6a641, .framer-HQJhK .framer-60dzqu, .framer-HQJhK .framer-7v628e, .framer-HQJhK .framer-15vsase, .framer-HQJhK .framer-nsmsp9, .framer-HQJhK .framer-nr2fox, .framer-HQJhK .framer-14zulpd { gap: 0px; } .framer-HQJhK.framer-1urwbpy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HQJhK.framer-1urwbpy > :first-child { margin-top: 0px; } .framer-HQJhK.framer-1urwbpy > :last-child { margin-bottom: 0px; } .framer-HQJhK .framer-1ola0u > *, .framer-HQJhK .framer-f2ckii > *, .framer-HQJhK .framer-4ks80f > *, .framer-HQJhK .framer-1pst3wt > *, .framer-HQJhK .framer-1qrj4lk > *, .framer-HQJhK .framer-1meqyee > *, .framer-HQJhK .framer-ppg12h > *, .framer-HQJhK .framer-11uq1h9 > *, .framer-HQJhK .framer-1egtsad > *, .framer-HQJhK .framer-1ebnvl4 > *, .framer-HQJhK .framer-q1okrk > *, .framer-HQJhK .framer-11nhi1w > *, .framer-HQJhK .framer-1bce0j5 > *, .framer-HQJhK .framer-1p6mbi5 > *, .framer-HQJhK .framer-1n0rjfm > *, .framer-HQJhK .framer-kajlb2 > *, .framer-HQJhK .framer-tlf3zl > *, .framer-HQJhK .framer-w6a641 > *, .framer-HQJhK .framer-60dzqu > *, .framer-HQJhK .framer-7v628e > *, .framer-HQJhK .framer-15vsase > *, .framer-HQJhK .framer-nsmsp9 > *, .framer-HQJhK .framer-nr2fox > *, .framer-HQJhK .framer-14zulpd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HQJhK .framer-1ola0u > :first-child, .framer-HQJhK .framer-f2ckii > :first-child, .framer-HQJhK .framer-4ks80f > :first-child, .framer-HQJhK .framer-1pst3wt > :first-child, .framer-HQJhK .framer-1qrj4lk > :first-child, .framer-HQJhK .framer-1meqyee > :first-child, .framer-HQJhK .framer-ppg12h > :first-child, .framer-HQJhK .framer-11uq1h9 > :first-child, .framer-HQJhK .framer-1egtsad > :first-child, .framer-HQJhK .framer-1ebnvl4 > :first-child, .framer-HQJhK .framer-q1okrk > :first-child, .framer-HQJhK .framer-11nhi1w > :first-child, .framer-HQJhK .framer-1bce0j5 > :first-child, .framer-HQJhK .framer-1p6mbi5 > :first-child, .framer-HQJhK .framer-1n0rjfm > :first-child, .framer-HQJhK .framer-kajlb2 > :first-child, .framer-HQJhK .framer-tlf3zl > :first-child, .framer-HQJhK .framer-w6a641 > :first-child, .framer-HQJhK .framer-60dzqu > :first-child, .framer-HQJhK .framer-7v628e > :first-child, .framer-HQJhK .framer-15vsase > :first-child, .framer-HQJhK .framer-nsmsp9 > :first-child, .framer-HQJhK .framer-nr2fox > :first-child, .framer-HQJhK .framer-14zulpd > :first-child { margin-left: 0px; } .framer-HQJhK .framer-1ola0u > :last-child, .framer-HQJhK .framer-f2ckii > :last-child, .framer-HQJhK .framer-4ks80f > :last-child, .framer-HQJhK .framer-1pst3wt > :last-child, .framer-HQJhK .framer-1qrj4lk > :last-child, .framer-HQJhK .framer-1meqyee > :last-child, .framer-HQJhK .framer-ppg12h > :last-child, .framer-HQJhK .framer-11uq1h9 > :last-child, .framer-HQJhK .framer-1egtsad > :last-child, .framer-HQJhK .framer-1ebnvl4 > :last-child, .framer-HQJhK .framer-q1okrk > :last-child, .framer-HQJhK .framer-11nhi1w > :last-child, .framer-HQJhK .framer-1bce0j5 > :last-child, .framer-HQJhK .framer-1p6mbi5 > :last-child, .framer-HQJhK .framer-1n0rjfm > :last-child, .framer-HQJhK .framer-kajlb2 > :last-child, .framer-HQJhK .framer-tlf3zl > :last-child, .framer-HQJhK .framer-w6a641 > :last-child, .framer-HQJhK .framer-60dzqu > :last-child, .framer-HQJhK .framer-7v628e > :last-child, .framer-HQJhK .framer-15vsase > :last-child, .framer-HQJhK .framer-nsmsp9 > :last-child, .framer-HQJhK .framer-nr2fox > :last-child, .framer-HQJhK .framer-14zulpd > :last-child { margin-right: 0px; } }\",\".framer-HQJhK.framer-v-1nmu8ww.framer-1urwbpy { width: 810px; }\",\".framer-HQJhK.framer-v-erbs9k.framer-1urwbpy { padding: 40px 16px 40px 16px; width: 200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k38P9TUsj\":{\"layout\":[\"fixed\",\"auto\"]},\"s0lfwR6xL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernPw7tXjnX=withCSS(Component,css,\"framer-HQJhK\");export default FramernPw7tXjnX;FramernPw7tXjnX.displayName=\"tec-stack\";FramernPw7tXjnX.defaultProps={height:382,width:1200};addPropertyControls(FramernPw7tXjnX,{variant:{options:[\"IafPct03s\",\"k38P9TUsj\",\"s0lfwR6xL\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernPw7tXjnX,[{explicitInter:true,fonts:[{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ISYWGR43XD57J2U5VEYATNUZO57OCPH/UIED7ZBTCD42AJ7GJT5NWKWHCOVDRNAP/EPHSF4UBJRLGUILEFJVCMY7ET4W5HPUF.woff2\",weight:\"500\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernPw7tXjnX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"382\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k38P9TUsj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s0lfwR6xL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nPw7tXjnX.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "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", "filteredSlots", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "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", "r", "s", "o", "n", "t", "e", "i", "l", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramernPw7tXjnX", "withCSS", "nPw7tXjnX_default", "addPropertyControls", "ControlType", "addFonts"]
}
