{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/a71y3HkcC3LRfZaY9ikk/1XVvbXjdAPehb13xJcjj/Counter1.js", "ssg:https://framerusercontent.com/modules/LDlAwFBoKlTf3o8zdzRq/Ofx7PB31KzBkgBuEdQJC/jt3PYQfrV.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};const applyGradient=(text,gradientEnabled,angle,color1,color2)=>{if(gradientEnabled){const gradient=`linear-gradient(${angle}deg, ${color1}, ${color2})`;return /*#__PURE__*/_jsx(\"span\",{style:{backgroundImage:gradient,WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",display:\"inline-block\"},children:text});}else{return text;}};export function Counter(props){const{start,end,speed,gapSize,prefixEnabled,prefixText,prefixFont,prefixColor,prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2,suffixEnabled,suffixText,suffixFont,suffixColor,suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2,textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[prefixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixGradientEnabled?\"transparent\":prefixColor},children:prefixText}),prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2),applyGradient(formatNumber(count),textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2),suffixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixGradientEnabled?\"transparent\":suffixColor},children:suffixText}),suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2)]});}Counter.defaultProps={start:0,end:100,speed:100,prefixEnabled:false,suffixEnabled:false,loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\",textGradientEnabled:false,textGradientAngle:90,textGradientColor1:\"#000\",textGradientColor2:\"#fff\",prefixText:\"\",prefixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},prefixColor:\"#000\",prefixGradientEnabled:false,prefixGradientAngle:90,prefixGradientColor1:\"#000\",prefixGradientColor2:\"#fff\",suffixText:\"\",suffixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},suffixColor:\"#000\",suffixGradientEnabled:false,suffixGradientAngle:90,suffixGradientColor1:\"#000\",suffixGradientColor2:\"#fff\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},textGradientEnabled:{type:ControlType.Boolean,title:\"Text Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},textGradientAngle:{type:ControlType.Number,title:\"Text Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.textGradientEnabled},textGradientColor1:{type:ControlType.Color,title:\"Text Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.textGradientEnabled},textGradientColor2:{type:ControlType.Color,title:\"Text Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.textGradientEnabled},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixEnabled:{type:ControlType.Boolean,title:\"Prefix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\",hidden:props=>!props.prefixEnabled},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.prefixEnabled},prefixColor:{type:ControlType.Color,title:\"Prefix Color\",hidden:props=>!props.prefixEnabled},prefixGradientEnabled:{type:ControlType.Boolean,title:\"Prefix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.prefixEnabled},prefixGradientAngle:{type:ControlType.Number,title:\"Prefix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor1:{type:ControlType.Color,title:\"Prefix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor2:{type:ControlType.Color,title:\"Prefix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},suffixEnabled:{type:ControlType.Boolean,title:\"Suffix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\",hidden:props=>!props.suffixEnabled},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.suffixEnabled},suffixColor:{type:ControlType.Color,title:\"Suffix Color\",hidden:props=>!props.suffixEnabled},suffixGradientEnabled:{type:ControlType.Boolean,title:\"Suffix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.suffixEnabled},suffixGradientAngle:{type:ControlType.Number,title:\"Suffix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor1:{type:ControlType.Color,title:\"Suffix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor2:{type:ControlType.Color,title:\"Suffix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/RLfsHd78NBd0kbafA9hd/Lottie.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wF8BVEtCPVoatEqp9aad/KAcdQ9YHWigMeiMCC1fr/IR5btmWjw.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Gvz4F6gJbHo7H6Ht0g8a/plYrMqXP3bJObx8JUoZE/juLhlbLFr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/h9tfzYvUxC9UbhXBHKR8/gXMzyx83gys5CjTfxRF7/sOh00fQBD.js\";const LottieFonts=getFonts(Lottie);const cycleOrder=[\"BICnt2qv9\",\"XSR0N0pvY\"];const serializationHash=\"framer-peQqt\";const variantClassNames={BICnt2qv9:\"framer-v-18yjn6j\",XSR0N0pvY:\"framer-v-1epppyl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"With image\":\"XSR0N0pvY\",\"With lottie\":\"BICnt2qv9\"};const getProps=({align,description,direction,gapAll,gapText,height,id,image,lottieURL,radiusImg,subtitle,title,width,...props})=>{var _ref,_humanReadableEnumMap1_align,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableEnumMap_direction,_ref6,_ref7,_ref8,_ref9,_humanReadableVariantMap_props_variant,_ref10,_ref11;return{...props,AoSe8FdZu:(_ref=radiusImg!==null&&radiusImg!==void 0?radiusImg:props.AoSe8FdZu)!==null&&_ref!==void 0?_ref:\"16px\",bPvSsXoAI:(_ref2=(_ref1=(_humanReadableEnumMap1_align=humanReadableEnumMap1[align])!==null&&_humanReadableEnumMap1_align!==void 0?_humanReadableEnumMap1_align:align)!==null&&_ref1!==void 0?_ref1:props.bPvSsXoAI)!==null&&_ref2!==void 0?_ref2:\"flex-start\",dDW855w7Z:(_ref3=title!==null&&title!==void 0?title:props.dDW855w7Z)!==null&&_ref3!==void 0?_ref3:\"Ask DinoAI\",EECEE9agO:(_ref4=description!==null&&description!==void 0?description:props.EECEE9agO)!==null&&_ref4!==void 0?_ref4:\"Use DinoAI co-pilot to accelerate your analytics work. Build well tested, fully documented dbt\u2122 models from scratch, or SQL, or stored procedures.\",In6rLm207:(_ref5=gapText!==null&&gapText!==void 0?gapText:props.In6rLm207)!==null&&_ref5!==void 0?_ref5:32,Io4r_BxZQ:image!==null&&image!==void 0?image:props.Io4r_BxZQ,J4mrXnEqK:(_ref7=(_ref6=(_humanReadableEnumMap_direction=humanReadableEnumMap[direction])!==null&&_humanReadableEnumMap_direction!==void 0?_humanReadableEnumMap_direction:direction)!==null&&_ref6!==void 0?_ref6:props.J4mrXnEqK)!==null&&_ref7!==void 0?_ref7:\"row\",QoHwHn441:(_ref8=gapAll!==null&&gapAll!==void 0?gapAll:props.QoHwHn441)!==null&&_ref8!==void 0?_ref8:32,S8zhjw0PR:(_ref9=lottieURL!==null&&lottieURL!==void 0?lottieURL:props.S8zhjw0PR)!==null&&_ref9!==void 0?_ref9:\"https://cdn.lottielab.com/l/2UFkACPZs5ik8T.json\",variant:(_ref10=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref10!==void 0?_ref10:\"BICnt2qv9\",W7umf6Pr9:(_ref11=subtitle!==null&&subtitle!==void 0?subtitle:props.W7umf6Pr9)!==null&&_ref11!==void 0?_ref11:\"Write commits, fix SQL, write docs and tests, convert SQL to dbt\u2122\"};};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,S8zhjw0PR,Io4r_BxZQ,dDW855w7Z,W7umf6Pr9,EECEE9agO,J4mrXnEqK,bPvSsXoAI,In6rLm207,QoHwHn441,AoSe8FdZu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BICnt2qv9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"XSR0N0pvY\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"XSR0N0pvY\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18yjn6j\",className,classNames),\"data-framer-name\":\"With lottie\",layoutDependency:layoutDependency,layoutId:\"BICnt2qv9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--lzenxa\":QoHwHn441,...style},...addPropertyOverrides({XSR0N0pvY:{\"data-framer-name\":\"With image\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-e0ix4o\",\"data-styles-preset\":\"sOh00fQBD\",children:\"Ask DinoAI\"})}),className:\"framer-19f9gi9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zBAvrz8qx\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:dDW855w7Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cii3cw\",\"data-framer-name\":\"copy wrapper\",layoutDependency:layoutDependency,layoutId:\"ldo0E7ver\",style:{\"--11hsdpe\":J4mrXnEqK===\"column\"?undefined:\"1 0 0px\",\"--11ivaq1\":J4mrXnEqK===\"column\"?\"100%\":\"1px\",\"--12fpjf7\":J4mrXnEqK===\"column\"?0:\"calc(calc(max(0, var(--1hqjj2k)) * 1px) / 2)\",\"--1hqjj2k\":In6rLm207,\"--pnym8h\":bPvSsXoAI,\"--sqpznc\":J4mrXnEqK===\"row\"?0:\"calc(calc(max(0, var(--1hqjj2k)) * 1px) / 2)\",\"--tdqgi7\":J4mrXnEqK},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ealajx\",\"data-styles-preset\":\"IR5btmWjw\",children:\"Write commits, fix SQL, write docs and tests, convert SQL to dbt\u2122\"})}),className:\"framer-qndu3f\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VsLsEazSg\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:W7umf6Pr9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dqej1i\",\"data-styles-preset\":\"juLhlbLFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8b50badb-f9b1-4cdf-a72e-39717e52b898, rgb(116, 117, 118)))\"},children:\"Use DinoAI co-pilot to accelerate your analytics work. Build well tested, fully documented dbt\u2122 models from scratch, or SQL, or stored procedures.\"})}),className:\"framer-1hvr8fw\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IhnddfbAC\",style:{\"--extracted-r6o4lv\":\"var(--token-8b50badb-f9b1-4cdf-a72e-39717e52b898, rgb(116, 117, 118))\",\"--framer-paragraph-spacing\":\"0px\"},text:EECEE9agO,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r9urff\",\"data-framer-name\":\"Lottie wrapper\",layoutDependency:layoutDependency,layoutId:\"ENulhjg3x\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xi6uoy-container\",layoutDependency:layoutDependency,layoutId:\"AL12gb7OL-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"AL12gb7OL\",isForwardsDirection:true,layoutId:\"AL12gb7OL\",loop:true,pauseOnCanvas:false,playing:true,poster:\"Auto\",posterProgress:40,progress:0,speed:1,srcType:\"URL\",srcUrl:S8zhjw0PR,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(Io4r_BxZQ)},className:\"framer-1gfiw77\",layoutDependency:layoutDependency,layoutId:\"mKKs3zdbu\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{XSR0N0pvY:{borderBottomLeftRadius:radiusForCorner(AoSe8FdZu,3),borderBottomRightRadius:radiusForCorner(AoSe8FdZu,2),borderTopLeftRadius:radiusForCorner(AoSe8FdZu,0),borderTopRightRadius:radiusForCorner(AoSe8FdZu,1)}},...addPropertyOverrides({XSR0N0pvY:{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(Io4r_BxZQ)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-peQqt.framer-14tgm7z, .framer-peQqt .framer-14tgm7z { display: block; }\",\".framer-peQqt.framer-18yjn6j { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--lzenxa)) * 1px); height: min-content; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-peQqt .framer-19f9gi9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-peQqt .framer-cii3cw { align-content: var(--pnym8h); align-items: var(--pnym8h); display: flex; flex: none; flex-direction: var(--tdqgi7); flex-wrap: nowrap; gap: calc(max(0, var(--1hqjj2k)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-peQqt .framer-qndu3f, .framer-peQqt .framer-1hvr8fw { flex: var(--11hsdpe); height: auto; position: relative; white-space: pre-wrap; width: var(--11ivaq1); word-break: break-word; word-wrap: break-word; }\",\".framer-peQqt .framer-1r9urff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-peQqt .framer-1xi6uoy-container { aspect-ratio: 1.800327332242226 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 613px); position: relative; width: 100%; }\",\".framer-peQqt .framer-1gfiw77 { aspect-ratio: 1.800327332242226 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 111px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-peQqt.framer-18yjn6j, .framer-peQqt .framer-cii3cw, .framer-peQqt .framer-1r9urff { gap: 0px; } .framer-peQqt.framer-18yjn6j > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--lzenxa)) * 1px) / 2); margin-top: calc(calc(max(0, var(--lzenxa)) * 1px) / 2); } .framer-peQqt.framer-18yjn6j > :first-child, .framer-peQqt .framer-1r9urff > :first-child { margin-top: 0px; } .framer-peQqt.framer-18yjn6j > :last-child, .framer-peQqt .framer-1r9urff > :last-child { margin-bottom: 0px; } .framer-peQqt .framer-cii3cw > * { margin-bottom: var(--sqpznc); margin-left: var(--12fpjf7); margin-right: var(--12fpjf7); margin-top: var(--sqpznc); } .framer-peQqt .framer-cii3cw > :first-child { margin-left: 0px; margin-top: 0px; } .framer-peQqt .framer-cii3cw > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-peQqt .framer-1r9urff > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-peQqt.framer-v-1epppyl .framer-1gfiw77 { height: var(--framer-aspect-ratio-supported, 611px); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 840\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"XSR0N0pvY\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerVariables {\"S8zhjw0PR\":\"lottieURL\",\"Io4r_BxZQ\":\"image\",\"dDW855w7Z\":\"title\",\"W7umf6Pr9\":\"subtitle\",\"EECEE9agO\":\"description\",\"J4mrXnEqK\":\"direction\",\"bPvSsXoAI\":\"align\",\"In6rLm207\":\"gapText\",\"QoHwHn441\":\"gapAll\",\"AoSe8FdZu\":\"radiusImg\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerjt3PYQfrV=withCSS(Component,css,\"framer-peQqt\");export default Framerjt3PYQfrV;Framerjt3PYQfrV.displayName=\"FeatureCard (LG)\";Framerjt3PYQfrV.defaultProps={height:840,width:1100};addPropertyControls(Framerjt3PYQfrV,{variant:{options:[\"BICnt2qv9\",\"XSR0N0pvY\"],optionTitles:[\"With lottie\",\"With image\"],title:\"Variant\",type:ControlType.Enum},S8zhjw0PR:{defaultValue:\"https://cdn.lottielab.com/l/2UFkACPZs5ik8T.json\",placeholder:\"../example.json\",title:\"Lottie URL\",type:ControlType.String},Io4r_BxZQ:{title:\"Image\",type:ControlType.ResponsiveImage},dDW855w7Z:{defaultValue:\"Ask DinoAI\",displayTextArea:false,title:\"Title\",type:ControlType.String},W7umf6Pr9:{defaultValue:\"Write commits, fix SQL, write docs and tests, convert SQL to dbt\u2122\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},EECEE9agO:{defaultValue:\"Use DinoAI co-pilot to accelerate your analytics work. Build well tested, fully documented dbt\u2122 models from scratch, or SQL, or stored procedures.\",displayTextArea:false,title:\"Description\",type:ControlType.String},J4mrXnEqK:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},bPvSsXoAI:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum},In6rLm207:{defaultValue:32,min:0,title:\"Gap (text)\",type:ControlType.Number},QoHwHn441:{defaultValue:32,min:0,title:\"Gap (all)\",type:ControlType.Number},AoSe8FdZu:{defaultValue:\"16px\",title:\"Radius (img)\",type:ControlType.BorderRadius}});addFonts(Framerjt3PYQfrV,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LottieFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjt3PYQfrV\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"840\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerVariables\":\"{\\\"S8zhjw0PR\\\":\\\"lottieURL\\\",\\\"Io4r_BxZQ\\\":\\\"image\\\",\\\"dDW855w7Z\\\":\\\"title\\\",\\\"W7umf6Pr9\\\":\\\"subtitle\\\",\\\"EECEE9agO\\\":\\\"description\\\",\\\"J4mrXnEqK\\\":\\\"direction\\\",\\\"bPvSsXoAI\\\":\\\"align\\\",\\\"In6rLm207\\\":\\\"gapText\\\",\\\"QoHwHn441\\\":\\\"gapAll\\\",\\\"AoSe8FdZu\\\":\\\"radiusImg\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"XSR0N0pvY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jt3PYQfrV.map"],
  "mappings": "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",
  "names": ["CounterStyles", "applyGradient", "text", "gradientEnabled", "angle", "color1", "color2", "gradient", "p", "Counter", "props", "start", "end", "speed", "gapSize", "prefixEnabled", "prefixText", "prefixFont", "prefixColor", "prefixGradientEnabled", "prefixGradientAngle", "prefixGradientColor1", "prefixGradientColor2", "suffixEnabled", "suffixText", "suffixFont", "suffixColor", "suffixGradientEnabled", "suffixGradientAngle", "suffixGradientColor1", "suffixGradientColor2", "textGradientEnabled", "textGradientAngle", "textGradientColor1", "textGradientColor2", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "addPropertyControls", "ControlType", "LottieFonts", "getFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "radiusForCorner", "cornerIndex", "segments", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "align", "description", "direction", "gapAll", "gapText", "height", "id", "image", "lottieURL", "radiusImg", "subtitle", "title", "width", "props", "_ref", "_humanReadableEnumMap1_align", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableEnumMap_direction", "_ref6", "_ref7", "_ref8", "_ref9", "_humanReadableVariantMap_props_variant", "_ref10", "_ref11", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "S8zhjw0PR", "Io4r_BxZQ", "dDW855w7Z", "W7umf6Pr9", "EECEE9agO", "J4mrXnEqK", "bPvSsXoAI", "In6rLm207", "QoHwHn441", "AoSe8FdZu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Image2", "css", "Framerjt3PYQfrV", "withCSS", "jt3PYQfrV_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
