{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/juL172VDvLdW0lingLP1/nEjjaXouRwSYtFmt4b1u/DG01wTbvx.js", "ssg:https://framerusercontent.com/modules/7ROklAyxWCpoyiNYACOD/874ubpqgOEuffZJst1CK/nzjVYFF5B.js", "ssg:https://framerusercontent.com/modules/vCmcW1x2g53LVAmWRlk9/sqKslnpJJWu0Utoy7Eu3/KtqwT8TCS.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},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-HLmnI\";const variantClassNames={pbNvdxdCl:\"framer-v-15y100i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({clientName,designation,height,id,image,paragraph,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,CNGqNdxNO:(_ref=clientName!==null&&clientName!==void 0?clientName:props.CNGqNdxNO)!==null&&_ref!==void 0?_ref:\"Kevin Martin\",dxMw3Jo4p:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.dxMw3Jo4p)!==null&&_ref1!==void 0?_ref1:\"A game-changer for my business. Thank you for your expertise! The guidance and strategies provided by this team have transformed my business.\",syYvMtRwn:(_ref2=image!==null&&image!==void 0?image:props.syYvMtRwn)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/7DPBypWpr9BHwtrrr9vXcTmQ.png\"},xUO4IgzT_:(_ref3=designation!==null&&designation!==void 0?designation:props.xUO4IgzT_)!==null&&_ref3!==void 0?_ref3:\"Founder, TechMatter\"};};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,syYvMtRwn,CNGqNdxNO,xUO4IgzT_,dxMw3Jo4p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pbNvdxdCl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15y100i\",className,classNames),\"data-framer-name\":\"Single Testimonial\",layoutDependency:layoutDependency,layoutId:\"pbNvdxdCl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-002a17b9-2a0d-4190-b75f-ecb70135f80d, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-132ygg3\",\"data-framer-name\":\"Client-info\",layoutDependency:layoutDependency,layoutId:\"IIcfN3avQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yi6mal\",\"data-framer-name\":\"Client-image\",layoutDependency:layoutDependency,layoutId:\"g14r8Afjo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+107+0),pixelHeight:50,pixelWidth:50,sizes:\"50px\",...toResponsiveImage(syYvMtRwn)},className:\"framer-15davux\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"WPPTDfCPG\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rr6ywi\",\"data-framer-name\":\"Client-details\",layoutDependency:layoutDependency,layoutId:\"WN3kC4MTG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28)))\"},children:\"Kevin Martin\"})}),className:\"framer-1jkbzg3\",fonts:[\"FS;Clash Grotesk-semibold\"],layoutDependency:layoutDependency,layoutId:\"ncubS0YOK\",style:{\"--extracted-r6o4lv\":\"var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:CNGqNdxNO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28)))\"},children:\"Founder, TechMatter\"})}),className:\"framer-10idfoj\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"cRo4uA6cX\",style:{\"--extracted-r6o4lv\":\"var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:xUO4IgzT_,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28)))\"},children:\"\u201COur visual designer lets you drag and drop your own way to their custom apps for both of keep desktop, mobile & tab. Creating your account to our website and use it for your required time and we always ready to give you support all the time.\u201D \"})}),className:\"framer-n9lmpf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mbsC0d8eu\",style:{\"--extracted-r6o4lv\":\"var(--token-436ca7b4-bcad-4912-a905-3aedc31c3725, rgb(30, 26, 28))\",\"--framer-paragraph-spacing\":\"0px\"},text:dxMw3Jo4p,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HLmnI.framer-1aqf4az, .framer-HLmnI .framer-1aqf4az { display: block; }\",\".framer-HLmnI.framer-15y100i { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 24px; position: relative; width: 430px; }\",\".framer-HLmnI .framer-132ygg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HLmnI .framer-1yi6mal { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HLmnI .framer-15davux { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-HLmnI .framer-1rr6ywi { align-content: center; align-items: center; 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-HLmnI .framer-1jkbzg3, .framer-HLmnI .framer-10idfoj, .framer-HLmnI .framer-n9lmpf { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HLmnI.framer-15y100i, .framer-HLmnI .framer-132ygg3, .framer-HLmnI .framer-1yi6mal, .framer-HLmnI .framer-1rr6ywi { gap: 0px; } .framer-HLmnI.framer-15y100i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HLmnI.framer-15y100i > :first-child, .framer-HLmnI .framer-1rr6ywi > :first-child { margin-top: 0px; } .framer-HLmnI.framer-15y100i > :last-child, .framer-HLmnI .framer-1rr6ywi > :last-child { margin-bottom: 0px; } .framer-HLmnI .framer-132ygg3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-HLmnI .framer-132ygg3 > :first-child, .framer-HLmnI .framer-1yi6mal > :first-child { margin-left: 0px; } .framer-HLmnI .framer-132ygg3 > :last-child, .framer-HLmnI .framer-1yi6mal > :last-child { margin-right: 0px; } .framer-HLmnI .framer-1yi6mal > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HLmnI .framer-1rr6ywi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 247\n * @framerIntrinsicWidth 430\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"syYvMtRwn\":\"image\",\"CNGqNdxNO\":\"clientName\",\"xUO4IgzT_\":\"designation\",\"dxMw3Jo4p\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDG01wTbvx=withCSS(Component,css,\"framer-HLmnI\");export default FramerDG01wTbvx;FramerDG01wTbvx.displayName=\"Review Card\";FramerDG01wTbvx.defaultProps={height:247,width:430};addPropertyControls(FramerDG01wTbvx,{syYvMtRwn:{__defaultAssetReference:\"data:framer/asset-reference,7DPBypWpr9BHwtrrr9vXcTmQ.png?originalFilename=Image+%2851%29.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},CNGqNdxNO:{defaultValue:\"Kevin Martin\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},xUO4IgzT_:{defaultValue:\"Founder, TechMatter\",displayTextArea:false,title:\"Designation\",type:ControlType.String},dxMw3Jo4p:{defaultValue:\"A game-changer for my business. Thank you for your expertise! The guidance and strategies provided by this team have transformed my business.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String}});addFonts(FramerDG01wTbvx,[{explicitInter:true,fonts:[{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MKEEQN57GWBZOSYWCRODNJOOZNPLMAKN/5SPTSZGHEACWWLF34DQ4WAA4OGU6PQIF/KN7DX4F6PXB74R6L2K2Y4NH3CB7FC53Q.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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDG01wTbvx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"syYvMtRwn\\\":\\\"image\\\",\\\"CNGqNdxNO\\\":\\\"clientName\\\",\\\"xUO4IgzT_\\\":\\\"designation\\\",\\\"dxMw3Jo4p\\\":\\\"paragraph\\\"}\",\"framerIntrinsicHeight\":\"247\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"430\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DG01wTbvx.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import ReviewCard from\"https://framerusercontent.com/modules/juL172VDvLdW0lingLP1/nEjjaXouRwSYtFmt4b1u/DG01wTbvx.js\";const ReviewCardFonts=getFonts(ReviewCard);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"IE9b8xUzI\",\"qiNeqa483\",\"LcoV6mdpH\"];const serializationHash=\"framer-Nq7rl\";const variantClassNames={IE9b8xUzI:\"framer-v-1bwzsxt\",LcoV6mdpH:\"framer-v-1y03af3\",qiNeqa483:\"framer-v-13w0q00\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"IE9b8xUzI\",Phone:\"LcoV6mdpH\",Tablet:\"qiNeqa483\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"IE9b8xUzI\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IE9b8xUzI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LcoV6mdpH\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"LcoV6mdpH\")return true;return false;};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-1bwzsxt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IE9b8xUzI\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({LcoV6mdpH:{\"data-framer-name\":\"Phone\"},qiNeqa483:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4wh6by-container\",\"data-framer-name\":\"Ticker Left slide\",layoutDependency:layoutDependency,layoutId:\"v4zFzlkqt-container\",name:\"Ticker Left slide\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:.1,fadeContent:true,fadeInset:1,fadeWidth:35,overflow:false},gap:24,height:\"100%\",hoverFactor:.6,id:\"v4zFzlkqt\",layoutId:\"v4zFzlkqt\",name:\"Ticker Left slide\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-193eu3h-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"ySKQsnlUP-container\",name:\"3\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Maria P.\",dxMw3Jo4p:\"By helping this project, I became more aware of the ageism behaviors we maintain daily. I'm now aware of the small gestures we can have to reduce ageism. And I became aware of several problems that society has against people's age, either because they are too young or too old. I was able to grow professionally and personally. I met lovely and generous people.\",height:\"100%\",id:\"ySKQsnlUP\",layoutId:\"ySKQsnlUP\",name:\"3\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg\",srcSet:\"https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg 789w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Marketing, Changing the Narrative\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16txb6f-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"C1iT9EZtN-container\",name:\"2\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Hiba B.\",dxMw3Jo4p:\"It was a pleasure to work with techxtramile. My skills were enhanced by working with a group of talented and enthusiastic graphic designers. Everyone was encouraging and supportive. As the graphic design lead encouraged me to work in a team and honed my leadership skills.\",height:\"100%\",id:\"C1iT9EZtN\",layoutId:\"C1iT9EZtN\",name:\"2\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg\",srcSet:\"https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg 629w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Graphic Design, TechXtramile\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h8rm6u-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"QMVUa81mZ-container\",name:\"4\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Matteo M.\",dxMw3Jo4p:\"The benefits of joining the project as a volunteer has greatly surpassed my expectations. Dedicating my time and capabilities towards a worthwhile cause has increased my fulfilment and my confidence. The project has given me a fantastic opportunity to learn even more and share my knowledge with extremely motivated and caring individuals.\",height:\"100%\",id:\"QMVUa81mZ\",layoutId:\"QMVUa81mZ\",name:\"4\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg\",srcSet:\"https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg 640w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Marketing, Jail Time Records\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cjkitl-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"ic3AXRg0d-container\",name:\"1\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Franka M.\",dxMw3Jo4p:\"I truly had an amazing experience volunteering for Faircado. Probably the best proof would be the fact I turned down an offer from one of the biggest start-up's in Germany to work with them and try making an actual change. Very excited to make faircado big!\",height:\"100%\",id:\"ic3AXRg0d\",layoutId:\"ic3AXRg0d\",name:\"1\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/5fqrnHdRh0r3jE1sCEozNLwXRlI.jpg\"},\"\"),width:\"100%\",xUO4IgzT_:\"e-Commerce, Faircado\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgkck6-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"wJy0PNn4x-container\",name:\"5\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Tomas G.\",dxMw3Jo4p:\"It has been rewarding to work on a simple project that can have such an impact. Knowing that Dione at Jail Time Records has more flexibility in her website, the desired functionality and saves money when they have limited funds is gratifying.\",height:\"100%\",id:\"wJy0PNn4x\",layoutId:\"wJy0PNn4x\",name:\"5\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/yNpmUlqZiq854hviseHsjfuBCA.jpeg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Web Developer, Jail Time Records\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ez6ux-container\",\"data-framer-name\":\"Ticker Right slide\",layoutDependency:layoutDependency,layoutId:\"tCFBKy4Iz-container\",name:\"Ticker Right slide\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:.1,fadeContent:true,fadeInset:1,fadeWidth:35,overflow:false},gap:24,height:\"100%\",hoverFactor:.6,id:\"tCFBKy4Iz\",layoutId:\"tCFBKy4Iz\",name:\"Ticker Right slide\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12iihhy-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"vyFMYXbso-container\",name:\"6\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Miracle E.\",dxMw3Jo4p:\"I used my skill to help revamp the organization's website and other issues encountered during the process of the project. This experience really taught me how working as a group should be and made me a better collaborator.\",height:\"100%\",id:\"vyFMYXbso\",layoutId:\"vyFMYXbso\",name:\"6\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/fX2GeQYTmTb2XCJYLNsNSVyBs.jpeg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Developer, TechXtramile\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ey587u-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"Sq8AieKGy-container\",name:\"7\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Sophie S.\",dxMw3Jo4p:\"I have loved my time with TripDoodler! As an American working with a Danish company, it's been lovely stepping into a new work culture and getting to see how they prioritize and navigate the business. It was super valuable working so closely with the CEO and learning more about the organization.\",height:\"100%\",id:\"Sq8AieKGy\",layoutId:\"Sq8AieKGy\",name:\"7\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/bpedxlWpUFsvsSPPBFzHOvTvLo.jpeg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Copywriting, TripDoodler\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9pd3mq-container\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"HslGNjyLI-container\",name:\"8\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Stephanie L.\",dxMw3Jo4p:\"It has been immensely rewarding connecting with other volunteers who share my passion for sustainability and improving the lives of marginalized communities! Despite our diverse backgrounds across academia, commerce and startups, I\u2019ve found exchanging ideas and understanding different perspectives in our team meetings deeply enjoyable.\",height:\"100%\",id:\"HslGNjyLI\",layoutId:\"HslGNjyLI\",name:\"8\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/yGMvHBFgTXJTYkUscQqLgdMSbc.jpg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Market Analysis, Katex Power\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14phw4-container\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"IBuIiGdAu-container\",name:\"9\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Zahra S.\",dxMw3Jo4p:\"It has been a rewarding experience. The team is wonderful to work with and are supportive and have granted me opportunities to learn and excel. I have gained valuable experience and a love and passion for the charity and the desire to see it thrive.\",height:\"100%\",id:\"IBuIiGdAu\",layoutId:\"IBuIiGdAu\",name:\"9\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/MmNLkobjftaQVTWKySa1G1IgNs.jpeg\",srcSet:\"https://framerusercontent.com/images/MmNLkobjftaQVTWKySa1G1IgNs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MmNLkobjftaQVTWKySa1G1IgNs.jpeg 640w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Research, The Light and Hope Initiative\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"430px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10fj0fc-container\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"xsbtXDe1r-container\",name:\"10\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Kadeen W.\",dxMw3Jo4p:\"Volunteering on the project has been a great experience. I've collaborated with people all over the world, to bring access to high-demand tech skills, and facilitate professional growth for people in our communities who often have fewer, more expensive pathways to attaining these skills. It's been rewarding, and I've grown so much as a professional, and a person.\",height:\"100%\",id:\"xsbtXDe1r\",layoutId:\"xsbtXDe1r\",name:\"10\",style:{height:\"100%\",width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/uTVGU7sHK9DMzTjNxTwja6UYURs.jpeg\",srcSet:\"https://framerusercontent.com/images/uTVGU7sHK9DMzTjNxTwja6UYURs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/uTVGU7sHK9DMzTjNxTwja6UYURs.jpeg 640w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Project Management, TechMatter\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5k256j\",layoutDependency:layoutDependency,layoutId:\"vdJRJSJNv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,...addPropertyOverrides({LcoV6mdpH:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1980)-0-1275)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vb1lc1-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"IRW7V8mrW-container\",name:\"1\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Franka Martinovi\u0107\",dxMw3Jo4p:\"I truly had an amazing experience volunteering for Faircado. Probably the best proof would be the fact I turned down an offer from one of the biggest start-up's in Germany to work with them and try making an actual change. Very excited to make faircado big!\",height:\"100%\",id:\"IRW7V8mrW\",layoutId:\"IRW7V8mrW\",name:\"1\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/5fqrnHdRh0r3jE1sCEozNLwXRlI.jpg\"},\"\"),width:\"100%\",xUO4IgzT_:\"e-Commerce, Faircado\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,...addPropertyOverrides({LcoV6mdpH:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1980)-0-1275)/2+0+0)+0+257}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-migrnc-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"beaXcOZE6-container\",name:\"2\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Hiba Bashir\",dxMw3Jo4p:\"It was a pleasure to work with techxtramile. My skills were enhanced by working with a group of talented and enthusiastic graphic designers. Everyone was encouraging and supportive. As the graphic design lead encouraged me to work in a team and honed my leadership skills.\",height:\"100%\",id:\"beaXcOZE6\",layoutId:\"beaXcOZE6\",name:\"2\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg\",srcSet:\"https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mJ0i8Eck1s3wFyeRqO6qQaVC5E.jpg 629w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Graphic Design, TechXtramile\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,...addPropertyOverrides({LcoV6mdpH:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1980)-0-1275)/2+0+0)+0+514}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-foptj4-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"ao7EIAbwQ-container\",name:\"3\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Maria Isabel Caldeira Pinto\",dxMw3Jo4p:\"By helping this project, I became more aware of the ageism behaviors we maintain daily. I'm now aware of the small gestures we can have to reduce ageism. And I became aware of several problems that society has against people's age, either because they are too young or too old. I was able to grow professionally and personally. I met lovely and generous people.\",height:\"100%\",id:\"ao7EIAbwQ\",layoutId:\"ao7EIAbwQ\",name:\"3\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg\",srcSet:\"https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/rE41YoYHuPt8MEnR5yhpqCAZMYo.jpeg 789w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Marketing, Changing the Narrative\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6enxfj-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"PXOmaOSfN-container\",name:\"4\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Matteo Magariello\",dxMw3Jo4p:\"The benefits of joining the project as a volunteer has greatly surpassed my expectations. Dedicating my time and capabilities towards a worthwhile cause has increased my fulfilment and my confidence. The project has given me a fantastic opportunity to learn even more and share my knowledge with extremely motivated and caring individuals.\",height:\"100%\",id:\"PXOmaOSfN\",layoutId:\"PXOmaOSfN\",name:\"4\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg\",srcSet:\"https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7h9GQsXjiqbnsDwfOqNmrpLyP6c.jpeg 640w\"},\"\"),width:\"100%\",xUO4IgzT_:\"Marketing, Jail Time Records\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-seqx34-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"tAIc3aW3v-container\",name:\"5\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Tomas Gwynbleidd\",dxMw3Jo4p:\"It has been rewarding to work on a simple project that can have such an impact. Knowing that Dione at Jail Time Records has more flexibility in her website, the desired functionality and saves money when they have limited funds is gratifying.\",height:\"100%\",id:\"tAIc3aW3v\",layoutId:\"tAIc3aW3v\",name:\"5\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/yNpmUlqZiq854hviseHsjfuBCA.jpeg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Web Developer, Jail Time Records\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,...addPropertyOverrides({LcoV6mdpH:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1980)-0-1275)/2+0+0)+0+771}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9996va-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"oabQMbkD1-container\",name:\"7\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Sophie Silcox\",dxMw3Jo4p:\"I have loved my time with TripDoodler! As an American working with a Danish company, it's been lovely stepping into a new work culture and getting to see how they prioritize and navigate the business. It was super valuable working so closely with the CEO and learning more about the organization.\",height:\"100%\",id:\"oabQMbkD1\",layoutId:\"oabQMbkD1\",name:\"7\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/bpedxlWpUFsvsSPPBFzHOvTvLo.jpeg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Copywriting, TripDoodler\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,...addPropertyOverrides({LcoV6mdpH:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1980)-0-1275)/2+0+0)+0+1028}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pyych9-container\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"zBfRmnS46-container\",name:\"8\",children:/*#__PURE__*/_jsx(ReviewCard,{CNGqNdxNO:\"Stephanie Leung\",dxMw3Jo4p:\"It has been immensely rewarding connecting with other volunteers who share my passion for sustainability and improving the lives of marginalized communities! Despite our diverse backgrounds across academia, commerce and startups, I\u2019ve found exchanging ideas and understanding different perspectives in our team meetings deeply enjoyable.\",height:\"100%\",id:\"zBfRmnS46\",layoutId:\"zBfRmnS46\",name:\"8\",style:{width:\"100%\"},syYvMtRwn:addImageAlt({src:\"https://framerusercontent.com/images/yGMvHBFgTXJTYkUscQqLgdMSbc.jpg\"},\"\"),width:\"100%\",xUO4IgzT_:\"Market Analysis, Katex Power\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Nq7rl.framer-rudj1i, .framer-Nq7rl .framer-rudj1i { display: block; }\",\".framer-Nq7rl.framer-1bwzsxt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Nq7rl .framer-4wh6by-container, .framer-Nq7rl .framer-10ez6ux-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Nq7rl .framer-193eu3h-container, .framer-Nq7rl .framer-16txb6f-container, .framer-Nq7rl .framer-h8rm6u-container, .framer-Nq7rl .framer-1cjkitl-container, .framer-Nq7rl .framer-fgkck6-container, .framer-Nq7rl .framer-12iihhy-container, .framer-Nq7rl .framer-1ey587u-container, .framer-Nq7rl .framer-9pd3mq-container, .framer-Nq7rl .framer-14phw4-container, .framer-Nq7rl .framer-10fj0fc-container { height: 400px; position: relative; width: 430px; }\",\".framer-Nq7rl .framer-5k256j { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Nq7rl .framer-1vb1lc1-container, .framer-Nq7rl .framer-migrnc-container, .framer-Nq7rl .framer-foptj4-container, .framer-Nq7rl .framer-6enxfj-container, .framer-Nq7rl .framer-seqx34-container, .framer-Nq7rl .framer-9996va-container, .framer-Nq7rl .framer-pyych9-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nq7rl.framer-1bwzsxt { gap: 0px; } .framer-Nq7rl.framer-1bwzsxt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Nq7rl.framer-1bwzsxt > :first-child { margin-top: 0px; } .framer-Nq7rl.framer-1bwzsxt > :last-child { margin-bottom: 0px; } }\",\".framer-Nq7rl.framer-v-13w0q00.framer-1bwzsxt { width: 991px; }\",\".framer-Nq7rl.framer-v-1y03af3.framer-1bwzsxt { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 824\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qiNeqa483\":{\"layout\":[\"fixed\",\"auto\"]},\"LcoV6mdpH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernzjVYFF5B=withCSS(Component,css,\"framer-Nq7rl\");export default FramernzjVYFF5B;FramernzjVYFF5B.displayName=\"Reviews Ticker\";FramernzjVYFF5B.defaultProps={height:824,width:1200};addPropertyControls(FramernzjVYFF5B,{variant:{options:[\"IE9b8xUzI\",\"qiNeqa483\",\"LcoV6mdpH\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernzjVYFF5B,[{explicitInter:true,fonts:[]},...ReviewCardFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernzjVYFF5B\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"824\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qiNeqa483\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LcoV6mdpH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nzjVYFF5B.map", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ktp1TFnyFWVbtaiCONLu/C69duWGN9o7Yl8TkPZ0X/fhQaznbqG.js\";import ReviewsTicker from\"https://framerusercontent.com/modules/7ROklAyxWCpoyiNYACOD/874ubpqgOEuffZJst1CK/nzjVYFF5B.js\";const ReviewsTickerFonts=getFonts(ReviewsTicker);const cycleOrder=[\"pQ88PMKB3\",\"zOpE_yvbq\",\"MwxEXCT44\"];const serializationHash=\"framer-am0Fz\";const variantClassNames={MwxEXCT44:\"framer-v-17m8zbi\",pQ88PMKB3:\"framer-v-1iczmlo\",zOpE_yvbq:\"framer-v-15waz9c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"pQ88PMKB3\",Phone:\"MwxEXCT44\",Tablet:\"zOpE_yvbq\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pQ88PMKB3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pQ88PMKB3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1iczmlo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pQ88PMKB3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({MwxEXCT44:{\"data-framer-name\":\"Phone\"},zOpE_yvbq:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1emdmot\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"Y20RjvSjq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qe8s42\",\"data-framer-name\":\"title\",layoutDependency:layoutDependency,layoutId:\"z9SXnjGvV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-9jz05d\",\"data-styles-preset\":\"fhQaznbqG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join 50,000 ChangeMakers in over 100 countries\"})}),className:\"framer-4wf4y9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y24xs9hN2\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:824,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1140px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(100+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-180-972.4)/2)+0+148.4,...addPropertyOverrides({MwxEXCT44:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 390px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(30+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2615.5)-60-972.4)/2)+0+148.4},zOpE_yvbq:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 768px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1195)-160-972.4)/2)+0+148.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p9mg2u-container\",layoutDependency:layoutDependency,layoutId:\"jY1aQCCF_-container\",children:/*#__PURE__*/_jsx(ReviewsTicker,{height:\"100%\",id:\"jY1aQCCF_\",layoutId:\"jY1aQCCF_\",style:{width:\"100%\"},variant:\"IE9b8xUzI\",width:\"100%\",...addPropertyOverrides({MwxEXCT44:{variant:\"LcoV6mdpH\"},zOpE_yvbq:{variant:\"qiNeqa483\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-am0Fz.framer-16bp9uk, .framer-am0Fz .framer-16bp9uk { display: block; }\",\".framer-am0Fz.framer-1iczmlo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 80px 30px; position: relative; width: 1200px; }\",\".framer-am0Fz .framer-1emdmot { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-am0Fz .framer-qe8s42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-am0Fz .framer-4wf4y9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 55%; word-break: break-word; word-wrap: break-word; }\",\".framer-am0Fz .framer-1p9mg2u-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-am0Fz.framer-1iczmlo, .framer-am0Fz .framer-1emdmot, .framer-am0Fz .framer-qe8s42 { gap: 0px; } .framer-am0Fz.framer-1iczmlo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-am0Fz.framer-1iczmlo > :first-child { margin-left: 0px; } .framer-am0Fz.framer-1iczmlo > :last-child { margin-right: 0px; } .framer-am0Fz .framer-1emdmot > * { margin: 0px; margin-bottom: calc(86px / 2); margin-top: calc(86px / 2); } .framer-am0Fz .framer-1emdmot > :first-child, .framer-am0Fz .framer-qe8s42 > :first-child { margin-top: 0px; } .framer-am0Fz .framer-1emdmot > :last-child, .framer-am0Fz .framer-qe8s42 > :last-child { margin-bottom: 0px; } .framer-am0Fz .framer-qe8s42 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-am0Fz.framer-v-15waz9c.framer-1iczmlo { min-width: 768px; padding: 80px 30px 80px 30px; width: 991px; }\",\".framer-am0Fz.framer-v-15waz9c .framer-1emdmot { max-width: 768px; }\",\".framer-am0Fz.framer-v-15waz9c .framer-4wf4y9, .framer-am0Fz.framer-v-17m8zbi .framer-4wf4y9 { width: 100%; }\",\".framer-am0Fz.framer-v-17m8zbi.framer-1iczmlo { padding: 30px 20px 30px 20px; width: 390px; }\",\".framer-am0Fz.framer-v-17m8zbi .framer-1emdmot { max-width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1215\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zOpE_yvbq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"768px\",null,null,null]},\"MwxEXCT44\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKtqwT8TCS=withCSS(Component,css,\"framer-am0Fz\");export default FramerKtqwT8TCS;FramerKtqwT8TCS.displayName=\"Reviews\";FramerKtqwT8TCS.defaultProps={height:1215,width:1200};addPropertyControls(FramerKtqwT8TCS,{variant:{options:[\"pQ88PMKB3\",\"zOpE_yvbq\",\"MwxEXCT44\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKtqwT8TCS,[{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\"}]},...ReviewsTickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKtqwT8TCS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zOpE_yvbq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"768px\\\",null,null,null]},\\\"MwxEXCT44\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1215\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KtqwT8TCS.map"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "clientName", "designation", "height", "id", "image", "paragraph", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "syYvMtRwn", "CNGqNdxNO", "xUO4IgzT_", "dxMw3Jo4p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerDG01wTbvx", "withCSS", "DG01wTbvx_default", "addPropertyControls", "ControlType", "addFonts", "ReviewCardFonts", "getFonts", "DG01wTbvx_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramernzjVYFF5B", "withCSS", "nzjVYFF5B_default", "addPropertyControls", "ControlType", "addFonts", "ReviewsTickerFonts", "getFonts", "nzjVYFF5B_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerKtqwT8TCS", "withCSS", "KtqwT8TCS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
