{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/ItAKzCIBf2dWpZQe3jpa/I0GvDbtslnRJ9cLr73mN/EoeW9cqKY.js", "ssg:https://framerusercontent.com/modules/oqjb5YzjG917DgxKH6Jr/zPoGBY1yXeNgsvPUa8cA/OLaisVW8q.js", "ssg:https://framerusercontent.com/modules/aSdepWA5BXBUFyHQPg39/NYvVZDGpsf2iYgMRraLl/Email_Submit.js", "ssg:https://framerusercontent.com/modules/97MB8Zhx2EBWrdc3xohK/12KIf0Nb1rHWpWA80VOg/TrS93k5IS.js", "ssg:https://framerusercontent.com/modules/rhAoGDF2ovJEhVgX9K1s/yQCiD1C6J8hiUxWIoGnA/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gZPh0inLQrZjaVKno2U6/AybDIiXl4A7pOQI4fv6L/UEBBgyJ5P.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3EasbF4MXqPG1a9BVGjh/s88TJQTYNxqXL5ohffBP/YKTuzqtP9.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-2cEY4\";const variantClassNames={ZS2tFJ9Mx:\"framer-v-1w8ttbs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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??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=({height,id,image,name1,testimonial,titleCompany,width,...props})=>{return{...props,If6ZOB1kh:testimonial??props.If6ZOB1kh??\"The Qual Street team use Coloop for all our projects - to help with our analysis, report writing and presentations. In short Coloop makes us better researchers - and we love it!\",kw99ZInZS:image??props.kw99ZInZS,LI4fH7p6x:titleCompany??props.LI4fH7p6x??\"Founder, Near Nineteen\",v26BqJPf9:name1??props.v26BqJPf9??\"Vasco Ferreira\"};};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,If6ZOB1kh,kw99ZInZS,v26BqJPf9,LI4fH7p6x,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ZS2tFJ9Mx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-1w8ttbs\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZS2tFJ9Mx\",ref:refBinding,style:{backgroundColor:\"var(--token-a8ea141e-a316-42eb-b59f-a11c6ab7db70, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-196ft81\",layoutDependency:layoutDependency,layoutId:\"uowsAnNu0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpmpzw\",layoutDependency:layoutDependency,layoutId:\"ZxpEPEXna\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b28njm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yN_KfGKY1-container\",nodeId:\"yN_KfGKY1\",rendersWithMotion:true,scopeId:\"EoeW9cqKY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"yN_KfGKY1\",layoutId:\"yN_KfGKY1\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ejkfh3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n1ZsAWOul-container\",nodeId:\"n1ZsAWOul\",rendersWithMotion:true,scopeId:\"EoeW9cqKY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"n1ZsAWOul\",layoutId:\"n1ZsAWOul\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lbitnh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OvTRoFNSJ-container\",nodeId:\"OvTRoFNSJ\",rendersWithMotion:true,scopeId:\"EoeW9cqKY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"OvTRoFNSJ\",layoutId:\"OvTRoFNSJ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16lvds5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LhATWaRnO-container\",nodeId:\"LhATWaRnO\",rendersWithMotion:true,scopeId:\"EoeW9cqKY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"LhATWaRnO\",layoutId:\"LhATWaRnO\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h4dks9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PtZnTI1tu-container\",nodeId:\"PtZnTI1tu\",rendersWithMotion:true,scopeId:\"EoeW9cqKY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"PtZnTI1tu\",layoutId:\"PtZnTI1tu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gix6qx\",\"data-styles-preset\":\"YKTuzqtP9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92)))\"},children:\"The Qual Street team use Coloop for all our projects - to help with our analysis, report writing and presentations. In short Coloop makes us better researchers - and we love it!\"})}),className:\"framer-19vk35h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KaePaJWG1\",style:{\"--extracted-r6o4lv\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:If6ZOB1kh,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19zkrmi\",layoutDependency:layoutDependency,layoutId:\"poFVPsHAi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22+(0+156+((componentViewport?.height||285)-44-369)/1*1)+87),sizes:\"40px\",...toResponsiveImage(kw99ZInZS)},className:\"framer-1c9h3du\",layoutDependency:layoutDependency,layoutId:\"U3SsMwq_O\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ufaajs\",layoutDependency:layoutDependency,layoutId:\"WMIBi9_pM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12bwqq5\",\"data-styles-preset\":\"UEBBgyJ5P\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255)))\"},children:\"Vasco Ferreira\"})}),className:\"framer-2v3cmb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PFp6h6g4L\",style:{\"--extracted-r6o4lv\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v26BqJPf9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12bwqq5\",\"data-styles-preset\":\"UEBBgyJ5P\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92)))\"},children:\"Founder, Near Nineteen\"})}),className:\"framer-kpy07y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tVd_5msKr\",style:{\"--extracted-r6o4lv\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LI4fH7p6x,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2cEY4.framer-i2351d, .framer-2cEY4 .framer-i2351d { display: block; }\",\".framer-2cEY4.framer-1w8ttbs { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 285px; justify-content: space-between; overflow: hidden; padding: 22px; position: relative; width: 475px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2cEY4 .framer-196ft81 { align-content: flex-start; align-items: flex-start; 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-2cEY4 .framer-gpmpzw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2cEY4 .framer-b28njm-container, .framer-2cEY4 .framer-ejkfh3-container, .framer-2cEY4 .framer-1lbitnh-container, .framer-2cEY4 .framer-16lvds5-container, .framer-2cEY4 .framer-1h4dks9-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-2cEY4 .framer-19vk35h, .framer-2cEY4 .framer-2v3cmb, .framer-2cEY4 .framer-kpy07y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2cEY4 .framer-19zkrmi { 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-2cEY4 .framer-1c9h3du { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2cEY4 .framer-1ufaajs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2cEY4 .framer-196ft81, .framer-2cEY4 .framer-gpmpzw, .framer-2cEY4 .framer-19zkrmi, .framer-2cEY4 .framer-1ufaajs { gap: 0px; } .framer-2cEY4 .framer-196ft81 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2cEY4 .framer-196ft81 > :first-child, .framer-2cEY4 .framer-1ufaajs > :first-child { margin-top: 0px; } .framer-2cEY4 .framer-196ft81 > :last-child, .framer-2cEY4 .framer-1ufaajs > :last-child { margin-bottom: 0px; } .framer-2cEY4 .framer-gpmpzw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-2cEY4 .framer-gpmpzw > :first-child, .framer-2cEY4 .framer-19zkrmi > :first-child { margin-left: 0px; } .framer-2cEY4 .framer-gpmpzw > :last-child, .framer-2cEY4 .framer-19zkrmi > :last-child { margin-right: 0px; } .framer-2cEY4 .framer-19zkrmi > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-2cEY4 .framer-1ufaajs > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 285\n * @framerIntrinsicWidth 475\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"If6ZOB1kh\":\"testimonial\",\"kw99ZInZS\":\"image\",\"v26BqJPf9\":\"name1\",\"LI4fH7p6x\":\"titleCompany\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEoeW9cqKY=withCSS(Component,css,\"framer-2cEY4\");export default FramerEoeW9cqKY;FramerEoeW9cqKY.displayName=\"Testimonials Item\";FramerEoeW9cqKY.defaultProps={height:285,width:475};addPropertyControls(FramerEoeW9cqKY,{If6ZOB1kh:{defaultValue:\"The Qual Street team use Coloop for all our projects - to help with our analysis, report writing and presentations. In short Coloop makes us better researchers - and we love it!\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},kw99ZInZS:{title:\"Image\",type:ControlType.ResponsiveImage},v26BqJPf9:{defaultValue:\"Vasco Ferreira\",displayTextArea:false,title:\"Name\",type:ControlType.String},LI4fH7p6x:{defaultValue:\"Founder, Near Nineteen\",displayTextArea:false,title:\"Title & company\",type:ControlType.String}});addFonts(FramerEoeW9cqKY,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEoeW9cqKY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"285\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"475\",\"framerVariables\":\"{\\\"If6ZOB1kh\\\":\\\"testimonial\\\",\\\"kw99ZInZS\\\":\\\"image\\\",\\\"v26BqJPf9\\\":\\\"name1\\\",\\\"LI4fH7p6x\\\":\\\"titleCompany\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EoeW9cqKY.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-cekYe\";const variantClassNames={r9cd5FATp:\"framer-v-os2qkf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};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=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"r9cd5FATp\",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(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-os2qkf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r9cd5FATp\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1368ueq\",\"data-framer-name\":\"svg_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"s3jBIYnon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 30\"><g transform=\"translate(0.383 0.099)\" id=\"ss10110303954_1\"><path d=\"M 0 0.001 L 98.823 0.001 L 98.823 29.162 L 0 29.162 Z\" fill=\"transparent\"></path><path d=\"M 96.414 0.124 L 95.179 0.124 C 91.535 0.124 87.829 1.362 85.049 4.52 C 81.714 8.296 81.838 14.426 81.838 14.426 L 81.838 26.685 C 81.838 27.985 83.197 29.037 84.556 29.037 C 85.914 29.037 87.273 27.985 87.273 26.685 L 87.273 16.469 C 87.273 8.482 90.361 5.263 95.611 5.263 L 96.414 5.263 C 97.774 5.263 98.824 4.024 98.824 2.663 C 98.824 1.3 97.774 0.123 96.414 0.123 Z M 27.917 0 C 25.015 0 22.05 1.053 20.073 3.158 C 20.073 3.158 19.517 3.777 19.27 4.148 C 19.037 3.791 18.768 3.46 18.467 3.158 C 16.491 1.053 13.527 0 10.623 0 C 4.57 0.001 0 4.582 0 10.092 L 0 26.746 C 0 28.046 1.359 29.099 2.717 29.099 C 4.077 29.099 5.435 28.047 5.435 26.747 L 5.435 11.33 C 5.435 7.553 7.535 5.2 10.747 5.2 C 12.97 5.2 14.638 5.944 15.627 7.801 C 16.244 8.916 16.553 10.34 16.553 12.259 L 16.553 26.809 C 16.553 28.109 17.911 29.161 19.27 29.161 C 20.63 29.161 21.988 28.109 21.988 26.808 L 21.988 12.197 C 21.988 10.277 22.297 8.854 22.915 7.739 C 23.903 5.944 25.632 5.139 27.794 5.139 C 31.006 5.139 33.106 7.553 33.106 11.269 L 33.106 26.685 C 33.106 27.985 34.464 29.037 35.823 29.037 C 37.183 29.037 38.541 27.985 38.541 26.685 L 38.541 10.03 C 38.541 4.582 33.971 0 27.917 0 Z M 68.807 0.001 C 65.904 0.001 62.939 1.054 60.962 3.159 C 60.962 3.159 60.406 3.778 60.159 4.149 C 59.926 3.793 59.657 3.461 59.357 3.159 C 57.379 1.053 54.414 0 51.511 0 C 45.459 0 40.888 4.582 40.888 10.092 L 40.888 26.746 C 40.888 28.046 42.247 29.099 43.606 29.099 C 44.964 29.099 46.323 28.047 46.323 26.747 L 46.323 11.33 C 46.323 7.553 48.423 5.2 51.635 5.2 C 53.859 5.2 55.526 5.944 56.515 7.801 C 57.132 8.916 57.441 10.34 57.441 12.259 L 57.441 26.809 C 57.441 28.109 58.8 29.161 60.159 29.161 C 61.517 29.161 62.876 28.109 62.876 26.808 L 62.876 12.197 C 62.876 10.277 63.185 8.854 63.803 7.739 C 64.791 5.944 66.52 5.139 68.682 5.139 C 71.894 5.139 73.994 7.553 73.994 11.269 L 73.994 26.685 C 73.994 27.985 75.353 29.037 76.711 29.037 C 78.071 29.037 79.429 27.985 79.429 26.685 L 79.429 10.03 C 79.429 4.582 74.859 0 68.806 0 Z\" fill=\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52)) /* {&quot;name&quot;:&quot;Text Dark Primary&quot;} */\"></path></g></svg>',svgContentId:10110303954,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:444,intrinsicWidth:4048.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-17)/2)),pixelHeight:888,pixelWidth:8097,sizes:\"160px\",src:\"https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kvhmtAiDrCsiRyJGKPr4o2dpu5k.png 8097w\"},className:\"framer-zz9xal\",\"data-framer-name\":\"l1\",layoutDependency:layoutDependency,layoutId:\"FQFwD0YHD\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sndloj\",\"data-framer-name\":\"l9\",fill:\"black\",intrinsicHeight:1007,intrinsicWidth:2027,layoutDependency:layoutDependency,layoutId:\"FdHISLonI\",svg:'<svg width=\"2027\" height=\"1007\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#343434\"><path d=\"M1397.07 536.455c0-154.37-99.24-266.369-236.45-266.369a196.46 196.46 0 0 0-91 22.325 196.208 196.208 0 0 0-70.262 61.922V0h-87.332v788.205h87.332v-69.627a204.302 204.302 0 0 0 73.162 62.26 204.644 204.644 0 0 0 93.56 21.987c131.25 0 230.24-114.477 230.24-266.37h.75Zm-89.82 0c0 127.114-76.66 184.105-152.58 184.105-91.3 0-160.274-80.282-160.274-186.582 0-87.964 60.294-182.866 157.794-182.866 92.79 0 155.06 74.336 155.06 185.343ZM600.409 407.607c0-39.893 39.448-57.734 78.648-57.734a206.349 206.349 0 0 1 120.33 39.15l3.722 2.726 40.441-67.646-2.73-1.982a267.192 267.192 0 0 0-161.763-49.557c-81.625 0-165.732 51.787-165.732 138.76 0 92.672 74.431 127.857 148.861 155.609 57.312 19.823 106.685 37.168 106.685 89.698 0 41.876-47.14 67.646-90.806 67.646a223.467 223.467 0 0 1-127.525-46.584l-3.473-2.725-47.388 67.645 3.225 2.23a295.99 295.99 0 0 0 177.642 59.221c97.504 0 176.649-67.15 176.649-148.672 0-108.53-91.55-141.981-158.289-166.511-66.74-24.531-99.241-40.885-99.241-78.796l.744-2.478ZM484.793 537.694c0-151.892-99.241-266.369-230.24-266.369a204.648 204.648 0 0 0-94.024 22.425 204.363 204.363 0 0 0-73.197 63.061v-71.114H0V1007h87.332V718.578a195.669 195.669 0 0 0 69.824 62.555 195.968 195.968 0 0 0 90.947 22.931c136.953 0 236.194-111.999 236.194-266.37h.496ZM239.915 723.038c-97.256 0-157.545-94.902-157.545-182.866 0-106.548 68.725-186.582 160.026-186.582 76.168 0 152.832 56.743 152.832 184.104 0 110.76-62.274 185.344-155.313 185.344ZM1843.16 153.627l-183.85 318.156H2027l-183.84-318.156Z\"/><path d=\"m1659.31 471.783-183.84-318.156h367.69l-183.85 318.156Zm0 0 183.85 317.909h-367.69l183.84-317.909Z\"/><path d=\"M1843.16 789.692 2027 471.783h-367.69l183.85 317.909Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h2027v1007H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:695,intrinsicWidth:2277,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-32)/2)),pixelHeight:1390,pixelWidth:4554,sizes:\"104.8403px\",src:\"https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/dfv0qMZ3TP2dpjsZucs4v7wJDk.png 4554w\"},className:\"framer-isxjzo\",\"data-framer-name\":\"l10\",layoutDependency:layoutDependency,layoutId:\"DU67EmW2g\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1251,intrinsicWidth:4039,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-32)/2)),pixelHeight:2502,pixelWidth:8078,sizes:\"103.3157px\",src:\"https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png?scale-down-to=512 512w,https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ukOZv2G7mmXCnClCDLdfqJK6pM.png 8078w\"},className:\"framer-oobvfj\",\"data-framer-name\":\"l3\",layoutDependency:layoutDependency,layoutId:\"YUzpWm9c5\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6zrmnh\",\"data-framer-name\":\"l5\",fill:\"black\",intrinsicHeight:375,intrinsicWidth:798,layoutDependency:layoutDependency,layoutId:\"wxbg0nvJe\",svg:'<svg width=\"798\" height=\"375\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#343434\"><path d=\"M0 214.28v-.535c0-39.805 31.002-73.339 75.523-73.339 28.897 0 48.161 12.473 60.147 31.467l-33.569 24.945c-6.778-9.372-14.27-14.824-26.328-14.824-15.875 0-27.576 14.04-27.576 31.181v.535c0 18.21 11.451 32.072 28.111 32.072 11.701 0 19.264-5.488 27.077-14.575l33.07 23.948c-13.021 19.243-31.75 32.072-62.751 32.072a72.757 72.757 0 0 1-52.171-21.028 72.623 72.623 0 0 1-15.997-23.795A72.556 72.556 0 0 1 0 214.28Zm146.836 21.061v-92.084h49.48v76.226c0 15.323 8.063 23.662 20.049 23.662 11.987 0 20.62-8.375 20.62-23.662v-76.226h49.445v140.727h-49.445V264.74c-9.133 11.689-22.154 22.344-42.203 22.344-29.966 0-47.946-19.742-47.946-51.743Zm160.105-92.084h49.481v28.509c8.062-19.279 21.083-31.751 44.521-30.718v52.029h-4.174c-25.756 0-40.347 14.824-40.347 47.324v43.726h-49.481v-140.87Zm112.485 0h49.444v140.727h-49.444V143.257Zm65.316 71.023v-.535c0-40.055 32.821-73.624 78.127-73.624s77.592 33.035 77.592 73.268v.535c0 40.055-32.821 73.624-78.127 73.624-45.307 0-77.592-33.213-77.592-73.268Zm107.558 0v-.535c0-17.176-12.521-31.716-29.966-31.716s-29.396 14.255-29.396 31.182v.534c0 17.177 12.486 31.716 29.931 31.716S592.3 231.207 592.3 214.28Zm66.001-71.023h49.587v19.778c9.133-11.724 22.154-22.914 42.203-22.914 29.931 0 47.911 19.778 47.911 51.779v92.084h-49.624v-76.226c0-15.359-8.062-23.662-19.799-23.662s-20.834 8.303-20.834 23.662v76.226h-49.444V143.257ZM468.906 80.04h-49.48v49.426h49.48V80.039Zm-49.519-43.264h-43.309V80.04h43.309V36.776ZM456.242 0h-36.816v36.776h36.816V0ZM376.08 15.146h-21.654v21.63h21.654v-21.63ZM97.854 368.407a15.922 15.922 0 0 1-11.209-4.737 15.884 15.884 0 0 1 .152-22.465c3-2.96 7.054-4.61 11.27-4.586a16.057 16.057 0 0 1 12.058 4.775l-3.567 3.992a12.271 12.271 0 0 0-8.633-3.813 10.992 10.992 0 0 0-7.191 3.498 10.969 10.969 0 0 0 0 14.884 10.992 10.992 0 0 0 7.191 3.498 12.092 12.092 0 0 0 8.847-3.991l3.568 3.564a15.812 15.812 0 0 1-12.486 5.381Zm27.755-.001a12.03 12.03 0 0 1-11.377-7.371c-.62-1.48-.936-3.07-.931-4.674a12.357 12.357 0 0 1 7.432-11.657 12.385 12.385 0 0 1 13.606 2.504 12.358 12.358 0 0 1-1.801 19.125 12.398 12.398 0 0 1-6.929 2.073Zm0-19.528a7.134 7.134 0 0 0-7.135 7.412 7.105 7.105 0 0 0 1.946 5.295 7.136 7.136 0 0 0 5.189 2.224 7.14 7.14 0 0 0 5.162-2.2 7.12 7.12 0 0 0 1.973-5.248 7.118 7.118 0 0 0-1.933-5.318 7.15 7.15 0 0 0-5.202-2.237v.072Zm21.656 19.029h-5.316v-23.199h5.316v3.563a8.312 8.312 0 0 1 7.135-4.098 7.99 7.99 0 0 1 6.197 2.546 7.978 7.978 0 0 1 2.079 6.363v14.789h-5.315v-13.185c0-3.564-1.82-5.666-4.959-5.666a5.14 5.14 0 0 0-5.035 3.561 5.125 5.125 0 0 0-.209 2.176l.107 13.15Zm29.574.428a16.245 16.245 0 0 1-9.882-3.564l2.39-3.564a13.028 13.028 0 0 0 7.599 2.851c2.283 0 3.567-.962 3.567-2.494 0-1.818-2.461-2.423-5.172-3.243-3.568-.998-7.135-2.388-7.135-6.842a7.397 7.397 0 0 1 2.559-5.365 7.427 7.427 0 0 1 5.681-1.762c3.034.064 5.988.977 8.527 2.637l-2.105 3.813a13.213 13.213 0 0 0-6.529-2.21c-2.069 0-3.282.962-3.282 2.317 0 1.639 2.533 2.352 5.244 3.242 3.39 1.034 7.135 2.602 7.135 6.771 0 4.989-3.781 7.413-8.597 7.413Zm28.647-23.627h5.315v23.199h-5.315v-3.564a8.392 8.392 0 0 1-7.135 4.099 7.995 7.995 0 0 1-7.937-5.499 7.98 7.98 0 0 1-.34-3.41v-14.754h5.316v13.15c0 3.564 1.819 5.666 4.994 5.666a5.178 5.178 0 0 0 3.923-1.682 5.162 5.162 0 0 0 1.321-4.055l-.142-13.15Zm38.635-.499a7.812 7.812 0 0 1 7.857 5.478 7.793 7.793 0 0 1 .277 3.396v14.824h-5.315v-13.185c0-3.564-1.713-5.666-4.709-5.666-2.997 0-4.995 1.995-4.995 5.737v13.114h-5.315v-13.256c0-3.564-1.748-5.595-4.709-5.595-2.961 0-4.959 2.174-4.959 5.773v13.078h-5.315v-23.199h5.315v3.564a8.342 8.342 0 0 1 7.135-3.991 7.134 7.134 0 0 1 6.885 4.098 9.483 9.483 0 0 1 7.848-4.17Zm24.367 19.849a8.513 8.513 0 0 0 3.427-.714 8.504 8.504 0 0 0 2.851-2.03l3.104 2.744a12.1 12.1 0 0 1-19.217-.779 12.069 12.069 0 0 1-2.188-6.954 11.494 11.494 0 0 1 3.091-8.469 11.528 11.528 0 0 1 8.254-3.647c7.384 0 11.13 5.809 11.13 12.508v1.461h-16.981a6.484 6.484 0 0 0 2.117 4.212 6.497 6.497 0 0 0 4.412 1.668Zm5.172-9.408a5.987 5.987 0 0 0-5.886-6.093 6.279 6.279 0 0 0-6.029 6.093h11.915Zm15.304 13.257h-5.316v-23.199h5.316v5.203a8.265 8.265 0 0 1 3.166-4.217 8.286 8.286 0 0 1 5.075-1.449v5.631h-.321c-4.638 0-7.92 3.029-7.92 9.194v8.837Zm31.501-30.789v30.79h-5.387v-30.79h5.387Zm12.304 30.789h-5.351v-23.199h5.351v3.563a8.277 8.277 0 0 1 7.135-4.098 7.995 7.995 0 0 1 7.937 5.499 7.963 7.963 0 0 1 .339 3.41v14.789h-5.315v-13.185c0-3.564-1.819-5.666-4.994-5.666a5.14 5.14 0 0 0-5.002 3.57 5.13 5.13 0 0 0-.207 2.167l.107 13.15Zm29.542.428a16.139 16.139 0 0 1-9.846-3.564l2.39-3.563a12.957 12.957 0 0 0 7.599 2.85c2.283 0 3.567-.962 3.567-2.494 0-1.818-2.461-2.423-5.208-3.243-3.568-.998-7.135-2.388-7.135-6.842a7.404 7.404 0 0 1 5.24-6.851 7.425 7.425 0 0 1 3.036-.276c3.033.069 5.985.983 8.526 2.637l-2.104 3.813a13.319 13.319 0 0 0-6.564-2.21c-2.07 0-3.247.963-3.247 2.317 0 1.639 2.497 2.352 5.244 3.243 3.389 1.033 7.135 2.601 7.135 6.77 0 4.99-3.781 7.413-8.633 7.413Zm13.556-27.191v-5.06h5.708v5.06h-5.708Zm.214 26.763v-23.199h5.351v23.199h-5.351Zm21.866 7.092a20.234 20.234 0 0 1-10.382-2.744l1.998-4.027a14.845 14.845 0 0 0 8.241 2.459 6.502 6.502 0 0 0 7.003-4.226c.334-.928.453-1.92.346-2.901v-1.817a9.736 9.736 0 0 1-8.17 4.276 10.954 10.954 0 0 1-7.337-3.411 10.932 10.932 0 0 1 0-15.024 10.958 10.958 0 0 1 7.337-3.41 10.029 10.029 0 0 1 8.134 3.956v-3.564h5.316v18.495c0 8.303-4.46 11.938-12.486 11.938Zm.463-26.299a6.278 6.278 0 0 0-6.599 6.414 6.326 6.326 0 0 0 1.908 4.646 6.343 6.343 0 0 0 4.691 1.804 6.472 6.472 0 0 0 2.615-.344 6.468 6.468 0 0 0 3.784-3.509 6.448 6.448 0 0 0-3.784-8.666 6.456 6.456 0 0 0-2.615-.345Zm23.691 19.207h-5.316v-32.072h5.316v12.473a8.307 8.307 0 0 1 7.135-4.099 7.993 7.993 0 0 1 8.276 8.909v14.789h-5.316v-13.185c0-3.563-1.819-5.666-4.994-5.666a5.151 5.151 0 0 0-3.913 1.683 5.13 5.13 0 0 0-1.295 4.054l.107 13.114Zm27.683-7.27a2.533 2.533 0 0 0 .702 2.159 2.529 2.529 0 0 0 2.152.728 7.143 7.143 0 0 0 3.282-.784v4.347a9.208 9.208 0 0 1-4.78 1.212 5.928 5.928 0 0 1-5.057-1.719 5.906 5.906 0 0 1-1.614-5.087v-12.224h-2.961v-4.561h2.961v-6.379h5.315v6.379h6.243v4.561h-6.243v11.368Zm19.371 7.698a16.136 16.136 0 0 1-9.846-3.564l2.354-3.563a13.137 13.137 0 0 0 7.634 2.85c2.284 0 3.568-.962 3.568-2.494 0-1.818-2.462-2.423-5.209-3.243-3.567-.998-7.134-2.388-7.134-6.842a7.418 7.418 0 0 1 8.276-7.127c3.032.069 5.985.983 8.526 2.637l-2.105 3.813a13.312 13.312 0 0 0-6.564-2.21c-2.069 0-3.246.963-3.246 2.317 0 1.639 2.497 2.352 5.208 3.243 3.389 1.033 7.135 2.601 7.135 6.77.036 4.99-3.746 7.413-8.597 7.413Zm13.982-.428v-6.022h5.85v6.022h-5.85Zm36.602 0h-11.63v-30.789h11.488a15.463 15.463 0 0 1 11.594 4.119 15.422 15.422 0 0 1-5.369 25.814c-1.994.708-4.113 1-6.225.856h.142Zm0-25.836h-6.064v20.99h6.064a10.453 10.453 0 0 0 10.466-10.442 10.448 10.448 0 0 0-10.466-10.441v-.107Zm32.713 21.987a8.52 8.52 0 0 0 6.314-2.744l3.104 2.744a12.1 12.1 0 0 1-19.217-.779 12.069 12.069 0 0 1-2.188-6.954 11.494 11.494 0 0 1 3.091-8.469 11.528 11.528 0 0 1 8.254-3.647c7.384 0 11.13 5.809 11.13 12.508.034.487.034.975 0 1.461h-17.052a6.484 6.484 0 0 0 6.564 5.88Zm5.208-9.408a6.028 6.028 0 0 0-5.886-6.093 6.279 6.279 0 0 0-6.029 6.093h11.915Zm10.528 13.257v-32.072h5.315v32.072h-5.315Zm11.664-26.763v-5.06h5.707v5.06h-5.707Zm.214 26.763v-23.199h5.315v23.199h-5.315Zm27.503-23.199h5.601l-9.489 23.342h-4.816l-9.525-23.342h5.708l6.243 17.034 6.278-17.034Zm19.231 19.35a8.514 8.514 0 0 0 6.279-2.744l3.139 2.744a11.76 11.76 0 0 1-4.252 3.29 11.767 11.767 0 0 1-5.273 1.058 12.136 12.136 0 0 1-8.277-3.553 12.112 12.112 0 0 1-3.542-8.274 12.111 12.111 0 0 1 3.148-8.432 12.132 12.132 0 0 1 8.101-3.938c7.384 0 11.13 5.809 11.13 12.508v1.461h-17.088a6.53 6.53 0 0 0 6.635 5.88Zm5.173-9.408a5.987 5.987 0 0 0-5.886-6.093 6.279 6.279 0 0 0-6.029 6.093h11.915Zm15.624 13.257h-5.316v-23.199h5.316v5.203a8.265 8.265 0 0 1 3.166-4.217 8.286 8.286 0 0 1 5.075-1.449v5.631h-.322c-4.673 0-7.919 3.029-7.919 9.194v8.837Zm22.797-3.849a8.512 8.512 0 0 0 3.446-.707 8.514 8.514 0 0 0 2.868-2.037l3.104 2.744a11.772 11.772 0 0 1-9.49 4.348 12.136 12.136 0 0 1-8.277-3.553 12.112 12.112 0 0 1-3.542-8.274 12.111 12.111 0 0 1 3.148-8.432 12.132 12.132 0 0 1 8.1-3.938c7.385 0 11.131 5.809 11.131 12.508.034.487.034.975 0 1.461H663.83a6.479 6.479 0 0 0 2.129 4.224 6.497 6.497 0 0 0 4.435 1.656Zm5.208-9.408a6.03 6.03 0 0 0-5.886-6.093 6.241 6.241 0 0 0-6.029 6.093h11.915Zm27.753 13.257v-3.884a9.25 9.25 0 0 1-7.92 4.348 12.17 12.17 0 0 1-7.739-3.966 12.144 12.144 0 0 1 0-16.23 12.17 12.17 0 0 1 7.739-3.966 9.533 9.533 0 0 1 7.92 4.099v-12.473h5.351v32.072h-5.351Zm-6.636-19.1a6.816 6.816 0 0 0-6.671 7.483 6.906 6.906 0 0 0 1.729 5.172 6.946 6.946 0 0 0 2.233 1.663c.85.397 1.772.618 2.709.649a7.534 7.534 0 0 0 4.844-2.432 7.516 7.516 0 0 0-4.844-12.535Zm18.304 19.1v-6.022h5.851v6.022h-5.851Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h798v375H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mrempn\",\"data-framer-name\":\"svg_2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hETdcbjhs\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142.5 30\"><g transform=\"translate(0.843 0.097)\" id=\"ss11132112611_1\"><path d=\"M 0.001 0 L 141.342 0 L 141.342 29.004 L 0.001 29.004 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss11132112611_3\"><path d=\"M 48.381 20.788 C 48.295 20.579 48.168 20.389 48.009 20.23 C 47.504 19.708 46.956 19.23 46.37 18.801 C 45.435 18.118 44.419 17.551 43.346 17.113 C 43.268 17.081 43.132 16.942 43.108 17.174 C 43.033 17.923 42.88 18.658 42.706 19.424 C 43.193 19.365 43.686 19.392 44.164 19.503 C 45.383 19.763 46.531 20.218 47.619 20.838 C 47.797 20.94 47.973 21.056 48.184 21.069 C 48.38 21.08 48.455 20.973 48.383 20.788 M 26.165 17.1 C 24.414 17.827 22.84 18.833 21.495 20.207 C 21.343 20.363 21.217 20.541 21.12 20.735 C 21.077 20.82 21.039 20.914 21.111 21.006 C 21.182 21.093 21.278 21.076 21.373 21.061 C 21.526 21.032 21.66 20.955 21.794 20.88 C 23.349 20.026 24.953 19.35 26.77 19.393 C 26.6 18.667 26.45 17.931 26.375 17.183 C 26.357 16.994 26.261 17.06 26.164 17.1 M 39.855 19.369 C 39.777 19.776 39.588 20.142 39.346 20.477 C 39.239 20.625 39.178 20.674 39.081 20.463 C 38.94 20.156 38.774 19.859 38.61 19.562 C 38.458 19.286 38.252 19.281 38.087 19.552 C 37.937 19.796 37.796 20.046 37.633 20.321 C 37.484 20.056 37.346 19.811 37.205 19.566 C 37.04 19.282 36.832 19.284 36.663 19.57 C 36.526 19.8 36.395 20.036 36.247 20.298 C 36.072 20.099 35.984 19.863 35.853 19.658 C 35.771 19.53 35.727 19.358 35.533 19.36 C 35.327 19.36 35.279 19.539 35.2 19.679 C 35.082 19.891 34.966 20.103 34.851 20.317 L 34.44 19.575 C 34.269 19.273 34.069 19.272 33.889 19.575 C 33.754 19.809 33.622 20.042 33.466 20.318 C 33.337 20.096 33.209 19.874 33.082 19.651 C 32.853 19.251 32.669 19.248 32.444 19.641 L 32.056 20.323 C 31.896 20.045 31.757 19.79 31.607 19.54 C 31.455 19.286 31.239 19.287 31.098 19.545 C 30.901 19.902 30.714 20.265 30.508 20.654 C 30.158 20.273 29.92 19.803 29.822 19.296 C 29.65 18.445 29.799 17.625 30.082 16.822 C 30.287 16.259 30.551 15.718 30.869 15.209 C 30.982 15.022 31.043 15.052 31.134 15.218 C 31.228 15.383 31.338 15.54 31.445 15.7 C 31.641 15.99 31.834 15.976 31.994 15.655 C 32.179 15.285 32.359 14.907 32.551 14.512 L 33.001 15.188 C 33.246 15.557 33.426 15.547 33.62 15.155 L 34.091 14.204 C 34.266 14.576 34.426 14.915 34.582 15.253 C 34.636 15.369 34.694 15.47 34.837 15.476 C 34.995 15.482 35.058 15.376 35.117 15.252 C 35.27 14.916 35.431 14.582 35.61 14.204 C 35.786 14.562 35.941 14.879 36.101 15.195 C 36.272 15.534 36.469 15.543 36.681 15.224 L 37.146 14.515 C 37.331 14.895 37.505 15.251 37.678 15.609 C 37.863 15.991 38.049 16.009 38.282 15.663 C 38.398 15.489 38.51 15.315 38.624 15.139 C 38.668 15.072 38.707 15.023 38.769 15.124 C 39.574 16.422 40.162 17.779 39.858 19.373 M 40.994 11.864 C 40.91 11.67 40.869 11.503 40.994 11.304 C 41.097 11.144 41.11 10.941 41.137 10.751 C 41.148 10.67 41.142 10.584 41.062 10.545 C 40.997 10.512 40.929 10.541 40.875 10.593 C 40.723 10.739 40.543 10.747 40.348 10.716 C 39.716 10.609 39.159 10.048 39.048 9.396 C 38.995 9.084 39.011 8.78 39.175 8.508 C 39.321 8.266 39.547 8.161 39.829 8.177 C 39.943 8.183 39.952 8.087 39.907 8.013 C 39.864 7.939 39.806 7.874 39.736 7.824 C 39.343 7.54 38.933 7.292 38.462 7.175 C 38.313 7.137 38.177 7.06 38.067 6.952 C 37.549 6.461 36.965 6.072 36.289 5.843 C 36.167 5.803 36.12 5.749 36.123 5.607 C 36.172 3.756 35.502 2.105 34.76 0.426 C 34.713 0.489 34.695 0.507 34.685 0.528 C 34.566 0.79 34.44 1.047 34.33 1.312 C 33.753 2.698 33.307 4.116 33.368 5.649 C 33.373 5.801 33.283 5.819 33.189 5.852 C 32.543 6.071 31.954 6.43 31.464 6.903 C 31.324 7.039 31.152 7.138 30.964 7.19 C 30.473 7.327 30.037 7.584 29.645 7.916 C 29.585 7.966 29.534 8.032 29.556 8.119 C 29.577 8.203 29.647 8.18 29.705 8.185 C 30.127 8.223 30.363 8.448 30.435 8.884 C 30.554 9.605 30.128 10.353 29.417 10.64 C 29.136 10.753 28.85 10.824 28.573 10.582 C 28.453 10.478 28.343 10.532 28.34 10.707 C 28.335 10.902 28.369 11.105 28.469 11.263 C 28.627 11.507 28.561 11.713 28.453 11.943 C 27.687 13.578 27.501 15.3 27.741 17.087 C 28.07 19.542 28.875 21.835 29.989 24.018 C 30.389 24.802 30.895 25.535 31.667 25.997 C 33.596 27.154 35.571 27.176 37.556 26.162 C 38.525 25.666 39.112 24.786 39.59 23.834 C 40.402 22.23 41.022 20.538 41.437 18.79 C 41.767 17.385 41.926 15.966 41.771 14.518 C 41.671 13.585 41.363 12.716 40.991 11.868 M 17.056 14.809 C 16.71 14.265 16.339 13.74 16.116 13.113 C 16.101 13.067 16.079 13.017 16.023 13.03 C 15.968 13.043 15.966 13.097 15.962 13.146 C 15.923 13.472 15.888 13.801 15.845 14.126 C 15.826 14.268 15.805 14.408 15.781 14.549 C 15.442 16.299 14.217 17.414 14.217 17.414 C 14.181 17.44 14.144 17.481 14.098 17.446 C 14.042 17.406 14.076 17.352 14.089 17.303 L 14.151 17.073 C 14.579 16.12 14.747 15.106 14.733 14.048 C 14.76 13.356 14.716 12.663 14.602 11.981 C 14.488 9.223 11.611 6.6 11.611 6.6 C 11.541 6.532 11.472 6.464 11.403 6.394 C 10.798 5.805 10.172 5.242 9.628 4.579 C 9.005 3.823 8.556 2.971 8.426 1.941 C 8.363 1.444 8.373 0.956 8.643 0.519 C 8.664 0.486 8.692 0.447 8.657 0.403 C 8.625 0.364 8.586 0.374 8.548 0.387 C 8.356 0.455 8.183 0.569 8.03 0.714 C 7.526 1.19 7.168 1.799 6.998 2.471 C 6.592 3.986 6.738 5.468 7.255 6.919 C 7.482 7.558 7.86 8.104 8.138 8.713 C 8.288 9.303 8.298 9.445 8.202 9.642 C 8.035 8.736 6.721 7.868 6.677 7.839 C 6.625 7.788 6.575 7.735 6.527 7.68 C 6.243 7.341 6.004 6.978 5.996 6.49 C 5.996 6.447 5.996 6.397 5.953 6.38 C 5.901 6.36 5.87 6.403 5.84 6.438 C 5.679 6.633 5.551 6.853 5.462 7.09 C 5.127 7.972 5.2 8.863 5.435 9.755 C 5.6 10.495 5.862 11.202 6.053 11.932 C 6.057 11.976 6.059 12.019 6.069 12.061 C 6.153 12.407 6.189 12.762 6.195 13.12 C 6.203 13.573 6.101 13.988 5.858 14.357 C 5.656 14.669 5.391 14.906 5.125 15.145 C 5.024 15.234 4.966 15.227 4.888 15.118 C 4.617 14.737 4.471 14.301 4.419 13.824 C 4.373 13.382 4.379 12.937 4.356 12.494 C 4.315 11.731 4.119 11.025 3.714 10.401 C 3.682 10.35 3.657 10.277 3.581 10.299 C 3.505 10.32 3.532 10.395 3.53 10.449 C 3.492 10.925 3.332 11.383 3.067 11.78 C 2.802 12.187 2.477 12.533 2.156 12.88 C 1.593 13.496 1.133 14.197 0.793 14.958 C 0.172 16.311 -0.08 17.745 0.022 19.257 C 0.055 19.748 0.106 20.237 0.227 20.715 C 0.339 21.319 0.528 21.893 0.766 22.449 C 0.931 22.834 1.112 23.213 1.355 23.548 C 1.574 23.928 1.84 24.268 2.118 24.597 C 2.324 24.843 2.545 25.073 2.792 25.271 C 2.821 25.301 2.847 25.334 2.877 25.361 C 3.621 26.013 4.471 26.534 5.391 26.9 C 5.534 26.957 5.678 27.02 5.851 27.046 C 5.815 27.005 5.797 26.979 5.775 26.959 C 5.145 26.337 4.821 25.548 4.752 24.624 C 4.666 23.463 4.957 22.443 5.689 21.589 C 6.062 21.154 6.501 20.813 6.924 20.447 C 7.177 20.23 7.444 20.028 7.669 19.772 C 7.979 19.491 8.246 19.168 8.464 18.812 C 8.464 18.812 8.542 18.707 8.639 18.501 C 8.699 18.377 8.753 18.25 8.788 18.112 C 8.81 18.042 8.834 17.967 8.854 17.884 C 8.882 17.791 8.904 17.695 8.917 17.598 C 8.978 17.269 9.012 16.877 8.99 16.422 C 8.989 16.205 8.982 15.988 8.982 15.773 L 8.997 15.634 C 9.043 15.634 9.06 15.673 9.082 15.699 C 9.624 16.326 10.069 17.031 10.404 17.789 C 10.599 18.227 10.73 18.692 10.864 19.155 C 10.953 19.639 11.023 20.126 11.063 20.62 C 11.077 21.355 10.957 22.086 10.708 22.778 C 10.566 23.107 10.38 23.413 10.153 23.695 C 10.03 23.849 9.904 24.003 9.789 24.143 C 9.886 24.155 10.005 24.122 10.125 24.102 C 10.309 24.072 10.491 24.025 10.666 23.96 C 10.666 23.96 12.198 23.521 12.501 21.365 C 12.554 21.249 12.584 21.349 12.607 21.384 C 12.849 21.753 13.019 22.164 13.141 22.594 C 13.327 23.255 13.42 23.927 13.356 24.628 C 13.292 25.339 13.073 25.97 12.677 26.53 C 12.545 26.715 12.386 26.875 12.211 27.054 C 12.256 27.049 12.275 27.051 12.291 27.045 C 12.339 27.033 12.385 27.02 12.433 27.005 C 13.07 26.775 13.678 26.473 14.246 26.105 C 14.604 25.87 14.949 25.606 15.264 25.302 C 15.283 25.288 15.304 25.276 15.324 25.26 C 16.335 24.335 17.099 23.174 17.547 21.88 C 17.666 21.544 17.785 21.205 17.839 20.846 C 17.85 20.805 17.866 20.765 17.875 20.723 C 18.004 20.082 18.076 19.431 18.091 18.777 C 18.127 17.329 17.814 16.003 17.056 14.812 M 64.083 0.347 L 64.083 4.123 L 58.345 4.123 L 58.345 7.153 L 63.719 7.153 L 63.719 10.781 L 58.345 10.781 L 58.345 18.083 L 53.842 18.083 L 53.842 0.348 L 64.083 0.348 Z M 69.823 0.347 L 65.32 0.347 L 65.32 18.085 L 69.823 18.085 Z M 77.18 7.849 C 77.827 7.849 78.304 7.656 78.609 7.266 C 78.916 6.877 79.07 6.368 79.07 5.738 C 79.07 4.993 78.92 4.462 78.622 4.149 C 78.322 3.834 77.835 3.676 77.158 3.676 L 76.286 3.676 L 76.286 7.848 L 77.18 7.848 Z M 78.827 0.348 C 79.683 0.348 80.412 0.465 81.018 0.697 C 81.624 0.929 82.115 1.255 82.495 1.678 C 82.874 2.1 83.15 2.602 83.319 3.181 C 83.488 3.762 83.572 4.39 83.572 5.069 C 83.572 6.261 83.338 7.222 82.87 7.95 C 82.401 8.68 81.652 9.126 80.618 9.291 L 80.618 9.341 C 81.699 9.44 82.441 9.83 82.844 10.51 C 83.248 11.188 83.45 12.124 83.45 13.316 L 83.45 15.554 C 83.45 15.801 83.459 16.037 83.476 16.262 C 83.491 16.485 83.515 16.688 83.547 16.871 C 83.579 17.053 83.621 17.193 83.668 17.293 C 83.732 17.392 83.797 17.489 83.862 17.579 C 83.946 17.688 84.054 17.777 84.176 17.84 L 84.176 18.088 L 79.384 18.088 C 79.261 17.828 79.176 17.552 79.131 17.268 C 79.073 16.954 79.034 16.639 79.01 16.324 C 78.967 15.787 78.947 15.248 78.948 14.709 L 78.948 13.516 C 78.948 13.02 78.923 12.606 78.875 12.273 C 78.826 11.942 78.742 11.68 78.622 11.491 C 78.515 11.313 78.353 11.173 78.161 11.093 C 77.941 11.012 77.706 10.973 77.471 10.98 L 76.285 10.98 L 76.285 18.084 L 71.781 18.084 L 71.781 0.348 L 78.828 0.348 Z M 95.922 0.347 L 95.922 4.123 L 90.185 4.123 L 90.185 7.153 L 95.561 7.153 L 95.561 10.781 L 90.185 10.781 L 90.185 14.308 L 96.142 14.308 L 96.142 18.084 L 85.682 18.084 L 85.682 0.347 Z M 108.029 0.347 L 108.029 4.123 L 102.289 4.123 L 102.289 7.153 L 107.666 7.153 L 107.666 10.781 L 102.289 10.781 L 102.289 18.083 L 97.787 18.083 L 97.787 0.348 L 108.029 0.348 Z M 113.767 0.347 L 109.264 0.347 L 109.264 18.085 L 113.767 18.085 Z M 122.46 5.043 C 122.46 4.513 122.355 4.062 122.145 3.689 C 121.935 3.316 121.612 3.131 121.177 3.131 C 120.693 3.131 120.338 3.291 120.113 3.615 C 119.889 3.93 119.77 4.308 119.773 4.695 C 119.773 5.275 119.954 5.734 120.317 6.074 C 120.68 6.412 121.137 6.706 121.686 6.955 C 122.234 7.203 122.823 7.456 123.454 7.714 C 124.084 7.971 124.678 8.31 125.22 8.72 C 125.769 9.135 126.226 9.677 126.588 10.346 C 126.953 11.018 127.133 11.892 127.133 12.968 C 127.133 14.856 126.609 16.227 125.56 17.081 C 124.512 17.932 122.994 18.36 121.008 18.36 C 120.073 18.36 119.245 18.282 118.527 18.124 C 117.809 17.967 117.203 17.694 116.711 17.305 C 116.209 16.902 115.821 16.375 115.586 15.776 C 115.329 15.146 115.198 14.368 115.198 13.441 L 115.198 12.82 L 119.556 12.82 L 119.556 13.243 C 119.556 14.004 119.694 14.537 119.968 14.844 C 120.242 15.152 120.597 15.304 121.033 15.304 C 121.501 15.304 121.86 15.137 122.11 14.806 C 122.361 14.475 122.485 14.07 122.485 13.589 C 122.485 13.01 122.31 12.551 121.964 12.211 C 121.582 11.848 121.14 11.554 120.657 11.342 C 120.094 11.085 119.524 10.84 118.949 10.608 C 118.34 10.364 117.767 10.038 117.244 9.641 C 116.718 9.242 116.282 8.72 115.936 8.075 C 115.588 7.427 115.415 6.583 115.415 5.54 C 115.415 3.736 115.884 2.361 116.82 1.418 C 117.756 0.471 119.176 0 121.081 0 C 122.987 0 124.474 0.435 125.355 1.304 C 126.235 2.173 126.674 3.56 126.674 5.465 L 122.461 5.465 L 122.46 5.042 Z M 135.992 0.347 L 135.992 6.855 L 133.232 6.855 L 133.232 0.348 L 128.728 0.348 L 128.728 18.086 L 133.232 18.086 L 133.232 10.781 L 135.992 10.781 L 135.992 18.085 L 140.496 18.085 L 140.496 0.347 Z M 53.386 21.013 L 54.343 21.013 L 54.343 23.295 L 54.359 23.295 C 54.487 23.084 54.668 22.91 54.884 22.791 C 55.116 22.656 55.375 22.589 55.66 22.589 C 56.135 22.589 56.511 22.715 56.785 22.968 C 57.06 23.222 57.197 23.6 57.197 24.105 L 57.197 27.163 L 56.242 27.163 L 56.242 24.364 C 56.23 24.014 56.156 23.759 56.023 23.601 C 55.889 23.444 55.679 23.364 55.394 23.364 C 55.232 23.364 55.087 23.393 54.958 23.455 C 54.831 23.513 54.719 23.599 54.63 23.706 C 54.538 23.817 54.467 23.943 54.421 24.079 C 54.371 24.226 54.345 24.381 54.346 24.536 L 54.346 27.163 L 53.391 27.163 L 53.391 21.014 L 53.386 21.012 Z M 62.014 27.161 L 61.074 27.161 L 61.074 26.541 L 61.057 26.541 C 60.94 26.764 60.766 26.945 60.532 27.079 C 60.299 27.215 60.064 27.282 59.822 27.282 C 59.252 27.282 58.839 27.136 58.586 26.846 C 58.331 26.556 58.203 26.118 58.203 25.532 L 58.203 22.706 L 59.159 22.706 L 59.159 25.437 C 59.159 25.828 59.231 26.103 59.377 26.264 C 59.522 26.424 59.726 26.505 59.989 26.505 C 60.19 26.505 60.358 26.474 60.492 26.41 C 60.62 26.352 60.732 26.265 60.819 26.155 C 60.902 26.049 60.963 25.923 60.999 25.771 C 61.036 25.613 61.055 25.451 61.054 25.289 L 61.054 22.705 L 62.009 22.705 L 62.009 27.158 Z M 63.02 22.708 L 63.928 22.708 L 63.928 23.328 L 63.953 23.328 C 64.025 23.219 64.103 23.119 64.189 23.027 C 64.273 22.935 64.366 22.858 64.47 22.795 C 64.573 22.732 64.692 22.681 64.825 22.644 C 64.96 22.607 65.114 22.589 65.287 22.589 C 65.551 22.589 65.795 22.648 66.022 22.769 C 66.25 22.89 66.409 23.077 66.504 23.33 C 66.653 23.113 66.844 22.928 67.067 22.786 C 67.279 22.654 67.545 22.589 67.864 22.589 C 68.322 22.589 68.678 22.704 68.934 22.933 C 69.189 23.163 69.316 23.547 69.316 24.088 L 69.316 27.162 L 68.36 27.162 L 68.36 24.561 C 68.36 24.399 68.355 24.237 68.343 24.075 C 68.336 23.943 68.303 23.814 68.246 23.695 C 68.194 23.59 68.11 23.504 68.006 23.449 C 67.87 23.386 67.72 23.356 67.57 23.362 C 67.246 23.362 67.01 23.466 66.864 23.672 C 66.719 23.879 66.647 24.171 66.647 24.552 L 66.647 27.161 L 65.69 27.161 L 65.69 24.3 C 65.69 23.99 65.637 23.757 65.527 23.597 C 65.418 23.44 65.217 23.36 64.926 23.36 C 64.804 23.36 64.682 23.387 64.571 23.438 C 64.455 23.49 64.353 23.566 64.269 23.66 C 64.177 23.767 64.106 23.889 64.06 24.021 C 64.004 24.179 63.977 24.345 63.979 24.512 L 63.979 27.156 L 63.022 27.156 L 63.022 22.703 L 63.021 22.707 Z M 73.959 26.171 C 73.959 26.292 73.974 26.377 74.005 26.43 C 74.035 26.481 74.096 26.507 74.185 26.507 L 74.286 26.507 C 74.325 26.507 74.37 26.503 74.42 26.491 L 74.42 27.172 C 74.324 27.205 74.226 27.23 74.127 27.249 C 74.025 27.27 73.921 27.281 73.817 27.283 C 73.646 27.289 73.477 27.247 73.33 27.162 C 73.201 27.081 73.117 26.942 73.078 26.74 C 72.881 26.933 72.64 27.075 72.376 27.154 C 72.117 27.237 71.847 27.281 71.574 27.283 C 71.38 27.283 71.19 27.255 71.012 27.2 C 70.84 27.15 70.68 27.068 70.538 26.958 C 70.399 26.85 70.288 26.711 70.211 26.553 C 70.126 26.374 70.085 26.178 70.089 25.98 C 70.089 25.704 70.138 25.482 70.236 25.309 C 70.328 25.143 70.461 25.003 70.623 24.904 C 70.782 24.806 70.961 24.736 71.16 24.694 C 71.359 24.651 71.559 24.618 71.76 24.594 C 71.934 24.56 72.099 24.536 72.255 24.522 C 72.412 24.507 72.551 24.483 72.672 24.449 C 72.779 24.421 72.877 24.366 72.957 24.289 C 73.027 24.219 73.062 24.11 73.062 23.967 C 73.068 23.857 73.036 23.748 72.973 23.657 C 72.917 23.578 72.841 23.515 72.754 23.472 C 72.663 23.428 72.565 23.398 72.464 23.385 C 72.364 23.371 72.264 23.364 72.163 23.364 C 71.893 23.364 71.673 23.42 71.5 23.536 C 71.327 23.652 71.228 23.829 71.206 24.069 L 70.25 24.069 C 70.267 23.782 70.335 23.544 70.451 23.354 C 70.564 23.17 70.717 23.014 70.9 22.898 C 71.089 22.78 71.298 22.698 71.516 22.656 C 71.747 22.61 71.982 22.588 72.222 22.588 C 72.434 22.588 72.645 22.61 72.852 22.656 C 73.058 22.701 73.245 22.777 73.409 22.88 C 73.574 22.984 73.708 23.117 73.809 23.282 C 73.91 23.445 73.96 23.644 73.96 23.88 L 73.96 26.171 Z M 73.002 24.931 C 72.857 25.029 72.678 25.088 72.464 25.107 C 72.251 25.127 72.038 25.157 71.827 25.198 C 71.728 25.215 71.63 25.239 71.534 25.271 C 71.443 25.3 71.358 25.344 71.282 25.4 C 71.207 25.456 71.148 25.53 71.109 25.615 C 71.065 25.717 71.044 25.827 71.047 25.937 C 71.044 26.038 71.077 26.135 71.14 26.213 C 71.2 26.288 71.277 26.348 71.363 26.389 C 71.448 26.433 71.544 26.463 71.648 26.481 C 71.753 26.498 71.845 26.506 71.929 26.506 C 72.045 26.505 72.161 26.491 72.273 26.464 C 72.396 26.435 72.513 26.386 72.621 26.318 C 72.729 26.249 72.822 26.16 72.895 26.055 C 72.97 25.938 73.008 25.801 73.003 25.662 L 73.003 24.929 Z M 74.99 22.708 L 75.898 22.708 L 75.898 23.362 L 75.914 23.38 C 76.06 23.132 76.25 22.938 76.485 22.798 C 76.721 22.657 76.991 22.584 77.266 22.587 C 77.741 22.587 78.116 22.714 78.39 22.967 C 78.665 23.22 78.802 23.598 78.802 24.104 L 78.802 27.161 L 77.846 27.161 L 77.846 24.362 C 77.835 24.013 77.761 23.758 77.627 23.6 C 77.492 23.443 77.283 23.362 76.997 23.362 C 76.835 23.362 76.69 23.392 76.561 23.453 C 76.435 23.512 76.323 23.597 76.234 23.704 C 76.142 23.815 76.071 23.941 76.025 24.077 C 75.974 24.224 75.949 24.379 75.95 24.534 L 75.95 27.161 L 74.993 27.161 L 74.993 22.709 L 74.991 22.709 Z M 80.53 25.732 C 80.559 26.019 80.665 26.219 80.849 26.334 C 81.034 26.45 81.255 26.506 81.512 26.506 C 81.602 26.506 81.703 26.5 81.818 26.485 C 81.932 26.471 82.039 26.444 82.141 26.403 C 82.237 26.366 82.322 26.305 82.389 26.227 C 82.456 26.14 82.488 26.03 82.477 25.921 C 82.476 25.804 82.428 25.693 82.343 25.611 C 82.25 25.525 82.14 25.459 82.02 25.418 C 81.873 25.365 81.723 25.323 81.571 25.292 C 81.4 25.257 81.229 25.22 81.06 25.18 C 80.885 25.141 80.713 25.093 80.544 25.034 C 80.384 24.979 80.234 24.901 80.098 24.8 C 79.966 24.702 79.858 24.573 79.784 24.426 C 79.7 24.25 79.66 24.056 79.667 23.862 C 79.667 23.62 79.723 23.417 79.838 23.255 C 79.954 23.09 80.099 22.959 80.275 22.858 C 80.451 22.756 80.647 22.687 80.863 22.647 C 81.066 22.608 81.273 22.588 81.48 22.587 C 81.703 22.587 81.918 22.611 82.121 22.66 C 82.325 22.708 82.51 22.788 82.676 22.898 C 82.841 23.007 82.977 23.149 83.087 23.324 C 83.196 23.499 83.264 23.711 83.292 23.956 L 82.294 23.956 C 82.248 23.72 82.144 23.563 81.978 23.483 C 81.801 23.4 81.607 23.358 81.412 23.362 C 81.331 23.363 81.251 23.369 81.171 23.38 C 81.082 23.39 80.995 23.412 80.912 23.444 C 80.833 23.473 80.763 23.52 80.706 23.582 C 80.648 23.647 80.618 23.732 80.622 23.819 C 80.617 23.93 80.662 24.037 80.744 24.112 C 80.837 24.194 80.945 24.257 81.063 24.296 C 81.194 24.345 81.344 24.388 81.512 24.422 C 81.679 24.456 81.852 24.493 82.031 24.534 C 82.205 24.574 82.374 24.624 82.542 24.68 C 82.71 24.738 82.86 24.816 82.992 24.914 C 83.123 25.012 83.23 25.134 83.31 25.283 C 83.39 25.433 83.432 25.616 83.432 25.835 C 83.432 26.1 83.374 26.324 83.256 26.506 C 83.14 26.688 82.983 26.842 82.799 26.955 C 82.606 27.072 82.394 27.156 82.174 27.205 C 81.944 27.255 81.718 27.282 81.493 27.282 C 81.237 27.284 80.982 27.252 80.734 27.186 C 80.516 27.13 80.31 27.032 80.129 26.897 C 79.96 26.769 79.822 26.605 79.726 26.415 C 79.623 26.202 79.57 25.968 79.571 25.731 L 80.53 25.731 Z M 86.499 20.392 L 87.355 20.392 L 87.355 29.003 L 86.499 29.003 Z M 93.625 24.198 C 93.586 23.923 93.48 23.715 93.303 23.574 C 93.128 23.434 92.904 23.364 92.634 23.364 C 92.511 23.364 92.379 23.385 92.24 23.428 C 92.093 23.475 91.96 23.558 91.853 23.67 C 91.735 23.787 91.639 23.951 91.559 24.16 C 91.481 24.37 91.442 24.644 91.442 24.982 C 91.442 25.166 91.461 25.349 91.504 25.534 C 91.545 25.719 91.613 25.88 91.705 26.025 C 91.798 26.168 91.915 26.285 92.061 26.373 C 92.207 26.462 92.382 26.506 92.59 26.506 C 92.848 26.515 93.098 26.419 93.284 26.239 C 93.465 26.061 93.578 25.812 93.623 25.489 L 94.58 25.489 C 94.49 26.07 94.275 26.513 93.937 26.821 C 93.6 27.128 93.15 27.282 92.59 27.282 C 92.28 27.288 91.973 27.228 91.688 27.105 C 91.437 26.994 91.212 26.829 91.03 26.623 C 90.846 26.41 90.707 26.163 90.623 25.895 C 90.528 25.6 90.481 25.292 90.484 24.982 C 90.484 24.655 90.529 24.337 90.619 24.044 C 90.7 23.765 90.837 23.505 91.021 23.281 C 91.203 23.064 91.432 22.89 91.69 22.774 C 91.956 22.65 92.268 22.589 92.626 22.589 C 92.878 22.589 93.116 22.622 93.343 22.689 C 93.569 22.754 93.771 22.853 93.947 22.986 C 94.123 23.117 94.267 23.284 94.38 23.484 C 94.498 23.706 94.566 23.95 94.58 24.2 L 93.624 24.2 Z M 99.171 27.161 L 98.232 27.161 L 98.232 26.541 L 98.215 26.541 C 98.097 26.764 97.922 26.945 97.689 27.079 C 97.475 27.209 97.23 27.279 96.98 27.282 C 96.409 27.282 95.995 27.136 95.742 26.846 C 95.487 26.556 95.361 26.118 95.361 25.532 L 95.361 22.706 L 96.317 22.706 L 96.317 25.437 C 96.317 25.828 96.39 26.103 96.534 26.264 C 96.681 26.424 96.884 26.505 97.148 26.505 C 97.348 26.505 97.518 26.474 97.65 26.41 C 97.778 26.353 97.891 26.265 97.978 26.155 C 98.061 26.049 98.122 25.923 98.158 25.771 C 98.195 25.613 98.213 25.451 98.212 25.289 L 98.212 22.705 L 99.168 22.705 L 99.168 27.158 Z M 100.204 21.013 L 101.161 21.013 L 101.161 27.161 L 100.204 27.161 L 100.204 21.012 Z M 101.765 22.708 L 102.486 22.708 L 102.486 21.373 L 103.443 21.373 L 103.443 22.708 L 104.308 22.708 L 104.308 23.441 L 103.443 23.441 L 103.443 25.816 C 103.443 25.921 103.447 26.009 103.456 26.085 C 103.461 26.151 103.481 26.215 103.514 26.273 C 103.545 26.326 103.594 26.367 103.651 26.389 C 103.733 26.418 103.818 26.431 103.904 26.428 C 103.97 26.428 104.038 26.428 104.106 26.424 C 104.173 26.421 104.24 26.411 104.306 26.394 L 104.306 27.152 L 103.997 27.186 C 103.893 27.197 103.789 27.203 103.685 27.203 C 103.433 27.203 103.231 27.179 103.077 27.131 C 102.94 27.092 102.815 27.018 102.717 26.916 C 102.627 26.815 102.566 26.691 102.54 26.559 C 102.508 26.397 102.49 26.234 102.486 26.069 L 102.486 23.442 L 101.765 23.442 Z M 108.808 27.161 L 107.867 27.161 L 107.867 26.541 L 107.852 26.541 C 107.733 26.764 107.559 26.945 107.326 27.079 C 107.112 27.209 106.867 27.279 106.617 27.282 C 106.045 27.282 105.633 27.136 105.379 26.846 C 105.124 26.556 104.997 26.118 104.997 25.532 L 104.997 22.706 L 105.953 22.706 L 105.953 25.437 C 105.953 25.828 106.024 26.103 106.171 26.264 C 106.315 26.424 106.52 26.505 106.783 26.505 C 106.955 26.511 107.127 26.479 107.286 26.41 C 107.414 26.352 107.526 26.265 107.613 26.155 C 107.7 26.041 107.762 25.91 107.794 25.771 C 107.828 25.622 107.847 25.461 107.847 25.289 L 107.847 22.705 L 108.803 22.705 L 108.803 27.158 Z M 109.815 22.708 L 110.713 22.708 L 110.713 23.569 L 110.73 23.569 C 110.758 23.449 110.811 23.332 110.894 23.217 C 111.064 22.977 111.297 22.79 111.568 22.675 C 111.708 22.617 111.851 22.588 111.997 22.588 C 112.118 22.586 112.239 22.594 112.358 22.613 L 112.358 23.561 C 112.29 23.549 112.222 23.539 112.153 23.531 C 112.085 23.522 112.017 23.517 111.948 23.517 C 111.626 23.516 111.32 23.66 111.117 23.91 C 111.01 24.04 110.927 24.198 110.865 24.388 C 110.8 24.6 110.768 24.821 110.772 25.042 L 110.772 27.161 L 109.815 27.161 L 109.815 22.709 Z M 113.516 25.188 C 113.516 25.361 113.54 25.527 113.589 25.688 C 113.635 25.848 113.708 25.989 113.802 26.11 C 113.897 26.231 114.016 26.325 114.162 26.398 C 114.308 26.471 114.48 26.506 114.681 26.506 C 114.961 26.506 115.186 26.445 115.358 26.322 C 115.528 26.198 115.655 26.013 115.741 25.765 L 116.647 25.765 C 116.558 26.213 116.307 26.613 115.942 26.888 C 115.768 27.018 115.573 27.116 115.358 27.182 C 115.138 27.249 114.91 27.282 114.681 27.282 C 114.341 27.282 114.039 27.225 113.775 27.109 C 113.52 27 113.292 26.835 113.109 26.627 C 112.922 26.411 112.781 26.159 112.697 25.886 C 112.602 25.58 112.555 25.26 112.558 24.94 C 112.558 24.624 112.608 24.324 112.705 24.04 C 112.804 23.755 112.944 23.506 113.125 23.29 C 113.503 22.837 114.066 22.579 114.657 22.589 C 114.997 22.589 115.304 22.662 115.575 22.808 C 115.847 22.954 116.072 23.147 116.252 23.389 C 116.431 23.631 116.561 23.907 116.642 24.22 C 116.723 24.533 116.745 24.855 116.705 25.187 L 113.516 25.187 Z M 115.748 24.543 C 115.738 24.39 115.706 24.239 115.652 24.095 C 115.603 23.958 115.529 23.831 115.434 23.72 C 115.34 23.613 115.226 23.525 115.099 23.462 C 114.962 23.395 114.811 23.361 114.659 23.362 C 114.496 23.362 114.338 23.392 114.2 23.453 C 114.067 23.511 113.947 23.596 113.849 23.704 C 113.639 23.933 113.521 24.232 113.516 24.543 Z M 119.619 20.392 L 120.475 20.392 L 120.475 29.003 L 119.619 29.003 Z M 127.904 27.161 L 126.997 27.161 L 126.997 26.558 L 126.982 26.558 C 126.866 26.804 126.666 27.001 126.418 27.114 C 126.174 27.226 125.907 27.283 125.638 27.282 C 125.297 27.282 124.999 27.221 124.744 27.098 C 124.497 26.98 124.28 26.808 124.11 26.594 C 123.937 26.369 123.809 26.113 123.732 25.84 C 123.646 25.536 123.604 25.221 123.606 24.906 C 123.606 24.503 123.66 24.156 123.766 23.864 C 123.873 23.57 124.014 23.33 124.19 23.14 C 124.366 22.95 124.567 22.811 124.795 22.722 C 125.021 22.634 125.252 22.588 125.487 22.588 C 125.622 22.588 125.759 22.601 125.899 22.627 C 126.039 22.652 126.173 22.695 126.302 22.752 C 126.431 22.808 126.55 22.882 126.658 22.97 C 126.767 23.06 126.858 23.164 126.931 23.285 L 126.948 23.285 L 126.948 21.011 L 127.904 21.011 Z M 124.564 24.983 C 124.564 25.171 124.587 25.358 124.636 25.543 C 124.683 25.726 124.756 25.889 124.854 26.033 C 125.056 26.338 125.4 26.517 125.766 26.507 C 126.142 26.517 126.495 26.326 126.693 26.007 C 126.79 25.858 126.863 25.691 126.912 25.504 C 126.958 25.318 126.983 25.126 126.983 24.931 C 126.983 24.437 126.875 24.052 126.66 23.776 C 126.445 23.501 126.152 23.362 125.782 23.362 C 125.558 23.362 125.37 23.41 125.215 23.505 C 125.063 23.598 124.934 23.725 124.836 23.874 C 124.736 24.033 124.666 24.208 124.628 24.391 C 124.586 24.585 124.564 24.783 124.564 24.981 L 124.564 24.982 Z M 132.578 26.171 C 132.578 26.292 132.592 26.377 132.623 26.43 C 132.654 26.481 132.716 26.507 132.804 26.507 L 132.905 26.507 C 132.943 26.507 132.99 26.503 133.04 26.491 L 133.04 27.172 C 132.89 27.221 132.735 27.255 132.578 27.274 C 132.531 27.279 132.483 27.283 132.435 27.284 C 132.265 27.29 132.096 27.248 131.949 27.162 C 131.82 27.081 131.736 26.942 131.697 26.74 C 131.5 26.933 131.26 27.075 130.996 27.154 C 130.719 27.241 130.451 27.283 130.194 27.283 C 129.999 27.283 129.81 27.255 129.632 27.2 C 129.46 27.15 129.3 27.068 129.158 26.958 C 129.019 26.85 128.907 26.711 128.83 26.553 C 128.746 26.374 128.704 26.178 128.709 25.98 C 128.709 25.704 128.758 25.482 128.855 25.309 C 128.947 25.143 129.081 25.004 129.242 24.904 C 129.401 24.806 129.581 24.736 129.78 24.694 C 129.978 24.651 130.18 24.618 130.38 24.594 C 130.544 24.562 130.709 24.537 130.875 24.522 C 131.031 24.507 131.169 24.483 131.291 24.449 C 131.398 24.421 131.497 24.366 131.577 24.289 C 131.645 24.219 131.681 24.11 131.681 23.967 C 131.686 23.857 131.655 23.748 131.593 23.657 C 131.537 23.579 131.462 23.515 131.375 23.472 C 131.284 23.428 131.186 23.398 131.086 23.385 C 130.986 23.371 130.885 23.364 130.784 23.364 C 130.514 23.364 130.294 23.42 130.122 23.536 C 129.948 23.652 129.849 23.829 129.827 24.069 L 128.871 24.069 C 128.887 23.782 128.955 23.544 129.072 23.354 C 129.189 23.165 129.339 23.013 129.52 22.898 C 129.703 22.782 129.907 22.703 130.137 22.656 C 130.368 22.61 130.601 22.588 130.843 22.588 C 131.055 22.588 131.265 22.61 131.472 22.656 C 131.678 22.701 131.865 22.777 132.031 22.88 C 132.195 22.984 132.329 23.117 132.43 23.282 C 132.531 23.445 132.581 23.644 132.581 23.88 L 132.581 26.171 Z M 131.622 24.931 C 131.477 25.029 131.298 25.088 131.084 25.107 C 130.87 25.127 130.657 25.157 130.446 25.198 C 130.347 25.215 130.249 25.239 130.153 25.271 C 130.063 25.3 129.977 25.344 129.9 25.4 C 129.826 25.456 129.767 25.53 129.729 25.615 C 129.685 25.717 129.663 25.827 129.666 25.937 C 129.666 26.047 129.697 26.138 129.759 26.213 C 129.82 26.289 129.895 26.347 129.981 26.389 C 130.066 26.433 130.163 26.463 130.266 26.481 C 130.473 26.519 130.686 26.513 130.891 26.464 C 131.015 26.435 131.131 26.386 131.239 26.318 C 131.348 26.25 131.441 26.16 131.513 26.055 C 131.588 25.938 131.626 25.801 131.622 25.662 L 131.622 24.929 Z M 133.175 22.708 L 133.897 22.708 L 133.897 21.373 L 134.853 21.373 L 134.853 22.708 L 135.718 22.708 L 135.718 23.441 L 134.853 23.441 L 134.853 25.816 C 134.853 25.921 134.857 26.009 134.866 26.085 C 134.871 26.151 134.891 26.215 134.924 26.273 C 134.956 26.326 135.004 26.367 135.062 26.389 C 135.123 26.415 135.208 26.428 135.315 26.428 C 135.38 26.428 135.449 26.428 135.515 26.424 C 135.583 26.421 135.651 26.411 135.717 26.394 L 135.717 27.152 L 135.407 27.186 C 135.303 27.197 135.199 27.203 135.095 27.203 C 134.843 27.203 134.641 27.179 134.487 27.131 C 134.35 27.092 134.225 27.018 134.126 26.916 C 134.037 26.815 133.976 26.691 133.951 26.559 C 133.918 26.397 133.9 26.234 133.897 26.069 L 133.897 23.442 L 133.175 23.442 Z M 140.04 26.171 C 140.034 26.26 140.05 26.349 140.087 26.43 C 140.117 26.481 140.177 26.507 140.266 26.507 L 140.367 26.507 C 140.406 26.507 140.452 26.503 140.502 26.491 L 140.502 27.172 C 140.406 27.205 140.308 27.23 140.208 27.249 C 140.106 27.27 140.002 27.281 139.898 27.283 C 139.727 27.289 139.558 27.247 139.41 27.162 C 139.282 27.081 139.198 26.942 139.159 26.74 C 138.962 26.933 138.722 27.075 138.457 27.154 C 138.18 27.241 137.913 27.283 137.657 27.283 C 137.461 27.283 137.273 27.255 137.093 27.2 C 136.922 27.15 136.762 27.068 136.62 26.958 C 136.481 26.85 136.369 26.712 136.294 26.553 C 136.208 26.374 136.166 26.178 136.17 25.98 C 136.17 25.704 136.219 25.482 136.318 25.309 C 136.416 25.137 136.544 25.002 136.705 24.904 C 136.864 24.806 137.042 24.736 137.242 24.694 C 137.44 24.651 137.641 24.618 137.843 24.594 C 138.006 24.562 138.171 24.537 138.337 24.522 C 138.494 24.507 138.633 24.483 138.753 24.449 C 138.86 24.421 138.958 24.366 139.038 24.289 C 139.108 24.219 139.144 24.11 139.144 23.967 C 139.149 23.857 139.117 23.748 139.054 23.657 C 138.998 23.579 138.924 23.515 138.837 23.472 C 138.746 23.428 138.648 23.398 138.547 23.385 C 138.447 23.371 138.346 23.364 138.245 23.364 C 137.976 23.364 137.756 23.42 137.583 23.536 C 137.409 23.652 137.311 23.829 137.289 24.069 L 136.333 24.069 C 136.35 23.782 136.418 23.544 136.534 23.354 C 136.651 23.165 136.801 23.013 136.983 22.898 C 137.172 22.78 137.381 22.698 137.599 22.656 C 137.829 22.61 138.065 22.588 138.305 22.588 C 138.517 22.588 138.728 22.61 138.934 22.656 C 139.141 22.701 139.328 22.777 139.493 22.88 C 139.658 22.984 139.79 23.117 139.892 23.282 C 139.993 23.445 140.043 23.644 140.043 23.88 L 140.043 26.171 Z M 139.083 24.931 C 138.938 25.029 138.76 25.088 138.546 25.107 C 138.333 25.126 138.121 25.157 137.909 25.198 C 137.809 25.215 137.711 25.239 137.615 25.271 C 137.524 25.3 137.439 25.344 137.363 25.4 C 137.288 25.456 137.229 25.53 137.19 25.615 C 137.147 25.717 137.126 25.827 137.129 25.937 C 137.129 26.047 137.159 26.138 137.221 26.213 C 137.282 26.289 137.357 26.347 137.443 26.389 C 137.529 26.433 137.625 26.463 137.728 26.481 C 137.833 26.498 137.926 26.506 138.009 26.506 C 138.125 26.505 138.241 26.491 138.354 26.464 C 138.477 26.435 138.593 26.386 138.702 26.318 C 138.81 26.25 138.903 26.16 138.974 26.055 C 139.05 25.938 139.088 25.801 139.083 25.662 L 139.083 24.929 Z\" fill=\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52)) /* {&quot;name&quot;:&quot;Text Dark Primary&quot;} */\"></path></g></g></svg>',svgContentId:11132112611,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:555,intrinsicWidth:2720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-30)/2)),pixelHeight:1110,pixelWidth:5440,sizes:\"147.027px\",src:\"https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/T3hOCrmBtTCoe3x67uHdxJDycpA.png 5440w\"},className:\"framer-iyvycc\",\"data-framer-name\":\"l6\",layoutDependency:layoutDependency,layoutId:\"yo2zinuNv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:978.5,intrinsicWidth:1800.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-30)/2)),pixelHeight:1957,pixelWidth:3601,sizes:\"55.2018px\",src:\"https://framerusercontent.com/images/HPB5AlQbALNmDUyKBNbNWtG8Wvs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/HPB5AlQbALNmDUyKBNbNWtG8Wvs.png?scale-down-to=512 512w,https://framerusercontent.com/images/HPB5AlQbALNmDUyKBNbNWtG8Wvs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HPB5AlQbALNmDUyKBNbNWtG8Wvs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HPB5AlQbALNmDUyKBNbNWtG8Wvs.png 3601w\"},className:\"framer-16gl0z6\",\"data-framer-name\":\"l8\",layoutDependency:layoutDependency,layoutId:\"q3BVA4Iwt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1528.5,intrinsicWidth:3622,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-32)/2)),pixelHeight:3057,pixelWidth:7244,sizes:\"75.8286px\",src:\"https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Ui5VaTvLrFOyi0ZasBIbBnEbk.png 7244w\"},className:\"framer-lv7u88\",\"data-framer-name\":\"l4\",layoutDependency:layoutDependency,layoutId:\"bq6mW77E2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:2790,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-36)/2)),pixelHeight:2836,pixelWidth:5580,sizes:\"70.8322px\",src:\"https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/HaXvG9dBE1stmVbj808CnB7a5CQ.png 5580w\"},className:\"framer-1ael211\",\"data-framer-name\":\"l2\",layoutDependency:layoutDependency,layoutId:\"VcML3U3qW\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pbaqzm\",\"data-framer-name\":\"Frame\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CUYiDDDMP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 40\"><g transform=\"translate(0.085 0.132)\" id=\"ss9895332609_1\"><path d=\"M 0 0 L 115.024 0 L 115.024 38.881 L 0 38.881 Z\" fill=\"transparent\"></path><g id=\"ss9895332609_3\"><path d=\"M 66.065 17.135 C 66.075 15.69 65.209 14.383 63.875 13.828 C 62.541 13.27 61.002 13.569 59.974 14.586 C 58.949 15.602 58.64 17.137 59.19 18.471 C 59.46 19.123 59.917 19.681 60.506 20.074 C 61.094 20.466 61.786 20.675 62.493 20.675 C 63.437 20.678 64.344 20.307 65.015 19.643 C 65.684 18.979 66.061 18.077 66.065 17.135 Z M 76.121 6.914 L 67.657 17.137 L 76.122 27.339 L 65.78 27.339 L 62.494 23.371 L 59.209 27.339 L 48.868 27.339 L 57.333 17.136 L 48.868 6.914 L 59.175 6.914 L 62.493 10.914 L 65.81 6.914 Z M 106.243 6.914 L 101.412 18.152 L 96.352 6.914 L 87.115 6.914 L 96.929 26.846 L 91.447 38.882 L 100.417 38.882 L 115.025 6.914 L 106.244 6.914 Z M 77.147 27.341 L 86.078 27.341 L 86.078 0.003 L 77.147 0.003 Z M 39.02 20.05 C 38.274 20.821 37.256 21.271 36.183 21.303 C 35.639 21.33 35.109 21.122 34.728 20.733 C 34.365 20.342 34.172 19.823 34.191 19.29 L 34.191 6.914 L 25.717 6.914 L 25.717 19.784 C 25.717 22.264 26.42 24.252 27.826 25.745 C 29.172 27.214 31.086 28.031 33.078 27.985 C 35.389 27.929 37.599 27.023 39.285 25.441 L 39.751 27.339 L 47.799 27.339 L 47.837 6.912 L 39.02 6.912 Z M 24.19 15.266 L 24.19 27.336 L 15.297 27.336 L 15.335 16.402 C 15.382 15.611 15.089 14.837 14.529 14.276 C 14.003 13.776 13.3 13.505 12.574 13.522 C 11.123 13.559 9.774 14.276 8.932 15.458 L 8.895 27.338 L 0 27.338 L 0 0 L 8.933 0 L 8.933 9.495 C 10.684 7.665 13.11 6.635 15.643 6.647 C 17.861 6.599 20.015 7.386 21.68 8.852 C 23.354 10.32 24.191 12.459 24.19 15.268\" fill=\"rgb(52,52,52)\"></path></g></g></svg>',svgContentId:9895332609,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1329,intrinsicWidth:3978,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-32)/2)),pixelHeight:2658,pixelWidth:7956,sizes:\"95.7833px\",src:\"https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png?scale-down-to=512 512w,https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/hcHhGCLazJf4Ng5rxAQ5os9VXhA.png 7956w\"},className:\"framer-1icpy0p\",\"data-framer-name\":\"l7\",layoutDependency:layoutDependency,layoutId:\"CKf3Ltv5V\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:59.5,intrinsicWidth:196,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-40)/2)),pixelHeight:119,pixelWidth:392,src:\"https://framerusercontent.com/images/hFCto7w0Y1QoU8fQo8Z3ti8iJ8.png\"},className:\"framer-1ifdyoy\",\"data-framer-name\":\"Mask_group\",layoutDependency:layoutDependency,layoutId:\"g8uVp6nOh\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cekYe.framer-lmjxkl, .framer-cekYe .framer-lmjxkl { display: block; }\",\".framer-cekYe.framer-os2qkf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cekYe .framer-1368ueq { flex: none; height: 30px; position: relative; width: 100px; }\",\".framer-cekYe .framer-zz9xal { aspect-ratio: 9.118243243243244 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 160px; }\",\".framer-cekYe .framer-sndloj { aspect-ratio: 2.012909632571996 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 68px; }\",\".framer-cekYe .framer-isxjzo { aspect-ratio: 3.2762589928057553 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 105px; }\",\".framer-cekYe .framer-oobvfj { aspect-ratio: 3.2286171063149482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 103px; }\",\".framer-cekYe .framer-6zrmnh { aspect-ratio: 2.128 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 64px; }\",\".framer-cekYe .framer-1mrempn { flex: none; height: 30px; position: relative; width: 143px; }\",\".framer-cekYe .framer-iyvycc { aspect-ratio: 4.900900900900901 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 147px; }\",\".framer-cekYe .framer-16gl0z6 { aspect-ratio: 1.8400613183444048 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 55px; }\",\".framer-cekYe .framer-lv7u88 { aspect-ratio: 2.369643441282303 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 76px; }\",\".framer-cekYe .framer-1ael211 { aspect-ratio: 1.9675599435825106 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 71px; }\",\".framer-cekYe .framer-pbaqzm { flex: none; height: 40px; position: relative; width: 116px; }\",\".framer-cekYe .framer-1icpy0p { aspect-ratio: 2.9932279909706545 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 96px; }\",\".framer-cekYe .framer-1ifdyoy { aspect-ratio: 3.2941176470588234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 132px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cekYe.framer-os2qkf { gap: 0px; } .framer-cekYe.framer-os2qkf > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-cekYe.framer-os2qkf > :first-child { margin-left: 0px; } .framer-cekYe.framer-os2qkf > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 2345\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOLaisVW8q=withCSS(Component,css,\"framer-cekYe\");export default FramerOLaisVW8q;FramerOLaisVW8q.displayName=\"Logos\";FramerOLaisVW8q.defaultProps={height:40,width:2345};addFonts(FramerOLaisVW8q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOLaisVW8q\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"2345\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OLaisVW8q.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/components/auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Email_Submit(props){const{redirectURL,slackWebhookURL}=props;var email_global=null;const handleSubmit=async e=>{e.preventDefault();const email=e.target.email.value;email_global=email;console.log(email);if(email){try{// Send to Slack webhook\nawait fetch(slackWebhookURL,{method:\"POST\",body:JSON.stringify({text:`Inbound Lead (email-inbut-bar): ${email}`})});// Redirect after successful submission\nwindow.location.href=`${redirectURL}?email=${encodeURIComponent(email)}`;}catch(error){console.error(\"Error sending to Slack:\",error);// Still redirect even if Slack post fails\nwindow.location.href=`${redirectURL}?email=${encodeURIComponent(email)}`;}}};return /*#__PURE__*/_jsxs(\"div\",{className:\"form-container\",children:[/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,className:\"form\",children:[/*#__PURE__*/_jsx(\"input\",{id:\"inbound_lead_with_email\",\"data-ph-capture-attribute-inbound-lead-with-email\":email_global,type:\"email\",name:\"email\",placeholder:\"Work Email\",required:true,className:\"input\"}),/*#__PURE__*/_jsx(\"button\",{type:\"submit\",\"data-ph-capture-attribute-inbound-lead-with-email\":true,className:\"button\",children:\"Get Started\"})]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                .form-container {\n                    padding: 0;\n                    width: 100%;\n                    display: flex;\n                    justify-content: center;\n                    background-color: transparent;\n                }\n                \n                .form {\n                    display: flex;\n                    flex-direction: row;\n                    gap: 16px;\n                    width: 100%;\n                    max-width: 1000px;\n                }\n                \n                .input {\n                    padding: 12px 16px;\n                    font-size: 16px;\n                    border-radius: 10px;\n                    border: none;\n                    background-color: white;\n                    flex-grow: 1;\n                    min-width: 250px;\n                    box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n                    outline: none;\n                    color: #333;\n                    font-weight: 400;\n                }\n                \n                .button {\n                    padding: 12px 24px;\n                    font-size: 16px;\n                    font-weight: 500;\n                    border-radius: 10px;\n                    border: none;\n                    background-color: #7733FF;\n                    color: white;\n                    cursor: pointer;\n                    white-space: nowrap;\n                    box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n                }\n                \n                @media (max-width: 640px) {\n                    .form {\n                        flex-direction: column;\n                    }\n                    \n                    .input,\n                    .button {\n                        width: 100%;\n                    }\n                }\n            `})]});}addPropertyControls(Email_Submit,{redirectURL:{title:\"Redirect URL\",type:ControlType.String,defaultValue:\"https://coloop.cal.com/forms/2f665c61-b050-49b8-b0bf-f82df2c4fc9b\"},slackWebhookURL:{title:\"Slack Webhook URL\",type:ControlType.String,defaultValue:\"https://hooks.slack.com/services/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\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Email_Submit\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Email_Submit.map", "// Generated by Framer (cf4c6d7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Montreal Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/gFY5sT08OJzaVKejDc8tZ3kRgFo.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-00FCz .framer-styles-preset-1im19vd:not(.rich-text-wrapper), .framer-00FCz .framer-styles-preset-1im19vd.rich-text-wrapper p { --framer-font-family: \"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, #343434); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-00FCz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import TestimonialsItem from\"#framer/local/canvasComponent/EoeW9cqKY/EoeW9cqKY.js\";import Banner from\"#framer/local/canvasComponent/fL09ZjHlT/fL09ZjHlT.js\";import Header from\"#framer/local/canvasComponent/Gbiv447Zy/Gbiv447Zy.js\";import Footer from\"#framer/local/canvasComponent/MqmuVWzNS/MqmuVWzNS.js\";import Logos from\"#framer/local/canvasComponent/OLaisVW8q/OLaisVW8q.js\";import Button from\"#framer/local/canvasComponent/px6nfpGPi/px6nfpGPi.js\";import Email_Submit from\"#framer/local/codeFile/mRJFN_Z/Email_Submit.js\";import*as sharedStyle1 from\"#framer/local/css/ctgJ9ezUa/ctgJ9ezUa.js\";import*as sharedStyle3 from\"#framer/local/css/KHC6pX0jd/KHC6pX0jd.js\";import*as sharedStyle5 from\"#framer/local/css/MoETyYGQv/MoETyYGQv.js\";import*as sharedStyle4 from\"#framer/local/css/s8M1Wj0xI/s8M1Wj0xI.js\";import*as sharedStyle from\"#framer/local/css/TrS93k5IS/TrS93k5IS.js\";import*as sharedStyle6 from\"#framer/local/css/VsgQOl7KQ/VsgQOl7KQ.js\";import*as sharedStyle2 from\"#framer/local/css/yGcPOI9gt/yGcPOI9gt.js\";import*as sharedStyle7 from\"#framer/local/css/YKTuzqtP9/YKTuzqtP9.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const BannerFonts=getFonts(Banner);const HeaderFonts=getFonts(Header);const Email_SubmitFonts=getFonts(Email_Submit);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const LogosFonts=getFonts(Logos);const TickerFonts=getFonts(Ticker);const TestimonialsItemFonts=getFonts(TestimonialsItem);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={dUbldtDdl:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",Xi5dXZdgz:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gef8h\";const variantClassNames={dUbldtDdl:\"framer-v-ib7xvb\",WQLkyLRf1:\"framer-v-72rtr7\",Xi5dXZdgz:\"framer-v-q7vv2d\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Xi5dXZdgz\",Tablet:\"dUbldtDdl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"dUbldtDdl\",\"Xi5dXZdgz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"dUbldtDdl\",\"Xi5dXZdgz\"].includes(baseVariant))return true;return false;};const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"nRzXJxNz9\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a8ea141e-a316-42eb-b59f-a11c6ab7db70, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g26hcx\",\"data-framer-name\":\"Header + Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fg2tsn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17g7anx-container\",nodeId:\"DIryHp01t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xi5dXZdgz:{variant:\"vJy0MygPv\"}},children:/*#__PURE__*/_jsx(Banner,{height:\"100%\",id:\"DIryHp01t\",layoutId:\"DIryHp01t\",style:{width:\"100%\"},variant:\"gLB9dQc2u\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w8wyo0-container\",nodeId:\"lpkd3DBS7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{variant:\"SC4ckRe1P\"},Xi5dXZdgz:{variant:\"SC4ckRe1P\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"lpkd3DBS7\",layoutId:\"lpkd3DBS7\",style:{width:\"100%\"},variant:\"ccED5bKDs\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-47mkuh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11b9g1x\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ajl2of\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1im19vd\",\"data-styles-preset\":\"TrS93k5IS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"The AI analysis copilot for Insights & Strategy\"})}),className:\"framer-vx0hx1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Add highly accurate domain specific AI to any qualitative research project in minutes and save days of time & thousands in cost\"})}),className:\"framer-11qelta\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-799l0-container\",isAuthoredByUser:true,nodeId:\"GzYD0YpdS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{style:{maxWidth:\"100%\"}}},children:/*#__PURE__*/_jsx(Email_Submit,{height:\"100%\",id:\"GzYD0YpdS\",layoutId:\"GzYD0YpdS\",redirectURL:\"https://coloop.cal.com/forms/2f665c61-b050-49b8-b0bf-f82df2c4fc9b\",slackWebhookURL:\"https://hooks.slack.com/services/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\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19gnm30\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmhl1h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iPJwsKXEB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iPJwsKXEB\",isMixedBorderRadius:false,layoutId:\"iPJwsKXEB\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/ymqIrfpyDSyVBs8ykgjc4If8tJo.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zpZAM6DJ8Qx1O2z6IFvTNI0ospU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l8qrp6\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1gdudvs\",\"data-framer-name\":\"Section 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9w3x09\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ndpc1v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Join 260+ Insights & Strategy Teams running on CoLoop\"})}),className:\"framer-1dtrngi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Digitally transform your research teams with cutting edge AI combined with expert training, onboarding and support included.\"})}),className:\"framer-mn6sk7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{y:(componentViewport?.y||0)+0+1537+80+0+0+254.5},Xi5dXZdgz:{y:(componentViewport?.y||0)+0+1485+75+0+0+254.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1532+100+0+0+254.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-87pjeh-container\",nodeId:\"ebJ5W9FwH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ebJ5W9FwH\",layoutId:\"ebJ5W9FwH\",PFHfDAvQV:\"Join the community\",variant:\"gIzhDPQtt\",w2aboHv2W:true,width:\"100%\",Wqsjirugc:\"community.coloop.ai\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-169uf9o-container\",\"data-framer-name\":\"Ticker Desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Desktop\",nodeId:\"fEJQ5Wds9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:70,height:\"100%\",hoverFactor:1,id:\"fEJQ5Wds9\",layoutId:\"fEJQ5Wds9\",name:\"Ticker Desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"2346px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1636iwq-container\",inComponentSlot:true,nodeId:\"sdPqYo9fG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"sdPqYo9fG\",layoutId:\"sdPqYo9fG\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkzxyp hidden-ib7xvb hidden-q7vv2d\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14okrl7-container\",\"data-framer-name\":\"Ticker Desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Desktop\",nodeId:\"XuUu_oBpQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:20,height:\"100%\",hoverFactor:.1,id:\"XuUu_oBpQ\",layoutId:\"XuUu_oBpQ\",name:\"Ticker Desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17kng1n\",\"data-framer-name\":\"Testimonials Desktop\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ku611k-container\",inComponentSlot:true,nodeId:\"ELPX8l2Hq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ELPX8l2Hq\",If6ZOB1kh:\"The Qual Street team use Coloop for all our projects - to help with our analysis, report writing and presentations. In short Coloop makes us better researchers - and we love it!\",kw99ZInZS:addImageAlt({pixelHeight:298,pixelWidth:298,src:\"https://framerusercontent.com/images/Q7iRk2Z8FtP1m859Le4sCcPMGSg.png\"},\"\"),layoutId:\"ELPX8l2Hq\",LI4fH7p6x:\"Owner at Qualitative Street Ltd\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Katherine Rhodes\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6cj3l-container\",inComponentSlot:true,nodeId:\"ZJUJPynb5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ZJUJPynb5\",If6ZOB1kh:\"I love that every summary is hyperlinked, so you can quickly navigate large data sets with ease and find supporting evidence much quicker than you could before.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png\",srcSet:\"https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png?scale-down-to=512 512w,https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png 800w\"},\"\"),layoutId:\"ZJUJPynb5\",LI4fH7p6x:\"Director at Mustard\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Anthony Shephard-Williams \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ow5z50-container\",inComponentSlot:true,nodeId:\"xqp_U9Aej\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"xqp_U9Aej\",If6ZOB1kh:\"CoLoop has been a great help. It helps put order on the chaos of unstructured data, speeding up thematic analysis and helping us all relax about our approaching deadlines!\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png\",srcSet:\"https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png 800w\"},\"\"),layoutId:\"xqp_U9Aej\",LI4fH7p6x:\"Director at Trinity McQueen\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Simon Shaw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o22fmi-container\",inComponentSlot:true,nodeId:\"y_B0KRaf2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"y_B0KRaf2\",If6ZOB1kh:\"I joined this group because I love multimethod research and know how many clients miss opportunities conducting way too many interviews with little to no structure or support from a trained analyst. \\n\\n\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png\",srcSet:\"https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png?scale-down-to=512 512w,https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png 800w\"},\"\"),layoutId:\"y_B0KRaf2\",LI4fH7p6x:\"Strategy for Purposeful Communication\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Christina La Fleur\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ib8w6p-container\",inComponentSlot:true,nodeId:\"aNa8TDHOV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"aNa8TDHOV\",If6ZOB1kh:\"This is Jd from Third Eye - one of the leading mixed methods research agency in India - currently in our 30th year. Glad to be part of this community :) \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png\",srcSet:\"https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png 800w\"},\"\"),layoutId:\"aNa8TDHOV\",LI4fH7p6x:\"Partner at The Third Eye\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jayadev Ambar\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9wdhqn-container\",inComponentSlot:true,nodeId:\"PSkE7WaGB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"PSkE7WaGB\",If6ZOB1kh:\"I started using Coloop in October 2023 thanks to a recommendation from one of my clients. Since then, I\u2019ve already incorporated it into seven projects.\",kw99ZInZS:addImageAlt({pixelHeight:718,pixelWidth:718,src:\"https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png\",srcSet:\"https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png 718w\"},\"\"),layoutId:\"PSkE7WaGB\",LI4fH7p6x:\"International Qualitative Research Consultant\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Silvia Iranzo Ferrandis \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsvxfp-container\",inComponentSlot:true,nodeId:\"ElCgcToVL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ElCgcToVL\",If6ZOB1kh:\"My team is using CoLoop to help manage dozens of interviews and focus groups, and it\u2019s a real game changer.  \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png\",srcSet:\"https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png 800w\"},\"\"),layoutId:\"ElCgcToVL\",LI4fH7p6x:\"Founder of Strategic Measures\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Margaret Gassanov\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m12kqw-container\",inComponentSlot:true,nodeId:\"AXUga7sJw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"AXUga7sJw\",If6ZOB1kh:\"I\u2019ve been using CoLoop since it was in beta, and I\u2019ve really enjoyed not only the constant improvements and evolution of the product but also the great service that I get from The CoLoop Team.\",kw99ZInZS:addImageAlt({pixelHeight:742,pixelWidth:742,src:\"https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png\",srcSet:\"https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png 742w\"},\"\"),layoutId:\"AXUga7sJw\",LI4fH7p6x:\"Director Of Operations at The Culture Foundry Co\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Bradley Shrimpton\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0u3h3-container\",inComponentSlot:true,nodeId:\"q8adlfGDY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"q8adlfGDY\",If6ZOB1kh:\"In market research, I relied on CoLoop for helping with patient journeys, concept testing, etc., and am now looking forward to seeing how I can use CoLoop to support qualitative research in PCO.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png\",srcSet:\"https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png 800w\"},\"\"),layoutId:\"q8adlfGDY\",LI4fH7p6x:\"Associate director at Lumanity\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Ettya Fremont\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g7kdmu-container\",inComponentSlot:true,nodeId:\"pylFT8T50\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"pylFT8T50\",If6ZOB1kh:\"I\u2019m just starting my CoLoop journey. I\u2019m especially excited about using CoLoop to help smaller nonprofits more efficiently leverage their qualitative data to tell their stories, learn, and grow.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/gHo8OPNECmy91SgCnmXERNlPfJw.png\"},\"\"),layoutId:\"pylFT8T50\",LI4fH7p6x:\"Independent consultant\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Monica Castellano\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ggeae-container\",inComponentSlot:true,nodeId:\"oTRvthpdi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"oTRvthpdi\",If6ZOB1kh:\"I\u2019m currently evaluating how tools such as CoLoop can help our academics and Phd students learn how to apply qualitative research approaches.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png\",srcSet:\"https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png 800w\"},\"\"),layoutId:\"oTRvthpdi\",LI4fH7p6x:\"Professor at the University of Portsmouth\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Nigel Williams\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2wlbv-container\",inComponentSlot:true,nodeId:\"q8EpU20zf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"q8EpU20zf\",If6ZOB1kh:\"We have been using CoLoop since the middle of last year and it has been a great addition to our toolbox. \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png\",srcSet:\"https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png 800w\"},\"\"),layoutId:\"q8EpU20zf\",LI4fH7p6x:\"Director of Qualitative Insights\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Nick Costa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-llvfem-container\",inComponentSlot:true,nodeId:\"Fk0dBVM7F\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"Fk0dBVM7F\",If6ZOB1kh:\"We are in our first year of using CoLoop and really loving it.  Appreciate the fantastic, responsive customer service.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png\",srcSet:\"https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png 800w\"},\"\"),layoutId:\"Fk0dBVM7F\",LI4fH7p6x:\"Co-Founder & Principal at Actionable Insights\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jennifer Brozzo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4qr5u7-container\",inComponentSlot:true,nodeId:\"aLIskLWdG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"aLIskLWdG\",If6ZOB1kh:\"My company just signed up for a full year contract with CoLoop after several pilots and we are in the midst of deployment! Everyone I have given a sneak peak is with is super excited.  \",kw99ZInZS:addImageAlt({pixelHeight:260,pixelWidth:260,src:\"https://framerusercontent.com/images/4jfVkTX301hLM2tdcnevy6s24i8.png\"},\"\"),layoutId:\"aLIskLWdG\",LI4fH7p6x:\"Senior Director of Client Service at Radius\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jodi Koehler\",width:\"100%\"})})})]})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-exfrl3-container\",\"data-framer-name\":\"Ticker Desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Desktop\",nodeId:\"Uls3QcB5S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:20,height:\"100%\",hoverFactor:.1,id:\"Uls3QcB5S\",layoutId:\"Uls3QcB5S\",name:\"Ticker Desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wyx3cg\",\"data-framer-name\":\"Testimonials Desktop\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16y4e8z-container\",inComponentSlot:true,nodeId:\"b0Dv7NeFL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"b0Dv7NeFL\",If6ZOB1kh:\"I\u2019ve been lucky enough to use CoLoop a few times through client projects and really keen to see it grow and integrate it into my own work.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wUm8Uu5OBq5vP5vhUxqFcs8i7w0.png\"},\"\"),layoutId:\"b0Dv7NeFL\",LI4fH7p6x:\"Freelance research\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Hannah Marcus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gg1wpt-container\",inComponentSlot:true,nodeId:\"KJPxj1aa9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"KJPxj1aa9\",If6ZOB1kh:\"Our firm has recently started leveraging CoLoop for our qualitative projects and I\u2019m excited to learn and share some tips and tricks with others on how to best maximize the platform.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png\",srcSet:\"https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png?scale-down-to=512 512w,https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png 800w\"},\"\"),layoutId:\"KJPxj1aa9\",LI4fH7p6x:\"Research Manager at Phase 5\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Aleta Pleasant\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6oj6fx-container\",inComponentSlot:true,nodeId:\"JV7iS6OuC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"JV7iS6OuC\",If6ZOB1kh:\"I\u2019m exploring CoLoop for a very in-depth interview study that I\u2019m currently working on.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png\",srcSet:\"https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png 800w\"},\"\"),layoutId:\"JV7iS6OuC\",LI4fH7p6x:\"Founder of Mission Bloom\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Valerie Futch Ehrlich\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4pf769-container\",inComponentSlot:true,nodeId:\"B3oVRdSXe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"B3oVRdSXe\",If6ZOB1kh:\"We LOVE working with CoLoop and we know our users do to.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png\",srcSet:\"https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png 800w\"},\"\"),layoutId:\"B3oVRdSXe\",LI4fH7p6x:\"Commercial Director at Qualzy\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Paul Kingsley-Smith\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qo9v0i-container\",inComponentSlot:true,nodeId:\"M6jRuU6E5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"M6jRuU6E5\",If6ZOB1kh:\"CoLoop's systematic grid layout made it incredibly easy to cluster themes and report on topic frequencies. Our other clients have loved this combination too.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png\",srcSet:\"https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png 800w\"},\"\"),layoutId:\"M6jRuU6E5\",LI4fH7p6x:\"Founder of Yazi\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Tim Treagus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ch0yih-container\",inComponentSlot:true,nodeId:\"FpF4RSYj_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"FpF4RSYj_\",If6ZOB1kh:\"I\u2019ve been using CoLoop for a while, and it\u2019s a great tool.  Looking forward to being part of this community.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/FdBFUm0GetdDC94knCgTHw57Po.png\"},\"\"),layoutId:\"FpF4RSYj_\",LI4fH7p6x:\"Qual researcher & evaluator\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Alison Lyon\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zemv-container\",inComponentSlot:true,nodeId:\"z654STG4G\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"z654STG4G\",If6ZOB1kh:\"I just wrapped my 2nd project using CoLoop and am super excited about what this tool can do. It\u2019s been a very helpful resource.  \",kw99ZInZS:addImageAlt({pixelHeight:608,pixelWidth:608,src:\"https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png\",srcSet:\"https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png 608w\"},\"\"),layoutId:\"z654STG4G\",LI4fH7p6x:\"UX Research & Strategy\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Katy Gleason\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zic3ss-container\",inComponentSlot:true,nodeId:\"mhsv9B5YQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"mhsv9B5YQ\",If6ZOB1kh:\"Coloop has been a game changer for us to help us create more consistent analysis across projects.\",kw99ZInZS:addImageAlt({pixelHeight:518,pixelWidth:518,src:\"https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png\",srcSet:\"https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png 518w\"},\"\"),layoutId:\"mhsv9B5YQ\",LI4fH7p6x:\"Partner at Yonder Consulting\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Laura Payten\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7vy3wg-container\",inComponentSlot:true,nodeId:\"ccxI0uL1t\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ccxI0uL1t\",If6ZOB1kh:\"I like the way the Coloop has evolved and am curious to see where the journey goes. Exciting times for qualitative researchers.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/4USOAHgH7td6G53TDaTJLNI4I68.png\"},\"\"),layoutId:\"ccxI0uL1t\",LI4fH7p6x:\"Founder of Naether Marktforschung GmbH\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Frank-Thomas Naether\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jupon-container\",inComponentSlot:true,nodeId:\"JQZ_OctGd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"JQZ_OctGd\",If6ZOB1kh:\"I have just completed a project where I used CoLoop, and I am delighted. The only thing I am waiting for is the implementation of the Nordic languages.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/GFNw92LA5VvPMx7xq1Xt8u9vOY.png\"},\"\"),layoutId:\"JQZ_OctGd\",LI4fH7p6x:\"Senior Advisor at Nordic Viewpoint\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Anna-Lena Wihlborg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ksu5w-container\",inComponentSlot:true,nodeId:\"BDyU_Yb3y\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"BDyU_Yb3y\",If6ZOB1kh:\"My partner and I dipped our toes into CoLoop this past year after a demo. The recent trainings have been so helpful and we are excited to dive in further.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png\",srcSet:\"https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png 800w\"},\"\"),layoutId:\"BDyU_Yb3y\",LI4fH7p6x:\"Partner at Marigold Evaluation\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Rekha Shukla \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-db54gx-container\",inComponentSlot:true,nodeId:\"fRMztUpb5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"fRMztUpb5\",If6ZOB1kh:\"Having explored lots of options for AI-assisted qual data analysis I\u2019m really keen to use CoLoop, it looks like a front-runner for me. \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png\",srcSet:\"https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png 800w\"},\"\"),layoutId:\"fRMztUpb5\",LI4fH7p6x:\"Researcher and Evaluator\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Kathy Seymour\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kfmlzb-container\",inComponentSlot:true,nodeId:\"BMIH3ePXt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"BMIH3ePXt\",If6ZOB1kh:\"My company has used CoLoop since beta stage! Have enjoyed seeing it grow and develop.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png\",srcSet:\"https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png 800w\"},\"\"),layoutId:\"BMIH3ePXt\",LI4fH7p6x:\"Research Manager at Research in Finance\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Rachel Powell\",width:\"100%\"})})})]})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwywdp hidden-72rtr7\",\"data-framer-name\":\"Mobile\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lmjhot-container\",\"data-framer-name\":\"Ticker Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Mobile\",nodeId:\"pwRFA_G7d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:20,height:\"100%\",hoverFactor:.1,id:\"pwRFA_G7d\",layoutId:\"pwRFA_G7d\",name:\"Ticker Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x173w6\",\"data-framer-name\":\"Testimonials Mobile\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-158mjzn-container\",inComponentSlot:true,nodeId:\"v0rDpgcYu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"v0rDpgcYu\",If6ZOB1kh:\"The Qual Street team use Coloop for all our projects - to help with our analysis, report writing and presentations. In short Coloop makes us better researchers - and we love it!\",kw99ZInZS:addImageAlt({pixelHeight:298,pixelWidth:298,src:\"https://framerusercontent.com/images/Q7iRk2Z8FtP1m859Le4sCcPMGSg.png\"},\"\"),layoutId:\"v0rDpgcYu\",LI4fH7p6x:\"Owner at Qualitative Street Ltd\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Katherine Rhodes\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jrl5cc-container\",inComponentSlot:true,nodeId:\"ihQf7WK9L\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ihQf7WK9L\",If6ZOB1kh:\"I love that every summary is hyperlinked, so you can quickly navigate large data sets with ease and find supporting evidence much quicker than you could before.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png\",srcSet:\"https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png?scale-down-to=512 512w,https://framerusercontent.com/images/L5U5QYA7uWAC8lOvmkjm3BqN44.png 800w\"},\"\"),layoutId:\"ihQf7WK9L\",LI4fH7p6x:\"Director at Mustard\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Anthony Shephard-Williams \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15wy9v4-container\",inComponentSlot:true,nodeId:\"t9Ccq7syt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"t9Ccq7syt\",If6ZOB1kh:\"CoLoop has been a great help. It helps put order on the chaos of unstructured data, speeding up thematic analysis and helping us all relax about our approaching deadlines!\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png\",srcSet:\"https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FmJSFDAD1PUlLqnlQoLgSSRuJPc.png 800w\"},\"\"),layoutId:\"t9Ccq7syt\",LI4fH7p6x:\"Director at Trinity McQueen\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Simon Shaw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-96vw2x-container\",inComponentSlot:true,nodeId:\"WiHgcKy7g\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"WiHgcKy7g\",If6ZOB1kh:\"I joined this group because I love multimethod research and know how many clients miss opportunities conducting way too many interviews with little to no structure or support from a trained analyst. \\n\\n\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png\",srcSet:\"https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png?scale-down-to=512 512w,https://framerusercontent.com/images/r61E18vzMJFw2DI9naTpmxdt8wY.png 800w\"},\"\"),layoutId:\"WiHgcKy7g\",LI4fH7p6x:\"Strategy for Purposeful Communication\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Christina La Fleur\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mpewtl-container\",inComponentSlot:true,nodeId:\"MoMDykIGr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"MoMDykIGr\",If6ZOB1kh:\"This is Jd from Third Eye - one of the leading mixed methods research agency in India - currently in our 30th year. Glad to be part of this community :) \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png\",srcSet:\"https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/iaWNbM3mP5eMB9diQofYnaSBjd4.png 800w\"},\"\"),layoutId:\"MoMDykIGr\",LI4fH7p6x:\"Partner at The Third Eye\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jayadev Ambar\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-glg1y8-container\",inComponentSlot:true,nodeId:\"fAe4KAngi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"fAe4KAngi\",If6ZOB1kh:\"I started using Coloop in October 2023 thanks to a recommendation from one of my clients. Since then, I\u2019ve already incorporated it into seven projects.\",kw99ZInZS:addImageAlt({pixelHeight:718,pixelWidth:718,src:\"https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png\",srcSet:\"https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yohw2LbeN5aqpJlOfL5lQdOUeI.png 718w\"},\"\"),layoutId:\"fAe4KAngi\",LI4fH7p6x:\"International Qualitative Research Consultant\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Silvia Iranzo Ferrandis \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dtxa5j-container\",inComponentSlot:true,nodeId:\"ipCdXpsfL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"ipCdXpsfL\",If6ZOB1kh:\"My team is using CoLoop to help manage dozens of interviews and focus groups, and it\u2019s a real game changer.  \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png\",srcSet:\"https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fwY2t0YaTtJ8yQ1Vy6xFaGoyRU.png 800w\"},\"\"),layoutId:\"ipCdXpsfL\",LI4fH7p6x:\"Founder of Strategic Measures\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Margaret Gassanov\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gb8ktl-container\",inComponentSlot:true,nodeId:\"DNkoZpXlS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"DNkoZpXlS\",If6ZOB1kh:\"I\u2019ve been using CoLoop since it was in beta, and I\u2019ve really enjoyed not only the constant improvements and evolution of the product but also the great service that I get from The CoLoop Team.\",kw99ZInZS:addImageAlt({pixelHeight:742,pixelWidth:742,src:\"https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png\",srcSet:\"https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/eQczh0qHaCIWMWkPT6wQH2VSb6k.png 742w\"},\"\"),layoutId:\"DNkoZpXlS\",LI4fH7p6x:\"Director Of Operations at The Culture Foundry Co\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Bradley Shrimpton\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10h3uzd-container\",inComponentSlot:true,nodeId:\"hjo4T0xlD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"hjo4T0xlD\",If6ZOB1kh:\"In market research, I relied on CoLoop for helping with patient journeys, concept testing, etc., and am now looking forward to seeing how I can use CoLoop to support qualitative research in PCO.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png\",srcSet:\"https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png?scale-down-to=512 512w,https://framerusercontent.com/images/ioQ6VsPglHzJa3CPJ6pgOfF07U.png 800w\"},\"\"),layoutId:\"hjo4T0xlD\",LI4fH7p6x:\"Associate director at Lumanity\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Ettya Fremont\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rv8esj-container\",inComponentSlot:true,nodeId:\"hu3_BRoII\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"hu3_BRoII\",If6ZOB1kh:\"I\u2019m just starting my CoLoop journey. I\u2019m especially excited about using CoLoop to help smaller nonprofits more efficiently leverage their qualitative data to tell their stories, learn, and grow.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/gHo8OPNECmy91SgCnmXERNlPfJw.png\"},\"\"),layoutId:\"hu3_BRoII\",LI4fH7p6x:\"Independent consultant\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Monica Castellano\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ouvg4s-container\",inComponentSlot:true,nodeId:\"i9m6PWW7n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"i9m6PWW7n\",If6ZOB1kh:\"I\u2019m currently evaluating how tools such as CoLoop can help our academics and Phd students learn how to apply qualitative research approaches.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png\",srcSet:\"https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/JwX8t8UJCPpDmmpii3lFryRqzk.png 800w\"},\"\"),layoutId:\"i9m6PWW7n\",LI4fH7p6x:\"Professor at the University of Portsmouth\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Nigel Williams\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mnyhp-container\",inComponentSlot:true,nodeId:\"Sd4BUVdzG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"Sd4BUVdzG\",If6ZOB1kh:\"We have been using CoLoop since the middle of last year and it has been a great addition to our toolbox. \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png\",srcSet:\"https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/w2uefvA56jqqDv1DUYNz4IyeI.png 800w\"},\"\"),layoutId:\"Sd4BUVdzG\",LI4fH7p6x:\"Director of Qualitative Insights\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Nick Costa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q94m3f-container\",inComponentSlot:true,nodeId:\"r1grk6cat\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"r1grk6cat\",If6ZOB1kh:\"We are in our first year of using CoLoop and really loving it.  Appreciate the fantastic, responsive customer service.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png\",srcSet:\"https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fqapN3kl3QlUcZTZHvqsuwh8fOU.png 800w\"},\"\"),layoutId:\"r1grk6cat\",LI4fH7p6x:\"Co-Founder & Principal at Actionable Insights\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jennifer Brozzo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qq38lp-container\",inComponentSlot:true,nodeId:\"Qwj0LukPC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"Qwj0LukPC\",If6ZOB1kh:\"My company just signed up for a full year contract with CoLoop after several pilots and we are in the midst of deployment! Everyone I have given a sneak peak is with is super excited.  \",kw99ZInZS:addImageAlt({pixelHeight:260,pixelWidth:260,src:\"https://framerusercontent.com/images/4jfVkTX301hLM2tdcnevy6s24i8.png\"},\"\"),layoutId:\"Qwj0LukPC\",LI4fH7p6x:\"Senior Director of Client Service at Radius\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Jodi Koehler\",width:\"100%\"})})})]})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-127bmgf-container\",\"data-framer-name\":\"Ticker Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Mobile\",nodeId:\"aZRsdgqKt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:20,height:\"100%\",hoverFactor:.1,id:\"aZRsdgqKt\",layoutId:\"aZRsdgqKt\",name:\"Ticker Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-120lm4n\",\"data-framer-name\":\"Testimonials Mobile\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1grj01c-container\",inComponentSlot:true,nodeId:\"GudliM4hj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"GudliM4hj\",If6ZOB1kh:\"I\u2019ve been lucky enough to use CoLoop a few times through client projects and really keen to see it grow and integrate it into my own work.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/wUm8Uu5OBq5vP5vhUxqFcs8i7w0.png\"},\"\"),layoutId:\"GudliM4hj\",LI4fH7p6x:\"Freelance research\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Hannah Marcus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kmhcrn-container\",inComponentSlot:true,nodeId:\"fY80nbI9c\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"fY80nbI9c\",If6ZOB1kh:\"Our firm has recently started leveraging CoLoop for our qualitative projects and I\u2019m excited to learn and share some tips and tricks with others on how to best maximize the platform.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png\",srcSet:\"https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png?scale-down-to=512 512w,https://framerusercontent.com/images/le4pYKKGw1Ph17MEPoMSEKpg0A.png 800w\"},\"\"),layoutId:\"fY80nbI9c\",LI4fH7p6x:\"Research Manager at Phase 5\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Aleta Pleasant\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-v21pma-container\",inComponentSlot:true,nodeId:\"wCewFm_VJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"wCewFm_VJ\",If6ZOB1kh:\"I\u2019m exploring CoLoop for a very in-depth interview study that I\u2019m currently working on.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png\",srcSet:\"https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bki8nqDQcEeAG1nYCz0erzPEKE.png 800w\"},\"\"),layoutId:\"wCewFm_VJ\",LI4fH7p6x:\"Founder of Mission Bloom\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Valerie Futch Ehrlich\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gkgk76-container\",inComponentSlot:true,nodeId:\"Sdbm5QbZA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"Sdbm5QbZA\",If6ZOB1kh:\"We LOVE working with CoLoop and we know our users do to.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png\",srcSet:\"https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/efKLvUMwoL7wMPd1JWIgxBJAz8.png 800w\"},\"\"),layoutId:\"Sdbm5QbZA\",LI4fH7p6x:\"Commercial Director at Qualzy\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Paul Kingsley-Smith\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbm3ex-container\",inComponentSlot:true,nodeId:\"LJHjOVqIi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"LJHjOVqIi\",If6ZOB1kh:\"CoLoop's systematic grid layout made it incredibly easy to cluster themes and report on topic frequencies. Our other clients have loved this combination too.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png\",srcSet:\"https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7q7m8JWGhbFFjhskz4Yu0vTo.png 800w\"},\"\"),layoutId:\"LJHjOVqIi\",LI4fH7p6x:\"Founder of Yazi\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Tim Treagus\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ouvziy-container\",inComponentSlot:true,nodeId:\"NuwmcAOXc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"NuwmcAOXc\",If6ZOB1kh:\"I\u2019ve been using CoLoop for a while, and it\u2019s a great tool.  Looking forward to being part of this community.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/FdBFUm0GetdDC94knCgTHw57Po.png\"},\"\"),layoutId:\"NuwmcAOXc\",LI4fH7p6x:\"Qual researcher & evaluator\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Alison Lyon\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ghzm70-container\",inComponentSlot:true,nodeId:\"OiNuTqoTN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"OiNuTqoTN\",If6ZOB1kh:\"I just wrapped my 2nd project using CoLoop and am super excited about what this tool can do. It\u2019s been a very helpful resource.  \",kw99ZInZS:addImageAlt({pixelHeight:608,pixelWidth:608,src:\"https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png\",srcSet:\"https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/xAtte9CW0n5dtfS3MPeMHs3E.png 608w\"},\"\"),layoutId:\"OiNuTqoTN\",LI4fH7p6x:\"UX Research & Strategy\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Katy Gleason\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g32dun-container\",inComponentSlot:true,nodeId:\"AmshwCiKR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"AmshwCiKR\",If6ZOB1kh:\"Coloop has been a game changer for us to help us create more consistent analysis across projects.\",kw99ZInZS:addImageAlt({pixelHeight:518,pixelWidth:518,src:\"https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png\",srcSet:\"https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/nNNmxshY23FOOEyw3i7Da10FNM.png 518w\"},\"\"),layoutId:\"AmshwCiKR\",LI4fH7p6x:\"Partner at Yonder Consulting\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Laura Payten\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gfm9gk-container\",inComponentSlot:true,nodeId:\"TrosxFR7x\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"TrosxFR7x\",If6ZOB1kh:\"I like the way the Coloop has evolved and am curious to see where the journey goes. Exciting times for qualitative researchers.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/4USOAHgH7td6G53TDaTJLNI4I68.png\"},\"\"),layoutId:\"TrosxFR7x\",LI4fH7p6x:\"Founder of Naether Marktforschung GmbH\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Frank-Thomas Naether\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xgonu-container\",inComponentSlot:true,nodeId:\"PCFlTlUFh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"PCFlTlUFh\",If6ZOB1kh:\"I have just completed a project where I used CoLoop, and I am delighted. The only thing I am waiting for is the implementation of the Nordic languages.\",kw99ZInZS:addImageAlt({pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/GFNw92LA5VvPMx7xq1Xt8u9vOY.png\"},\"\"),layoutId:\"PCFlTlUFh\",LI4fH7p6x:\"Senior Advisor at Nordic Viewpoint\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Anna-Lena Wihlborg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iouwpl-container\",inComponentSlot:true,nodeId:\"AweP1D8hi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"AweP1D8hi\",If6ZOB1kh:\"My partner and I dipped our toes into CoLoop this past year after a demo. The recent trainings have been so helpful and we are excited to dive in further.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png\",srcSet:\"https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qFZjgLrO6LkIpxjaVDgVKdLuA.png 800w\"},\"\"),layoutId:\"AweP1D8hi\",LI4fH7p6x:\"Partner at Marigold Evaluation\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Rekha Shukla \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1orgnw7-container\",inComponentSlot:true,nodeId:\"OAE3U6z7t\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"OAE3U6z7t\",If6ZOB1kh:\"Having explored lots of options for AI-assisted qual data analysis I\u2019m really keen to use CoLoop, it looks like a front-runner for me. \",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png\",srcSet:\"https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/PVfrh6VGHlxgp7K3hSCtX4W7M.png 800w\"},\"\"),layoutId:\"OAE3U6z7t\",LI4fH7p6x:\"Researcher and Evaluator\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Kathy Seymour\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2iki18-container\",inComponentSlot:true,nodeId:\"VV89WV6Kh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsItem,{height:\"100%\",id:\"VV89WV6Kh\",If6ZOB1kh:\"My company has used CoLoop since beta stage! Have enjoyed seeing it grow and develop.\",kw99ZInZS:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png\",srcSet:\"https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/496244K8DOOo5AMocMEcURODaGQ.png 800w\"},\"\"),layoutId:\"VV89WV6Kh\",LI4fH7p6x:\"Research Manager at Research in Finance\",style:{height:\"100%\",width:\"100%\"},v26BqJPf9:\"Rachel Powell\",width:\"100%\"})})})]})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1fnw1au\",\"data-framer-name\":\"Section 2\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1c8wfzt\",\"data-framer-name\":\"Below Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysihsh\",\"data-framer-name\":\"HP Animation\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-320,y:25}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+152.8125),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/GDQUdhNgkegyajsZXGWjxrGdI.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-160,y:10}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+75.5933),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/GDQUdhNgkegyajsZXGWjxrGdI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-470,y:-30}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+280),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/GDQUdhNgkegyajsZXGWjxrGdI.png\"},className:\"framer-sl86p3\",\"data-framer-name\":\"Frame 115\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:165}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+32.9482),pixelHeight:269,pixelWidth:269,src:\"https://framerusercontent.com/images/MV4GeihpU4Ua7VkPbz32UAtcA.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-25,y:95}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+9.4956),pixelHeight:269,pixelWidth:269,src:\"https://framerusercontent.com/images/MV4GeihpU4Ua7VkPbz32UAtcA.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:270}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+23),pixelHeight:269,pixelWidth:269,src:\"https://framerusercontent.com/images/MV4GeihpU4Ua7VkPbz32UAtcA.png\"},className:\"framer-17bd2l9\",\"data-framer-name\":\"Frame 118\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-220,y:155}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+42),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/Ed0ZPecXdmPqpCsOvTKVZftpaI.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-115,y:75}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+22.1952),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/Ed0ZPecXdmPqpCsOvTKVZftpaI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-325,y:255}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+83),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/Ed0ZPecXdmPqpCsOvTKVZftpaI.png\"},className:\"framer-1psk0xi\",\"data-framer-name\":\"Frame 119\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-340,y:190}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/dqIAPynWG3vLYsr0cgp38kWDGPQ.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-183,y:106}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/dqIAPynWG3vLYsr0cgp38kWDGPQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-540,y:335}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/dqIAPynWG3vLYsr0cgp38kWDGPQ.png\"},className:\"framer-yrp6m8\",\"data-framer-name\":\"Frame 123\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-175,y:30}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+162.9375),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/8u2Pynpjlle2SIvhghmCvjA8yDc.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-100,y:0}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+84.4804),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/8u2Pynpjlle2SIvhghmCvjA8yDc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-245,y:-48}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+298),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/8u2Pynpjlle2SIvhghmCvjA8yDc.png\"},className:\"framer-misrl3\",\"data-framer-name\":\"Frame 120\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-260,y:-175}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+301.3125),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/eHNPaPRsf8YXUPR3uNf1NEyKQs.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-135,y:-90}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+147.1522),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/eHNPaPRsf8YXUPR3uNf1NEyKQs.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-402,y:-294}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+544),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/eHNPaPRsf8YXUPR3uNf1NEyKQs.png\"},className:\"framer-p1pzf5\",\"data-framer-name\":\"Frame 121\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:165,y:100}}]},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:85,y:60}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:250,y:160}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14g2j05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h3vboi\",\"data-framer-name\":\"Frame 113\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:90,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"90\" viewBox=\"0 0 90 90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4286_2556)\">\\n<rect x=\"0.8125\" y=\"0.3125\" width=\"89.0836\" height=\"89.0836\" rx=\"15\" fill=\"#F0EEF3\"/>\\n<g clip-path=\"url(#clip1_4286_2556)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.2821 62.1351H13.8467V26.8169H40.1836V36.0669H24.4477V39.5987H39.8523V48.8487H24.4477V61.9669L24.2821 62.1351Z\" fill=\"#037177\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.2875 62.1351H67.1834L54.429 44.3078V62.1351H43.9937V26.8169H54.7603L66.8521 43.6351V26.8169H77.2875V62.1351Z\" fill=\"#037177\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4286_2556\">\\n<rect x=\"0.8125\" y=\"0.3125\" width=\"89.0836\" height=\"89.0836\" rx=\"15\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_4286_2556\">\\n<rect width=\"323\" height=\"37\" fill=\"white\" transform=\"translate(-115.188 26.3125)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:130,y:-145}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+274.3125),pixelHeight:269,pixelWidth:268,src:\"https://framerusercontent.com/images/UuPbkecGGwH8TxODCI0LDLCImQ.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:70,y:-85}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+139.4693),pixelHeight:269,pixelWidth:268,src:\"https://framerusercontent.com/images/UuPbkecGGwH8TxODCI0LDLCImQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:195,y:-240}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+496),pixelHeight:269,pixelWidth:268,src:\"https://framerusercontent.com/images/UuPbkecGGwH8TxODCI0LDLCImQ.png\"},className:\"framer-1stsup7\",\"data-framer-name\":\"Frame 114\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:360,y:115}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+83.625),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/WEgb9AbSSkCHZE58vqZWWGbmOhY.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:180,y:65}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+42.2534),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/WEgb9AbSSkCHZE58vqZWWGbmOhY.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:540,y:180}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+157),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/WEgb9AbSSkCHZE58vqZWWGbmOhY.png\"},className:\"framer-1stjqyq\",\"data-framer-name\":\"Frame 116\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:305,y:-190}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+379.6875-60),pixelHeight:268,pixelWidth:269,src:\"https://framerusercontent.com/images/NmiduvHawbld0IoCcGk4oDkDMXg.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:150,y:-100}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+182.963-25),pixelHeight:268,pixelWidth:269,src:\"https://framerusercontent.com/images/NmiduvHawbld0IoCcGk4oDkDMXg.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:455,y:-330}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+675-90),pixelHeight:268,pixelWidth:269,src:\"https://framerusercontent.com/images/NmiduvHawbld0IoCcGk4oDkDMXg.png\"},className:\"framer-1l9w8m3\",\"data-framer-name\":\"Frame 117\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:240,y:190}}]},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:115,y:105}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:350,y:345}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gsendj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"},fill:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"}},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"},fill:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"}}},children:/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"},className:\"framer-mxalv3\",\"data-framer-name\":\"Frame 124\",fill:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:90,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+0+0),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/m6EBiroYWTmLmEWXKpPztO5J0KE.png\"},intrinsicHeight:90,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"90\" viewBox=\"0 0 90 90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4286_2568)\">\\n<rect x=\"0.728516\" y=\"0.00244141\" width=\"89.0836\" height=\"89.0836\" rx=\"15\" fill=\"#F0EEF3\"/>\\n<g clip-path=\"url(#clip1_4286_2568)\">\\n<path d=\"M66.1428 95.0642H25.6916C21.5644 95.0642 17.48 94.2631 13.6692 92.7097C9.86391 91.1599 6.40184 88.8827 3.47944 86.0074C0.568352 83.1427 -1.74353 79.7339 -3.323 75.9774C-4.89811 72.2308 -5.70719 68.2101 -5.70311 64.1497V24.3633C-5.70311 16.1884 -2.40133 8.35144 3.47517 2.57144C9.37632 -3.21813 17.3369 -6.46174 25.6296 -6.45556H66.1813C74.474 -6.46174 82.4346 -3.21813 88.3357 2.57144C91.2398 5.42018 93.5464 8.81307 95.1218 12.5537C96.6973 16.2943 97.5104 20.3083 97.514 24.3633V64.2432C97.514 68.2934 96.7014 72.3033 95.1254 76.0454C93.5448 79.7927 91.2336 83.1921 88.3251 86.0478C85.4047 88.9147 81.9462 91.1839 78.146 92.7267C74.3361 94.2742 70.2587 95.0696 66.1428 95.0642Z\" fill=\"#1145AB\"/>\\n<path d=\"M16.2676 45.15C16.2665 45.2569 16.3006 45.3613 16.3647 45.4472C16.4288 45.5331 16.5193 45.5959 16.6226 45.626C16.7259 45.6567 16.8364 45.6541 16.9382 45.6186C17.04 45.5831 17.1279 45.5165 17.1893 45.4284C18.5514 43.7928 20.2669 42.4833 22.2082 41.597C24.1551 40.707 26.2777 40.2612 28.4205 40.2922H61.5944C65.3432 40.2922 68.9379 38.826 71.5875 36.2207C72.8969 34.9359 73.9369 33.4056 74.6472 31.7186C75.3575 30.0316 75.7239 28.2213 75.7254 26.3926C75.7239 24.5639 75.3575 22.7537 74.6472 21.0667C73.9369 19.3796 72.8969 17.8494 71.5875 16.5645C68.9254 13.9537 65.3347 12.4914 61.5944 12.4951H30.4841C28.6151 12.4951 26.7632 12.8606 25.0353 13.5661C23.3096 14.2737 21.7421 15.3086 20.4226 16.6112C19.1052 17.9119 18.0601 19.4589 17.3475 21.163C16.6361 22.8625 16.2726 24.6858 16.2783 26.5265L16.2676 45.15Z\" fill=\"white\"/>\\n<path d=\"M44.6768 62.0588C44.6781 64.8234 43.8494 67.5254 42.2967 69.8193C40.7354 72.1233 38.5245 73.9181 35.9412 74.9788C33.3483 76.0447 30.4981 76.3328 27.7423 75.8076C24.9913 75.2861 22.4554 73.9722 20.4501 72.0293C18.4566 70.0954 17.0869 67.616 16.5154 64.9063C15.9456 62.2027 16.2018 59.3915 17.251 56.8335C18.3061 54.2665 20.1032 52.068 22.4154 50.5158C24.7389 48.9552 27.4721 48.1063 30.2764 48.0742H43.9283C44.1678 48.0742 44.3988 48.1698 44.5699 48.3377C44.7409 48.5056 44.8372 48.733 44.8372 48.9688L44.6768 62.0588Z\" fill=\"#ADC4F3\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4286_2568\">\\n<rect x=\"0.728516\" y=\"0.00244141\" width=\"89.0836\" height=\"89.0836\" rx=\"15\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_4286_2568\">\\n<rect width=\"556\" height=\"102\" fill=\"white\" transform=\"translate(-5.70312 -6.45557)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:250,y:-50}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+178.125),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/BNJatzTA3Oy4UA8b2YlvjCs7A.png\"}},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:140,y:0}}],background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+87.7908),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/BNJatzTA3Oy4UA8b2YlvjCs7A.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:395,y:-55}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+325),pixelHeight:268,pixelWidth:268,src:\"https://framerusercontent.com/images/BNJatzTA3Oy4UA8b2YlvjCs7A.png\"},className:\"framer-1f5c25p\",\"data-framer-name\":\"Frame 122\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2735.5+75+0+65+0+132.625),pixelHeight:566,pixelWidth:566,sizes:\"115px\",src:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png\",srcSet:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png 566w\"}},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2668.5+65+0+45+0+54.117),pixelHeight:566,pixelWidth:566,sizes:\"75px\",src:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png\",srcSet:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png 566w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2670.5+115+0+50+0+245.5),pixelHeight:566,pixelWidth:566,sizes:\"185px\",src:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png\",srcSet:\"https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgTSwc5OWOjlZyeovyMTKH6U.png 566w\"},className:\"framer-15i9znv\",\"data-framer-name\":\"CENTER\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-115}}]},Xi5dXZdgz:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-45}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-160}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1idc8or\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wzjfq1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jv87ik\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1to3ipi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rv77fi\",\"data-styles-preset\":\"KHC6pX0jd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Stop switching tools\"})}),className:\"framer-1tywlbj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Streamline your analysis in a single tool.\"})}),className:\"framer-gmld81\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Upload your data from a growing range of file formats, languages and 3rd party tools. CoLoop automatically transforms, transcribes and translates your sources into a single unified structure.\"})}),className:\"framer-1dy6hsg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined},{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined},{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{y:(componentViewport?.y||0)+0+2735.5+75+0+65+449.6875+0+0+293.3},Xi5dXZdgz:{y:(componentViewport?.y||0)+0+2668.5+65+0+45+247.963+0+0+287.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+2670.5+115+0+50+760+-25+0+303.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cqv5z8-container\",nodeId:\"YWFC1qx5U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{Wqsjirugc:resolvedLinks[1]},Xi5dXZdgz:{Wqsjirugc:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"YWFC1qx5U\",layoutId:\"YWFC1qx5U\",PFHfDAvQV:\"Book a demo\",variant:\"gIzhDPQtt\",w2aboHv2W:true,width:\"100%\",Wqsjirugc:resolvedLinks[0]})})})})})})]})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1jmsi5b\",id:elementId,ref:ref1})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ihgqfz\",\"data-framer-name\":\"Section 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n47icm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Primary analysis reports 10x faster\"})}),className:\"framer-1sdp8pt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11tmlup\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y6ez91\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q2uwqx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i2ko2j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whxnyq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8v89v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Analysis grids\"})}),className:\"framer-4f5a29\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Generate analysis grids in seconds\"})}),className:\"framer-y59e07\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Enter questions, objectives or prompts  to create fully customisable primary analysis grids arranged by\\u2028\\u2028participant, segment or group.\"})}),className:\"framer-1jtrtuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n9x3m9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"46%\"})}),className:\"framer-1dme7qq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-ff065001-59f1-48c2-8b40-c23124bf601c, rgb(5, 5, 5))\"},children:\"of researchers report significantly better reports\"})}),className:\"framer-19eq2hw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Reported by California based Media, Entertainment & Technology Agency, 51-200 Employees\"})})}),className:\"framer-lzix0c\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652},className:\"framer-7kyyp9 hidden-ib7xvb hidden-q7vv2d\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ct8gag\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-muteqz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SiBWVTvTK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SiBWVTvTK\",isMixedBorderRadius:false,layoutId:\"SiBWVTvTK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/18yA4pCZXuhBfJtSHfZAaLmam7Q.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifjzqd\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hxgh5t\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j42xiu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X9jaZV5BC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"X9jaZV5BC\",isMixedBorderRadius:false,layoutId:\"X9jaZV5BC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/hrL1MzNFP7LABKWJTRBh59WCcQ.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jyxrcz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4njw5n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-58tkp9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Create clips\"})}),className:\"framer-wb71xu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Find and clip\\xa0the perfect\\xa0 quotes instantly\"})}),className:\"framer-151grih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Clip and download reels seamlessly from your \\u2028\\u2028transcripts. Select and clip pieces of audio or video into snippets ready for your deck or edit team.\"})}),className:\"framer-15zv3i9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-26odia\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:'\"'})}),className:\"framer-1jh4z7f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-ff065001-59f1-48c2-8b40-c23124bf601c, rgb(5, 5, 5))\"},children:\"We just turned around a study in 8 hours that used to take 1 week\"})}),className:\"framer-1ps9acz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.46)\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Reported by New York based Ad Agency, 200-500 employees\"})})}),className:\"framer-y2o33a\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nn85c1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16aa81s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11blupk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xwilf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"AI chat\"})}),className:\"framer-ty2xaa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Perfect memory of all your research material\"})}),className:\"framer-1vxwzp6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Create Al chats that can answer\\u2028\\u2028questions about files, segments, tasks and activities. AI chats show their working and always link back to cited sources for full transparency.\"})}),className:\"framer-rm6kbw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18s4smq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"70%\"})}),className:\"framer-lped9o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-ff065001-59f1-48c2-8b40-c23124bf601c, rgb(5, 5, 5))\"},children:\"time savings compared with manual content analysis\"})}),className:\"framer-r29m70\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Reported by a Global Healthcare Business Consultancy, 1,000 - 5,000 employees\"})})}),className:\"framer-12q2l6z\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w77xwy\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s63fdh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MnUXKN4nW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"MnUXKN4nW\",isMixedBorderRadius:false,layoutId:\"MnUXKN4nW\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/h6wOi1VJOZqbD8b4T9iRWWXmSe4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vasggt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sdmkhb\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3ptn9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YOS4A4vsW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"YOS4A4vsW\",isMixedBorderRadius:false,layoutId:\"YOS4A4vsW\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/0Y9ZMDq2wnQDcKhrlIb2gyvlT0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l91h3f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1687z64\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdvx9c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Multiple users\"})}),className:\"framer-18725iz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Invite your team and collaborate seamlessly\"})}),className:\"framer-1pufosp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Invite, access manage and collaborate with your team in realtime. Share transcripts,  Al chats and\\u2028\\u2028analysis grids. Reduce team meetings and never get out of sync again.\"})}),className:\"framer-1xkxhrv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105qtys\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:'\"'})}),className:\"framer-1dhp6w5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-ff065001-59f1-48c2-8b40-c23124bf601c, rgb(5, 5, 5))\"},children:\"This is the most advanced tool we have encountered, with the potential to alter how we conduct and budget qualitative analyses significantly\"})}),className:\"framer-1me79zg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Academic article published in New Directions for Evaluation, Volume 2023, Sabarre et al.\"})})}),className:\"framer-1r3wjkm\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1e1s1n5\",\"data-framer-name\":\"Section 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3b16pj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ealgms\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"The analysis is simple\"})}),className:\"framer-1hrcw5m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rv77fi\",\"data-styles-preset\":\"KHC6pX0jd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Find out for yourself why our users love CoLoop\"})}),className:\"framer-1ltbqyt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined},{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined},{href:{webPageId:\"sU6PO0whD\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{y:(componentViewport?.y||0)+0+10488.0711+45+0+0+139.3},Xi5dXZdgz:{y:(componentViewport?.y||0)+0+9741.3466+40+0+0+137.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+9308.8+55+0+0+143.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1akqgz8-container\",nodeId:\"QSDLmfvIV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{Wqsjirugc:resolvedLinks1[1]},Xi5dXZdgz:{Wqsjirugc:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"QSDLmfvIV\",layoutId:\"QSDLmfvIV\",PFHfDAvQV:\"Book a demo\",variant:\"gIzhDPQtt\",w2aboHv2W:false,width:\"100%\",Wqsjirugc:resolvedLinks1[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jfqfrp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xadid\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4c5d31\",\"data-styles-preset\":\"VsgQOl7KQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"260+\"})}),className:\"framer-fkuvoz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"CoLoop is trusted by 260+ \\u2028\\u2028leading agencies and teams\"})}),className:\"framer-1gk1edg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12m8e5h\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1afsusr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4c5d31\",\"data-styles-preset\":\"VsgQOl7KQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"73%\"})}),className:\"framer-c9n51z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"73% of users say that CoLoop makes \\u2028\\u2028their job more efficient and easier\"})}),className:\"framer-1k205tz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5suk8\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-89zeuh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4c5d31\",\"data-styles-preset\":\"VsgQOl7KQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"92%\"})}),className:\"framer-78idz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Over 92% accurate on our multiple language and complex domains benchmark\"})}),className:\"framer-1v3mtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-c84c9i\",\"data-framer-name\":\"Section 5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k725yk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Reliable, Trustworthy, Secure\"})}),className:\"framer-7d5p9c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-rv77fi\",\"data-styles-preset\":\"KHC6pX0jd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"You can put your faith in CoLoop\"})}),className:\"framer-1nubil3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185c8qd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15yue1m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"Secure as standard\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14068.8711+115+175.3+0+0+0+414.6),pixelHeight:1785,pixelWidth:2245,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1110px) * 0.7)`,src:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png 2245w\"}},Xi5dXZdgz:{background:{alt:\"Secure as standard\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13298.1466+115+163.3+0+0+0+404.6),pixelHeight:1785,pixelWidth:2245,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1110px)`,src:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png 2245w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Secure as standard\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10698.6+115+189.3+0+0+0),pixelHeight:1785,pixelWidth:2245,sizes:\"500px\",src:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BUEl2pIHE9VjkROJGahLl7Ke3U.png 2245w\"},className:\"framer-1o4urln\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y2odhr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yx26kl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ougz7b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Secure as standard\"})}),className:\"framer-1j9w1wm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Protect your data while staying on top of your work\"})}),className:\"framer-dqmwut\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"We are committed to the security and privacy of your data. Our Vanta Trust Centre connects you to our privacy, security and compliance programmes, so you have all of the information that you need to manage your data.\"})}),className:\"framer-212a0a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xykdho\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-191j7ev\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjlpms\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4j6nhi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2zj7xq\",\"data-styles-preset\":\"s8M1Wj0xI\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"Don\u2019t even trip\"})}),className:\"framer-1uj7xir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h4jc8w\",\"data-styles-preset\":\"MoETyYGQv\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Exceptional accuracy, allowing you to have peace of mind at all stages of your report\"})}),className:\"framer-2upn9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"CoLoop\u2019s analysis grids allow you to rapidly suggest, test and validate themes in seconds - with full traceability of quotes at all stages. We've developed proprietary search technology that's over 90%+ accurate across different languages and in complex domains like healthcare.\"})}),className:\"framer-1vg8cyd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"Don't even trip\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14068.8711+115+175.3+0+855.9441+0+414.6),pixelHeight:893,pixelWidth:1123,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1110px) * 0.7)`,src:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png 1123w\"}},Xi5dXZdgz:{background:{alt:\"Don't even trip\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13298.1466+115+163.3+0+835.9441+0+404.6),pixelHeight:893,pixelWidth:1123,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1110px)`,src:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png 1123w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Don't even trip\",fit:\"fill\",intrinsicHeight:624,intrinsicWidth:652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10698.6+115+189.3+0+476.3441+0),pixelHeight:893,pixelWidth:1123,sizes:\"500px\",src:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q4Dk4aFuA8fmKxAwgfM6IQu9JRk.png 1123w\"},className:\"framer-euhizd\",\"data-framer-name\":\"image\"})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zs5lm0\",\"data-framer-name\":\"Section 6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e368qq\",\"data-framer-name\":\"Users & Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2f0l55\",\"data-framer-name\":\"Users\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16121.0593+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/BJ7WE2HD9SO2pmGsoAwsUWXIz0.png\"},whileHover:undefined},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15308.3348+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/BJ7WE2HD9SO2pmGsoAwsUWXIz0.png\"},whileHover:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11970.5882+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/BJ7WE2HD9SO2pmGsoAwsUWXIz0.png\"},className:\"framer-1hulh0q\",\"data-border\":true,whileHover:animation})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16121.0593+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/f0EfBOwJYwUYLNe5d2aT9BzbfQ.png\"},whileHover:undefined},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15308.3348+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/f0EfBOwJYwUYLNe5d2aT9BzbfQ.png\"},whileHover:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11970.5882+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/f0EfBOwJYwUYLNe5d2aT9BzbfQ.png\"},className:\"framer-17lgqqh\",\"data-border\":true,whileHover:animation})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16121.0593+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/HfdudrDeJfP3Ylh1W977t53CTus.png\"},whileHover:undefined},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15308.3348+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/HfdudrDeJfP3Ylh1W977t53CTus.png\"},whileHover:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11970.5882+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/HfdudrDeJfP3Ylh1W977t53CTus.png\"},className:\"framer-10bwiuu\",\"data-border\":true,whileHover:animation})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16121.0593+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/IOdmp8LtdLOvDke5gyr2Orx60w.png\"},whileHover:undefined},Xi5dXZdgz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15308.3348+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/IOdmp8LtdLOvDke5gyr2Orx60w.png\"},whileHover:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11970.5882+55+0+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/IOdmp8LtdLOvDke5gyr2Orx60w.png\"},className:\"framer-12o7hrk\",\"data-border\":true,whileHover:animation})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gix6qx\",\"data-styles-preset\":\"YKTuzqtP9\",style:{\"--framer-text-color\":\"var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, rgb(112, 23, 255))\"},children:\"1.5k+ others joined\"})}),className:\"framer-7a4g41\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9qnvz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfax9q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bpumye\",\"data-styles-preset\":\"yGcPOI9gt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bab538a7-a970-4101-a85f-b3341a1897d2, rgb(52, 52, 52))\"},children:\"Join our community\"})}),className:\"framer-zzxqdr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4q67xz\",\"data-styles-preset\":\"ctgJ9ezUa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b7e6b41-e55c-4182-876a-2df13f120e19, rgb(92, 92, 92))\"},children:\"Connect with like-minded individuals, gain exclusive insights, and stay updated with the latest news\"})}),className:\"framer-1cf0y2s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{y:(componentViewport?.y||0)+0+16121.0593+55+52.5+0+254.5},Xi5dXZdgz:{y:(componentViewport?.y||0)+0+15308.3348+55+48+0+252.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+11970.5882+55+61+0+262.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pm7lej-container\",nodeId:\"sPSBm5fyv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"sPSBm5fyv\",layoutId:\"sPSBm5fyv\",PFHfDAvQV:\"Join the community\",variant:\"gIzhDPQtt\",w2aboHv2W:true,width:\"100%\",Wqsjirugc:\"community.coloop.ai\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{y:(componentViewport?.y||0)+0+16602.0593},Xi5dXZdgz:{y:(componentViewport?.y||0)+0+15782.8348}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1290,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+12468.0882,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4gywn-container\",nodeId:\"CF4Ghe8G_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dUbldtDdl:{variant:\"eV6BwtY1i\"},Xi5dXZdgz:{variant:\"Q2xqBPQM_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"CF4Ghe8G_\",layoutId:\"CF4Ghe8G_\",style:{width:\"100%\"},variant:\"ZQTuxedVm\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gef8h.framer-lux5qc, .framer-gef8h .framer-lux5qc { display: block; }\",\".framer-gef8h.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-a8ea141e-a316-42eb-b59f-a11c6ab7db70, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-gef8h .framer-1g26hcx { align-content: center; align-items: center; background-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-fg2tsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-17g7anx-container, .framer-gef8h .framer-1w8wyo0-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-gef8h .framer-47mkuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-gef8h .framer-11b9g1x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1ajl2of { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-vx0hx1, .framer-gef8h .framer-11qelta, .framer-gef8h .framer-1tywlbj, .framer-gef8h .framer-gmld81, .framer-gef8h .framer-1dy6hsg, .framer-gef8h .framer-1sdp8pt, .framer-gef8h .framer-y59e07, .framer-gef8h .framer-1jtrtuw, .framer-gef8h .framer-151grih, .framer-gef8h .framer-15zv3i9, .framer-gef8h .framer-1vxwzp6, .framer-gef8h .framer-rm6kbw, .framer-gef8h .framer-1pufosp, .framer-gef8h .framer-1xkxhrv, .framer-gef8h .framer-1hrcw5m, .framer-gef8h .framer-1ltbqyt, .framer-gef8h .framer-fkuvoz, .framer-gef8h .framer-1gk1edg, .framer-gef8h .framer-c9n51z, .framer-gef8h .framer-1k205tz, .framer-gef8h .framer-78idz8, .framer-gef8h .framer-1v3mtc, .framer-gef8h .framer-7d5p9c, .framer-gef8h .framer-1nubil3, .framer-gef8h .framer-zzxqdr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-799l0-container { flex: none; height: auto; position: relative; width: 556px; }\",\".framer-gef8h .framer-19gnm30 { aspect-ratio: 1.5177065767284992 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 4px 60px 0px rgba(52, 57, 207, 0.45); flex: none; height: var(--framer-aspect-ratio-supported, 593px); max-width: 1000px; overflow: hidden; position: relative; width: 75%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gef8h .framer-xmhl1h-container, .framer-gef8h .framer-j42xiu-container, .framer-gef8h .framer-1s63fdh-container, .framer-gef8h .framer-g3ptn9-container { flex: none; height: 100%; left: 0px; position: absolute; top: calc(49.89473684210529% - 100% / 2); width: 100%; }\",\".framer-gef8h .framer-1l8qrp6 { background: linear-gradient(180deg, #f5f1f8 0%, rgb(234, 236, 255) 19%, rgb(151, 158, 239) 61%, rgb(110, 74, 255) 100%); flex: none; height: 80%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-gef8h .framer-1gdudvs { align-content: center; align-items: center; background-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-9w3x09, .framer-gef8h .framer-1ndpc1v, .framer-gef8h .framer-jv87ik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1dtrngi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-mn6sk7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-87pjeh-container, .framer-gef8h .framer-cqv5z8-container, .framer-gef8h .framer-1akqgz8-container, .framer-gef8h .framer-pm7lej-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gef8h .framer-169uf9o-container { flex: none; height: 40px; max-width: 1000px; position: relative; width: 75%; }\",\".framer-gef8h .framer-1636iwq-container { height: auto; opacity: 0.7; position: relative; width: auto; }\",\".framer-gef8h .framer-wkzxyp, .framer-gef8h .framer-vwywdp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1450px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-14okrl7-container, .framer-gef8h .framer-exfrl3-container { flex: none; height: 275px; position: relative; width: 100%; }\",\".framer-gef8h .framer-17kng1n, .framer-gef8h .framer-wyx3cg, .framer-gef8h .framer-x173w6, .framer-gef8h .framer-120lm4n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gef8h .framer-1ku611k-container, .framer-gef8h .framer-g6cj3l-container, .framer-gef8h .framer-ow5z50-container, .framer-gef8h .framer-1o22fmi-container, .framer-gef8h .framer-1ib8w6p-container, .framer-gef8h .framer-9wdhqn-container, .framer-gef8h .framer-1xsvxfp-container, .framer-gef8h .framer-m12kqw-container, .framer-gef8h .framer-1x0u3h3-container, .framer-gef8h .framer-g7kdmu-container, .framer-gef8h .framer-16ggeae-container, .framer-gef8h .framer-2wlbv-container, .framer-gef8h .framer-llvfem-container, .framer-gef8h .framer-4qr5u7-container, .framer-gef8h .framer-16y4e8z-container, .framer-gef8h .framer-1gg1wpt-container, .framer-gef8h .framer-6oj6fx-container, .framer-gef8h .framer-4pf769-container, .framer-gef8h .framer-qo9v0i-container, .framer-gef8h .framer-1ch0yih-container, .framer-gef8h .framer-12zemv-container, .framer-gef8h .framer-zic3ss-container, .framer-gef8h .framer-7vy3wg-container, .framer-gef8h .framer-10jupon-container, .framer-gef8h .framer-17ksu5w-container, .framer-gef8h .framer-db54gx-container, .framer-gef8h .framer-kfmlzb-container { flex: none; height: 275px; position: relative; width: 400px; }\",\".framer-gef8h .framer-1lmjhot-container, .framer-gef8h .framer-127bmgf-container { flex: none; height: 330px; position: relative; width: 100%; }\",\".framer-gef8h .framer-158mjzn-container, .framer-gef8h .framer-jrl5cc-container, .framer-gef8h .framer-15wy9v4-container, .framer-gef8h .framer-96vw2x-container, .framer-gef8h .framer-mpewtl-container, .framer-gef8h .framer-glg1y8-container, .framer-gef8h .framer-dtxa5j-container, .framer-gef8h .framer-1gb8ktl-container, .framer-gef8h .framer-10h3uzd-container, .framer-gef8h .framer-rv8esj-container, .framer-gef8h .framer-ouvg4s-container, .framer-gef8h .framer-17mnyhp-container, .framer-gef8h .framer-1q94m3f-container, .framer-gef8h .framer-qq38lp-container, .framer-gef8h .framer-1grj01c-container, .framer-gef8h .framer-kmhcrn-container, .framer-gef8h .framer-v21pma-container, .framer-gef8h .framer-gkgk76-container, .framer-gef8h .framer-1qbm3ex-container, .framer-gef8h .framer-1ouvziy-container, .framer-gef8h .framer-1ghzm70-container, .framer-gef8h .framer-1g32dun-container, .framer-gef8h .framer-gfm9gk-container, .framer-gef8h .framer-17xgonu-container, .framer-gef8h .framer-1iouwpl-container, .framer-gef8h .framer-1orgnw7-container, .framer-gef8h .framer-2iki18-container { flex: none; height: 330px; position: relative; width: 300px; }\",\".framer-gef8h .framer-1fnw1au { align-content: center; align-items: center; background-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 115px 0px 115px 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1c8wfzt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; max-width: 1110px; overflow: visible; padding: 50px 0px 0px 0px; position: sticky; top: 0px; width: 90%; z-index: 1; }\",\".framer-gef8h .framer-ysihsh { flex: none; gap: 0px; height: 675px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gef8h .framer-sl86p3 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(89.09722222222226% - 90px / 2); overflow: hidden; position: absolute; top: calc(48.14814814814817% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-17bd2l9 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(52.12962962962965% - 90px / 2); overflow: hidden; position: absolute; top: calc(10.074074074074096% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-1psk0xi { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(76.6666666666667% - 90px / 2); overflow: hidden; position: absolute; top: calc(18.962962962962983% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-yrp6m8 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-misrl3 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(69.16666666666669% - 90px / 2); overflow: hidden; position: absolute; top: calc(50.81481481481484% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-p1pzf5 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(82.9166666666667% - 90px / 2); overflow: hidden; position: absolute; top: calc(87.25925925925928% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-14g2j05 { flex: none; height: 90px; left: calc(30.925925925925945% - 90px / 2); overflow: hidden; position: absolute; top: calc(32.14814814814817% - 90px / 2); width: 90px; }\",\".framer-gef8h .framer-h3vboi, .framer-gef8h .framer-mxalv3, .framer-gef8h .framer-muteqz-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-gef8h .framer-1stsup7 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(36.25000000000002% - 90px / 2); overflow: hidden; position: absolute; top: calc(80.14814814814817% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-1stjqyq { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: 0px; overflow: hidden; position: absolute; top: calc(29.92592592592595% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-1l9w8m3 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; bottom: 0px; flex: none; gap: 0px; height: 90px; left: calc(12.01388888888891% - 90px / 2); overflow: hidden; position: absolute; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-gsendj { flex: none; height: 90px; left: calc(21.481481481481506% - 90px / 2); overflow: hidden; position: absolute; top: 0px; width: 90px; }\",\".framer-gef8h .framer-1f5c25p { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; gap: 0px; height: 90px; left: calc(18.333333333333353% - 90px / 2); overflow: hidden; position: absolute; top: calc(54.81481481481484% - 90px / 2); width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-15i9znv { aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: var(--framer-aspect-ratio-supported, 185px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 185px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-1idc8or { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 52%; }\",\".framer-gef8h .framer-wzjfq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: -25px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-gef8h .framer-1to3ipi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1jmsi5b { flex: none; height: 2500px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gef8h .framer-1ihgqfz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 115px 0px 115px 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-n47icm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 1110px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-gef8h .framer-11tmlup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-y6ez91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-q2uwqx, .framer-gef8h .framer-1ifjzqd, .framer-gef8h .framer-1nn85c1, .framer-gef8h .framer-vasggt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 185px; height: min-content; justify-content: flex-start; max-width: 1110px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-gef8h .framer-i2ko2j, .framer-gef8h .framer-jyxrcz, .framer-gef8h .framer-16aa81s, .framer-gef8h .framer-1l91h3f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gef8h .framer-1whxnyq, .framer-gef8h .framer-4njw5n, .framer-gef8h .framer-11blupk, .framer-gef8h .framer-1687z64, .framer-gef8h .framer-yx26kl, .framer-gef8h .framer-wjlpms { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1w8v89v, .framer-gef8h .framer-58tkp9, .framer-gef8h .framer-18xwilf, .framer-gef8h .framer-1mdvx9c, .framer-gef8h .framer-1ougz7b, .framer-gef8h .framer-4j6nhi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-4f5a29, .framer-gef8h .framer-1dme7qq, .framer-gef8h .framer-wb71xu, .framer-gef8h .framer-ty2xaa, .framer-gef8h .framer-lped9o, .framer-gef8h .framer-18725iz, .framer-gef8h .framer-1j9w1wm, .framer-gef8h .framer-1uj7xir, .framer-gef8h .framer-7a4g41 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gef8h .framer-1n9x3m9, .framer-gef8h .framer-18s4smq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gef8h .framer-19eq2hw, .framer-gef8h .framer-r29m70 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-lzix0c, .framer-gef8h .framer-y2o33a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-7kyyp9 { aspect-ratio: 0.8056872037914692 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 633px); opacity: 0; overflow: hidden; position: relative; width: 510px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-1ct8gag { aspect-ratio: 0.897239263803681 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: -19px; box-shadow: -10px -10px 94px 0px rgba(182, 181, 255, 0.9); flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 585px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gef8h .framer-hxgh5t, .framer-gef8h .framer-1w77xwy, .framer-gef8h .framer-1sdmkhb { aspect-ratio: 1.1421911421911422 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: -10px -10px 94px 0px rgba(182, 181, 255, 0.9); flex: none; height: var(--framer-aspect-ratio-supported, 372px); overflow: hidden; position: relative; width: 425px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-26odia, .framer-gef8h .framer-105qtys { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1jh4z7f, .framer-gef8h .framer-1dhp6w5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 30px; position: relative; white-space: pre; width: auto; }\",\".framer-gef8h .framer-1ps9acz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-12q2l6z, .framer-gef8h .framer-1r3wjkm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-1me79zg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-1e1s1n5 { align-content: center; align-items: center; background-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 55px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-3b16pj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 1110px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-gef8h .framer-ealgms, .framer-gef8h .framer-1k725yk, .framer-gef8h .framer-vfax9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1jfqfrp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1110px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-gef8h .framer-5xadid, .framer-gef8h .framer-1afsusr, .framer-gef8h .framer-89zeuh { 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-gef8h .framer-12m8e5h, .framer-gef8h .framer-b5suk8 { background-color: var(--token-9a539260-96ce-48d1-be81-7a43c74a882c, #7017ff); flex: none; height: 165px; overflow: hidden; position: relative; width: 1px; }\",\".framer-gef8h .framer-c84c9i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1110px; overflow: hidden; padding: 115px 0px 115px 0px; position: relative; width: 90%; }\",\".framer-gef8h .framer-185c8qd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-15yue1m, .framer-gef8h .framer-1xykdho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1o4urln, .framer-gef8h .framer-euhizd { aspect-ratio: 1.3285714285714285 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 377px); overflow: visible; position: relative; width: 500px; }\",\".framer-gef8h .framer-1y2odhr, .framer-gef8h .framer-191j7ev { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gef8h .framer-dqmwut, .framer-gef8h .framer-2upn9v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-212a0a, .framer-gef8h .framer-1vg8cyd, .framer-gef8h .framer-1cf0y2s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-gef8h .framer-zs5lm0 { align-content: center; align-items: center; background-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 55px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-gef8h .framer-1e368qq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gef8h .framer-2f0l55 { flex: none; height: 45px; overflow: visible; position: relative; width: 120px; }\",\".framer-gef8h .framer-1hulh0q { --border-bottom-width: 3.5px; --border-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); --border-left-width: 3.5px; --border-right-width: 3.5px; --border-style: solid; --border-top-width: 3.5px; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 45px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gef8h .framer-17lgqqh { --border-bottom-width: 3.5px; --border-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); --border-left-width: 3.5px; --border-right-width: 3.5px; --border-style: solid; --border-top-width: 3.5px; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; flex: none; left: 25px; overflow: hidden; position: absolute; top: 0px; width: 45px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gef8h .framer-10bwiuu { --border-bottom-width: 3.5px; --border-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); --border-left-width: 3.5px; --border-right-width: 3.5px; --border-style: solid; --border-top-width: 3.5px; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; flex: none; left: 50px; overflow: hidden; position: absolute; top: 0px; width: 45px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gef8h .framer-12o7hrk { --border-bottom-width: 3.5px; --border-color: var(--token-48fff7f8-c0c9-4c91-ab6f-7e8da306470a, #f5f1f8); --border-left-width: 3.5px; --border-right-width: 3.5px; --border-style: solid; --border-top-width: 3.5px; border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 0px; flex: none; left: 75px; overflow: hidden; position: absolute; top: 0px; width: 45px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gef8h .framer-1p9qnvz { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 45%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gef8h .framer-k4gywn-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-gef8h[data-border=\"true\"]::after, .framer-gef8h [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-gef8h.framer-72rtr7 { width: 810px; } .framer-gef8h .framer-1g26hcx { gap: 30px; order: 0; } .framer-gef8h .framer-47mkuh { gap: 50px; width: 90%; } .framer-gef8h .framer-1ajl2of { width: 83%; } .framer-gef8h .framer-799l0-container { max-width: 65%; width: 474px; } .framer-gef8h .framer-19gnm30 { height: var(--framer-aspect-ratio-supported, 433px); width: 90%; } .framer-gef8h .framer-1l8qrp6 { height: 90%; } .framer-gef8h .framer-1gdudvs { gap: 50px; order: 1; padding: 80px 0px 0px 0px; } .framer-gef8h .framer-1dtrngi { width: 68%; } .framer-gef8h .framer-mn6sk7 { width: 73%; } .framer-gef8h .framer-169uf9o-container { width: 90%; } .framer-gef8h .framer-1fnw1au { order: 2; padding: 75px 0px 75px 0px; } .framer-gef8h .framer-1c8wfzt { gap: 70px; padding: 65px 0px 0px 0px; } .framer-gef8h .framer-ysihsh { height: 380px; } .framer-gef8h .framer-sl86p3 { height: 60px; left: calc(89.09722222222226% - 60px / 2); top: calc(48.14814814814817% - 60px / 2); width: 60px; } .framer-gef8h .framer-17bd2l9 { height: 60px; left: calc(52.098765432098794% - 60px / 2); top: calc(16.578947368421073% - 60px / 2); width: 60px; } .framer-gef8h .framer-1psk0xi { height: 60px; left: calc(76.6666666666667% - 60px / 2); top: calc(18.962962962962983% - 60px / 2); width: 60px; } .framer-gef8h .framer-yrp6m8 { height: 60px; width: 60px; } .framer-gef8h .framer-misrl3 { height: 60px; left: calc(69.16666666666669% - 60px / 2); top: calc(50.81481481481484% - 60px / 2); width: 60px; } .framer-gef8h .framer-p1pzf5 { height: 60px; left: calc(82.9166666666667% - 60px / 2); top: calc(87.25925925925928% - 60px / 2); width: 60px; } .framer-gef8h .framer-14g2j05 { height: 60px; left: calc(30.925925925925945% - 60px / 2); top: calc(32.14814814814817% - 60px / 2); width: 60px; } .framer-gef8h .framer-1stsup7 { height: 60px; left: calc(36.25000000000002% - 60px / 2); top: calc(80.14814814814817% - 60px / 2); width: 60px; } .framer-gef8h .framer-1stjqyq { height: 60px; top: calc(29.92592592592595% - 60px / 2); width: 60px; } .framer-gef8h .framer-1l9w8m3 { height: 60px; left: calc(12.01388888888891% - 60px / 2); width: 60px; } .framer-gef8h .framer-gsendj { height: 60px; left: calc(21.481481481481506% - 60px / 2); width: 60px; } .framer-gef8h .framer-1f5c25p { height: 60px; left: calc(18.333333333333353% - 60px / 2); top: calc(54.81481481481484% - 60px / 2); width: 60px; } .framer-gef8h .framer-15i9znv { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 115px); width: 115px; } .framer-gef8h .framer-1idc8or { height: min-content; width: 100%; } .framer-gef8h .framer-wzjfq1 { gap: 20px; left: unset; position: relative; top: unset; transform: unset; } .framer-gef8h .framer-jv87ik, .framer-gef8h .framer-1n9x3m9, .framer-gef8h .framer-18s4smq { gap: 18px; } .framer-gef8h .framer-1to3ipi, .framer-gef8h .framer-n47icm, .framer-gef8h .framer-26odia, .framer-gef8h .framer-105qtys, .framer-gef8h .framer-ealgms, .framer-gef8h .framer-1k725yk, .framer-gef8h .framer-vfax9q { gap: 14px; } .framer-gef8h .framer-1dy6hsg, .framer-gef8h .framer-yx26kl, .framer-gef8h .framer-wjlpms { width: 85%; } .framer-gef8h .framer-1jmsi5b { height: 2000px; } .framer-gef8h .framer-1ihgqfz { gap: 70px; order: 3; } .framer-gef8h .framer-11tmlup, .framer-gef8h .framer-185c8qd { gap: 65px; } .framer-gef8h .framer-y6ez91 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 45px; width: 90%; } .framer-gef8h .framer-q2uwqx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; width: 100%; } .framer-gef8h .framer-i2ko2j, .framer-gef8h .framer-16aa81s { flex: none; gap: 25px; width: 85%; } .framer-gef8h .framer-lzix0c, .framer-gef8h .framer-y2o33a, .framer-gef8h .framer-12q2l6z, .framer-gef8h .framer-1r3wjkm { width: 65%; } .framer-gef8h .framer-1ct8gag { bottom: unset; height: var(--framer-aspect-ratio-supported, 569px); position: relative; right: unset; top: unset; width: 70%; } .framer-gef8h .framer-1ifjzqd, .framer-gef8h .framer-1nn85c1, .framer-gef8h .framer-vasggt, .framer-gef8h .framer-15yue1m, .framer-gef8h .framer-1xykdho { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 45px; } .framer-gef8h .framer-hxgh5t, .framer-gef8h .framer-1sdmkhb { height: var(--framer-aspect-ratio-supported, 447px); order: 1; width: 70%; } .framer-gef8h .framer-jyxrcz, .framer-gef8h .framer-1l91h3f { flex: none; gap: 25px; order: 0; width: 85%; } .framer-gef8h .framer-1w77xwy { height: var(--framer-aspect-ratio-supported, 447px); width: 70%; } .framer-gef8h .framer-1e1s1n5 { order: 4; padding: 45px 0px 65px 0px; } .framer-gef8h .framer-1jfqfrp { align-content: center; align-items: center; flex-direction: column; gap: 41px; } .framer-gef8h .framer-5xadid, .framer-gef8h .framer-1afsusr, .framer-gef8h .framer-89zeuh { flex: none; gap: 8px; width: 100%; } .framer-gef8h .framer-1gk1edg, .framer-gef8h .framer-1k205tz, .framer-gef8h .framer-1v3mtc { width: 80%; } .framer-gef8h .framer-12m8e5h, .framer-gef8h .framer-b5suk8 { height: 1px; width: 75%; } .framer-gef8h .framer-c84c9i { gap: 70px; order: 5; } .framer-gef8h .framer-1o4urln { height: var(--framer-aspect-ratio-supported, 385px); order: 1; width: 70%; } .framer-gef8h .framer-1y2odhr { flex: none; order: 0; width: 100%; } .framer-gef8h .framer-1j9w1wm, .framer-gef8h .framer-1uj7xir { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gef8h .framer-dqmwut, .framer-gef8h .framer-212a0a, .framer-gef8h .framer-2upn9v, .framer-gef8h .framer-1vg8cyd { width: 100%; } .framer-gef8h .framer-191j7ev { flex: none; width: 100%; } .framer-gef8h .framer-euhizd { height: var(--framer-aspect-ratio-supported, 385px); width: 70%; } .framer-gef8h .framer-zs5lm0 { gap: 12px; order: 6; } .framer-gef8h .framer-1e368qq { gap: 12px; } .framer-gef8h .framer-2f0l55 { height: 41px; width: 108px; } .framer-gef8h .framer-1hulh0q { --border-bottom-width: 3.15px; --border-left-width: 3.15px; --border-right-width: 3.15px; --border-top-width: 3.15px; border-bottom-left-radius: 135px; border-bottom-right-radius: 135px; border-top-left-radius: 135px; border-top-right-radius: 135px; width: 41px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-17lgqqh { --border-bottom-width: 3.15px; --border-left-width: 3.15px; --border-right-width: 3.15px; --border-top-width: 3.15px; border-bottom-left-radius: 135px; border-bottom-right-radius: 135px; border-top-left-radius: 135px; border-top-right-radius: 135px; left: 23px; width: 41px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-10bwiuu { --border-bottom-width: 3.15px; --border-left-width: 3.15px; --border-right-width: 3.15px; --border-top-width: 3.15px; border-bottom-left-radius: 135px; border-bottom-right-radius: 135px; border-top-left-radius: 135px; border-top-right-radius: 135px; left: 45px; width: 41px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-12o7hrk { --border-bottom-width: 3.15px; --border-left-width: 3.15px; --border-right-width: 3.15px; --border-top-width: 3.15px; border-bottom-left-radius: 135px; border-bottom-right-radius: 135px; border-top-left-radius: 135px; border-top-right-radius: 135px; left: 68px; width: 41px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-1p9qnvz { gap: 30px; width: 61%; } .framer-gef8h .framer-k4gywn-container { order: 9; }}\",\"@media (max-width: 809px) { .framer-gef8h.framer-72rtr7 { width: 390px; } .framer-gef8h .framer-1g26hcx { gap: 20px; } .framer-gef8h .framer-47mkuh { gap: 29px; width: 90%; } .framer-gef8h .framer-799l0-container { width: auto; } .framer-gef8h .framer-19gnm30 { height: var(--framer-aspect-ratio-supported, 232px); width: 100%; } .framer-gef8h .framer-1l8qrp6 { height: 90%; } .framer-gef8h .framer-1gdudvs { gap: 45px; padding: 75px 0px 0px 0px; } .framer-gef8h .framer-1dtrngi, .framer-gef8h .framer-mn6sk7, .framer-gef8h .framer-169uf9o-container { width: 90%; } .framer-gef8h .framer-1fnw1au { padding: 65px 0px 65px 0px; } .framer-gef8h .framer-1c8wfzt { gap: 65px; padding: 45px 0px 0px 0px; } .framer-gef8h .framer-ysihsh { height: 183px; } .framer-gef8h .framer-sl86p3 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(89.09722222222226% - 25px / 2); top: calc(48.14814814814817% - 25px / 2); width: 25px; } .framer-gef8h .framer-17bd2l9 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(54.10256410256412% - 25px / 2); top: calc(12.02185792349729% - 25px / 2); width: 25px; } .framer-gef8h .framer-1psk0xi { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(76.6666666666667% - 25px / 2); top: calc(18.962962962962983% - 25px / 2); width: 25px; } .framer-gef8h .framer-yrp6m8 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; width: 25px; } .framer-gef8h .framer-misrl3 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(71.02564102564105% - 25px / 2); top: calc(53.005464480874345% - 25px / 2); width: 25px; } .framer-gef8h .framer-p1pzf5 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(82.9166666666667% - 25px / 2); top: calc(87.25925925925928% - 25px / 2); width: 25px; } .framer-gef8h .framer-14g2j05 { height: 25px; left: calc(30.925925925925945% - 25px / 2); top: calc(32.14814814814817% - 25px / 2); width: 25px; } .framer-gef8h .framer-1stsup7 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(35.128205128205146% - 25px / 2); top: calc(83.06010928961751% - 25px / 2); width: 25px; } .framer-gef8h .framer-1stjqyq { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; top: calc(29.92592592592595% - 25px / 2); width: 25px; } .framer-gef8h .framer-1l9w8m3 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(12.01388888888891% - 25px / 2); width: 25px; } .framer-gef8h .framer-gsendj { height: 25px; left: calc(21.481481481481506% - 25px / 2); width: 25px; } .framer-gef8h .framer-1f5c25p { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: 25px; left: calc(18.333333333333353% - 25px / 2); top: calc(54.81481481481484% - 25px / 2); width: 25px; } .framer-gef8h .framer-15i9znv { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 75px); width: 75px; } .framer-gef8h .framer-1idc8or { height: min-content; width: 100%; } .framer-gef8h .framer-wzjfq1 { gap: 18px; left: unset; position: relative; top: unset; transform: unset; } .framer-gef8h .framer-jv87ik, .framer-gef8h .framer-26odia, .framer-gef8h .framer-105qtys { gap: 16px; } .framer-gef8h .framer-1to3ipi, .framer-gef8h .framer-n47icm, .framer-gef8h .framer-ealgms, .framer-gef8h .framer-1k725yk, .framer-gef8h .framer-zs5lm0, .framer-gef8h .framer-1e368qq { gap: 12px; } .framer-gef8h .framer-1tywlbj, .framer-gef8h .framer-1ltbqyt, .framer-gef8h .framer-1nubil3 { width: 75%; } .framer-gef8h .framer-1jmsi5b { height: 1500px; } .framer-gef8h .framer-1ihgqfz, .framer-gef8h .framer-c84c9i { gap: 60px; } .framer-gef8h .framer-11tmlup, .framer-gef8h .framer-185c8qd { gap: 55px; } .framer-gef8h .framer-y6ez91 { flex-direction: column; gap: 35px; width: 90%; } .framer-gef8h .framer-q2uwqx { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 45px; width: 100%; } .framer-gef8h .framer-i2ko2j, .framer-gef8h .framer-16aa81s { flex: none; gap: 25px; width: 100%; } .framer-gef8h .framer-1n9x3m9, .framer-gef8h .framer-18s4smq { gap: 18px; } .framer-gef8h .framer-lzix0c, .framer-gef8h .framer-y2o33a, .framer-gef8h .framer-12q2l6z, .framer-gef8h .framer-1r3wjkm, .framer-gef8h .framer-dqmwut, .framer-gef8h .framer-212a0a, .framer-gef8h .framer-2upn9v, .framer-gef8h .framer-1vg8cyd { width: 100%; } .framer-gef8h .framer-1ct8gag { bottom: unset; height: var(--framer-aspect-ratio-supported, 392px); position: relative; right: unset; top: unset; width: 100%; } .framer-gef8h .framer-1ifjzqd, .framer-gef8h .framer-1nn85c1, .framer-gef8h .framer-vasggt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 35px; } .framer-gef8h .framer-hxgh5t, .framer-gef8h .framer-1sdmkhb { height: var(--framer-aspect-ratio-supported, 308px); order: 1; width: 100%; } .framer-gef8h .framer-jyxrcz, .framer-gef8h .framer-1l91h3f { flex: none; gap: 25px; order: 0; width: 100%; } .framer-gef8h .framer-1ps9acz, .framer-gef8h .framer-1me79zg { flex: 1 0 0px; width: 1px; } .framer-gef8h .framer-1w77xwy { height: var(--framer-aspect-ratio-supported, 307px); width: 100%; } .framer-gef8h .framer-1e1s1n5 { padding: 40px 0px 60px 0px; } .framer-gef8h .framer-1jfqfrp { flex-direction: column; gap: 41px; } .framer-gef8h .framer-5xadid, .framer-gef8h .framer-1afsusr, .framer-gef8h .framer-89zeuh { flex: none; gap: 4px; width: 100%; } .framer-gef8h .framer-1gk1edg, .framer-gef8h .framer-1k205tz, .framer-gef8h .framer-1v3mtc { width: 80%; } .framer-gef8h .framer-12m8e5h, .framer-gef8h .framer-b5suk8 { height: 1px; width: 100%; } .framer-gef8h .framer-15yue1m, .framer-gef8h .framer-1xykdho { flex-direction: column; gap: 35px; } .framer-gef8h .framer-1o4urln, .framer-gef8h .framer-euhizd { height: var(--framer-aspect-ratio-supported, 264px); order: 1; width: 100%; } .framer-gef8h .framer-1y2odhr, .framer-gef8h .framer-191j7ev { flex: none; order: 0; width: 100%; } .framer-gef8h .framer-1j9w1wm, .framer-gef8h .framer-1uj7xir { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gef8h .framer-2f0l55 { height: 36px; width: 96px; } .framer-gef8h .framer-1hulh0q { --border-bottom-width: 2.8px; --border-left-width: 2.8px; --border-right-width: 2.8px; --border-top-width: 2.8px; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; width: 36px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-17lgqqh { --border-bottom-width: 2.8px; --border-left-width: 2.8px; --border-right-width: 2.8px; --border-top-width: 2.8px; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; left: 20px; width: 36px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-10bwiuu { --border-bottom-width: 2.8px; --border-left-width: 2.8px; --border-right-width: 2.8px; --border-top-width: 2.8px; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; left: 40px; width: 36px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-12o7hrk { --border-bottom-width: 2.8px; --border-left-width: 2.8px; --border-right-width: 2.8px; --border-top-width: 2.8px; border-bottom-left-radius: 120px; border-bottom-right-radius: 120px; border-top-left-radius: 120px; border-top-right-radius: 120px; left: 60px; width: 36px; will-change: var(--framer-will-change-override, transform); } .framer-gef8h .framer-1p9qnvz { gap: 28px; width: 90%; } .framer-gef8h .framer-vfax9q { gap: 14px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12089\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dUbldtDdl\":{\"layout\":[\"fixed\",\"auto\"]},\"Xi5dXZdgz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nRzXJxNz9\":{\"pattern\":\":nRzXJxNz9\",\"name\":\"trigger\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gef8h\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12089,width:1200};addFonts(FrameraugiA20Il,[{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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...BannerFonts,...HeaderFonts,...Email_SubmitFonts,...VideoFonts,...ButtonFonts,...LogosFonts,...TickerFonts,...TestimonialsItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"12089\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"nRzXJxNz9\\\":{\\\"pattern\\\":\\\":nRzXJxNz9\\\",\\\"name\\\":\\\"trigger\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dUbldtDdl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xi5dXZdgz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "name1", "testimonial", "titleCompany", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "If6ZOB1kh", "kw99ZInZS", "v26BqJPf9", "LI4fH7p6x", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramerEoeW9cqKY", "withCSS", "EoeW9cqKY_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFX", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerOLaisVW8q", "withCSS", "OLaisVW8q_default", "addFonts", "Email_Submit", "props", "redirectURL", "slackWebhookURL", "email_global", "u", "e", "email", "window", "error", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "BannerFonts", "getFonts", "fL09ZjHlT_default", "HeaderFonts", "Gbiv447Zy_default", "Email_SubmitFonts", "Email_Submit", "VideoFonts", "Video", "ButtonFonts", "px6nfpGPi_default", "LogosFonts", "OLaisVW8q_default", "TickerFonts", "Ticker", "TestimonialsItemFonts", "EoeW9cqKY_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "FooterFonts", "MqmuVWzNS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "transition1", "animation", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText", "x", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
