{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/wbgEYng9KZflkbOQnC2A/CVVbB2bA1uUyzdTqA0FU/ZLWXetFCx.js", "ssg:https://framerusercontent.com/modules/YQkV27Z1hdq7kkU0DLKJ/GqAl49NrMOaTuyDtyqZD/olliyoBBP.js", "ssg:https://framerusercontent.com/modules/hvZmHhlLQuhzjjdVRtaC/gwu7zX2qLbV4rxut8C9H/augiA20Il.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 e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f 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/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\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(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[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,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";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,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.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\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "// Generated by Framer (edb532b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"g03PV5rQG\"];const serializationHash=\"framer-QyfeL\";const variantClassNames={g03PV5rQG:\"framer-v-1c3c87q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,fytQoGgJj:(_ref=image!==null&&image!==void 0?image:props.fytQoGgJj)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/5PhtIgDS01ww97FJTpa5WV68J1E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5PhtIgDS01ww97FJTpa5WV68J1E.png?scale-down-to=1024 1016w,https://framerusercontent.com/images/5PhtIgDS01ww97FJTpa5WV68J1E.png?scale-down-to=2048 2032w,https://framerusercontent.com/images/5PhtIgDS01ww97FJTpa5WV68J1E.png 2545w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fytQoGgJj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"g03PV5rQG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",intrinsicHeight:2565,intrinsicWidth:2545,pixelHeight:2565,pixelWidth:2545,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(fytQoGgJj),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1c3c87q\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"g03PV5rQG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS01MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"three.js\"})}),className:\"framer-mouvjg\",fonts:[\"GF;Alexandria-500\"],layoutDependency:layoutDependency,layoutId:\"htuuGyPQX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QyfeL.framer-1d4j34s, .framer-QyfeL .framer-1d4j34s { display: block; }\",\".framer-QyfeL.framer-1c3c87q { height: 55px; overflow: hidden; position: relative; width: 162px; }\",\".framer-QyfeL .framer-mouvjg { bottom: 0px; flex: none; height: auto; position: absolute; right: 1px; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fytQoGgJj\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZLWXetFCx=withCSS(Component,css,\"framer-QyfeL\");export default FramerZLWXetFCx;FramerZLWXetFCx.displayName=\"Logo\";FramerZLWXetFCx.defaultProps={height:55,width:162};addPropertyControls(FramerZLWXetFCx,{fytQoGgJj:{__defaultAssetReference:\"data:framer/asset-reference,5PhtIgDS01ww97FJTpa5WV68J1E.png?originalFilename=e4f86d2200d2d35c30f7b1494e96b9595ebc2751.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerZLWXetFCx,[{explicitInter:true,fonts:[{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbCHJ8BRq0b.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZLWXetFCx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"fytQoGgJj\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"162\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZLWXetFCx.map", "// Generated by Framer (d2515d1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-GEZFU .framer-styles-preset-1ndmvq4:not(.rich-text-wrapper), .framer-GEZFU .framer-styles-preset-1ndmvq4.rich-text-wrapper a { --framer-link-current-text-color: #a6a6a6; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #c4c4c4; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #d4d4d4; --framer-link-text-decoration: underline; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-GEZFU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/kBOoYN8oS/kBOoYN8oS.js\";import Logo1 from\"#framer/local/canvasComponent/ZLWXetFCx/ZLWXetFCx.js\";import*as sharedStyle from\"#framer/local/css/olliyoBBP/olliyoBBP.js\";import*as sharedStyle1 from\"#framer/local/css/vNZRrzJ9P/vNZRrzJ9P.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const IconoirFonts=getFonts(Iconoir);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const LogoFonts=getFonts(Logo);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const FeatherFonts=getFonts(Feather);const Logo1Fonts=getFonts(Logo1);const breakpoints={EXx3CXZB7:\"(min-width: 810px) and (max-width: 1199px)\",OAm6B9QHB:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oYzi4\";const variantClassNames={EXx3CXZB7:\"framer-v-1pn1va8\",OAm6B9QHB:\"framer-v-t4jx0h\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const transition4={delay:.4,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition3};const animation9={opacity:.95,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"OAm6B9QHB\",Tablet:\"EXx3CXZB7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"OAm6B9QHB\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4rtxb8-container\",nodeId:\"yDRvZnw_7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{variant:\"bTmtwePDQ\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"yDRvZnw_7\",layoutId:\"yDRvZnw_7\",style:{width:\"100%\"},variant:\"RkXfYO7ER\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64),pixelHeight:2160,pixelWidth:3840,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg\",srcSet:\"https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg 3840w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg\",srcSet:\"https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kWM6NMMgaA7dWaQ2JwzS0VFKJM.jpg 3840w\"},className:\"framer-1x6s7wc\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(255, 255, 255, 0) -24%, rgba(255, 255, 255, 0.56) 0%, rgb(255, 255, 255) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"Anything 3D. Engineered.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(255, 255, 255, 0) -24%, rgba(255, 255, 255, 0.56) 0%, rgb(255, 255, 255) 100%)\"},children:[\"Anything 3D. Engineered.\",/*#__PURE__*/_jsx(\"br\",{})]})})}),className:\"framer-dc086q\",\"data-framer-appear-id\":\"dc086q\",fonts:[\"GF;Inter-700\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(255, 255, 255, 0) -44.1792%, rgba(255, 255, 255, 0.9) 39.7858%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"Enabling companies to build 3D Technologies\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"R&D  |  Development  |  Engineering\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}),className:\"framer-rf4uxl\",\"data-framer-appear-id\":\"rf4uxl\",fonts:[\"GF;Inter-600\",\"GF;Inter-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-188qqfx\",children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/3denginerd/30min\",motionChild:true,nodeId:\"E8LiRVKtV\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation5,className:\"framer-ftf8e1 framer-lux5qc\",\"data-framer-appear-id\":\"ftf8e1\",\"data-framer-name\":\"Button\",initial:animation6,optimized:true,whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"SCHEDULE A CALL\"})}),className:\"framer-pwggyc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ay2mk2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://radiancefields.com/understanding-3d-gaussian-splatting-via-render-engines\",motionChild:true,nodeId:\"V5MgXuCZJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8bwpg6 framer-lux5qc\",\"data-border\":true,whileHover:animation7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Understanding 3D Gaussian Splatting via Render Engines! \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"Article authored for RadianceFields.com\"})]})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Understanding 3D Gaussian Splatting via Render Engines! \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"Article authored for RadianceFields.com\"})]})}),className:\"framer-3etm26\",fonts:[\"Inter-SemiBold\",\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-acnvcg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RqRlk9syf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(154, 154, 156)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"BookmarkCircled\",id:\"RqRlk9syf\",layoutId:\"RqRlk9syf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://github.com/mikejernil/web-render-engine\",motionChild:true,nodeId:\"NlYl0OK7C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10zlgq8 framer-lux5qc\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"600\"},children:\"Web Render Engine\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"14px\"},children:\"Open Sourced at GitHub\"})]})}),className:\"framer-u9g99n\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1okv9el-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z6yCHagys\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(154, 154, 156)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"GitHub\",id:\"Z6yCHagys\",layoutId:\"Z6yCHagys\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xmt52 hidden-t4jx0h\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s_mQ3E15q\"},motionChild:true,nodeId:\"hqUmHjyCe\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ndmvq4\",\"data-styles-preset\":\"olliyoBBP\",children:\"VIEW WORK \u2197\"})})})}),className:\"framer-19i59mg\",\"data-framer-appear-id\":\"19i59mg\",fonts:[\"Inter-Medium\"],initial:animation6,optimized:true,verticalAlignment:\"top\",whileHover:animation8,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jab2fa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-109dfch\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usqoxk\",\"data-styles-preset\":\"vNZRrzJ9P\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"Expertise\"})})}),className:\"framer-157wea6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1na8g1k\",\"data-border\":true,\"data-framer-name\":\"Entries\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4l5yr\",\"data-framer-name\":\"Bookmarks\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-4g981m\",\"data-framer-name\":\"Bookmark\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fv9o1s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kk8rtt-container\",isModuleExternal:true,nodeId:\"OFA9LuWpR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CubeFocus\",id:\"OFA9LuWpR\",layoutId:\"OFA9LuWpR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dysvi3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2kw5xz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Building Render Pipelines\"})}),className:\"framer-1wirk09\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Conversion, Compression, Rendering & Optimization\"})}),className:\"framer-17tiyir\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-1idky4a\",\"data-framer-name\":\"Bookmark\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tunimh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gneyvh-container\",isModuleExternal:true,nodeId:\"KsReEJvoy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Monitor\",id:\"KsReEJvoy\",layoutId:\"KsReEJvoy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17t5wb3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghz70v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Real-time 3D Rendering\"})}),className:\"framer-1lm9ndp\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Web & Native\"})}),className:\"framer-1fcyq72\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-izsb94\",\"data-framer-name\":\"Bookmark\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14sst7e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqn86s-container\",isModuleExternal:true,nodeId:\"XKdknY9D6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Mountains\",id:\"XKdknY9D6\",layoutId:\"XKdknY9D6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ewggh1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wfsdxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Scripting & Tools\"})}),className:\"framer-16cvmsh\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(209, 209, 209)\"},children:\"Blender, Unreal Engine & other 3D software\"})}),className:\"framer-11daa4m\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-sr4zax\",\"data-framer-name\":\"Bookmark\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mtc6ud\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o078vs-container\",isModuleExternal:true,nodeId:\"NRtsgfH2v\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Stack\",id:\"NRtsgfH2v\",layoutId:\"NRtsgfH2v\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nfs2sc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxvffb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Fullstack Development\"})}),className:\"framer-19c8td5\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Backend & Frontend for 3D Apps\"})}),className:\"framer-3wpkmt\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ypd9gv\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwjup9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usqoxk\",\"data-styles-preset\":\"vNZRrzJ9P\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"Clients\"})})}),className:\"framer-s48f7w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19dtqsh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jnjuWPP0u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"jnjuWPP0u\",layoutId:\"jnjuWPP0u\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://fondant.design/\",motionChild:true,nodeId:\"uMfJFE3kx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272},className:\"framer-5166h3 framer-lux5qc\",\"data-framer-name\":\"fondant Logo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4lse1-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GrH5GcUAI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"GrH5GcUAI\",isSearch:false,layoutId:\"GrH5GcUAI\",radius:0,srcFile:\"https://framerusercontent.com/assets/AJpLa0H0Z3Ud0LMSXh2V2vwfjEc.png\",srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:\"fondant\"})}),className:\"framer-qp2haf\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ijewel3d.com/\",motionChild:true,nodeId:\"xR_YcNnRD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:675,pixelWidth:1911,sizes:\"145px\",src:\"https://framerusercontent.com/images/9S27qBOpgthNpAlrsGQ6FSgcqmY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9S27qBOpgthNpAlrsGQ6FSgcqmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/9S27qBOpgthNpAlrsGQ6FSgcqmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9S27qBOpgthNpAlrsGQ6FSgcqmY.png 1911w\"},className:\"framer-7fpz6w framer-lux5qc\",\"data-framer-name\":\"ijewel logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.preimage.ai/\",motionChild:true,nodeId:\"bICFS8fGY\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:35,pixelWidth:158,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YEUhx1XtIgJLwK1vC2Hz2GdOXc.svg\"},className:\"framer-1kqskiu framer-lux5qc\",\"data-framer-name\":\"Preimage Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.unproject.ai/\",motionChild:true,nodeId:\"SUs74Sk36\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:35,pixelWidth:153,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dsxukIKjr4XLqVtAOC1VnKDHVqo.svg\"},className:\"framer-1ib1zrz framer-lux5qc\",\"data-framer-name\":\"Unproject Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tensiontech.com\",motionChild:true,nodeId:\"Ue3eQjAtt\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-119ll8m framer-lux5qc\",\"data-framer-name\":\"TTI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:100,pixelWidth:108,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZrnWSHjtfE4HWYtZfowMM9KaUc.png\"},className:\"framer-awhx9a\",\"data-framer-name\":\"TTI Logo\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:\"Tension Technology\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:\"International\"})]}),className:\"framer-dcn2j9\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bllwk6\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wycymf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usqoxk\",\"data-styles-preset\":\"vNZRrzJ9P\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"Testimonials\"})})}),className:\"framer-w6ktlp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gri5ay-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"USLOyfT9n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"USLOyfT9n\",intervalControl:5,itemAmount:1,layoutId:\"USLOyfT9n\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g1b7u6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\u201C Jernil is a capable 3D engineer. We worked with him on a project to create a rendering pipeline for batch rendering of 3D assets as well as a browser-based 3D viewer for data labeling. He understood the assignment and scope and worked with our team to deliver the work as required. \u201D\"})}),className:\"framer-fajki0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xfzo3h\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:80,pixelWidth:56,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AJpLa0H0Z3Ud0LMSXh2V2vwfjEc.png\"},className:\"framer-1ecqkq0\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-si6sw8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Parav Nagarsheth\"})}),className:\"framer-1djltne\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:\"Founder & CEO, Fondant Design\"})}),className:\"framer-aiwaw\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7qkhy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\u201C Jernil is super talented, creative and full of ideas! And of course a diligent programmer who can deliver on anything related to 3D, rendering, visualization, virtual production etc. Heartily recommend him to people in my network! \u201D\"})}),className:\"framer-1iwuji8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s1viwo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3O2QSO9s9t8Hp3ZcRIF7bsaY0.png\"},className:\"framer-1h7tedw\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ej7q7g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Siddharth Jha\"})}),className:\"framer-1sesoww\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:\"Founder & CTO, Preimage\"})}),className:\"framer-s2g24b\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gtd31v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\u201C Had a great experience working with 3D ENGINERD on our SaaS 3D Content Design tool Unproject. I appreciate the brainstorming and collaboration during the product phase, which really helps in narrowing down the requirements. \u201D\"})}),className:\"framer-13hryuy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13cf3w4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:35,pixelWidth:153,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tzgzo6p3rsEj11j9q5Z3SgPsClM.svg\"},className:\"framer-14gpcsr\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-154ftkp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rishabh Singh\"})}),className:\"framer-b90hz9\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:\"Founder & CEO, Unproject\"})}),className:\"framer-16444ky\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48m707\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1usqoxk\",\"data-styles-preset\":\"vNZRrzJ9P\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"Industries\"})})}),className:\"framer-6je6dq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-883v72\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-1f81klo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122li0f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-na1ayy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mV5LgyuVM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"home\",id:\"mV5LgyuVM\",layoutId:\"mV5LgyuVM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EXx3CXZB7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Architecture, Engineering & Construction (AEC)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Architecture, Engineering & Construction (AEC)\"})}),className:\"framer-1xilgqf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-yupn3t\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gz0q2g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqc4v1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fsOgurAqL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"hexagon\",iconSelection:\"home\",id:\"fsOgurAqL\",layoutId:\"fsOgurAqL\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Web 3D\"})}),className:\"framer-212z8s\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-30qlgr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19w5ke4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bejfce-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YF9c5x068\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"cpu\",id:\"YF9c5x068\",layoutId:\"YF9c5x068\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Machine Learning\"})}),className:\"framer-1nsziwg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-cmpb0y\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqyitc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19im5kf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CwlqVB0qa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"triangle\",id:\"CwlqVB0qa\",layoutId:\"CwlqVB0qa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Spatial Design\"})}),className:\"framer-1bwvp6o\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-gdvtt4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139gvdp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9f7z91-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RMDI3E5kl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"aperture\",id:\"RMDI3E5kl\",layoutId:\"RMDI3E5kl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Filmmaking\"})}),className:\"framer-pjarkk\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.95,className:\"framer-ox3ccp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5x8314\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u03s03-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t8JIJbLLP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(204, 204, 204)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"eye\",id:\"t8JIJbLLP\",layoutId:\"t8JIJbLLP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"Mixed Reality\"})}),className:\"framer-1kegpoq\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrb46\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(212, 212, 212)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"Tech Stack\"})})}),className:\"framer-1n70oal\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-htjtu0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{width:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3484+60+130+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sicedy-container\",nodeId:\"ESsON94Tk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo1,{height:\"100%\",id:\"ESsON94Tk\",layoutId:\"ESsON94Tk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+0),pixelHeight:535,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png\",srcSet:\"https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:1280,pixelHeight:535,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png\",srcSet:\"https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oohHeD75ndtz2sEFU22ioawhYE.png 1280w\"},className:\"framer-1804m1m\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:768,intrinsicWidth:768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+83),pixelHeight:768,pixelWidth:768,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg\",srcSet:\"https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:768,intrinsicWidth:768,pixelHeight:768,pixelWidth:768,positionX:\"center\",positionY:\"center\",sizes:\"171px\",src:\"https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg\",srcSet:\"https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/M5CPMACXldWEYrLQEi8UivxXErM.svg 768w\"},className:\"framer-1f935ib\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:550,intrinsicWidth:2049,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+83),pixelHeight:550,pixelWidth:2049,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png\",srcSet:\"https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png 2049w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:550,intrinsicWidth:2049,pixelHeight:550,pixelWidth:2049,positionX:\"center\",positionY:\"center\",sizes:\"168px\",src:\"https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png\",srcSet:\"https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tUR49HIPC70QKL7Y0x2TSoVAIM.png 2049w\"},className:\"framer-1ovngp6\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+166),pixelHeight:2048,pixelWidth:1869,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png\",srcSet:\"https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png?scale-down-to=1024 934w,https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png 1869w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,pixelHeight:2048,pixelWidth:1869,positionX:\"center\",positionY:\"center\",sizes:\"156px\",src:\"https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png\",srcSet:\"https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png?scale-down-to=1024 934w,https://framerusercontent.com/images/gbL5IPSpRjIcp0e0lXgaMAVSBI.png 1869w\"},className:\"framer-fn0fg\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+166),pixelHeight:1032,pixelWidth:918,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png\",srcSet:\"https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png?scale-down-to=1024 910w,https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png 918w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,pixelHeight:1032,pixelWidth:918,positionX:\"center\",positionY:\"center\",sizes:\"156px\",src:\"https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png\",srcSet:\"https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png?scale-down-to=1024 910w,https://framerusercontent.com/images/uIUb6uyfVhf9OfjLyamqXRFuw7o.png 918w\"},className:\"framer-1fx73n4\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:545,intrinsicWidth:677,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+249),pixelHeight:545,pixelWidth:677,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png\",srcSet:\"https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png 677w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:545,intrinsicWidth:677,pixelHeight:545,pixelWidth:677,positionX:\"center\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png\",srcSet:\"https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/B6pjSMDqBJYlNjCEbpQGi4eGYv4.png 677w\"},className:\"framer-1kdwwg8\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+249),pixelHeight:500,pixelWidth:1300,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png\",srcSet:\"https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png 1300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:1280,pixelHeight:500,pixelWidth:1300,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png\",srcSet:\"https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/taGmy3Sy3To8LPe5NqVosDeU.png 1300w\"},className:\"framer-1rsmfhd\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+332),pixelHeight:192,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9rjf6TI6SlXbBJ0zAi2CsjlqQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1869,pixelHeight:192,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9rjf6TI6SlXbBJ0zAi2CsjlqQ.png\"},className:\"framer-97gr7w\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+332),pixelHeight:2160,pixelWidth:3840,sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png\",srcSet:\"https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"125px\",src:\"https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png\",srcSet:\"https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tHvpJLOwnzIwYBScro8MpY7V8.png 3840w\"},className:\"framer-xdb4jx\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OAm6B9QHB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1129,intrinsicWidth:1843,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3484+60+130+20+415),pixelHeight:1129,pixelWidth:1843,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 145px) / 2, 50px)`,src:\"https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png\",srcSet:\"https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png 1843w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1129,intrinsicWidth:1843,pixelHeight:1129,pixelWidth:1843,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png\",srcSet:\"https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RjqvPBaWfFpkLtZYjXYJ70ZN7sc.png 1843w\"},className:\"framer-14ol2m7\",\"data-framer-name\":\"Logo\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"We believe in using the power of Engineering & Creativity \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) -25%, rgb(255, 255, 255) 77.4335%)\"},children:\"at the forefront to solve challenging problems in 3D Rendering.\"})})]}),className:\"framer-1sl3jb0\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oYzi4.framer-lux5qc, .framer-oYzi4 .framer-lux5qc { display: block; }\",\".framer-oYzi4.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-oYzi4 .framer-4rtxb8-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-oYzi4 .framer-1x6s7wc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 630px; justify-content: flex-start; overflow: hidden; padding: 150px 60px 60px 60px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-dc086q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oYzi4 .framer-rf4uxl { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 563px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oYzi4 .framer-188qqfx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-oYzi4 .framer-ftf8e1 { align-content: center; align-items: center; background-color: #d4d4d4; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oYzi4 .framer-pwggyc, .framer-oYzi4 .framer-qp2haf, .framer-oYzi4 .framer-dcn2j9, .framer-oYzi4 .framer-1sl3jb0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oYzi4 .framer-1ay2mk2 { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 213px; justify-content: center; left: calc(74.83333333333336% - 545px / 2); overflow: hidden; padding: 0px; position: absolute; width: 545px; z-index: 1; }\",\".framer-oYzi4 .framer-8bwpg6 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #121212; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; opacity: 0.75; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oYzi4 .framer-3etm26 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 53%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 83%; word-break: break-word; word-wrap: break-word; }\",\".framer-oYzi4 .framer-acnvcg-container, .framer-oYzi4 .framer-1okv9el-container { flex: none; height: 42px; left: 18px; position: absolute; top: calc(49.261083743842384% - 42px / 2); width: 40px; }\",\".framer-oYzi4 .framer-10zlgq8 { background-color: #121212; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; opacity: 0.75; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oYzi4 .framer-u9g99n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 54%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 84%; word-break: break-word; word-wrap: break-word; }\",\".framer-oYzi4 .framer-17xmt52 { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-oYzi4 .framer-19i59mg { flex: none; height: auto; opacity: 0.95; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oYzi4 .framer-jab2fa { background-color: #121212; flex: none; height: 479px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-oYzi4 .framer-109dfch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: 55px; overflow: hidden; padding: 12px; position: absolute; top: 47%; transform: translateY(-50%); width: 92%; }\",\".framer-oYzi4 .framer-157wea6, .framer-oYzi4 .framer-s48f7w, .framer-oYzi4 .framer-w6ktlp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-oYzi4 .framer-1na8g1k { --border-bottom-width: 0px; --border-color: rgba(34, 34, 34, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #121212; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1065px; }\",\".framer-oYzi4 .framer-1i4l5yr { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oYzi4 .framer-4g981m, .framer-oYzi4 .framer-1idky4a, .framer-oYzi4 .framer-izsb94, .framer-oYzi4 .framer-sr4zax { align-content: center; align-items: center; align-self: start; background: linear-gradient(180deg, #707070 -297%, rgb(28, 28, 28) 61.05187218468468%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0.3010936508871964px 0.6021873017743928px 1.4811849161501944px -1.25px rgba(130, 126, 126, 0.18), 1.1442666516217286px 2.288533303243457px 5.629047638306961px -2.5px rgba(130, 126, 126, 0.16), 5px 10px 24.596747752497688px -3.75px rgba(130, 126, 126, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: 100%; justify-content: flex-start; justify-self: start; opacity: 0.95; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-1fv9o1s, .framer-oYzi4 .framer-tunimh, .framer-oYzi4 .framer-14sst7e, .framer-oYzi4 .framer-1mtc6ud { flex: none; height: 52px; overflow: visible; position: relative; width: 52px; }\",\".framer-oYzi4 .framer-kk8rtt-container, .framer-oYzi4 .framer-gneyvh-container, .framer-oYzi4 .framer-1vqn86s-container, .framer-oYzi4 .framer-o078vs-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oYzi4 .framer-1dysvi3, .framer-oYzi4 .framer-17t5wb3, .framer-oYzi4 .framer-1ewggh1, .framer-oYzi4 .framer-nfs2sc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oYzi4 .framer-2kw5xz, .framer-oYzi4 .framer-1ghz70v, .framer-oYzi4 .framer-1wfsdxg, .framer-oYzi4 .framer-mxvffb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-1wirk09, .framer-oYzi4 .framer-17tiyir, .framer-oYzi4 .framer-1lm9ndp, .framer-oYzi4 .framer-1fcyq72, .framer-oYzi4 .framer-16cvmsh, .framer-oYzi4 .framer-11daa4m, .framer-oYzi4 .framer-19c8td5, .framer-oYzi4 .framer-3wpkmt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oYzi4 .framer-ypd9gv { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 253px; justify-content: center; overflow: hidden; padding: 82px 40px 82px 40px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-iwjup9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 263px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-19dtqsh-container { flex: none; height: 138px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-5166h3 { align-content: center; align-items: center; aspect-ratio: 2.9565217391304346 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 69px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 205px; }\",\".framer-oYzi4 .framer-1o4lse1-container { flex: none; height: 44px; position: relative; width: 35px; }\",\".framer-oYzi4 .framer-7fpz6w { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 49px); opacity: 0.85; overflow: hidden; position: relative; text-decoration: none; width: 145px; }\",\".framer-oYzi4 .framer-1kqskiu, .framer-oYzi4 .framer-1ib1zrz { height: 48px; opacity: 0.85; overflow: hidden; position: relative; text-decoration: none; width: 176px; }\",\".framer-oYzi4 .framer-119ll8m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 452px; }\",\".framer-oYzi4 .framer-awhx9a { flex: none; height: 84px; opacity: 0.85; overflow: hidden; position: relative; width: 110px; }\",\".framer-oYzi4 .framer-bllwk6 { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 40px 12px 40px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-wycymf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 484px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oYzi4 .framer-gri5ay-container { flex: none; height: 406px; position: relative; width: 1029px; }\",\".framer-oYzi4 .framer-1g1b7u6, .framer-oYzi4 .framer-i7qkhy, .framer-oYzi4 .framer-1gtd31v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-oYzi4 .framer-fajki0, .framer-oYzi4 .framer-1iwuji8, .framer-oYzi4 .framer-13hryuy { flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oYzi4 .framer-xfzo3h, .framer-oYzi4 .framer-s1viwo, .framer-oYzi4 .framer-13cf3w4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oYzi4 .framer-1ecqkq0, .framer-oYzi4 .framer-1h7tedw, .framer-oYzi4 .framer-14gpcsr { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oYzi4 .framer-si6sw8, .framer-oYzi4 .framer-1ej7q7g, .framer-oYzi4 .framer-154ftkp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oYzi4 .framer-1djltne, .framer-oYzi4 .framer-aiwaw, .framer-oYzi4 .framer-1sesoww, .framer-oYzi4 .framer-s2g24b, .framer-oYzi4 .framer-b90hz9, .framer-oYzi4 .framer-16444ky, .framer-oYzi4 .framer-6je6dq, .framer-oYzi4 .framer-1n70oal { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-oYzi4 .framer-48m707 { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 59px; height: 547px; justify-content: center; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-883v72 { display: grid; flex: none; gap: 25px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 79%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 91%; }\",\".framer-oYzi4 .framer-1f81klo, .framer-oYzi4 .framer-cmpb0y { align-content: center; align-items: center; align-self: start; background: linear-gradient(180deg, #707070 -297%, rgb(28, 28, 28) 61.05187218468468%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.3010936508871964px 0.6021873017743928px 1.4811849161501944px -1.25px rgba(130, 126, 126, 0.18), 1.1442666516217286px 2.288533303243457px 5.629047638306961px -2.5px rgba(130, 126, 126, 0.16), 5px 10px 24.596747752497688px -3.75px rgba(130, 126, 126, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-around; justify-self: start; opacity: 0.95; overflow: visible; padding: 25px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-122li0f, .framer-oYzi4 .framer-gz0q2g, .framer-oYzi4 .framer-19w5ke4, .framer-oYzi4 .framer-gqyitc, .framer-oYzi4 .framer-139gvdp, .framer-oYzi4 .framer-5x8314 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oYzi4 .framer-na1ayy-container { aspect-ratio: 0.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); position: relative; width: 40px; }\",\".framer-oYzi4 .framer-1xilgqf, .framer-oYzi4 .framer-212z8s, .framer-oYzi4 .framer-1nsziwg, .framer-oYzi4 .framer-1bwvp6o, .framer-oYzi4 .framer-pjarkk, .framer-oYzi4 .framer-1kegpoq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oYzi4 .framer-yupn3t, .framer-oYzi4 .framer-30qlgr, .framer-oYzi4 .framer-gdvtt4, .framer-oYzi4 .framer-ox3ccp { align-content: center; align-items: center; align-self: start; background: linear-gradient(180deg, #707070 -297%, rgb(28, 28, 28) 61.05187218468468%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0.3010936508871964px 0.6021873017743928px 1.4811849161501944px -1.25px rgba(130, 126, 126, 0.18), 1.1442666516217286px 2.288533303243457px 5.629047638306961px -2.5px rgba(130, 126, 126, 0.16), 5px 10px 24.596747752497688px -3.75px rgba(130, 126, 126, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-around; justify-self: start; opacity: 0.95; overflow: visible; padding: 25px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-1kqc4v1-container, .framer-oYzi4 .framer-1bejfce-container, .framer-oYzi4 .framer-19im5kf-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 40px; }\",\".framer-oYzi4 .framer-9f7z91-container, .framer-oYzi4 .framer-u03s03-container { flex: none; height: 60px; position: relative; width: 40px; }\",\".framer-oYzi4 .framer-1vrb46 { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-htjtu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-oYzi4 .framer-1sicedy-container { flex: none; height: 58px; position: relative; width: 156px; }\",\".framer-oYzi4 .framer-1804m1m { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 165px; }\",\".framer-oYzi4 .framer-1f935ib { aspect-ratio: 2.128205128205128 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 171px; }\",\".framer-oYzi4 .framer-1ovngp6 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: hidden; position: relative; width: 168px; }\",\".framer-oYzi4 .framer-fn0fg, .framer-oYzi4 .framer-1fx73n4 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); overflow: hidden; position: relative; width: 156px; }\",\".framer-oYzi4 .framer-1kdwwg8 { aspect-ratio: 1.6555555555555554 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 99px); overflow: hidden; position: relative; width: 163px; }\",\".framer-oYzi4 .framer-1rsmfhd { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 183px; }\",\".framer-oYzi4 .framer-97gr7w { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: hidden; position: relative; width: 192px; }\",\".framer-oYzi4 .framer-xdb4jx { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: hidden; position: relative; width: 125px; }\",\".framer-oYzi4 .framer-14ol2m7 { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 178px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oYzi4.framer-72rtr7, .framer-oYzi4 .framer-1x6s7wc, .framer-oYzi4 .framer-188qqfx, .framer-oYzi4 .framer-ftf8e1, .framer-oYzi4 .framer-1ay2mk2, .framer-oYzi4 .framer-109dfch, .framer-oYzi4 .framer-1na8g1k, .framer-oYzi4 .framer-4g981m, .framer-oYzi4 .framer-1dysvi3, .framer-oYzi4 .framer-2kw5xz, .framer-oYzi4 .framer-1idky4a, .framer-oYzi4 .framer-17t5wb3, .framer-oYzi4 .framer-1ghz70v, .framer-oYzi4 .framer-izsb94, .framer-oYzi4 .framer-1ewggh1, .framer-oYzi4 .framer-1wfsdxg, .framer-oYzi4 .framer-sr4zax, .framer-oYzi4 .framer-nfs2sc, .framer-oYzi4 .framer-mxvffb, .framer-oYzi4 .framer-ypd9gv, .framer-oYzi4 .framer-iwjup9, .framer-oYzi4 .framer-5166h3, .framer-oYzi4 .framer-119ll8m, .framer-oYzi4 .framer-bllwk6, .framer-oYzi4 .framer-wycymf, .framer-oYzi4 .framer-1g1b7u6, .framer-oYzi4 .framer-xfzo3h, .framer-oYzi4 .framer-si6sw8, .framer-oYzi4 .framer-i7qkhy, .framer-oYzi4 .framer-s1viwo, .framer-oYzi4 .framer-1ej7q7g, .framer-oYzi4 .framer-1gtd31v, .framer-oYzi4 .framer-13cf3w4, .framer-oYzi4 .framer-154ftkp, .framer-oYzi4 .framer-48m707, .framer-oYzi4 .framer-122li0f, .framer-oYzi4 .framer-gz0q2g, .framer-oYzi4 .framer-19w5ke4, .framer-oYzi4 .framer-gqyitc, .framer-oYzi4 .framer-139gvdp, .framer-oYzi4 .framer-5x8314, .framer-oYzi4 .framer-1vrb46, .framer-oYzi4 .framer-htjtu0 { gap: 0px; } .framer-oYzi4.framer-72rtr7 > *, .framer-oYzi4 .framer-2kw5xz > *, .framer-oYzi4 .framer-1ghz70v > *, .framer-oYzi4 .framer-1wfsdxg > *, .framer-oYzi4 .framer-mxvffb > *, .framer-oYzi4 .framer-si6sw8 > *, .framer-oYzi4 .framer-1ej7q7g > *, .framer-oYzi4 .framer-154ftkp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oYzi4.framer-72rtr7 > :first-child, .framer-oYzi4 .framer-1x6s7wc > :first-child, .framer-oYzi4 .framer-1ay2mk2 > :first-child, .framer-oYzi4 .framer-109dfch > :first-child, .framer-oYzi4 .framer-1dysvi3 > :first-child, .framer-oYzi4 .framer-2kw5xz > :first-child, .framer-oYzi4 .framer-17t5wb3 > :first-child, .framer-oYzi4 .framer-1ghz70v > :first-child, .framer-oYzi4 .framer-1ewggh1 > :first-child, .framer-oYzi4 .framer-1wfsdxg > :first-child, .framer-oYzi4 .framer-nfs2sc > :first-child, .framer-oYzi4 .framer-mxvffb > :first-child, .framer-oYzi4 .framer-ypd9gv > :first-child, .framer-oYzi4 .framer-iwjup9 > :first-child, .framer-oYzi4 .framer-bllwk6 > :first-child, .framer-oYzi4 .framer-wycymf > :first-child, .framer-oYzi4 .framer-1g1b7u6 > :first-child, .framer-oYzi4 .framer-si6sw8 > :first-child, .framer-oYzi4 .framer-i7qkhy > :first-child, .framer-oYzi4 .framer-1ej7q7g > :first-child, .framer-oYzi4 .framer-1gtd31v > :first-child, .framer-oYzi4 .framer-154ftkp > :first-child, .framer-oYzi4 .framer-48m707 > :first-child, .framer-oYzi4 .framer-1vrb46 > :first-child { margin-top: 0px; } .framer-oYzi4.framer-72rtr7 > :last-child, .framer-oYzi4 .framer-1x6s7wc > :last-child, .framer-oYzi4 .framer-1ay2mk2 > :last-child, .framer-oYzi4 .framer-109dfch > :last-child, .framer-oYzi4 .framer-1dysvi3 > :last-child, .framer-oYzi4 .framer-2kw5xz > :last-child, .framer-oYzi4 .framer-17t5wb3 > :last-child, .framer-oYzi4 .framer-1ghz70v > :last-child, .framer-oYzi4 .framer-1ewggh1 > :last-child, .framer-oYzi4 .framer-1wfsdxg > :last-child, .framer-oYzi4 .framer-nfs2sc > :last-child, .framer-oYzi4 .framer-mxvffb > :last-child, .framer-oYzi4 .framer-ypd9gv > :last-child, .framer-oYzi4 .framer-iwjup9 > :last-child, .framer-oYzi4 .framer-bllwk6 > :last-child, .framer-oYzi4 .framer-wycymf > :last-child, .framer-oYzi4 .framer-1g1b7u6 > :last-child, .framer-oYzi4 .framer-si6sw8 > :last-child, .framer-oYzi4 .framer-i7qkhy > :last-child, .framer-oYzi4 .framer-1ej7q7g > :last-child, .framer-oYzi4 .framer-1gtd31v > :last-child, .framer-oYzi4 .framer-154ftkp > :last-child, .framer-oYzi4 .framer-48m707 > :last-child, .framer-oYzi4 .framer-1vrb46 > :last-child { margin-bottom: 0px; } .framer-oYzi4 .framer-1x6s7wc > *, .framer-oYzi4 .framer-1ay2mk2 > *, .framer-oYzi4 .framer-iwjup9 > *, .framer-oYzi4 .framer-wycymf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oYzi4 .framer-188qqfx > *, .framer-oYzi4 .framer-xfzo3h > *, .framer-oYzi4 .framer-s1viwo > *, .framer-oYzi4 .framer-13cf3w4 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-oYzi4 .framer-188qqfx > :first-child, .framer-oYzi4 .framer-ftf8e1 > :first-child, .framer-oYzi4 .framer-1na8g1k > :first-child, .framer-oYzi4 .framer-4g981m > :first-child, .framer-oYzi4 .framer-1idky4a > :first-child, .framer-oYzi4 .framer-izsb94 > :first-child, .framer-oYzi4 .framer-sr4zax > :first-child, .framer-oYzi4 .framer-5166h3 > :first-child, .framer-oYzi4 .framer-119ll8m > :first-child, .framer-oYzi4 .framer-xfzo3h > :first-child, .framer-oYzi4 .framer-s1viwo > :first-child, .framer-oYzi4 .framer-13cf3w4 > :first-child, .framer-oYzi4 .framer-122li0f > :first-child, .framer-oYzi4 .framer-gz0q2g > :first-child, .framer-oYzi4 .framer-19w5ke4 > :first-child, .framer-oYzi4 .framer-gqyitc > :first-child, .framer-oYzi4 .framer-139gvdp > :first-child, .framer-oYzi4 .framer-5x8314 > :first-child, .framer-oYzi4 .framer-htjtu0 > :first-child { margin-left: 0px; } .framer-oYzi4 .framer-188qqfx > :last-child, .framer-oYzi4 .framer-ftf8e1 > :last-child, .framer-oYzi4 .framer-1na8g1k > :last-child, .framer-oYzi4 .framer-4g981m > :last-child, .framer-oYzi4 .framer-1idky4a > :last-child, .framer-oYzi4 .framer-izsb94 > :last-child, .framer-oYzi4 .framer-sr4zax > :last-child, .framer-oYzi4 .framer-5166h3 > :last-child, .framer-oYzi4 .framer-119ll8m > :last-child, .framer-oYzi4 .framer-xfzo3h > :last-child, .framer-oYzi4 .framer-s1viwo > :last-child, .framer-oYzi4 .framer-13cf3w4 > :last-child, .framer-oYzi4 .framer-122li0f > :last-child, .framer-oYzi4 .framer-gz0q2g > :last-child, .framer-oYzi4 .framer-19w5ke4 > :last-child, .framer-oYzi4 .framer-gqyitc > :last-child, .framer-oYzi4 .framer-139gvdp > :last-child, .framer-oYzi4 .framer-5x8314 > :last-child, .framer-oYzi4 .framer-htjtu0 > :last-child { margin-right: 0px; } .framer-oYzi4 .framer-ftf8e1 > *, .framer-oYzi4 .framer-5166h3 > *, .framer-oYzi4 .framer-122li0f > *, .framer-oYzi4 .framer-gz0q2g > *, .framer-oYzi4 .framer-19w5ke4 > *, .framer-oYzi4 .framer-gqyitc > *, .framer-oYzi4 .framer-139gvdp > *, .framer-oYzi4 .framer-5x8314 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oYzi4 .framer-109dfch > *, .framer-oYzi4 .framer-ypd9gv > *, .framer-oYzi4 .framer-bllwk6 > *, .framer-oYzi4 .framer-1vrb46 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-oYzi4 .framer-1na8g1k > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-oYzi4 .framer-4g981m > *, .framer-oYzi4 .framer-1idky4a > *, .framer-oYzi4 .framer-izsb94 > *, .framer-oYzi4 .framer-sr4zax > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-oYzi4 .framer-1dysvi3 > *, .framer-oYzi4 .framer-17t5wb3 > *, .framer-oYzi4 .framer-1ewggh1 > *, .framer-oYzi4 .framer-nfs2sc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-oYzi4 .framer-119ll8m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oYzi4 .framer-1g1b7u6 > *, .framer-oYzi4 .framer-i7qkhy > *, .framer-oYzi4 .framer-1gtd31v > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-oYzi4 .framer-48m707 > * { margin: 0px; margin-bottom: calc(59px / 2); margin-top: calc(59px / 2); } .framer-oYzi4 .framer-htjtu0 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-oYzi4[data-border=\"true\"]::after, .framer-oYzi4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-oYzi4.framer-72rtr7 { width: 390px; } .framer-oYzi4 .framer-4rtxb8-container { z-index: 3; } .framer-oYzi4 .framer-1x6s7wc { height: min-content; padding: 150px 30px 60px 30px; } .framer-oYzi4 .framer-1ay2mk2 { bottom: unset; height: min-content; left: unset; position: relative; width: 100%; } .framer-oYzi4 .framer-8bwpg6 { flex: none; height: 102px; } .framer-oYzi4 .framer-3etm26 { height: 75%; left: calc(60.00000000000002% - 244px / 2); top: calc(48.03921568627453% - 75% / 2); transform: unset; width: 244px; } .framer-oYzi4 .framer-10zlgq8 { flex: none; height: 101px; } .framer-oYzi4 .framer-u9g99n { left: 61%; top: 50%; width: 71%; } .framer-oYzi4 .framer-jab2fa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-oYzi4 .framer-109dfch { left: unset; padding: 20px; position: relative; top: unset; transform: unset; width: 92%; } .framer-oYzi4 .framer-1i4l5yr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-oYzi4 .framer-4g981m, .framer-oYzi4 .framer-1idky4a, .framer-oYzi4 .framer-izsb94, .framer-oYzi4 .framer-sr4zax, .framer-oYzi4 .framer-1f81klo, .framer-oYzi4 .framer-yupn3t, .framer-oYzi4 .framer-30qlgr, .framer-oYzi4 .framer-cmpb0y, .framer-oYzi4 .framer-gdvtt4, .framer-oYzi4 .framer-ox3ccp { align-self: unset; height: min-content; } .framer-oYzi4 .framer-wycymf { height: min-content; width: 100%; } .framer-oYzi4 .framer-gri5ay-container { height: 600px; width: 100%; } .framer-oYzi4 .framer-48m707 { height: min-content; } .framer-oYzi4 .framer-883v72 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: unset; height: min-content; justify-content: space-evenly; width: 100%; } .framer-oYzi4 .framer-na1ayy-container { height: var(--framer-aspect-ratio-supported, 70px); } .framer-oYzi4 .framer-1kqc4v1-container { height: var(--framer-aspect-ratio-supported, 44px); } .framer-oYzi4 .framer-htjtu0 { align-content: unset; align-items: unset; display: grid; gap: 25px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-oYzi4 .framer-1sicedy-container { align-self: start; justify-self: start; width: 100%; } .framer-oYzi4 .framer-1804m1m, .framer-oYzi4 .framer-1ovngp6, .framer-oYzi4 .framer-fn0fg, .framer-oYzi4 .framer-1fx73n4, .framer-oYzi4 .framer-1rsmfhd, .framer-oYzi4 .framer-97gr7w, .framer-oYzi4 .framer-xdb4jx, .framer-oYzi4 .framer-14ol2m7 { align-self: start; height: var(--framer-aspect-ratio-supported, 41px); justify-self: start; width: 100%; } .framer-oYzi4 .framer-1f935ib { align-self: start; height: var(--framer-aspect-ratio-supported, 58px); justify-self: start; width: 100%; } .framer-oYzi4 .framer-1kdwwg8 { align-self: start; height: var(--framer-aspect-ratio-supported, 74px); justify-self: start; width: 100%; } .framer-oYzi4 .framer-1sl3jb0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oYzi4 .framer-jab2fa, .framer-oYzi4 .framer-1i4l5yr, .framer-oYzi4 .framer-883v72, .framer-oYzi4 .framer-htjtu0 { gap: 0px; } .framer-oYzi4 .framer-jab2fa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oYzi4 .framer-jab2fa > :first-child { margin-left: 0px; } .framer-oYzi4 .framer-jab2fa > :last-child { margin-right: 0px; } .framer-oYzi4 .framer-1i4l5yr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oYzi4 .framer-1i4l5yr > :first-child { margin-top: 0px; } .framer-oYzi4 .framer-1i4l5yr > :last-child { margin-bottom: 0px; } .framer-oYzi4 .framer-883v72 > *, .framer-oYzi4 .framer-883v72 > :first-child, .framer-oYzi4 .framer-883v72 > :last-child, .framer-oYzi4 .framer-htjtu0 > *, .framer-oYzi4 .framer-htjtu0 > :first-child, .framer-oYzi4 .framer-htjtu0 > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-oYzi4.framer-72rtr7 { width: 810px; } .framer-oYzi4 .framer-1ay2mk2 { bottom: unset; left: unset; position: relative; } .framer-oYzi4 .framer-jab2fa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-oYzi4 .framer-109dfch { left: unset; position: relative; top: unset; transform: unset; } .framer-oYzi4 .framer-883v72 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-oYzi4 .framer-na1ayy-container { height: var(--framer-aspect-ratio-supported, 70px); } .framer-oYzi4 .framer-1kqc4v1-container, .framer-oYzi4 .framer-1bejfce-container, .framer-oYzi4 .framer-19im5kf-container { height: var(--framer-aspect-ratio-supported, 44px); } .framer-oYzi4 .framer-xdb4jx { height: var(--framer-aspect-ratio-supported, 42px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oYzi4 .framer-jab2fa { gap: 0px; } .framer-oYzi4 .framer-jab2fa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oYzi4 .framer-jab2fa > :first-child { margin-left: 0px; } .framer-oYzi4 .framer-jab2fa > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3287\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OAm6B9QHB\":{\"layout\":[\"fixed\",\"auto\"]},\"EXx3CXZB7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-oYzi4\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3287,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationFonts,...IconoirFonts,...PhosphorFonts,...LogoFonts,...TickerFonts,...SlideshowFonts,...FeatherFonts,...Logo1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OAm6B9QHB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EXx3CXZB7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"3287\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "e", "f", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "fytQoGgJj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "RichText2", "css", "FramerZLWXetFCx", "withCSS", "ZLWXetFCx_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "kBOoYN8oS_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionAWithOptimizedAppearEffect", "motion", "IconoirFonts", "Icon", "PhosphorFonts", "MotionDivWithFX", "withFX", "LogoFonts", "Logo", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "FeatherFonts", "Logo1Fonts", "ZLWXetFCx_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "animation7", "transformTemplate1", "_", "t", "animation8", "animation9", "animation10", "transition5", "animation11", "animation12", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
