{"version":3,"file":"wbVEpQfZC.BQTH6PWD.mjs","names":["size","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","css","Phosphor","Stars"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js","https:/framerusercontent.com/modules/kcx5r0KyZKPhigLLbyof/gm4anczPQvl86Re513jD/CQiut1xng.js","https:/framerusercontent.com/modules/rMsFpS4MdAAaELCPG2xi/3YHEE7FIChJoxKRUQswZ/wbVEpQfZC.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.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 isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (ca23763)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vOKqZSvLO\",\"IeuUzsFnN\"];const serializationHash=\"framer-ItGj2\";const variantClassNames={IeuUzsFnN:\"framer-v-1gjwnho\",vOKqZSvLO:\"framer-v-1dujvpr\"};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={delay:0,duration:6,ease:[.44,0,.56,1],type:\"tween\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const transition2={damping:42,delay:.1,mass:4,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Animated - End\":\"IeuUzsFnN\",\"Animated - Start\":\"vOKqZSvLO\"};const getProps=({animated,height,id,visible,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CUWxF3qVJ:visible!==null&&visible!==void 0?visible:props.CUWxF3qVJ,jJDCdO7qI:(_ref=animated!==null&&animated!==void 0?animated:props.jJDCdO7qI)!==null&&_ref!==void 0?_ref:true,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"vOKqZSvLO\"};};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,CUWxF3qVJ,jJDCdO7qI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vOKqZSvLO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearad75ae=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IeuUzsFnN\"),100);});const onAppearfsq9lq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IeuUzsFnN\"),10);});useOnVariantChange(baseVariant,{default:onAppearad75ae,IeuUzsFnN:onAppearfsq9lq});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"IeuUzsFnN\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"IeuUzsFnN\")return false;return true;};const visible=equals(CUWxF3qVJ,jJDCdO7qI);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dujvpr\",className,classNames),\"data-framer-name\":\"Animated - Start\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vOKqZSvLO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({IeuUzsFnN:{\"data-framer-name\":\"Animated - End\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-117bige\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZVeG4fYPi\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z\" fill=\"var(--token-e0c3502e-ae37-4ae2-b96b-f55f153981fb, rgb(194, 163, 84)) /* {&quot;name&quot;:&quot;Icon&quot;} */\"></path></svg>',svgContentId:9756859140,withExternalLayout:true,...addPropertyOverrides({IeuUzsFnN:{svgContentId:8641476088}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vy6hb\",layoutDependency:layoutDependency,layoutId:\"EkvoVQjdO\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c75a7y\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NeDtQjASY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z M 12.249 5.594 L 9.783 7.746 C 9.538 7.959 9.431 8.29 9.505 8.606 L 10.246 11.812 L 7.453 10.117 C 7.176 9.948 6.827 9.948 6.549 10.117 L 3.759 11.812 L 4.495 8.608 C 4.569 8.292 4.462 7.962 4.218 7.749 L 1.75 5.597 L 1.75 5.593 L 5.001 5.311 C 5.324 5.283 5.606 5.078 5.731 4.778 L 7 1.755 L 8.269 4.778 C 8.394 5.078 8.676 5.283 8.999 5.312 L 12.25 5.593 L 12.25 5.596 Z\" fill=\"rgba(255, 255, 255, 0.2)\"></path></svg>',svgContentId:10870466273,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m6j3y6\",\"data-framer-name\":\"Frame_1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"LtSN6FC3V\",style:{opacity:0},svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4oqeks\",\"data-framer-name\":\"Frame_0\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"RPihvPjW5\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9fieq2\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cW_u7Fzx9\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z\" fill=\"var(--token-e0c3502e-ae37-4ae2-b96b-f55f153981fb, rgb(194, 163, 84)) /* {&quot;name&quot;:&quot;Icon&quot;} */\"></path></svg>',svgContentId:9756859140,withExternalLayout:true,...addPropertyOverrides({IeuUzsFnN:{svgContentId:8641476088}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13qj5ij\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XkaNND9EJ\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z\" fill=\"var(--token-e0c3502e-ae37-4ae2-b96b-f55f153981fb, rgb(194, 163, 84)) /* {&quot;name&quot;:&quot;Icon&quot;} */\"></path></svg>',svgContentId:9756859140,withExternalLayout:true,...addPropertyOverrides({IeuUzsFnN:{svgContentId:8641476088}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14vbaho\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Deo906dct\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z\" fill=\"var(--token-e0c3502e-ae37-4ae2-b96b-f55f153981fb, rgb(194, 163, 84)) /* {&quot;name&quot;:&quot;Icon&quot;} */\"></path></svg>',svgContentId:9756859140,withExternalLayout:true,...addPropertyOverrides({IeuUzsFnN:{svgContentId:8641476088}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4d078\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e36wbeklX\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z\" fill=\"var(--token-e0c3502e-ae37-4ae2-b96b-f55f153981fb, rgb(194, 163, 84)) /* {&quot;name&quot;:&quot;Icon&quot;} */\"></path></svg>',svgContentId:9756859140,withExternalLayout:true,...addPropertyOverrides({IeuUzsFnN:{svgContentId:8641476088}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1126649\",layoutDependency:layoutDependency,layoutId:\"XwIT5KTIE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-83qp1b\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UjWOGEpQ2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z M 12.249 5.594 L 9.783 7.746 C 9.538 7.959 9.431 8.29 9.505 8.606 L 10.246 11.812 L 7.453 10.117 C 7.176 9.948 6.827 9.948 6.549 10.117 L 3.759 11.812 L 4.495 8.608 C 4.569 8.292 4.462 7.962 4.218 7.749 L 1.75 5.597 L 1.75 5.593 L 5.001 5.311 C 5.324 5.283 5.606 5.078 5.731 4.778 L 7 1.755 L 8.269 4.778 C 8.394 5.078 8.676 5.283 8.999 5.312 L 12.25 5.593 L 12.25 5.596 Z\" fill=\"rgba(255, 255, 255, 0.2)\"></path></svg>',svgContentId:9783317876,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i5pmq9\",\"data-framer-name\":\"Frame_1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"SpovINkD_\",style:{opacity:0},svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-njap3l\",\"data-framer-name\":\"Frame_0\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"GS25KomWX\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i89xmj\",layoutDependency:layoutDependency,layoutId:\"V_5H0By0k\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pffh1y\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"b3VnP_RYy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z M 12.249 5.594 L 9.783 7.746 C 9.538 7.959 9.431 8.29 9.505 8.606 L 10.246 11.812 L 7.453 10.117 C 7.176 9.948 6.827 9.948 6.549 10.117 L 3.759 11.812 L 4.495 8.608 C 4.569 8.292 4.462 7.962 4.218 7.749 L 1.75 5.597 L 1.75 5.593 L 5.001 5.311 C 5.324 5.283 5.606 5.078 5.731 4.778 L 7 1.755 L 8.269 4.778 C 8.394 5.078 8.676 5.283 8.999 5.312 L 12.25 5.593 L 12.25 5.596 Z\" fill=\"rgba(255, 255, 255, 0.2)\"></path></svg>',svgContentId:11786683057,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lw4o7y\",\"data-framer-name\":\"Frame_1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"kCEbGKuYF\",style:{opacity:0},svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-k88qtr\",\"data-framer-name\":\"Frame_0\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"cJ9TQgQbq\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16n5bi\",layoutDependency:layoutDependency,layoutId:\"lDFd6i0Eu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o52y25\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QK_ISdHss\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z M 12.249 5.594 L 9.783 7.746 C 9.538 7.959 9.431 8.29 9.505 8.606 L 10.246 11.812 L 7.453 10.117 C 7.176 9.948 6.827 9.948 6.549 10.117 L 3.759 11.812 L 4.495 8.608 C 4.569 8.292 4.462 7.962 4.218 7.749 L 1.75 5.597 L 1.75 5.593 L 5.001 5.311 C 5.324 5.283 5.606 5.078 5.731 4.778 L 7 1.755 L 8.269 4.778 C 8.394 5.078 8.676 5.283 8.999 5.312 L 12.25 5.593 L 12.25 5.596 Z\" fill=\"rgba(255, 255, 255, 0.2)\"></path></svg>',svgContentId:12169099962,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iwmmvw\",\"data-framer-name\":\"Frame_1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"wQZL1RhOc\",style:{opacity:0},svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-65wrca\",\"data-framer-name\":\"Frame_0\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"Cucnao7F1\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cp68xb\",layoutDependency:layoutDependency,layoutId:\"MWhiYhM4E\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-oj9viq\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dtf59BEaD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 13.081 5.321 C 12.973 4.987 12.676 4.75 12.326 4.719 L 9.078 4.439 L 7.805 1.411 C 7.67 1.086 7.352 0.874 7 0.874 C 6.648 0.874 6.33 1.086 6.195 1.411 L 4.926 4.439 L 1.674 4.721 C 1.323 4.75 1.024 4.987 0.915 5.322 C 0.806 5.657 0.909 6.025 1.176 6.255 L 3.643 8.411 L 2.904 11.613 C 2.824 11.955 2.957 12.312 3.241 12.519 C 3.526 12.726 3.906 12.742 4.207 12.561 L 6.996 10.865 L 9.791 12.561 C 10.092 12.742 10.473 12.726 10.757 12.519 C 11.042 12.312 11.175 11.955 11.095 11.613 L 10.356 8.408 L 12.823 6.255 C 13.089 6.024 13.191 5.656 13.081 5.321 Z M 12.249 5.594 L 9.783 7.746 C 9.538 7.959 9.431 8.29 9.505 8.606 L 10.246 11.812 L 7.453 10.117 C 7.176 9.948 6.827 9.948 6.549 10.117 L 3.759 11.812 L 4.495 8.608 C 4.569 8.292 4.462 7.962 4.218 7.749 L 1.75 5.597 L 1.75 5.593 L 5.001 5.311 C 5.324 5.283 5.606 5.078 5.731 4.778 L 7 1.755 L 8.269 4.778 C 8.394 5.078 8.676 5.283 8.999 5.312 L 12.25 5.593 L 12.25 5.596 Z\" fill=\"rgba(255, 255, 255, 0.2)\"></path></svg>',svgContentId:11199929268,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wl2a3n\",\"data-framer-name\":\"Frame_1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"iKlQK8U4O\",style:{opacity:0},svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1zsp\",\"data-framer-name\":\"Frame_0\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"MM4DpEHUe\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.244 11.214a2 2 0 0 1 .656.947 2 2 0 0 1-.59 2.137l-5.187 4.526a1 1 0 0 0-.317.978l1.554 6.74a2 2 0 0 1-2.98 2.168l-5.87-3.56a1 1 0 0 0-1.037 0l-5.856 3.56a2 2 0 0 1-2.98-2.167l1.555-6.734a1 1 0 0 0-.316-.978l-5.188-4.533a2 2 0 0 1 1.139-3.508l6.83-.591a1 1 0 0 0 .836-.61l2.667-6.363a1.994 1.994 0 0 1 3.68 0l2.676 6.364a1 1 0 0 0 .836.608l6.822.588a2 2 0 0 1 1.07.428ZM16 4.014l.002.001v-.002H16Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ItGj2.framer-75za7h, .framer-ItGj2 .framer-75za7h { display: block; }\",\".framer-ItGj2.framer-1dujvpr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ItGj2 .framer-117bige, .framer-ItGj2 .framer-9fieq2, .framer-ItGj2 .framer-13qj5ij, .framer-ItGj2 .framer-14vbaho, .framer-ItGj2 .framer-1d4d078 { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-ItGj2 .framer-1vy6hb, .framer-ItGj2 .framer-1126649, .framer-ItGj2 .framer-1i89xmj, .framer-ItGj2 .framer-16n5bi, .framer-ItGj2 .framer-cp68xb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: visible; position: relative; width: 14px; }\",\".framer-ItGj2 .framer-c75a7y, .framer-ItGj2 .framer-83qp1b, .framer-ItGj2 .framer-njap3l, .framer-ItGj2 .framer-1pffh1y, .framer-ItGj2 .framer-k88qtr, .framer-ItGj2 .framer-1o52y25, .framer-ItGj2 .framer-65wrca, .framer-ItGj2 .framer-oj9viq, .framer-ItGj2 .framer-1t1zsp { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-ItGj2 .framer-m6j3y6, .framer-ItGj2 .framer-i5pmq9, .framer-ItGj2 .framer-lw4o7y, .framer-ItGj2 .framer-iwmmvw, .framer-ItGj2 .framer-wl2a3n { bottom: 5px; flex: none; left: 5px; position: absolute; right: 5px; top: 5px; }\",\".framer-ItGj2 .framer-4oqeks { flex: none; height: 15px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 15px / 2); width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ItGj2.framer-1dujvpr { gap: 0px; } .framer-ItGj2.framer-1dujvpr > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-ItGj2.framer-1dujvpr > :first-child { margin-left: 0px; } .framer-ItGj2.framer-1dujvpr > :last-child { margin-right: 0px; } }\",\".framer-ItGj2.framer-v-1gjwnho .framer-117bige { order: 1; }\",\".framer-ItGj2.framer-v-1gjwnho .framer-9fieq2 { order: 2; }\",\".framer-ItGj2.framer-v-1gjwnho .framer-13qj5ij { order: 3; }\",\".framer-ItGj2.framer-v-1gjwnho .framer-14vbaho { order: 4; }\",\".framer-ItGj2.framer-v-1gjwnho .framer-1d4d078 { order: 5; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IeuUzsFnN\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CUWxF3qVJ\":\"visible\",\"jJDCdO7qI\":\"animated\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCQiut1xng=withCSS(Component,css,\"framer-ItGj2\");export default FramerCQiut1xng;FramerCQiut1xng.displayName=\"Stars\";FramerCQiut1xng.defaultProps={height:14,width:74};addPropertyControls(FramerCQiut1xng,{variant:{options:[\"vOKqZSvLO\",\"IeuUzsFnN\"],optionTitles:[\"Animated - Start\",\"Animated - End\"],title:\"Variant\",type:ControlType.Enum},CUWxF3qVJ:{defaultValue:false,title:\"Visible\",type:ControlType.Boolean},jJDCdO7qI:{defaultValue:true,title:\"Animated\",type:ControlType.Boolean}});addFonts(FramerCQiut1xng,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCQiut1xng\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"74\",\"framerIntrinsicHeight\":\"14\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IeuUzsFnN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"CUWxF3qVJ\\\":\\\"visible\\\",\\\"jJDCdO7qI\\\":\\\"animated\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CQiut1xng.map","// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Stars from\"https://framerusercontent.com/modules/kcx5r0KyZKPhigLLbyof/gm4anczPQvl86Re513jD/CQiut1xng.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const StarsFonts=getFonts(Stars);const serializationHash=\"framer-x8MXd\";const variantClassNames={Q_LhYUANi:\"framer-v-1pxodxf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({client,height,id,text,width,...props})=>{return{...props,oRy6t91PU:client??props.oRy6t91PU??\"Hector Blanchet\",VePkjXSEB:text??props.VePkjXSEB??'\"Automatrix Agency has been amazing for our direct lending company! In just 7 weeks, they helped us generate over 700+ leads and get 68 deals in the pipeline. We got 7 purchases, 12 DSCRs, and 49 other deals that vary from hard money and commercial deals. The biggest recent transaction we got is a 67 million commercial and 5.4 million hard money loan out of West Hollywood. They also set up a recruitment funnel that helped us hire 5 new ready to go loan officers within the first week of our campaign. They\\'re hands down the best marketing agency for any mortgage broker or direct lender!\"'};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VePkjXSEB,oRy6t91PU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Q_LhYUANi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pxodxf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Q_LhYUANi\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'})}),className:\"framer-1vohu1t\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ny_8YQXZ8\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VePkjXSEB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19q7m3w\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"cgm0W2VU5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10010kc\",\"data-framer-name\":\"Icon Circle\",layoutDependency:layoutDependency,layoutId:\"jpecSZHXs\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb13wj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"O7dlj_cgE\",style:{background:\"radial-gradient(126% 86% at 84.8% 0%, rgb(71, 71, 71) 0%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,boxShadow:\"inset 0px 0px 15px 0px rgba(255, 255, 255, 0.1), inset 0px 2px 4px 0px rgba(255, 255, 255, 0.35)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a6sns5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WBqbkRoB8-container\",nodeId:\"WBqbkRoB8\",rendersWithMotion:true,scopeId:\"wbVEpQfZC\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(153, 153, 153)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"WBqbkRoB8\",layoutId:\"WBqbkRoB8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6f5yvb\",\"data-framer-name\":\"Color\",layoutDependency:layoutDependency,layoutId:\"Gt9cmgw0R\",style:{background:\"linear-gradient(180deg, rgb(68, 34, 100) 0%, rgb(153, 58, 48) 100%)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b2gbjo\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"VSQZGNRdl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-23176b4e-623b-4127-ae47-b97ef3131bac, rgb(153, 58, 48)))\"},children:\"Hector Blanchet\"})}),className:\"framer-6oot2d\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"XiziKWrdo\",style:{\"--extracted-r6o4lv\":\"var(--token-23176b4e-623b-4127-ae47-b97ef3131bac, rgb(153, 58, 48))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oRy6t91PU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:(componentViewport?.y||0)+0+(((componentViewport?.height||450)-0-196)/2+112+24)+-33+0+112,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8p8ya1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SIh5ubUsj-container\",nodeId:\"SIh5ubUsj\",rendersWithMotion:true,scopeId:\"wbVEpQfZC\",children:/*#__PURE__*/_jsx(Stars,{CUWxF3qVJ:false,height:\"100%\",id:\"SIh5ubUsj\",jJDCdO7qI:true,layoutId:\"SIh5ubUsj\",variant:\"vOKqZSvLO\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x8MXd.framer-zaquej, .framer-x8MXd .framer-zaquej { display: block; }\",\".framer-x8MXd.framer-1pxodxf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 450px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 351px; will-change: var(--framer-will-change-override, transform); }\",\".framer-x8MXd .framer-1vohu1t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 303px; word-break: break-word; word-wrap: break-word; }\",\".framer-x8MXd .framer-19q7m3w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 303px; }\",\".framer-x8MXd .framer-10010kc { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-x8MXd .framer-lb13wj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-x8MXd .framer-a6sns5-container { flex: none; height: 35px; position: relative; width: 35px; z-index: 3; }\",\".framer-x8MXd .framer-6f5yvb { flex: none; height: 100%; left: 0px; mix-blend-mode: overlay; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-x8MXd .framer-1b2gbjo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-x8MXd .framer-6oot2d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x8MXd .framer-8p8ya1-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x8MXd.framer-1pxodxf, .framer-x8MXd .framer-19q7m3w, .framer-x8MXd .framer-10010kc, .framer-x8MXd .framer-lb13wj, .framer-x8MXd .framer-1b2gbjo { gap: 0px; } .framer-x8MXd.framer-1pxodxf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x8MXd.framer-1pxodxf > :first-child, .framer-x8MXd .framer-1b2gbjo > :first-child { margin-top: 0px; } .framer-x8MXd.framer-1pxodxf > :last-child, .framer-x8MXd .framer-1b2gbjo > :last-child { margin-bottom: 0px; } .framer-x8MXd .framer-19q7m3w > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-x8MXd .framer-19q7m3w > :first-child, .framer-x8MXd .framer-10010kc > :first-child, .framer-x8MXd .framer-lb13wj > :first-child { margin-left: 0px; } .framer-x8MXd .framer-19q7m3w > :last-child, .framer-x8MXd .framer-10010kc > :last-child, .framer-x8MXd .framer-lb13wj > :last-child { margin-right: 0px; } .framer-x8MXd .framer-10010kc > *, .framer-x8MXd .framer-lb13wj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x8MXd .framer-1b2gbjo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-x8MXd[data-border=\"true\"]::after, .framer-x8MXd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VePkjXSEB\":\"text\",\"oRy6t91PU\":\"client\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwbVEpQfZC=withCSS(Component,css,\"framer-x8MXd\");export default FramerwbVEpQfZC;FramerwbVEpQfZC.displayName=\"Cards/Written Testimonial 3\";FramerwbVEpQfZC.defaultProps={height:450,width:351};addPropertyControls(FramerwbVEpQfZC,{VePkjXSEB:{defaultValue:'\"Automatrix Agency has been amazing for our direct lending company! In just 7 weeks, they helped us generate over 700+ leads and get 68 deals in the pipeline. We got 7 purchases, 12 DSCRs, and 49 other deals that vary from hard money and commercial deals. The biggest recent transaction we got is a 67 million commercial and 5.4 million hard money loan out of West Hollywood. They also set up a recruitment funnel that helped us hire 5 new ready to go loan officers within the first week of our campaign. They\\'re hands down the best marketing agency for any mortgage broker or direct lender!\"',displayTextArea:false,title:\"Text\",type:ControlType.String},oRy6t91PU:{defaultValue:\"Hector Blanchet\",displayTextArea:false,title:\"Client\",type:ControlType.String}});addFonts(FramerwbVEpQfZC,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts,...StarsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwbVEpQfZC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"351\",\"framerIntrinsicHeight\":\"450\",\"framerVariables\":\"{\\\"VePkjXSEB\\\":\\\"text\\\",\\\"oRy6t91PU\\\":\\\"client\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wbVEpQfZC.map"],"mappings":"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"}