{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/AT5eegCv9s5cGV5pvB74/9qzeP0rHB89lbPNMzlQJ/EtplGeMKP.js", "ssg:https://framerusercontent.com/modules/vlkca5Wn4buSivJFZsqT/Oe0jtFE9nLubExK8WKNu/nyfE6DP7u.js", "ssg:https://framerusercontent.com/modules/b7q9rAeDlw05xBut1AeZ/UnAFpoMXhkLWQtwva8wN/lkGrgVdeO.js", "ssg:https://framerusercontent.com/modules/uVwQw1AGWiDB6M5uwlTc/rEwprVSUPuPRdfFy9erj/NoHdoawwl.js", "ssg:https://framerusercontent.com/modules/Gwt1yizKn3P2OQA1voTa/AuFsKEaaQFxQWcpF1f6t/PMefyZH9D.js", "ssg:https://framerusercontent.com/modules/74R6wngkCFp4MNU2cisi/B8FTt5pl4WNeRjmoLpYU/tUf0qEFtD.js", "ssg:https://framerusercontent.com/modules/NuPogXlP5C54dBePYRvd/7Z5NRxoyzyzyOBtoGl97/Hd9JAXKiK.js", "ssg:https://framerusercontent.com/modules/pyfDTQvJTa0vMazlZEb7/t3CpD2hdELvOZpuToeHc/WW5Ks6OE7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{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]);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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8bayDOvufhRDinbB3OjJ/vL2lvME9zaBa8p4PLkgC/GWb8GzGa2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5rtfu1PK49x346Wr4Bjw/Og51a23oxfBQtokbQDby/jvcTbu0um.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"pUy7R1bNa\",\"rMsToFOLs\"];const serializationHash=\"framer-ToCw7\";const variantClassNames={pUy7R1bNa:\"framer-v-1igt00c\",rMsToFOLs:\"framer-v-1a0vxgk\"};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 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 humanReadableVariantMap={\"Desktop/Tablet\":\"pUy7R1bNa\",Phone:\"rMsToFOLs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pUy7R1bNa\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pUy7R1bNa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1igt00c\",className,classNames),\"data-framer-name\":\"Desktop/Tablet\",layoutDependency:layoutDependency,layoutId:\"pUy7R1bNa\",ref:ref??ref1,style:{backgroundColor:\"rgb(30, 64, 175)\",borderBottomLeftRadius:21,borderBottomRightRadius:21,borderTopLeftRadius:21,borderTopRightRadius:21,...style},...addPropertyOverrides({rMsToFOLs:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x3gjc\",layoutDependency:layoutDependency,layoutId:\"fsiDqH203\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10xazpf\",layoutDependency:layoutDependency,layoutId:\"tP1naHjxv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d317vi\",layoutDependency:layoutDependency,layoutId:\"nTc6LoVOP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.34px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255)))\"},children:\"Powerful integrations\"})}),className:\"framer-102yz3b\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"BowyUpRvd\",style:{\"--extracted-r6o4lv\":\"var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-oqr48z\",\"data-styles-preset\":\"jvcTbu0um\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255)))\"},children:\"Integrate with our partners\"})}),className:\"framer-1h6ubgu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EuY0VAiE6\",style:{\"--extracted-gdpscs\":\"var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4zdt4\",\"data-styles-preset\":\"GWb8GzGa2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255)))\"},children:\"Integrate PaperworkFlows with the best tools on the market\u2014no more patchwork solutions.\"})}),className:\"framer-1mn79oz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FiRZW21fO\",style:{\"--extracted-r6o4lv\":\"var(--token-2dcef821-fea6-4c29-8153-7c91b6b9364d, rgb(250, 245, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1615aku\",layoutDependency:layoutDependency,layoutId:\"geaHJ1aXt\",style:{opacity:1},variants:{rMsToFOLs:{opacity:.2}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2o6erp-container\",layoutDependency:layoutDependency,layoutId:\"x3vsdL0fU-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.5,id:\"x3vsdL0fU\",layoutId:\"x3vsdL0fU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ycj7kh\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"nheB7adbl\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-566a2i\",\"data-framer-name\":\"LinkedIn\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"QETNTm0lj\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.778 128H14.222C6.368 128 0 121.633 0 113.778V14.222C0 6.368 6.367 0 14.222 0h99.556C121.633 0 128 6.367 128 14.222v99.556c0 7.855-6.367 14.222-14.222 14.222Zm-22.55-17.778h18.994v-39.02c0-16.51-9.359-24.492-22.43-24.492-13.08 0-18.583 10.184-18.583 10.184v-8.301H50.904v61.629h18.305V77.87c0-8.668 3.99-13.826 11.628-13.826 7.02 0 10.39 4.957 10.39 13.826v32.352ZM17.778 29.15c0 6.28 5.052 11.373 11.287 11.373 6.236 0 11.285-5.092 11.285-11.373 0-6.28-5.05-11.372-11.285-11.372S17.778 22.87 17.778 29.15ZM38.7 110.222H19.613v-61.63h19.088v61.63Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tlv7ym\",\"data-framer-name\":\"Hibob\",layoutDependency:layoutDependency,layoutId:\"nKs4kQ3EU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1su0zam\",\"data-framer-name\":\"Hibob\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"eBJgtP0ap\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#6179C8\"><path d=\"M65.887 91.9c-10.925 0-19.816-8.965-19.816-19.985 0-11.018 8.89-19.983 19.816-19.983 10.924 0 19.813 8.965 19.813 19.983 0 11.02-8.89 19.984-19.813 19.984Zm0-33.697c-7.498 0-13.598 6.151-13.598 13.712s6.1 13.713 13.598 13.713c7.497 0 13.595-6.152 13.595-13.713 0-7.56-6.098-13.712-13.595-13.712ZM8.979 54.356V36.908c0-2.5-2.01-4.528-4.49-4.528-2.48 0-4.49 2.028-4.49 4.528v34.886C.013 83.59 9.516 93.17 21.195 93.17c11.686 0 21.195-9.59 21.195-21.376 0-11.787-9.509-21.376-21.195-21.376-4.549 0-8.759 1.468-12.215 3.938Zm12.215 29.758c-6.735 0-12.214-5.526-12.214-12.32 0-6.793 5.48-12.32 12.214-12.32 6.736 0 12.216 5.527 12.216 12.32 0 6.794-5.48 12.32-12.216 12.32Zm86.607-30.787c-6.172 0-11.632 3.086-14.98 7.799V34.922c0-.961-.772-1.742-1.725-1.742-.953 0-1.727.78-1.727 1.742v36.993c0 .005.003.008.003.012.006 10.245 8.271 18.578 18.429 18.578 10.163 0 18.431-8.34 18.431-18.59s-8.268-18.588-18.431-18.588Zm0 33.695c-8.26 0-14.977-6.776-14.977-15.107 0-8.33 6.717-15.106 14.977-15.106 8.259 0 14.978 6.776 14.978 15.106s-6.719 15.107-14.978 15.107Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rh4z17\",\"data-framer-name\":\"Refapp\",layoutDependency:layoutDependency,layoutId:\"yPgassNrH\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ikj33b\",\"data-framer-name\":\"Refapp\",fill:\"rgba(255, 255, 255, 0.5)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"A_W12ayRD\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#6179C8\"><path d=\"M53.886 63.654v5.78h-3.942V54.19h4.945a16.62 16.62 0 0 1 2.552.137 4.3 4.3 0 0 1 3.676 4.246c.092 2.491-.76 3.798-3.099 4.557l-.167.084c1.58 2.05 3.137 4.094 4.77 6.213h-4.504a.699.699 0 0 1-.676-.38c-1.04-1.648-2.104-3.28-3.168-4.922-.106-.09-.212-.227-.387-.47Zm0-2.552c.685-.063 1.365-.17 2.036-.319a1.565 1.565 0 0 0 1.124-1.625 1.52 1.52 0 0 0-1.071-1.656 15.004 15.004 0 0 0-2.044-.335l-.045 3.935Zm10.444 8.325V54.235h8.66v3.305h-4.672v2.56h4.39v3.357h-4.39v2.613h4.649v3.357H64.33Zm19.78-5.955h-4.307v5.963h-3.95v-15.23h8.683v3.312H79.84v2.552h4.27v3.403Zm16.636 5.986h-3.89a.585.585 0 0 1-.425-.334 29.744 29.744 0 0 1-.668-1.96.433.433 0 0 0-.502-.35h-4.9a.47.47 0 0 0-.523.395c-.213.664-.44 1.317-.684 1.96a.556.556 0 0 1-.342.304H84.84c.114-.327.197-.608.303-.881 1.773-4.639 3.545-9.282 5.318-13.931.129-.327.266-.471.645-.464h3.517a.666.666 0 0 1 .494.327c1.884 4.902 3.755 9.809 5.613 14.721a.568.568 0 0 0 .016.213Zm-6.168-5.69c-.593-1.678-1.163-3.289-1.725-4.907h-.114c-.562 1.61-1.131 3.229-1.709 4.892l3.548.015Zm11.986.593v5.059h-3.935V54.228a1.06 1.06 0 0 1 .236-.046c2.279 0 4.512-.038 6.76 0a4.403 4.403 0 0 1 3.859 2.081 5.688 5.688 0 0 1 .676 3.912c-.372 2.59-1.899 3.966-4.557 4.125-.98.106-1.968.06-3.039.06Zm0-7.004v3.897a18.06 18.06 0 0 0 2.18-.175 1.572 1.572 0 0 0 1.291-1.762 1.58 1.58 0 0 0-1.306-1.8c-.71-.097-1.425-.15-2.142-.16h-.023Zm13.764 7.004v5.059h-3.942V54.228a1.09 1.09 0 0 1 .228-.046c2.278 0 4.512-.038 6.768 0a4.414 4.414 0 0 1 3.889 2.127 5.705 5.705 0 0 1 .653 3.859c-.38 2.59-1.907 3.973-4.558 4.132-.972.106-1.967.06-3.038.06Zm0-3.122a18.09 18.09 0 0 0 2.157-.16 1.58 1.58 0 0 0 1.314-1.747c0-1.01-.379-1.633-1.283-1.815a18.413 18.413 0 0 0-2.188-.16v3.882ZM0 59.651c.144-.835.266-1.663.425-2.491a22.575 22.575 0 0 1 3.707-8.66v26.07c-.129-.167-.235-.296-.326-.433a22.583 22.583 0 0 1-3.7-10.316A1.888 1.888 0 0 0 0 63.487v-3.836ZM36.727 43.83a19.658 19.658 0 0 1 4.459 4.687 22.082 22.082 0 0 1 4.056 11.5c.425 7.224-2.104 13.27-7.33 18.337L29.184 66.96c.676-.205 1.299-.38 1.906-.6 4.887-1.732 7.672-5.166 8.356-10.3a16.628 16.628 0 0 0-1.52-10.103c-.364-.76-.842-1.39-1.275-2.082l.076-.045ZM16.78 60V48.197s.053-.061.083-.061a19.544 19.544 0 0 1 5.446.326c2.21.593 3.874 1.8 4.338 4.178.714 3.6-.942 6.16-4.505 7.05-1.762.44-3.555.273-5.363.31Zm10.086 23.86c-.85.114-1.58.25-2.324.296a23.282 23.282 0 0 1-7.391-.6c-.25-.06-.41-.122-.41-.433 0-4.915 0-9.837.106-14.805l10.02 15.542Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/><path d=\"m36.666 43.882-.046-.099.107.046-.061.053Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ai2l2\",\"data-framer-name\":\"Snap\",layoutDependency:layoutDependency,layoutId:\"p2FEJmfRF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uy4yea\",\"data-framer-name\":\"Snap\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"ClbjhXrf8\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M122.285 85.217c1.92.954 3.598 2.094 4.48 4.234 1.004 2.387.398 5.112-2.024 7.422l-.034.03c-.865.878-1.989 1.648-3.408 2.341-3.217 1.586-5.933 2.34-8.061 2.864-.398.108-1.159.354-1.505.616-.484.369-.686.844-.937 1.435-.19.445-.407.955-.793 1.536a8.59 8.59 0 0 1-2.681 2.603c-2.614 1.607-5.536 1.708-8.647 1.815l-.053.002c-2.837.092-6.037.2-9.687 1.277-1.406.413-2.89 1.219-4.605 2.15l-.24.129c-4.392 2.402-10.43 5.698-20.462 5.698-10.02 0-16.002-3.271-20.394-5.672l-.018-.01c-1.816-1.001-3.39-1.863-4.913-2.31-3.667-1.078-6.867-1.186-9.687-1.278l-.053-.002c-3.111-.107-6.033-.207-8.647-1.815a8.378 8.378 0 0 1-2.353-2.125c-.619-.792-.901-1.463-1.138-2.025-.247-.586-.444-1.055-.92-1.424-.381-.292-1.246-.539-1.61-.631-2.11-.524-4.808-1.278-7.956-2.833-1.332-.662-2.405-1.37-3.252-2.187C.109 94.701-.565 91.915.455 89.451c1.152-2.773 3.64-3.886 6.248-5.053.447-.2.898-.401 1.346-.613 5.778-2.787 10.31-6.282 13.475-10.409 1.055-1.386 1.816-2.648 2.336-3.68.294-.754.294-1.155.086-1.54-.173-.323-.71-.677-.865-.77-.79-.469-1.604-.938-2.252-1.312l-.446-.258c-1.28-.74-2.284-1.324-2.941-1.725-2.456-1.524-4.169-3.14-5.241-4.958-1.505-2.556-1.696-5.481-.537-8.222 1.626-3.803 5.674-6.174 10.57-6.174 1.02 0 2.058.092 3.079.292.13.031.263.058.398.085.133.027.268.054.397.085-.052-2.587.017-5.343.277-8.053.917-9.5 4.653-14.49 8.563-18.462 1.626-1.648 4.445-4.08 8.718-6.251C49.599 9.415 56.293 7.89 63.593 7.89c7.317 0 14.029 1.525 19.944 4.543 4.239 2.17 7.075 4.588 8.702 6.251 3.909 3.973 7.645 8.946 8.562 18.462.26 2.694.329 5.466.277 8.053.259-.062.519-.123.795-.17a17.527 17.527 0 0 1 3.079-.292c4.913 0 8.944 2.37 10.569 6.174 1.16 2.756.969 5.666-.536 8.222-1.072 1.817-2.785 3.434-5.241 4.958-.57.357-1.443.86-2.531 1.489l-.41.236c-.295.173-.655.382-1.047.609-.547.318-1.16.673-1.755 1.023-.207.139-.605.431-.761.708-.19.354-.208.755.069 1.463a24.453 24.453 0 0 0 2.387 3.757c3.235 4.219 7.888 7.776 13.873 10.594.589.261 1.177.523 1.747.785.277.123.606.277.969.462Zm-11.87 11.005c2.05-.488 4.475-1.066 7.442-2.521 3.46-1.71 1.505-2.756.312-3.25-19.686-8.483-22.834-21.586-22.972-22.572l-.018-.135c-.15-1.107-.272-2.005 1.125-3.16.945-.78 4.098-2.597 6.58-4.028 1.194-.689 2.233-1.288 2.795-1.638 2.872-1.77 4.135-3.557 3.2-5.743-.64-1.51-2.231-2.079-3.909-2.079a8.93 8.93 0 0 0-1.557.154c-1.874.357-3.717.998-5.274 1.54-1.059.368-1.986.69-2.7.847a3.651 3.651 0 0 1-.657.077c-.934 0-1.28-.37-1.211-1.386l.019-.263c.231-3.133.658-8.93.136-14.35-.743-7.667-3.528-11.47-6.832-14.843-1.575-1.616-8.995-8.622-23.283-8.622-14.254 0-21.692 7.006-23.284 8.622-3.303 3.357-6.088 7.176-6.832 14.843-.499 5.185-.115 10.715.108 13.928l.048.685c.069.97-.277 1.386-1.211 1.386-.208 0-.416-.031-.658-.077-.735-.154-1.694-.487-2.792-.868-1.537-.533-3.345-1.16-5.182-1.519a8.727 8.727 0 0 0-1.557-.154c-1.678 0-3.27.57-3.91 2.079-.933 2.186.33 3.957 3.2 5.743.524.321 1.46.861 2.551 1.49 2.515 1.45 5.848 3.37 6.825 4.176 1.427 1.15 1.29 2.07 1.123 3.192l-.016.103c-.138.986-3.269 14.089-22.971 22.573-1.16.493-3.114 1.54.346 3.249 2.972 1.466 5.406 2.042 7.46 2.528 1.699.403 3.137.743 4.406 1.475 1.292.742 1.474 1.947 1.644 3.066.143.949.278 1.836 1.072 2.323.922.568 2.632.626 4.935.704 3.009.102 7.031.239 11.636 1.59 2.294.676 4.288 1.766 6.388 2.915 4.127 2.257 8.664 4.738 16.688 4.738 8.013 0 12.598-2.502 16.737-4.762 2.098-1.145 4.08-2.228 6.339-2.891 4.605-1.351 8.627-1.488 11.636-1.59 2.303-.078 4.012-.136 4.935-.704.804-.496.938-1.386 1.08-2.337.168-1.115.347-2.312 1.636-3.052 1.279-.733 2.722-1.077 4.424-1.482Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgbef7\",\"data-framer-name\":\"Instagramm\",layoutDependency:layoutDependency,layoutId:\"pkCqnhGVl\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w9sqfm\",\"data-framer-name\":\"Instagramm\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"sbp2F8MoF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64 15.904c15.664 0 17.52.059 23.707.341 3.719.045 7.403.729 10.89 2.022a18.17 18.17 0 0 1 6.747 4.389 18.167 18.167 0 0 1 4.389 6.747 32.459 32.459 0 0 1 2.022 10.89c.282 6.187.341 8.043.341 23.707 0 15.664-.059 17.52-.341 23.707a32.459 32.459 0 0 1-2.022 10.89 19.427 19.427 0 0 1-11.136 11.136 32.46 32.46 0 0 1-10.89 2.022c-6.187.282-8.043.341-23.707.341-15.664 0-17.52-.059-23.707-.341a32.464 32.464 0 0 1-10.896-2.022 18.175 18.175 0 0 1-6.741-4.389 18.179 18.179 0 0 1-4.39-6.747 32.463 32.463 0 0 1-2.02-10.89c-.283-6.187-.342-8.043-.342-23.707 0-15.664.059-17.52.341-23.707a32.453 32.453 0 0 1 2.022-10.89 18.175 18.175 0 0 1 4.389-6.747 18.175 18.175 0 0 1 6.747-4.39 32.463 32.463 0 0 1 10.89-2.02c6.187-.283 8.043-.342 23.707-.342Zm0-10.57c-15.93 0-17.93.069-24.187.351a43.061 43.061 0 0 0-14.24 2.726 28.757 28.757 0 0 0-10.394 6.773 28.757 28.757 0 0 0-6.768 10.39 43.062 43.062 0 0 0-2.72 14.24c-.294 6.255-.358 8.255-.358 24.186 0 15.93.07 17.93.352 24.187a43.065 43.065 0 0 0 2.726 14.24 28.752 28.752 0 0 0 6.773 10.394 28.744 28.744 0 0 0 10.39 6.768 43.05 43.05 0 0 0 14.24 2.72c6.255.294 8.255.358 24.186.358 15.93 0 17.93-.07 24.187-.352a43.057 43.057 0 0 0 14.24-2.726 29.986 29.986 0 0 0 17.162-17.162 43.054 43.054 0 0 0 2.72-14.24c.294-6.256.358-8.256.358-24.187 0-15.93-.07-17.93-.352-24.187a43.08 43.08 0 0 0-2.726-14.24 28.752 28.752 0 0 0-6.773-10.394 28.758 28.758 0 0 0-10.389-6.768 43.065 43.065 0 0 0-14.24-2.72C81.93 5.397 79.93 5.333 64 5.333Zm0 28.538a30.128 30.128 0 1 0 0 60.256 30.128 30.128 0 0 0 0-60.256Zm0 49.685a19.557 19.557 0 1 1 0-39.114 19.557 19.557 0 0 1 0 39.114Zm31.317-57.914a7.04 7.04 0 1 0 0 14.081 7.04 7.04 0 0 0 0-14.081Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8w33y\",\"data-framer-name\":\"Oneflow\",layoutDependency:layoutDependency,layoutId:\"DD4L9g8rm\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-193qpda\",\"data-framer-name\":\"Oneflow\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"JveEdg6ni\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M69.045 55.276h3.534v22.49h-3.534v-22.49ZM46.757 74.774c-2.514 0-4.471-1.499-5.197-3.668l13.628-3.528c-.583-5.446-4.58-8.285-8.694-8.285a8.558 8.558 0 0 0-6.523 2.977c-1.449 1.692-2.233 3.93-2.233 6.39 0 5.791 4.077 9.37 9.086 9.37 3.358 0 5.963-1.515 7.36-3.512l-2.499-2.09c-1.018 1.498-3.013 2.346-4.928 2.346Zm-.283-12.209c2.232 0 3.828 1.195 4.635 2.976l-9.857 2.55c.059-3.118 2.096-5.526 5.222-5.526Zm-18.223-3.27c-4.711 0-7.687 3.008-7.687 7.539v10.931h3.535V66.834c0-2.713 1.325-4.186 4.15-4.186s4.131 1.47 4.131 4.186v10.931h3.535V66.834c.002-4.531-2.952-7.539-7.664-7.539ZM9.4 78.035a9.371 9.371 0 1 1 9.369-9.375 9.38 9.38 0 0 1-9.37 9.374Zm0-15.376c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.611 6.007 5.824 6.007 3.212 0 5.823-2.695 5.823-6.008 0-3.312-2.611-6.009-5.823-6.009Zm74.347 15.375a9.372 9.372 0 1 1 9.37-9.374 9.38 9.38 0 0 1-9.37 9.374Zm0-15.375c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.612 6.007 5.824 6.007 3.211 0 5.824-2.695 5.824-6.008 0-3.312-2.612-6.009-5.824-6.009Zm-23.144.625v-.941c0-1.57.058-2.27.715-3.048.657-.776 1.812-1.126 3.327-1.126a9.937 9.937 0 0 1 2.213.206v-3.18a12.865 12.865 0 0 0-2.693-.263c-2.279 0-3.897.555-5.046 1.497-1.555 1.274-2.037 2.935-2.037 5.642v15.694h3.534V66.377l4.878-1.273V62.01l-4.891 1.275Zm57.743 3.286v3.932c0 2.711-1.319 4.185-4.104 4.186-1.389 0-2.428-.4-3.089-1.1-.785-.829-.985-1.676-.989-3.062V59.575h-3.534v10.933c0 1.549-.324 2.43-1.008 3.11-.683.679-1.704 1.075-3.096 1.076-2.752 0-4.076-1.483-4.076-4.186V59.575h-3.537v11.341c0 2.089.583 3.763 1.906 5.061 1.514 1.48 3.514 2.069 5.733 2.069 2.446 0 4.527-.917 5.845-2.415 1.311 1.493 3.388 2.415 5.871 2.415 2.33 0 4.336-.699 5.652-2.013 1.341-1.337 1.96-2.84 1.96-5.309V66.57h-3.534Zm-.001-14.072h3.535v3.535h-3.535v-3.535Zm0 7.069h3.535V63.1h-3.535v-3.534Zm-3.534-3.534h3.535v3.534h-3.535v-3.534Zm7.069 0h3.535v3.534h-3.535v-3.534Zm2.585-6.126H128v3.536h-3.535v-3.535Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ycj7kh\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"nheB7adbl\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-566a2i\",\"data-framer-name\":\"LinkedIn\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"QETNTm0lj\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.778 128H14.222C6.368 128 0 121.633 0 113.778V14.222C0 6.368 6.367 0 14.222 0h99.556C121.633 0 128 6.367 128 14.222v99.556c0 7.855-6.367 14.222-14.222 14.222Zm-22.55-17.778h18.994v-39.02c0-16.51-9.359-24.492-22.43-24.492-13.08 0-18.583 10.184-18.583 10.184v-8.301H50.904v61.629h18.305V77.87c0-8.668 3.99-13.826 11.628-13.826 7.02 0 10.39 4.957 10.39 13.826v32.352ZM17.778 29.15c0 6.28 5.052 11.373 11.287 11.373 6.236 0 11.285-5.092 11.285-11.373 0-6.28-5.05-11.372-11.285-11.372S17.778 22.87 17.778 29.15ZM38.7 110.222H19.613v-61.63h19.088v61.63Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tlv7ym\",\"data-framer-name\":\"Hibob\",layoutDependency:layoutDependency,layoutId:\"nKs4kQ3EU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1su0zam\",\"data-framer-name\":\"Hibob\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"eBJgtP0ap\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#6179C8\"><path d=\"M65.887 91.9c-10.925 0-19.816-8.965-19.816-19.985 0-11.018 8.89-19.983 19.816-19.983 10.924 0 19.813 8.965 19.813 19.983 0 11.02-8.89 19.984-19.813 19.984Zm0-33.697c-7.498 0-13.598 6.151-13.598 13.712s6.1 13.713 13.598 13.713c7.497 0 13.595-6.152 13.595-13.713 0-7.56-6.098-13.712-13.595-13.712ZM8.979 54.356V36.908c0-2.5-2.01-4.528-4.49-4.528-2.48 0-4.49 2.028-4.49 4.528v34.886C.013 83.59 9.516 93.17 21.195 93.17c11.686 0 21.195-9.59 21.195-21.376 0-11.787-9.509-21.376-21.195-21.376-4.549 0-8.759 1.468-12.215 3.938Zm12.215 29.758c-6.735 0-12.214-5.526-12.214-12.32 0-6.793 5.48-12.32 12.214-12.32 6.736 0 12.216 5.527 12.216 12.32 0 6.794-5.48 12.32-12.216 12.32Zm86.607-30.787c-6.172 0-11.632 3.086-14.98 7.799V34.922c0-.961-.772-1.742-1.725-1.742-.953 0-1.727.78-1.727 1.742v36.993c0 .005.003.008.003.012.006 10.245 8.271 18.578 18.429 18.578 10.163 0 18.431-8.34 18.431-18.59s-8.268-18.588-18.431-18.588Zm0 33.695c-8.26 0-14.977-6.776-14.977-15.107 0-8.33 6.717-15.106 14.977-15.106 8.259 0 14.978 6.776 14.978 15.106s-6.719 15.107-14.978 15.107Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rh4z17\",\"data-framer-name\":\"Refapp\",layoutDependency:layoutDependency,layoutId:\"yPgassNrH\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ikj33b\",\"data-framer-name\":\"Refapp\",fill:\"rgba(255, 255, 255, 0.5)\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"A_W12ayRD\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#6179C8\"><path d=\"M53.886 63.654v5.78h-3.942V54.19h4.945a16.62 16.62 0 0 1 2.552.137 4.3 4.3 0 0 1 3.676 4.246c.092 2.491-.76 3.798-3.099 4.557l-.167.084c1.58 2.05 3.137 4.094 4.77 6.213h-4.504a.699.699 0 0 1-.676-.38c-1.04-1.648-2.104-3.28-3.168-4.922-.106-.09-.212-.227-.387-.47Zm0-2.552c.685-.063 1.365-.17 2.036-.319a1.565 1.565 0 0 0 1.124-1.625 1.52 1.52 0 0 0-1.071-1.656 15.004 15.004 0 0 0-2.044-.335l-.045 3.935Zm10.444 8.325V54.235h8.66v3.305h-4.672v2.56h4.39v3.357h-4.39v2.613h4.649v3.357H64.33Zm19.78-5.955h-4.307v5.963h-3.95v-15.23h8.683v3.312H79.84v2.552h4.27v3.403Zm16.636 5.986h-3.89a.585.585 0 0 1-.425-.334 29.744 29.744 0 0 1-.668-1.96.433.433 0 0 0-.502-.35h-4.9a.47.47 0 0 0-.523.395c-.213.664-.44 1.317-.684 1.96a.556.556 0 0 1-.342.304H84.84c.114-.327.197-.608.303-.881 1.773-4.639 3.545-9.282 5.318-13.931.129-.327.266-.471.645-.464h3.517a.666.666 0 0 1 .494.327c1.884 4.902 3.755 9.809 5.613 14.721a.568.568 0 0 0 .016.213Zm-6.168-5.69c-.593-1.678-1.163-3.289-1.725-4.907h-.114c-.562 1.61-1.131 3.229-1.709 4.892l3.548.015Zm11.986.593v5.059h-3.935V54.228a1.06 1.06 0 0 1 .236-.046c2.279 0 4.512-.038 6.76 0a4.403 4.403 0 0 1 3.859 2.081 5.688 5.688 0 0 1 .676 3.912c-.372 2.59-1.899 3.966-4.557 4.125-.98.106-1.968.06-3.039.06Zm0-7.004v3.897a18.06 18.06 0 0 0 2.18-.175 1.572 1.572 0 0 0 1.291-1.762 1.58 1.58 0 0 0-1.306-1.8c-.71-.097-1.425-.15-2.142-.16h-.023Zm13.764 7.004v5.059h-3.942V54.228a1.09 1.09 0 0 1 .228-.046c2.278 0 4.512-.038 6.768 0a4.414 4.414 0 0 1 3.889 2.127 5.705 5.705 0 0 1 .653 3.859c-.38 2.59-1.907 3.973-4.558 4.132-.972.106-1.967.06-3.038.06Zm0-3.122a18.09 18.09 0 0 0 2.157-.16 1.58 1.58 0 0 0 1.314-1.747c0-1.01-.379-1.633-1.283-1.815a18.413 18.413 0 0 0-2.188-.16v3.882ZM0 59.651c.144-.835.266-1.663.425-2.491a22.575 22.575 0 0 1 3.707-8.66v26.07c-.129-.167-.235-.296-.326-.433a22.583 22.583 0 0 1-3.7-10.316A1.888 1.888 0 0 0 0 63.487v-3.836ZM36.727 43.83a19.658 19.658 0 0 1 4.459 4.687 22.082 22.082 0 0 1 4.056 11.5c.425 7.224-2.104 13.27-7.33 18.337L29.184 66.96c.676-.205 1.299-.38 1.906-.6 4.887-1.732 7.672-5.166 8.356-10.3a16.628 16.628 0 0 0-1.52-10.103c-.364-.76-.842-1.39-1.275-2.082l.076-.045ZM16.78 60V48.197s.053-.061.083-.061a19.544 19.544 0 0 1 5.446.326c2.21.593 3.874 1.8 4.338 4.178.714 3.6-.942 6.16-4.505 7.05-1.762.44-3.555.273-5.363.31Zm10.086 23.86c-.85.114-1.58.25-2.324.296a23.282 23.282 0 0 1-7.391-.6c-.25-.06-.41-.122-.41-.433 0-4.915 0-9.837.106-14.805l10.02 15.542Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/><path d=\"m36.666 43.882-.046-.099.107.046-.061.053Z\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ai2l2\",\"data-framer-name\":\"Snap\",layoutDependency:layoutDependency,layoutId:\"p2FEJmfRF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uy4yea\",\"data-framer-name\":\"Snap\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"ClbjhXrf8\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M122.285 85.217c1.92.954 3.598 2.094 4.48 4.234 1.004 2.387.398 5.112-2.024 7.422l-.034.03c-.865.878-1.989 1.648-3.408 2.341-3.217 1.586-5.933 2.34-8.061 2.864-.398.108-1.159.354-1.505.616-.484.369-.686.844-.937 1.435-.19.445-.407.955-.793 1.536a8.59 8.59 0 0 1-2.681 2.603c-2.614 1.607-5.536 1.708-8.647 1.815l-.053.002c-2.837.092-6.037.2-9.687 1.277-1.406.413-2.89 1.219-4.605 2.15l-.24.129c-4.392 2.402-10.43 5.698-20.462 5.698-10.02 0-16.002-3.271-20.394-5.672l-.018-.01c-1.816-1.001-3.39-1.863-4.913-2.31-3.667-1.078-6.867-1.186-9.687-1.278l-.053-.002c-3.111-.107-6.033-.207-8.647-1.815a8.378 8.378 0 0 1-2.353-2.125c-.619-.792-.901-1.463-1.138-2.025-.247-.586-.444-1.055-.92-1.424-.381-.292-1.246-.539-1.61-.631-2.11-.524-4.808-1.278-7.956-2.833-1.332-.662-2.405-1.37-3.252-2.187C.109 94.701-.565 91.915.455 89.451c1.152-2.773 3.64-3.886 6.248-5.053.447-.2.898-.401 1.346-.613 5.778-2.787 10.31-6.282 13.475-10.409 1.055-1.386 1.816-2.648 2.336-3.68.294-.754.294-1.155.086-1.54-.173-.323-.71-.677-.865-.77-.79-.469-1.604-.938-2.252-1.312l-.446-.258c-1.28-.74-2.284-1.324-2.941-1.725-2.456-1.524-4.169-3.14-5.241-4.958-1.505-2.556-1.696-5.481-.537-8.222 1.626-3.803 5.674-6.174 10.57-6.174 1.02 0 2.058.092 3.079.292.13.031.263.058.398.085.133.027.268.054.397.085-.052-2.587.017-5.343.277-8.053.917-9.5 4.653-14.49 8.563-18.462 1.626-1.648 4.445-4.08 8.718-6.251C49.599 9.415 56.293 7.89 63.593 7.89c7.317 0 14.029 1.525 19.944 4.543 4.239 2.17 7.075 4.588 8.702 6.251 3.909 3.973 7.645 8.946 8.562 18.462.26 2.694.329 5.466.277 8.053.259-.062.519-.123.795-.17a17.527 17.527 0 0 1 3.079-.292c4.913 0 8.944 2.37 10.569 6.174 1.16 2.756.969 5.666-.536 8.222-1.072 1.817-2.785 3.434-5.241 4.958-.57.357-1.443.86-2.531 1.489l-.41.236c-.295.173-.655.382-1.047.609-.547.318-1.16.673-1.755 1.023-.207.139-.605.431-.761.708-.19.354-.208.755.069 1.463a24.453 24.453 0 0 0 2.387 3.757c3.235 4.219 7.888 7.776 13.873 10.594.589.261 1.177.523 1.747.785.277.123.606.277.969.462Zm-11.87 11.005c2.05-.488 4.475-1.066 7.442-2.521 3.46-1.71 1.505-2.756.312-3.25-19.686-8.483-22.834-21.586-22.972-22.572l-.018-.135c-.15-1.107-.272-2.005 1.125-3.16.945-.78 4.098-2.597 6.58-4.028 1.194-.689 2.233-1.288 2.795-1.638 2.872-1.77 4.135-3.557 3.2-5.743-.64-1.51-2.231-2.079-3.909-2.079a8.93 8.93 0 0 0-1.557.154c-1.874.357-3.717.998-5.274 1.54-1.059.368-1.986.69-2.7.847a3.651 3.651 0 0 1-.657.077c-.934 0-1.28-.37-1.211-1.386l.019-.263c.231-3.133.658-8.93.136-14.35-.743-7.667-3.528-11.47-6.832-14.843-1.575-1.616-8.995-8.622-23.283-8.622-14.254 0-21.692 7.006-23.284 8.622-3.303 3.357-6.088 7.176-6.832 14.843-.499 5.185-.115 10.715.108 13.928l.048.685c.069.97-.277 1.386-1.211 1.386-.208 0-.416-.031-.658-.077-.735-.154-1.694-.487-2.792-.868-1.537-.533-3.345-1.16-5.182-1.519a8.727 8.727 0 0 0-1.557-.154c-1.678 0-3.27.57-3.91 2.079-.933 2.186.33 3.957 3.2 5.743.524.321 1.46.861 2.551 1.49 2.515 1.45 5.848 3.37 6.825 4.176 1.427 1.15 1.29 2.07 1.123 3.192l-.016.103c-.138.986-3.269 14.089-22.971 22.573-1.16.493-3.114 1.54.346 3.249 2.972 1.466 5.406 2.042 7.46 2.528 1.699.403 3.137.743 4.406 1.475 1.292.742 1.474 1.947 1.644 3.066.143.949.278 1.836 1.072 2.323.922.568 2.632.626 4.935.704 3.009.102 7.031.239 11.636 1.59 2.294.676 4.288 1.766 6.388 2.915 4.127 2.257 8.664 4.738 16.688 4.738 8.013 0 12.598-2.502 16.737-4.762 2.098-1.145 4.08-2.228 6.339-2.891 4.605-1.351 8.627-1.488 11.636-1.59 2.303-.078 4.012-.136 4.935-.704.804-.496.938-1.386 1.08-2.337.168-1.115.347-2.312 1.636-3.052 1.279-.733 2.722-1.077 4.424-1.482Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgbef7\",\"data-framer-name\":\"Instagramm\",layoutDependency:layoutDependency,layoutId:\"pkCqnhGVl\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w9sqfm\",\"data-framer-name\":\"Instagramm\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"sbp2F8MoF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64 15.904c15.664 0 17.52.059 23.707.341 3.719.045 7.403.729 10.89 2.022a18.17 18.17 0 0 1 6.747 4.389 18.167 18.167 0 0 1 4.389 6.747 32.459 32.459 0 0 1 2.022 10.89c.282 6.187.341 8.043.341 23.707 0 15.664-.059 17.52-.341 23.707a32.459 32.459 0 0 1-2.022 10.89 19.427 19.427 0 0 1-11.136 11.136 32.46 32.46 0 0 1-10.89 2.022c-6.187.282-8.043.341-23.707.341-15.664 0-17.52-.059-23.707-.341a32.464 32.464 0 0 1-10.896-2.022 18.175 18.175 0 0 1-6.741-4.389 18.179 18.179 0 0 1-4.39-6.747 32.463 32.463 0 0 1-2.02-10.89c-.283-6.187-.342-8.043-.342-23.707 0-15.664.059-17.52.341-23.707a32.453 32.453 0 0 1 2.022-10.89 18.175 18.175 0 0 1 4.389-6.747 18.175 18.175 0 0 1 6.747-4.39 32.463 32.463 0 0 1 10.89-2.02c6.187-.283 8.043-.342 23.707-.342Zm0-10.57c-15.93 0-17.93.069-24.187.351a43.061 43.061 0 0 0-14.24 2.726 28.757 28.757 0 0 0-10.394 6.773 28.757 28.757 0 0 0-6.768 10.39 43.062 43.062 0 0 0-2.72 14.24c-.294 6.255-.358 8.255-.358 24.186 0 15.93.07 17.93.352 24.187a43.065 43.065 0 0 0 2.726 14.24 28.752 28.752 0 0 0 6.773 10.394 28.744 28.744 0 0 0 10.39 6.768 43.05 43.05 0 0 0 14.24 2.72c6.255.294 8.255.358 24.186.358 15.93 0 17.93-.07 24.187-.352a43.057 43.057 0 0 0 14.24-2.726 29.986 29.986 0 0 0 17.162-17.162 43.054 43.054 0 0 0 2.72-14.24c.294-6.256.358-8.256.358-24.187 0-15.93-.07-17.93-.352-24.187a43.08 43.08 0 0 0-2.726-14.24 28.752 28.752 0 0 0-6.773-10.394 28.758 28.758 0 0 0-10.389-6.768 43.065 43.065 0 0 0-14.24-2.72C81.93 5.397 79.93 5.333 64 5.333Zm0 28.538a30.128 30.128 0 1 0 0 60.256 30.128 30.128 0 0 0 0-60.256Zm0 49.685a19.557 19.557 0 1 1 0-39.114 19.557 19.557 0 0 1 0 39.114Zm31.317-57.914a7.04 7.04 0 1 0 0 14.081 7.04 7.04 0 0 0 0-14.081Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8w33y\",\"data-framer-name\":\"Oneflow\",layoutDependency:layoutDependency,layoutId:\"DD4L9g8rm\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-193qpda\",\"data-framer-name\":\"Oneflow\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"JveEdg6ni\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M69.045 55.276h3.534v22.49h-3.534v-22.49ZM46.757 74.774c-2.514 0-4.471-1.499-5.197-3.668l13.628-3.528c-.583-5.446-4.58-8.285-8.694-8.285a8.558 8.558 0 0 0-6.523 2.977c-1.449 1.692-2.233 3.93-2.233 6.39 0 5.791 4.077 9.37 9.086 9.37 3.358 0 5.963-1.515 7.36-3.512l-2.499-2.09c-1.018 1.498-3.013 2.346-4.928 2.346Zm-.283-12.209c2.232 0 3.828 1.195 4.635 2.976l-9.857 2.55c.059-3.118 2.096-5.526 5.222-5.526Zm-18.223-3.27c-4.711 0-7.687 3.008-7.687 7.539v10.931h3.535V66.834c0-2.713 1.325-4.186 4.15-4.186s4.131 1.47 4.131 4.186v10.931h3.535V66.834c.002-4.531-2.952-7.539-7.664-7.539ZM9.4 78.035a9.371 9.371 0 1 1 9.369-9.375 9.38 9.38 0 0 1-9.37 9.374Zm0-15.376c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.611 6.007 5.824 6.007 3.212 0 5.823-2.695 5.823-6.008 0-3.312-2.611-6.009-5.823-6.009Zm74.347 15.375a9.372 9.372 0 1 1 9.37-9.374 9.38 9.38 0 0 1-9.37 9.374Zm0-15.375c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.612 6.007 5.824 6.007 3.211 0 5.824-2.695 5.824-6.008 0-3.312-2.612-6.009-5.824-6.009Zm-23.144.625v-.941c0-1.57.058-2.27.715-3.048.657-.776 1.812-1.126 3.327-1.126a9.937 9.937 0 0 1 2.213.206v-3.18a12.865 12.865 0 0 0-2.693-.263c-2.279 0-3.897.555-5.046 1.497-1.555 1.274-2.037 2.935-2.037 5.642v15.694h3.534V66.377l4.878-1.273V62.01l-4.891 1.275Zm57.743 3.286v3.932c0 2.711-1.319 4.185-4.104 4.186-1.389 0-2.428-.4-3.089-1.1-.785-.829-.985-1.676-.989-3.062V59.575h-3.534v10.933c0 1.549-.324 2.43-1.008 3.11-.683.679-1.704 1.075-3.096 1.076-2.752 0-4.076-1.483-4.076-4.186V59.575h-3.537v11.341c0 2.089.583 3.763 1.906 5.061 1.514 1.48 3.514 2.069 5.733 2.069 2.446 0 4.527-.917 5.845-2.415 1.311 1.493 3.388 2.415 5.871 2.415 2.33 0 4.336-.699 5.652-2.013 1.341-1.337 1.96-2.84 1.96-5.309V66.57h-3.534Zm-.001-14.072h3.535v3.535h-3.535v-3.535Zm0 7.069h3.535V63.1h-3.535v-3.534Zm-3.534-3.534h3.535v3.534h-3.535v-3.534Zm7.069 0h3.535v3.534h-3.535v-3.534Zm2.585-6.126H128v3.536h-3.535v-3.535Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17zkhrc-container\",layoutDependency:layoutDependency,layoutId:\"IYyxbm4Tm-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.5,id:\"IYyxbm4Tm\",layoutId:\"IYyxbm4Tm\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ha2yr\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"naYe0x_DD\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13kcyva\",\"data-framer-name\":\"Google\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"xxfiCwTBf\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M63.956 5.584h.128c4.788 0 9.228 1.604 12.788 4.292h.02a21.391 21.391 0 0 1 5.956 6.932l23.812 41.44.144.332 18.228 31.628a21.257 21.257 0 0 1 2.96 10.852c0 3.004-.624 5.876-1.748 8.48l.02.084a20.843 20.843 0 0 1-3.376 5.312 21.326 21.326 0 0 1-5.584 4.624 21.062 21.062 0 0 1-10.372 2.852h-.356a21.14 21.14 0 0 1-12.788-4.292h-.02a21.391 21.391 0 0 1-5.956-6.932L64 69.748l-.144-.332L45.54 37.644a21.263 21.263 0 0 1-2.876-10.708c0-2.252.352-4.436 1.004-6.48l.036-.128.064-.164c.272-.832.624-1.792.624-1.792.832-1.916 1.98-3.684 3.332-5.248l.336-.396.08-.084v-.02h.02l.044-.064.044-.016a21.127 21.127 0 0 1 5.104-4.108 21.062 21.062 0 0 1 10.372-2.852h.232Zm-42.58 116.832h-.316a21.123 21.123 0 0 1-10.372-2.852 21.326 21.326 0 0 1-5.584-4.624 20.843 20.843 0 0 1-3.376-5.312l.02-.084C.58 106.876 0 103.98 0 101.064c0-3.98 1.084-7.684 2.96-10.852l18.228-31.628.144-.332L37.54 30.064a26.662 26.662 0 0 0 3.168 9.892l.308.524 18 31.228v-.06l.356.768 1.54 2.708-20.732 36.064a21.398 21.398 0 0 1-5.956 6.932h-.02a21.114 21.114 0 0 1-12.788 4.292l-.04.004Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jptrfu\",\"data-framer-name\":\"Zinc\",layoutDependency:layoutDependency,layoutId:\"VDHuQJwAd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-325kku\",\"data-framer-name\":\"Zinc\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"zHrqabLBx\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.797 34.609v60.674l-.005.005c0 .09-.051.17-.127.215l-53.04 30.34a.255.255 0 0 1-.254 0l-53.04-30.34a.252.252 0 0 1-.127-.215v-60.68c0-.09.05-.17.126-.214l53.046-30.34a.255.255 0 0 1 .254 0l53.04 30.34a.25.25 0 0 1 .127.215ZM35.523 41.66l21.149-12.177 7.416 4.28-13.662 24.022.086.085L76.66 42.81l7.66 4.445-21.316 31.186.08.08 33.646-19.5 9.077 5.186-59.96 34.388v-10.12l22.734-31.92-.081-.086L39.52 73.09v-8.968l13.074-23.694-.086-.085-16.985 9.795V41.66Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9hf2f\",\"data-framer-name\":\"Face\",layoutDependency:layoutDependency,layoutId:\"UtllLhJtJ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srabfa\",\"data-framer-name\":\"Face\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"fM4UaMUyF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M64 0C28.654 0 0 28.654 0 64c0 32.087 23.636 58.58 54.435 63.209V80.963H38.6V64.14h15.834V52.946c0-18.534 9.03-26.671 24.433-26.671 7.378 0 11.279.547 13.126.797v14.685H81.487c-6.54 0-8.824 6.2-8.824 13.187v9.196h19.165l-2.6 16.823H72.663v46.382C103.901 123.107 128 96.399 128 64c0-35.346-28.654-64-64-64Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qozgh6\",\"data-framer-name\":\"Indeed\",layoutDependency:layoutDependency,layoutId:\"lja3S6No2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l8f1by\",\"data-framer-name\":\"Indeed\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"tENu6ttRz\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.152 114.992V68.267c1.337.123 2.623.184 3.97.184 6.403 0 12.433-1.71 17.549-4.761v51.292c0 4.382-1.025 7.618-3.015 9.779-1.98 2.15-4.614 3.226-7.81 3.226-3.146 0-5.638-1.076-7.689-3.298-1.98-2.15-3.005-5.386-3.005-9.697Zm.12-111.974C74.6-1.744 89.778-1.488 101.176 8.28c2.121 1.966 4.543 4.444 5.508 7.363 1.155 3.686-4.031-.39-4.744-.891-3.719-2.417-7.428-4.444-11.59-5.837-22.413-6.85-43.62 5.53-56.807 24.76-5.508 8.5-9.096 17.45-12.04 27.29-.322 1.075-.574 2.478-1.157 3.42-.583 1.085-.251-2.908-.251-3.041.442-4.065 1.276-7.998 2.312-11.93 6.08-20.95 19.529-38.4 38.867-46.397ZM87.085 40.66c0 8.899-7.087 16.118-15.82 16.118-8.735 0-15.81-7.22-15.81-16.118s7.075-16.118 15.81-16.118c8.733 0 15.82 7.21 15.82 16.118Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7gop9g\",\"data-framer-name\":\"Monster\",layoutDependency:layoutDependency,layoutId:\"ydsPBcqpj\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7xoag3\",\"data-framer-name\":\"Monster\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"QMx3RO2XZ\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M128 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64C0 28.654 28.654 0 64 0c35.346 0 64 28.654 64 64Zm-64-1.756 26.676-24.92v53.352H78.6V64.879L64 77.832 49.4 64.879v25.797H37.324V37.324L64 62.244Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cysurq\",\"data-framer-name\":\"Huma\",layoutDependency:layoutDependency,layoutId:\"GLdCvgqsr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1peq8ye\",\"data-framer-name\":\"Huma\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"uAiz_CXHC\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.338 64.847c.003-2.924-.85-5.26-2.562-7.008-1.757-1.732-4.009-2.611-6.846-2.611-3.889 0-6.847 2.01-8.924 6.025V45.037H0v37.019h7.006V68.08c0-2.334 2.328-3.913 5.876-3.913 3.323 0 5.45 1.481 5.45 3.816v14.072h7.006V64.847Zm28.646-9.013h-7.006l-.015 14.35a2.964 2.964 0 0 1-1.502 2.57 7.084 7.084 0 0 1-3.908.978c-3.003 0-5.005-1.383-5.005-3.44V55.834h-7.006v17.291c0 2.885.86 5.178 2.502 6.93 1.642 1.754 3.814 2.633 6.476 2.633 3.668-.025 6.456-1.933 8.458-5.774v5.142h7.006V55.834Zm41.338 1.933c1.541 1.707 2.297 3.965 2.297 6.777v17.512h-7.006v-14.7c0-1.907-1.812-3.188-4.424-3.188-2.863 0-4.79 1.379-4.79 3.286v14.602h-7.006v-14.7c0-1.907-1.782-3.188-4.4-3.188-2.857 0-4.808 1.379-4.808 3.286v14.602h-7.007V55.834h7.007v4.926c1.881-3.692 4.504-5.553 7.867-5.553 3.537-.122 6.721 2.19 7.792 5.656 2.002-3.764 4.77-5.656 8.407-5.656a7.803 7.803 0 0 1 6.071 2.56Zm31.889-1.933h-7.006v4.514c-1.935-3.4-4.738-5.1-8.408-5.1-3.291-.068-6.442 1.367-8.603 3.918-2.322 2.617-3.468 5.85-3.468 9.769 0 3.918 1.146 7.183 3.468 9.82 2.153 2.564 5.307 4.008 8.603 3.939 3.668 0 6.476-1.708 8.408-5.096v4.458h7.006V55.834Zm-8.888 16.54a7.85 7.85 0 0 1-4.719 1.358 7.887 7.887 0 0 1-4.74-1.358 4.063 4.063 0 0 1-1.881-3.413c0-1.384.635-2.51 1.881-3.44a8.946 8.946 0 0 1 9.459 0c1.246.93 1.882 2.062 1.882 3.44a4.067 4.067 0 0 1-1.882 3.413Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ha2yr\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"naYe0x_DD\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13kcyva\",\"data-framer-name\":\"Google\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"xxfiCwTBf\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M63.956 5.584h.128c4.788 0 9.228 1.604 12.788 4.292h.02a21.391 21.391 0 0 1 5.956 6.932l23.812 41.44.144.332 18.228 31.628a21.257 21.257 0 0 1 2.96 10.852c0 3.004-.624 5.876-1.748 8.48l.02.084a20.843 20.843 0 0 1-3.376 5.312 21.326 21.326 0 0 1-5.584 4.624 21.062 21.062 0 0 1-10.372 2.852h-.356a21.14 21.14 0 0 1-12.788-4.292h-.02a21.391 21.391 0 0 1-5.956-6.932L64 69.748l-.144-.332L45.54 37.644a21.263 21.263 0 0 1-2.876-10.708c0-2.252.352-4.436 1.004-6.48l.036-.128.064-.164c.272-.832.624-1.792.624-1.792.832-1.916 1.98-3.684 3.332-5.248l.336-.396.08-.084v-.02h.02l.044-.064.044-.016a21.127 21.127 0 0 1 5.104-4.108 21.062 21.062 0 0 1 10.372-2.852h.232Zm-42.58 116.832h-.316a21.123 21.123 0 0 1-10.372-2.852 21.326 21.326 0 0 1-5.584-4.624 20.843 20.843 0 0 1-3.376-5.312l.02-.084C.58 106.876 0 103.98 0 101.064c0-3.98 1.084-7.684 2.96-10.852l18.228-31.628.144-.332L37.54 30.064a26.662 26.662 0 0 0 3.168 9.892l.308.524 18 31.228v-.06l.356.768 1.54 2.708-20.732 36.064a21.398 21.398 0 0 1-5.956 6.932h-.02a21.114 21.114 0 0 1-12.788 4.292l-.04.004Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jptrfu\",\"data-framer-name\":\"Zinc\",layoutDependency:layoutDependency,layoutId:\"VDHuQJwAd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-325kku\",\"data-framer-name\":\"Zinc\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"zHrqabLBx\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.797 34.609v60.674l-.005.005c0 .09-.051.17-.127.215l-53.04 30.34a.255.255 0 0 1-.254 0l-53.04-30.34a.252.252 0 0 1-.127-.215v-60.68c0-.09.05-.17.126-.214l53.046-30.34a.255.255 0 0 1 .254 0l53.04 30.34a.25.25 0 0 1 .127.215ZM35.523 41.66l21.149-12.177 7.416 4.28-13.662 24.022.086.085L76.66 42.81l7.66 4.445-21.316 31.186.08.08 33.646-19.5 9.077 5.186-59.96 34.388v-10.12l22.734-31.92-.081-.086L39.52 73.09v-8.968l13.074-23.694-.086-.085-16.985 9.795V41.66Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9hf2f\",\"data-framer-name\":\"Face\",layoutDependency:layoutDependency,layoutId:\"UtllLhJtJ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srabfa\",\"data-framer-name\":\"Face\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"fM4UaMUyF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M64 0C28.654 0 0 28.654 0 64c0 32.087 23.636 58.58 54.435 63.209V80.963H38.6V64.14h15.834V52.946c0-18.534 9.03-26.671 24.433-26.671 7.378 0 11.279.547 13.126.797v14.685H81.487c-6.54 0-8.824 6.2-8.824 13.187v9.196h19.165l-2.6 16.823H72.663v46.382C103.901 123.107 128 96.399 128 64c0-35.346-28.654-64-64-64Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qozgh6\",\"data-framer-name\":\"Indeed\",layoutDependency:layoutDependency,layoutId:\"lja3S6No2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l8f1by\",\"data-framer-name\":\"Indeed\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"tENu6ttRz\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.152 114.992V68.267c1.337.123 2.623.184 3.97.184 6.403 0 12.433-1.71 17.549-4.761v51.292c0 4.382-1.025 7.618-3.015 9.779-1.98 2.15-4.614 3.226-7.81 3.226-3.146 0-5.638-1.076-7.689-3.298-1.98-2.15-3.005-5.386-3.005-9.697Zm.12-111.974C74.6-1.744 89.778-1.488 101.176 8.28c2.121 1.966 4.543 4.444 5.508 7.363 1.155 3.686-4.031-.39-4.744-.891-3.719-2.417-7.428-4.444-11.59-5.837-22.413-6.85-43.62 5.53-56.807 24.76-5.508 8.5-9.096 17.45-12.04 27.29-.322 1.075-.574 2.478-1.157 3.42-.583 1.085-.251-2.908-.251-3.041.442-4.065 1.276-7.998 2.312-11.93 6.08-20.95 19.529-38.4 38.867-46.397ZM87.085 40.66c0 8.899-7.087 16.118-15.82 16.118-8.735 0-15.81-7.22-15.81-16.118s7.075-16.118 15.81-16.118c8.733 0 15.82 7.21 15.82 16.118Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7gop9g\",\"data-framer-name\":\"Monster\",layoutDependency:layoutDependency,layoutId:\"ydsPBcqpj\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7xoag3\",\"data-framer-name\":\"Monster\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"QMx3RO2XZ\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M128 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64C0 28.654 28.654 0 64 0c35.346 0 64 28.654 64 64Zm-64-1.756 26.676-24.92v53.352H78.6V64.879L64 77.832 49.4 64.879v25.797H37.324V37.324L64 62.244Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cysurq\",\"data-framer-name\":\"Huma\",layoutDependency:layoutDependency,layoutId:\"GLdCvgqsr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1peq8ye\",\"data-framer-name\":\"Huma\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"uAiz_CXHC\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.338 64.847c.003-2.924-.85-5.26-2.562-7.008-1.757-1.732-4.009-2.611-6.846-2.611-3.889 0-6.847 2.01-8.924 6.025V45.037H0v37.019h7.006V68.08c0-2.334 2.328-3.913 5.876-3.913 3.323 0 5.45 1.481 5.45 3.816v14.072h7.006V64.847Zm28.646-9.013h-7.006l-.015 14.35a2.964 2.964 0 0 1-1.502 2.57 7.084 7.084 0 0 1-3.908.978c-3.003 0-5.005-1.383-5.005-3.44V55.834h-7.006v17.291c0 2.885.86 5.178 2.502 6.93 1.642 1.754 3.814 2.633 6.476 2.633 3.668-.025 6.456-1.933 8.458-5.774v5.142h7.006V55.834Zm41.338 1.933c1.541 1.707 2.297 3.965 2.297 6.777v17.512h-7.006v-14.7c0-1.907-1.812-3.188-4.424-3.188-2.863 0-4.79 1.379-4.79 3.286v14.602h-7.006v-14.7c0-1.907-1.782-3.188-4.4-3.188-2.857 0-4.808 1.379-4.808 3.286v14.602h-7.007V55.834h7.007v4.926c1.881-3.692 4.504-5.553 7.867-5.553 3.537-.122 6.721 2.19 7.792 5.656 2.002-3.764 4.77-5.656 8.407-5.656a7.803 7.803 0 0 1 6.071 2.56Zm31.889-1.933h-7.006v4.514c-1.935-3.4-4.738-5.1-8.408-5.1-3.291-.068-6.442 1.367-8.603 3.918-2.322 2.617-3.468 5.85-3.468 9.769 0 3.918 1.146 7.183 3.468 9.82 2.153 2.564 5.307 4.008 8.603 3.939 3.668 0 6.476-1.708 8.408-5.096v4.458h7.006V55.834Zm-8.888 16.54a7.85 7.85 0 0 1-4.719 1.358 7.887 7.887 0 0 1-4.74-1.358 4.063 4.063 0 0 1-1.881-3.413c0-1.384.635-2.51 1.881-3.44a8.946 8.946 0 0 1 9.459 0c1.246.93 1.882 2.062 1.882 3.44a4.067 4.067 0 0 1-1.882 3.413Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nmnyud-container\",layoutDependency:layoutDependency,layoutId:\"MGBhYG89K-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.5,id:\"MGBhYG89K\",layoutId:\"MGBhYG89K\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qozgh6\",\"data-framer-name\":\"Indeed\",layoutDependency:layoutDependency,layoutId:\"lja3S6No2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l8f1by\",\"data-framer-name\":\"Indeed\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"tENu6ttRz\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.152 114.992V68.267c1.337.123 2.623.184 3.97.184 6.403 0 12.433-1.71 17.549-4.761v51.292c0 4.382-1.025 7.618-3.015 9.779-1.98 2.15-4.614 3.226-7.81 3.226-3.146 0-5.638-1.076-7.689-3.298-1.98-2.15-3.005-5.386-3.005-9.697Zm.12-111.974C74.6-1.744 89.778-1.488 101.176 8.28c2.121 1.966 4.543 4.444 5.508 7.363 1.155 3.686-4.031-.39-4.744-.891-3.719-2.417-7.428-4.444-11.59-5.837-22.413-6.85-43.62 5.53-56.807 24.76-5.508 8.5-9.096 17.45-12.04 27.29-.322 1.075-.574 2.478-1.157 3.42-.583 1.085-.251-2.908-.251-3.041.442-4.065 1.276-7.998 2.312-11.93 6.08-20.95 19.529-38.4 38.867-46.397ZM87.085 40.66c0 8.899-7.087 16.118-15.82 16.118-8.735 0-15.81-7.22-15.81-16.118s7.075-16.118 15.81-16.118c8.733 0 15.82 7.21 15.82 16.118Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9hf2f\",\"data-framer-name\":\"Face\",layoutDependency:layoutDependency,layoutId:\"UtllLhJtJ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srabfa\",\"data-framer-name\":\"Face\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"fM4UaMUyF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M64 0C28.654 0 0 28.654 0 64c0 32.087 23.636 58.58 54.435 63.209V80.963H38.6V64.14h15.834V52.946c0-18.534 9.03-26.671 24.433-26.671 7.378 0 11.279.547 13.126.797v14.685H81.487c-6.54 0-8.824 6.2-8.824 13.187v9.196h19.165l-2.6 16.823H72.663v46.382C103.901 123.107 128 96.399 128 64c0-35.346-28.654-64-64-64Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jptrfu\",\"data-framer-name\":\"Zinc\",layoutDependency:layoutDependency,layoutId:\"VDHuQJwAd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-325kku\",\"data-framer-name\":\"Zinc\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"zHrqabLBx\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.797 34.609v60.674l-.005.005c0 .09-.051.17-.127.215l-53.04 30.34a.255.255 0 0 1-.254 0l-53.04-30.34a.252.252 0 0 1-.127-.215v-60.68c0-.09.05-.17.126-.214l53.046-30.34a.255.255 0 0 1 .254 0l53.04 30.34a.25.25 0 0 1 .127.215ZM35.523 41.66l21.149-12.177 7.416 4.28-13.662 24.022.086.085L76.66 42.81l7.66 4.445-21.316 31.186.08.08 33.646-19.5 9.077 5.186-59.96 34.388v-10.12l22.734-31.92-.081-.086L39.52 73.09v-8.968l13.074-23.694-.086-.085-16.985 9.795V41.66Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ha2yr\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"naYe0x_DD\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13kcyva\",\"data-framer-name\":\"Google\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"xxfiCwTBf\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M63.956 5.584h.128c4.788 0 9.228 1.604 12.788 4.292h.02a21.391 21.391 0 0 1 5.956 6.932l23.812 41.44.144.332 18.228 31.628a21.257 21.257 0 0 1 2.96 10.852c0 3.004-.624 5.876-1.748 8.48l.02.084a20.843 20.843 0 0 1-3.376 5.312 21.326 21.326 0 0 1-5.584 4.624 21.062 21.062 0 0 1-10.372 2.852h-.356a21.14 21.14 0 0 1-12.788-4.292h-.02a21.391 21.391 0 0 1-5.956-6.932L64 69.748l-.144-.332L45.54 37.644a21.263 21.263 0 0 1-2.876-10.708c0-2.252.352-4.436 1.004-6.48l.036-.128.064-.164c.272-.832.624-1.792.624-1.792.832-1.916 1.98-3.684 3.332-5.248l.336-.396.08-.084v-.02h.02l.044-.064.044-.016a21.127 21.127 0 0 1 5.104-4.108 21.062 21.062 0 0 1 10.372-2.852h.232Zm-42.58 116.832h-.316a21.123 21.123 0 0 1-10.372-2.852 21.326 21.326 0 0 1-5.584-4.624 20.843 20.843 0 0 1-3.376-5.312l.02-.084C.58 106.876 0 103.98 0 101.064c0-3.98 1.084-7.684 2.96-10.852l18.228-31.628.144-.332L37.54 30.064a26.662 26.662 0 0 0 3.168 9.892l.308.524 18 31.228v-.06l.356.768 1.54 2.708-20.732 36.064a21.398 21.398 0 0 1-5.956 6.932h-.02a21.114 21.114 0 0 1-12.788 4.292l-.04.004Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgbef7\",\"data-framer-name\":\"Instagramm\",layoutDependency:layoutDependency,layoutId:\"pkCqnhGVl\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w9sqfm\",\"data-framer-name\":\"Instagramm\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"sbp2F8MoF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64 15.904c15.664 0 17.52.059 23.707.341 3.719.045 7.403.729 10.89 2.022a18.17 18.17 0 0 1 6.747 4.389 18.167 18.167 0 0 1 4.389 6.747 32.459 32.459 0 0 1 2.022 10.89c.282 6.187.341 8.043.341 23.707 0 15.664-.059 17.52-.341 23.707a32.459 32.459 0 0 1-2.022 10.89 19.427 19.427 0 0 1-11.136 11.136 32.46 32.46 0 0 1-10.89 2.022c-6.187.282-8.043.341-23.707.341-15.664 0-17.52-.059-23.707-.341a32.464 32.464 0 0 1-10.896-2.022 18.175 18.175 0 0 1-6.741-4.389 18.179 18.179 0 0 1-4.39-6.747 32.463 32.463 0 0 1-2.02-10.89c-.283-6.187-.342-8.043-.342-23.707 0-15.664.059-17.52.341-23.707a32.453 32.453 0 0 1 2.022-10.89 18.175 18.175 0 0 1 4.389-6.747 18.175 18.175 0 0 1 6.747-4.39 32.463 32.463 0 0 1 10.89-2.02c6.187-.283 8.043-.342 23.707-.342Zm0-10.57c-15.93 0-17.93.069-24.187.351a43.061 43.061 0 0 0-14.24 2.726 28.757 28.757 0 0 0-10.394 6.773 28.757 28.757 0 0 0-6.768 10.39 43.062 43.062 0 0 0-2.72 14.24c-.294 6.255-.358 8.255-.358 24.186 0 15.93.07 17.93.352 24.187a43.065 43.065 0 0 0 2.726 14.24 28.752 28.752 0 0 0 6.773 10.394 28.744 28.744 0 0 0 10.39 6.768 43.05 43.05 0 0 0 14.24 2.72c6.255.294 8.255.358 24.186.358 15.93 0 17.93-.07 24.187-.352a43.057 43.057 0 0 0 14.24-2.726 29.986 29.986 0 0 0 17.162-17.162 43.054 43.054 0 0 0 2.72-14.24c.294-6.256.358-8.256.358-24.187 0-15.93-.07-17.93-.352-24.187a43.08 43.08 0 0 0-2.726-14.24 28.752 28.752 0 0 0-6.773-10.394 28.758 28.758 0 0 0-10.389-6.768 43.065 43.065 0 0 0-14.24-2.72C81.93 5.397 79.93 5.333 64 5.333Zm0 28.538a30.128 30.128 0 1 0 0 60.256 30.128 30.128 0 0 0 0-60.256Zm0 49.685a19.557 19.557 0 1 1 0-39.114 19.557 19.557 0 0 1 0 39.114Zm31.317-57.914a7.04 7.04 0 1 0 0 14.081 7.04 7.04 0 0 0 0-14.081Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ai2l2\",\"data-framer-name\":\"Snap\",layoutDependency:layoutDependency,layoutId:\"p2FEJmfRF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uy4yea\",\"data-framer-name\":\"Snap\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"ClbjhXrf8\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M122.285 85.217c1.92.954 3.598 2.094 4.48 4.234 1.004 2.387.398 5.112-2.024 7.422l-.034.03c-.865.878-1.989 1.648-3.408 2.341-3.217 1.586-5.933 2.34-8.061 2.864-.398.108-1.159.354-1.505.616-.484.369-.686.844-.937 1.435-.19.445-.407.955-.793 1.536a8.59 8.59 0 0 1-2.681 2.603c-2.614 1.607-5.536 1.708-8.647 1.815l-.053.002c-2.837.092-6.037.2-9.687 1.277-1.406.413-2.89 1.219-4.605 2.15l-.24.129c-4.392 2.402-10.43 5.698-20.462 5.698-10.02 0-16.002-3.271-20.394-5.672l-.018-.01c-1.816-1.001-3.39-1.863-4.913-2.31-3.667-1.078-6.867-1.186-9.687-1.278l-.053-.002c-3.111-.107-6.033-.207-8.647-1.815a8.378 8.378 0 0 1-2.353-2.125c-.619-.792-.901-1.463-1.138-2.025-.247-.586-.444-1.055-.92-1.424-.381-.292-1.246-.539-1.61-.631-2.11-.524-4.808-1.278-7.956-2.833-1.332-.662-2.405-1.37-3.252-2.187C.109 94.701-.565 91.915.455 89.451c1.152-2.773 3.64-3.886 6.248-5.053.447-.2.898-.401 1.346-.613 5.778-2.787 10.31-6.282 13.475-10.409 1.055-1.386 1.816-2.648 2.336-3.68.294-.754.294-1.155.086-1.54-.173-.323-.71-.677-.865-.77-.79-.469-1.604-.938-2.252-1.312l-.446-.258c-1.28-.74-2.284-1.324-2.941-1.725-2.456-1.524-4.169-3.14-5.241-4.958-1.505-2.556-1.696-5.481-.537-8.222 1.626-3.803 5.674-6.174 10.57-6.174 1.02 0 2.058.092 3.079.292.13.031.263.058.398.085.133.027.268.054.397.085-.052-2.587.017-5.343.277-8.053.917-9.5 4.653-14.49 8.563-18.462 1.626-1.648 4.445-4.08 8.718-6.251C49.599 9.415 56.293 7.89 63.593 7.89c7.317 0 14.029 1.525 19.944 4.543 4.239 2.17 7.075 4.588 8.702 6.251 3.909 3.973 7.645 8.946 8.562 18.462.26 2.694.329 5.466.277 8.053.259-.062.519-.123.795-.17a17.527 17.527 0 0 1 3.079-.292c4.913 0 8.944 2.37 10.569 6.174 1.16 2.756.969 5.666-.536 8.222-1.072 1.817-2.785 3.434-5.241 4.958-.57.357-1.443.86-2.531 1.489l-.41.236c-.295.173-.655.382-1.047.609-.547.318-1.16.673-1.755 1.023-.207.139-.605.431-.761.708-.19.354-.208.755.069 1.463a24.453 24.453 0 0 0 2.387 3.757c3.235 4.219 7.888 7.776 13.873 10.594.589.261 1.177.523 1.747.785.277.123.606.277.969.462Zm-11.87 11.005c2.05-.488 4.475-1.066 7.442-2.521 3.46-1.71 1.505-2.756.312-3.25-19.686-8.483-22.834-21.586-22.972-22.572l-.018-.135c-.15-1.107-.272-2.005 1.125-3.16.945-.78 4.098-2.597 6.58-4.028 1.194-.689 2.233-1.288 2.795-1.638 2.872-1.77 4.135-3.557 3.2-5.743-.64-1.51-2.231-2.079-3.909-2.079a8.93 8.93 0 0 0-1.557.154c-1.874.357-3.717.998-5.274 1.54-1.059.368-1.986.69-2.7.847a3.651 3.651 0 0 1-.657.077c-.934 0-1.28-.37-1.211-1.386l.019-.263c.231-3.133.658-8.93.136-14.35-.743-7.667-3.528-11.47-6.832-14.843-1.575-1.616-8.995-8.622-23.283-8.622-14.254 0-21.692 7.006-23.284 8.622-3.303 3.357-6.088 7.176-6.832 14.843-.499 5.185-.115 10.715.108 13.928l.048.685c.069.97-.277 1.386-1.211 1.386-.208 0-.416-.031-.658-.077-.735-.154-1.694-.487-2.792-.868-1.537-.533-3.345-1.16-5.182-1.519a8.727 8.727 0 0 0-1.557-.154c-1.678 0-3.27.57-3.91 2.079-.933 2.186.33 3.957 3.2 5.743.524.321 1.46.861 2.551 1.49 2.515 1.45 5.848 3.37 6.825 4.176 1.427 1.15 1.29 2.07 1.123 3.192l-.016.103c-.138.986-3.269 14.089-22.971 22.573-1.16.493-3.114 1.54.346 3.249 2.972 1.466 5.406 2.042 7.46 2.528 1.699.403 3.137.743 4.406 1.475 1.292.742 1.474 1.947 1.644 3.066.143.949.278 1.836 1.072 2.323.922.568 2.632.626 4.935.704 3.009.102 7.031.239 11.636 1.59 2.294.676 4.288 1.766 6.388 2.915 4.127 2.257 8.664 4.738 16.688 4.738 8.013 0 12.598-2.502 16.737-4.762 2.098-1.145 4.08-2.228 6.339-2.891 4.605-1.351 8.627-1.488 11.636-1.59 2.303-.078 4.012-.136 4.935-.704.804-.496.938-1.386 1.08-2.337.168-1.115.347-2.312 1.636-3.052 1.279-.733 2.722-1.077 4.424-1.482Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qozgh6\",\"data-framer-name\":\"Indeed\",layoutDependency:layoutDependency,layoutId:\"lja3S6No2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l8f1by\",\"data-framer-name\":\"Indeed\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"tENu6ttRz\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.152 114.992V68.267c1.337.123 2.623.184 3.97.184 6.403 0 12.433-1.71 17.549-4.761v51.292c0 4.382-1.025 7.618-3.015 9.779-1.98 2.15-4.614 3.226-7.81 3.226-3.146 0-5.638-1.076-7.689-3.298-1.98-2.15-3.005-5.386-3.005-9.697Zm.12-111.974C74.6-1.744 89.778-1.488 101.176 8.28c2.121 1.966 4.543 4.444 5.508 7.363 1.155 3.686-4.031-.39-4.744-.891-3.719-2.417-7.428-4.444-11.59-5.837-22.413-6.85-43.62 5.53-56.807 24.76-5.508 8.5-9.096 17.45-12.04 27.29-.322 1.075-.574 2.478-1.157 3.42-.583 1.085-.251-2.908-.251-3.041.442-4.065 1.276-7.998 2.312-11.93 6.08-20.95 19.529-38.4 38.867-46.397ZM87.085 40.66c0 8.899-7.087 16.118-15.82 16.118-8.735 0-15.81-7.22-15.81-16.118s7.075-16.118 15.81-16.118c8.733 0 15.82 7.21 15.82 16.118Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9hf2f\",\"data-framer-name\":\"Face\",layoutDependency:layoutDependency,layoutId:\"UtllLhJtJ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1srabfa\",\"data-framer-name\":\"Face\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"fM4UaMUyF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M64 0C28.654 0 0 28.654 0 64c0 32.087 23.636 58.58 54.435 63.209V80.963H38.6V64.14h15.834V52.946c0-18.534 9.03-26.671 24.433-26.671 7.378 0 11.279.547 13.126.797v14.685H81.487c-6.54 0-8.824 6.2-8.824 13.187v9.196h19.165l-2.6 16.823H72.663v46.382C103.901 123.107 128 96.399 128 64c0-35.346-28.654-64-64-64Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jptrfu\",\"data-framer-name\":\"Zinc\",layoutDependency:layoutDependency,layoutId:\"VDHuQJwAd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-325kku\",\"data-framer-name\":\"Zinc\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"zHrqabLBx\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.797 34.609v60.674l-.005.005c0 .09-.051.17-.127.215l-53.04 30.34a.255.255 0 0 1-.254 0l-53.04-30.34a.252.252 0 0 1-.127-.215v-60.68c0-.09.05-.17.126-.214l53.046-30.34a.255.255 0 0 1 .254 0l53.04 30.34a.25.25 0 0 1 .127.215ZM35.523 41.66l21.149-12.177 7.416 4.28-13.662 24.022.086.085L76.66 42.81l7.66 4.445-21.316 31.186.08.08 33.646-19.5 9.077 5.186-59.96 34.388v-10.12l22.734-31.92-.081-.086L39.52 73.09v-8.968l13.074-23.694-.086-.085-16.985 9.795V41.66Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ha2yr\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"naYe0x_DD\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13kcyva\",\"data-framer-name\":\"Google\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"xxfiCwTBf\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M63.956 5.584h.128c4.788 0 9.228 1.604 12.788 4.292h.02a21.391 21.391 0 0 1 5.956 6.932l23.812 41.44.144.332 18.228 31.628a21.257 21.257 0 0 1 2.96 10.852c0 3.004-.624 5.876-1.748 8.48l.02.084a20.843 20.843 0 0 1-3.376 5.312 21.326 21.326 0 0 1-5.584 4.624 21.062 21.062 0 0 1-10.372 2.852h-.356a21.14 21.14 0 0 1-12.788-4.292h-.02a21.391 21.391 0 0 1-5.956-6.932L64 69.748l-.144-.332L45.54 37.644a21.263 21.263 0 0 1-2.876-10.708c0-2.252.352-4.436 1.004-6.48l.036-.128.064-.164c.272-.832.624-1.792.624-1.792.832-1.916 1.98-3.684 3.332-5.248l.336-.396.08-.084v-.02h.02l.044-.064.044-.016a21.127 21.127 0 0 1 5.104-4.108 21.062 21.062 0 0 1 10.372-2.852h.232Zm-42.58 116.832h-.316a21.123 21.123 0 0 1-10.372-2.852 21.326 21.326 0 0 1-5.584-4.624 20.843 20.843 0 0 1-3.376-5.312l.02-.084C.58 106.876 0 103.98 0 101.064c0-3.98 1.084-7.684 2.96-10.852l18.228-31.628.144-.332L37.54 30.064a26.662 26.662 0 0 0 3.168 9.892l.308.524 18 31.228v-.06l.356.768 1.54 2.708-20.732 36.064a21.398 21.398 0 0 1-5.956 6.932h-.02a21.114 21.114 0 0 1-12.788 4.292l-.04.004Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8w33y\",\"data-framer-name\":\"Oneflow\",layoutDependency:layoutDependency,layoutId:\"DD4L9g8rm\",style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-193qpda\",\"data-framer-name\":\"Oneflow\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"JveEdg6ni\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M69.045 55.276h3.534v22.49h-3.534v-22.49ZM46.757 74.774c-2.514 0-4.471-1.499-5.197-3.668l13.628-3.528c-.583-5.446-4.58-8.285-8.694-8.285a8.558 8.558 0 0 0-6.523 2.977c-1.449 1.692-2.233 3.93-2.233 6.39 0 5.791 4.077 9.37 9.086 9.37 3.358 0 5.963-1.515 7.36-3.512l-2.499-2.09c-1.018 1.498-3.013 2.346-4.928 2.346Zm-.283-12.209c2.232 0 3.828 1.195 4.635 2.976l-9.857 2.55c.059-3.118 2.096-5.526 5.222-5.526Zm-18.223-3.27c-4.711 0-7.687 3.008-7.687 7.539v10.931h3.535V66.834c0-2.713 1.325-4.186 4.15-4.186s4.131 1.47 4.131 4.186v10.931h3.535V66.834c.002-4.531-2.952-7.539-7.664-7.539ZM9.4 78.035a9.371 9.371 0 1 1 9.369-9.375 9.38 9.38 0 0 1-9.37 9.374Zm0-15.376c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.611 6.007 5.824 6.007 3.212 0 5.823-2.695 5.823-6.008 0-3.312-2.611-6.009-5.823-6.009Zm74.347 15.375a9.372 9.372 0 1 1 9.37-9.374 9.38 9.38 0 0 1-9.37 9.374Zm0-15.375c-3.21 0-5.824 2.696-5.824 6.01 0 3.313 2.612 6.007 5.824 6.007 3.211 0 5.824-2.695 5.824-6.008 0-3.312-2.612-6.009-5.824-6.009Zm-23.144.625v-.941c0-1.57.058-2.27.715-3.048.657-.776 1.812-1.126 3.327-1.126a9.937 9.937 0 0 1 2.213.206v-3.18a12.865 12.865 0 0 0-2.693-.263c-2.279 0-3.897.555-5.046 1.497-1.555 1.274-2.037 2.935-2.037 5.642v15.694h3.534V66.377l4.878-1.273V62.01l-4.891 1.275Zm57.743 3.286v3.932c0 2.711-1.319 4.185-4.104 4.186-1.389 0-2.428-.4-3.089-1.1-.785-.829-.985-1.676-.989-3.062V59.575h-3.534v10.933c0 1.549-.324 2.43-1.008 3.11-.683.679-1.704 1.075-3.096 1.076-2.752 0-4.076-1.483-4.076-4.186V59.575h-3.537v11.341c0 2.089.583 3.763 1.906 5.061 1.514 1.48 3.514 2.069 5.733 2.069 2.446 0 4.527-.917 5.845-2.415 1.311 1.493 3.388 2.415 5.871 2.415 2.33 0 4.336-.699 5.652-2.013 1.341-1.337 1.96-2.84 1.96-5.309V66.57h-3.534Zm-.001-14.072h3.535v3.535h-3.535v-3.535Zm0 7.069h3.535V63.1h-3.535v-3.534Zm-3.534-3.534h3.535v3.534h-3.535v-3.534Zm7.069 0h3.535v3.534h-3.535v-3.534Zm2.585-6.126H128v3.536h-3.535v-3.535Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" style=\"fill:#fff;fill-opacity:1\" d=\"M0 0h128v128H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgbef7\",\"data-framer-name\":\"Instagramm\",layoutDependency:layoutDependency,layoutId:\"pkCqnhGVl\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w9sqfm\",\"data-framer-name\":\"Instagramm\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"sbp2F8MoF\",svg:'<svg width=\"128\" height=\"128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64 15.904c15.664 0 17.52.059 23.707.341 3.719.045 7.403.729 10.89 2.022a18.17 18.17 0 0 1 6.747 4.389 18.167 18.167 0 0 1 4.389 6.747 32.459 32.459 0 0 1 2.022 10.89c.282 6.187.341 8.043.341 23.707 0 15.664-.059 17.52-.341 23.707a32.459 32.459 0 0 1-2.022 10.89 19.427 19.427 0 0 1-11.136 11.136 32.46 32.46 0 0 1-10.89 2.022c-6.187.282-8.043.341-23.707.341-15.664 0-17.52-.059-23.707-.341a32.464 32.464 0 0 1-10.896-2.022 18.175 18.175 0 0 1-6.741-4.389 18.179 18.179 0 0 1-4.39-6.747 32.463 32.463 0 0 1-2.02-10.89c-.283-6.187-.342-8.043-.342-23.707 0-15.664.059-17.52.341-23.707a32.453 32.453 0 0 1 2.022-10.89 18.175 18.175 0 0 1 4.389-6.747 18.175 18.175 0 0 1 6.747-4.39 32.463 32.463 0 0 1 10.89-2.02c6.187-.283 8.043-.342 23.707-.342Zm0-10.57c-15.93 0-17.93.069-24.187.351a43.061 43.061 0 0 0-14.24 2.726 28.757 28.757 0 0 0-10.394 6.773 28.757 28.757 0 0 0-6.768 10.39 43.062 43.062 0 0 0-2.72 14.24c-.294 6.255-.358 8.255-.358 24.186 0 15.93.07 17.93.352 24.187a43.065 43.065 0 0 0 2.726 14.24 28.752 28.752 0 0 0 6.773 10.394 28.744 28.744 0 0 0 10.39 6.768 43.05 43.05 0 0 0 14.24 2.72c6.255.294 8.255.358 24.186.358 15.93 0 17.93-.07 24.187-.352a43.057 43.057 0 0 0 14.24-2.726 29.986 29.986 0 0 0 17.162-17.162 43.054 43.054 0 0 0 2.72-14.24c.294-6.256.358-8.256.358-24.187 0-15.93-.07-17.93-.352-24.187a43.08 43.08 0 0 0-2.726-14.24 28.752 28.752 0 0 0-6.773-10.394 28.758 28.758 0 0 0-10.389-6.768 43.065 43.065 0 0 0-14.24-2.72C81.93 5.397 79.93 5.333 64 5.333Zm0 28.538a30.128 30.128 0 1 0 0 60.256 30.128 30.128 0 0 0 0-60.256Zm0 49.685a19.557 19.557 0 1 1 0-39.114 19.557 19.557 0 0 1 0 39.114Zm31.317-57.914a7.04 7.04 0 1 0 0 14.081 7.04 7.04 0 0 0 0-14.081Z\" fill=\"#6179C8\" style=\"fill:color(display-p3 .3804 .4745 .7843);fill-opacity:1\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ToCw7.framer-16tprg1, .framer-ToCw7 .framer-16tprg1 { display: block; }\",\".framer-ToCw7.framer-1igt00c { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 1408px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ToCw7 .framer-1x3gjc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-ToCw7 .framer-10xazpf { 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; max-width: 540px; overflow: hidden; padding: 0px 0px 0px 32px; position: relative; width: 100%; }\",\".framer-ToCw7 .framer-d317vi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ToCw7 .framer-102yz3b, .framer-ToCw7 .framer-1h6ubgu, .framer-ToCw7 .framer-1mn79oz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ToCw7 .framer-1615aku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 101%; justify-content: center; left: calc(71.59090909090912% - 552px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 101% / 2); width: 552px; z-index: 1; }\",\".framer-ToCw7 .framer-2o6erp-container, .framer-ToCw7 .framer-17zkhrc-container, .framer-ToCw7 .framer-1nmnyud-container { flex: 1 0 0px; height: 100%; max-width: 1200px; position: relative; width: 1px; }\",\".framer-ToCw7 .framer-1ycj7kh, .framer-ToCw7 .framer-tlv7ym, .framer-ToCw7 .framer-1rh4z17, .framer-ToCw7 .framer-7ai2l2, .framer-ToCw7 .framer-1xgbef7, .framer-ToCw7 .framer-1t8w33y, .framer-ToCw7 .framer-9ha2yr, .framer-ToCw7 .framer-1jptrfu, .framer-ToCw7 .framer-1o9hf2f, .framer-ToCw7 .framer-1qozgh6, .framer-ToCw7 .framer-7gop9g, .framer-ToCw7 .framer-cysurq { height: 128px; overflow: hidden; position: relative; width: 128px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ToCw7 .framer-566a2i, .framer-ToCw7 .framer-1ikj33b, .framer-ToCw7 .framer-1uy4yea, .framer-ToCw7 .framer-1w9sqfm, .framer-ToCw7 .framer-193qpda, .framer-ToCw7 .framer-13kcyva, .framer-ToCw7 .framer-325kku, .framer-ToCw7 .framer-1srabfa, .framer-ToCw7 .framer-1l8f1by, .framer-ToCw7 .framer-7xoag3, .framer-ToCw7 .framer-1peq8ye { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-ToCw7 .framer-1su0zam { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ToCw7.framer-1igt00c, .framer-ToCw7 .framer-1x3gjc, .framer-ToCw7 .framer-10xazpf, .framer-ToCw7 .framer-d317vi, .framer-ToCw7 .framer-1615aku { gap: 0px; } .framer-ToCw7.framer-1igt00c > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-ToCw7.framer-1igt00c > :first-child, .framer-ToCw7 .framer-1615aku > :first-child { margin-left: 0px; } .framer-ToCw7.framer-1igt00c > :last-child, .framer-ToCw7 .framer-1615aku > :last-child { margin-right: 0px; } .framer-ToCw7 .framer-1x3gjc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ToCw7 .framer-1x3gjc > :first-child, .framer-ToCw7 .framer-10xazpf > :first-child, .framer-ToCw7 .framer-d317vi > :first-child { margin-top: 0px; } .framer-ToCw7 .framer-1x3gjc > :last-child, .framer-ToCw7 .framer-10xazpf > :last-child, .framer-ToCw7 .framer-d317vi > :last-child { margin-bottom: 0px; } .framer-ToCw7 .framer-10xazpf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ToCw7 .framer-d317vi > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-ToCw7 .framer-1615aku > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-ToCw7.framer-v-1a0vxgk.framer-1igt00c { padding: 32px; width: 386px; }\",\".framer-ToCw7.framer-v-1a0vxgk .framer-10xazpf { padding: 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 282\n * @framerIntrinsicWidth 1408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rMsToFOLs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEtplGeMKP=withCSS(Component,css,\"framer-ToCw7\");export default FramerEtplGeMKP;FramerEtplGeMKP.displayName=\"Logos Ticker\";FramerEtplGeMKP.defaultProps={height:282,width:1408};addPropertyControls(FramerEtplGeMKP,{variant:{options:[\"pUy7R1bNa\",\"rMsToFOLs\"],optionTitles:[\"Desktop/Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEtplGeMKP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEtplGeMKP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"282\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1408\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rMsToFOLs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EtplGeMKP.map", "// Generated by Framer (e010222)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-600\",\"GF;Inter-900\",\"GF;Inter-900italic\",\"GF;Inter-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTccNxhiJ-Ek-7MeA.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhiJ-Ek-7MeA.woff2\",weight:\"600\"}]}];export const css=['.framer-P45mw .framer-styles-preset-10sd89:not(.rich-text-wrapper), .framer-P45mw .framer-styles-preset-10sd89.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 31.6px; --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: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 120%; --framer-paragraph-spacing: 31.6px; --framer-text-alignment: start; --framer-text-color: var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, #181c23); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1281px) { .framer-P45mw .framer-styles-preset-10sd89:not(.rich-text-wrapper), .framer-P45mw .framer-styles-preset-10sd89.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 31.6px; --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: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 120%; --framer-paragraph-spacing: 31.6px; --framer-text-alignment: start; --framer-text-color: var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, #181c23); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1280px) and (min-width: 1025px) { .framer-P45mw .framer-styles-preset-10sd89:not(.rich-text-wrapper), .framer-P45mw .framer-styles-preset-10sd89.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 29px; --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: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 120%; --framer-paragraph-spacing: 31.6px; --framer-text-alignment: start; --framer-text-color: var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, #181c23); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1024px) and (min-width: 768px) { .framer-P45mw .framer-styles-preset-10sd89:not(.rich-text-wrapper), .framer-P45mw .framer-styles-preset-10sd89.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --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: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 120%; --framer-paragraph-spacing: 31.6px; --framer-text-alignment: start; --framer-text-color: var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, #181c23); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-P45mw .framer-styles-preset-10sd89:not(.rich-text-wrapper), .framer-P45mw .framer-styles-preset-10sd89.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --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: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.3px; --framer-line-height: 120%; --framer-paragraph-spacing: 31.6px; --framer-text-alignment: start; --framer-text-color: var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, #181c23); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-P45mw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8bayDOvufhRDinbB3OjJ/vL2lvME9zaBa8p4PLkgC/GWb8GzGa2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vlkca5Wn4buSivJFZsqT/Oe0jtFE9nLubExK8WKNu/nyfE6DP7u.js\";const serializationHash=\"framer-LXiEA\";const variantClassNames={aOaj_JhgX:\"framer-v-1gqafwt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image1,image2,image3,image4,supportText,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,gHYGeWml9:image2!==null&&image2!==void 0?image2:props.gHYGeWml9,ho0LB6_3v:(_ref=image1!==null&&image1!==void 0?image1:props.ho0LB6_3v)!==null&&_ref!==void 0?_ref:true,P08VJWPUI:image4!==null&&image4!==void 0?image4:props.P08VJWPUI,QYTA1zxLt:(_ref1=supportText!==null&&supportText!==void 0?supportText:props.QYTA1zxLt)!==null&&_ref1!==void 0?_ref1:\"Automate contracts, streamline data collection, and track every interaction effortlessly.\",rEyV2sDKT:image3!==null&&image3!==void 0?image3:props.rEyV2sDKT,zpaQnWYIP:(_ref2=title!==null&&title!==void 0?title:props.zpaQnWYIP)!==null&&_ref2!==void 0?_ref2:\"Collect & automate\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ho0LB6_3v,gHYGeWml9,rEyV2sDKT,P08VJWPUI,zpaQnWYIP,QYTA1zxLt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aOaj_JhgX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gqafwt\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"aOaj_JhgX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4eaa231b-d9e6-4396-91c4-0465b7a86487, rgb(235, 235, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e7ca2f0a-90db-425a-9255-35fa54a0f7e4, rgb(251, 251, 251))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dd5b04\",\"data-framer-name\":\"Main Container\",layoutDependency:layoutDependency,layoutId:\"Hg1SsFkQ3\",children:[ho0LB6_3v&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xf69ll\",\"data-framer-name\":\"Image 1 Container\",layoutDependency:layoutDependency,layoutId:\"bZVzMzzQD\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:444,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||700)-80-715.9200000000001)/2)+0+-756+0),pixelHeight:667,pixelWidth:888,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/NnpomPKZkMiHzD3Sw6vVTKEab1Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NnpomPKZkMiHzD3Sw6vVTKEab1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/NnpomPKZkMiHzD3Sw6vVTKEab1Y.png 888w\"},className:\"framer-kk897l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"E6N4F2i_W\"})}),gHYGeWml9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-a48yqy\",\"data-framer-name\":\"Image 2 Container\",layoutDependency:layoutDependency,layoutId:\"gmzYEwtNW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222.5,intrinsicWidth:296,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||700)-80-715.9200000000001)/2)+0+-252+0),pixelHeight:445,pixelWidth:592,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/3S8Qt5ZqUSVLTfSUUWEVDlCQr8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3S8Qt5ZqUSVLTfSUUWEVDlCQr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/3S8Qt5ZqUSVLTfSUUWEVDlCQr8.png 592w\"},className:\"framer-1kf99bs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UP6b6EMKl\"})}),rEyV2sDKT&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4s51bg\",\"data-framer-name\":\"Image 3 Container\",layoutDependency:layoutDependency,layoutId:\"IucEjYqY1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:444,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||700)-80-715.9200000000001)/2)+0+252+0),pixelHeight:667,pixelWidth:888,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/xYdjpImSqH4sKckMWmtGTuhn8VM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xYdjpImSqH4sKckMWmtGTuhn8VM.png?scale-down-to=512 512w,https://framerusercontent.com/images/xYdjpImSqH4sKckMWmtGTuhn8VM.png 888w\"},className:\"framer-xs825x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"y7Cri9dxB\"})}),P08VJWPUI&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f8ehl6\",\"data-framer-name\":\"Image 4 Container\",layoutDependency:layoutDependency,layoutId:\"vvU4dLKEi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:444,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(40+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||700)-80-715.9200000000001)/2)+0+756+0),pixelHeight:667,pixelWidth:888,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/lrvMPuEYwynxog9n9pKHPX2slm8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lrvMPuEYwynxog9n9pKHPX2slm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/lrvMPuEYwynxog9n9pKHPX2slm8.png 888w\"},className:\"framer-1i0q45b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"S3AN8tEAs\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6zvnsr\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"XjU8YMCJS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lznf03\",\"data-framer-name\":\"Headings/p2\",layoutDependency:layoutDependency,layoutId:\"k8M9STI5g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10sd89\",\"data-styles-preset\":\"nyfE6DP7u\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-23b3ced5-2610-4bfe-a3fa-93df773f5ce3, rgb(0, 85, 255)))\"},children:\"Collect & automate\"})}),className:\"framer-sstauf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dXzA1wUyo\",style:{\"--extracted-a0htzi\":\"var(--token-23b3ced5-2610-4bfe-a3fa-93df773f5ce3, rgb(0, 85, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zpaQnWYIP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4zdt4\",\"data-styles-preset\":\"GWb8GzGa2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70)))\"},children:\"Automate contracts, streamline data collection, and track every interaction effortlessly.\"})}),className:\"framer-jbd5xb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RTxeBUnMf\",style:{\"--extracted-r6o4lv\":\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:QYTA1zxLt,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LXiEA.framer-kh6p45, .framer-LXiEA .framer-kh6p45 { display: block; }\",\".framer-LXiEA.framer-1gqafwt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 706px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LXiEA .framer-1dd5b04 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-LXiEA .framer-1xf69ll, .framer-LXiEA .framer-a48yqy, .framer-LXiEA .framer-4s51bg, .framer-LXiEA .framer-1f8ehl6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-LXiEA .framer-kk897l { aspect-ratio: 1.3041666666666667 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 1px; }\",\".framer-LXiEA .framer-1kf99bs, .framer-LXiEA .framer-xs825x, .framer-LXiEA .framer-1i0q45b { aspect-ratio: 1.3041666666666667 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 153px); overflow: visible; position: relative; width: 1px; }\",\".framer-LXiEA .framer-6zvnsr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LXiEA .framer-1lznf03 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LXiEA .framer-sstauf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LXiEA .framer-jbd5xb { flex: none; height: auto; min-height: 64px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LXiEA.framer-1gqafwt, .framer-LXiEA .framer-1dd5b04, .framer-LXiEA .framer-1xf69ll, .framer-LXiEA .framer-a48yqy, .framer-LXiEA .framer-4s51bg, .framer-LXiEA .framer-1f8ehl6, .framer-LXiEA .framer-6zvnsr, .framer-LXiEA .framer-1lznf03 { gap: 0px; } .framer-LXiEA.framer-1gqafwt > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-LXiEA.framer-1gqafwt > :first-child, .framer-LXiEA .framer-1xf69ll > :first-child, .framer-LXiEA .framer-a48yqy > :first-child, .framer-LXiEA .framer-4s51bg > :first-child, .framer-LXiEA .framer-1f8ehl6 > :first-child { margin-left: 0px; } .framer-LXiEA.framer-1gqafwt > :last-child, .framer-LXiEA .framer-1xf69ll > :last-child, .framer-LXiEA .framer-a48yqy > :last-child, .framer-LXiEA .framer-4s51bg > :last-child, .framer-LXiEA .framer-1f8ehl6 > :last-child { margin-right: 0px; } .framer-LXiEA .framer-1dd5b04 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LXiEA .framer-1dd5b04 > :first-child, .framer-LXiEA .framer-6zvnsr > :first-child, .framer-LXiEA .framer-1lznf03 > :first-child { margin-top: 0px; } .framer-LXiEA .framer-1dd5b04 > :last-child, .framer-LXiEA .framer-6zvnsr > :last-child, .framer-LXiEA .framer-1lznf03 > :last-child { margin-bottom: 0px; } .framer-LXiEA .framer-1xf69ll > *, .framer-LXiEA .framer-a48yqy > *, .framer-LXiEA .framer-4s51bg > *, .framer-LXiEA .framer-1f8ehl6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LXiEA .framer-6zvnsr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-LXiEA .framer-1lznf03 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-LXiEA[data-border=\"true\"]::after, .framer-LXiEA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 700\n * @framerIntrinsicWidth 706\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ho0LB6_3v\":\"image1\",\"gHYGeWml9\":\"image2\",\"rEyV2sDKT\":\"image3\",\"P08VJWPUI\":\"image4\",\"zpaQnWYIP\":\"title\",\"QYTA1zxLt\":\"supportText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlkGrgVdeO=withCSS(Component,css,\"framer-LXiEA\");export default FramerlkGrgVdeO;FramerlkGrgVdeO.displayName=\"Feature-Card\";FramerlkGrgVdeO.defaultProps={height:700,width:706};addPropertyControls(FramerlkGrgVdeO,{ho0LB6_3v:{defaultValue:true,title:\"Image 1\",type:ControlType.Boolean},gHYGeWml9:{defaultValue:false,title:\"Image 2\",type:ControlType.Boolean},rEyV2sDKT:{defaultValue:false,title:\"Image 3\",type:ControlType.Boolean},P08VJWPUI:{defaultValue:false,title:\"Image 4\",type:ControlType.Boolean},zpaQnWYIP:{defaultValue:\"Collect & automate\",displayTextArea:false,title:\"Title\",type:ControlType.String},QYTA1zxLt:{defaultValue:\"Automate contracts, streamline data collection, and track every interaction effortlessly.\",displayTextArea:false,title:\"Support Text\",type:ControlType.String}});addFonts(FramerlkGrgVdeO,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlkGrgVdeO\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"700\",\"framerVariables\":\"{\\\"ho0LB6_3v\\\":\\\"image1\\\",\\\"gHYGeWml9\\\":\\\"image2\\\",\\\"rEyV2sDKT\\\":\\\"image3\\\",\\\"P08VJWPUI\\\":\\\"image4\\\",\\\"zpaQnWYIP\\\":\\\"title\\\",\\\"QYTA1zxLt\\\":\\\"supportText\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"706\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/5rtfu1PK49x346Wr4Bjw/Og51a23oxfBQtokbQDby/jvcTbu0um.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xDXCRpFSYEzqttQdNpFI/VzNIStMKf1j4vptF9gsQ/XRI34Oow4.js\";import PPWElementsButtons from\"https://framerusercontent.com/modules/l65ixseR93FTsmo6bwQp/HAsnSUZ4AsM350oVRyRs/Y3qzKSxvB.js\";const PPWElementsButtonsFonts=getFonts(PPWElementsButtons);const PPWElementsButtonsControls=getPropertyControls(PPWElementsButtons);const cycleOrder=[\"lYqGam7hx\",\"VXdnwHlZV\"];const serializationHash=\"framer-kvJV6\";const variantClassNames={lYqGam7hx:\"framer-v-1vjl7yf\",VXdnwHlZV:\"framer-v-1tiavs1\"};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 humanReadableEnumMap={\"Button 2 | Right Icon | Transparent\":\"ZUn7Y1yV4\",\"Button 3 | Right Icon | Transparent and Outline Border\":\"H09kkyGkO\",\"Button 3 | Right Icon | Transparent\":\"hmgfiSiTI\",\"Button 4 | Right Icon | Sky Blue\":\"siiHUOazg\",\"General | Button 4 | Right Icon | Blue Ribbon\":\"qX51Hp9Ux\",\"Main Button | Blue Ribbon\":\"rbCGmBxPD\",\"Main Button | White\":\"a6RTUzsBO\"};const humanReadableVariantMap={\"Desktop/Tablet\":\"lYqGam7hx\",Mobile:\"VXdnwHlZV\"};const getProps=({backgroundImage,button,buttonLink,height,id,supportText,title,width,...props})=>{return{...props,CHwbtAWhA:humanReadableEnumMap[button]??button??props.CHwbtAWhA??\"a6RTUzsBO\",eHPuEghWA:backgroundImage??props.eHPuEghWA??{alt:\"\",src:\"https://framerusercontent.com/images/CKa0YDAH7BhL60Vjash5F65gc.png\",srcSet:\"https://framerusercontent.com/images/CKa0YDAH7BhL60Vjash5F65gc.png?scale-down-to=512 512w,https://framerusercontent.com/images/CKa0YDAH7BhL60Vjash5F65gc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CKa0YDAH7BhL60Vjash5F65gc.png 1376w\"},GMkVPnk7e:buttonLink??props.GMkVPnk7e,JIZZpNoav:supportText??props.JIZZpNoav??\"Get in touch and see how PaperworkFlows transforms your operations.\",SS8Sfcui9:title??props.SS8Sfcui9??\"Experience the magic \uD83E\uDE84\",variant:humanReadableVariantMap[props.variant]??props.variant??\"lYqGam7hx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eHPuEghWA,SS8Sfcui9,JIZZpNoav,CHwbtAWhA,GMkVPnk7e,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lYqGam7hx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1vjl7yf\",className,classNames),\"data-framer-name\":\"Desktop/Tablet\",layoutDependency:layoutDependency,layoutId:\"lYqGam7hx\",ref:ref??ref1,style:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,...style},...addPropertyOverrides({VXdnwHlZV:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:161.5,intrinsicWidth:688,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-63),pixelHeight:323,pixelWidth:1376,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(eHPuEghWA)},className:\"framer-60pkeq\",\"data-framer-name\":\"Gradient-bg\",layoutDependency:layoutDependency,layoutId:\"yocZZfpTm\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fwng31\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"vlvTQoAW8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-oqr48z\",\"data-styles-preset\":\"jvcTbu0um\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(253, 252, 251))\"},children:\"Experience the magic \uD83E\uDE84\"})}),className:\"framer-1lvpua4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eXwhPhuyx\",style:{\"--extracted-gdpscs\":\"rgb(253, 252, 251)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:SS8Sfcui9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-857897\",\"data-styles-preset\":\"XRI34Oow4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(236, 236, 236))\"},children:\"Get in touch and see how PaperworkFlows transforms your operations.\"})}),className:\"framer-13qicnh\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XYjiIoWGL\",style:{\"--extracted-a0htzi\":\"rgb(236, 236, 236)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JIZZpNoav,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wfq8jt\",\"data-framer-name\":\"Wrapper / Buttons\",layoutDependency:layoutDependency,layoutId:\"zlpKhsVl1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+64+(((componentViewport?.height||311)-128-184.84)/2+100.84+40)+0,...addPropertyOverrides({VXdnwHlZV:{y:(componentViewport?.y||0)+32+(((componentViewport?.height||247)-64-184.84)/2+100.84+40)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inwgk4-container\",layoutDependency:layoutDependency,layoutId:\"cc9PCYtlj-container\",children:/*#__PURE__*/_jsx(PPWElementsButtons,{height:\"100%\",id:\"cc9PCYtlj\",layoutId:\"cc9PCYtlj\",P4_tTwmz3:GMkVPnk7e,variant:CHwbtAWhA,w5iZd6WT9:\"\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kvJV6.framer-n813or, .framer-kvJV6 .framer-n813or { display: block; }\",\".framer-kvJV6.framer-1vjl7yf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1536px; overflow: hidden; padding: 64px; position: relative; width: 1408px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kvJV6 .framer-60pkeq { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: -63px; z-index: 1; }\",\".framer-kvJV6 .framer-1fwng31 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-kvJV6 .framer-1lvpua4, .framer-kvJV6 .framer-13qicnh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kvJV6 .framer-wfq8jt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-kvJV6 .framer-1inwgk4-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kvJV6.framer-1vjl7yf, .framer-kvJV6 .framer-1fwng31, .framer-kvJV6 .framer-wfq8jt { gap: 0px; } .framer-kvJV6.framer-1vjl7yf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-kvJV6.framer-1vjl7yf > :first-child, .framer-kvJV6 .framer-1fwng31 > :first-child { margin-top: 0px; } .framer-kvJV6.framer-1vjl7yf > :last-child, .framer-kvJV6 .framer-1fwng31 > :last-child { margin-bottom: 0px; } .framer-kvJV6 .framer-1fwng31 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-kvJV6 .framer-wfq8jt > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-kvJV6 .framer-wfq8jt > :first-child { margin-left: 0px; } .framer-kvJV6 .framer-wfq8jt > :last-child { margin-right: 0px; } }\",\".framer-kvJV6.framer-v-1tiavs1.framer-1vjl7yf { padding: 32px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 311\n * @framerIntrinsicWidth 1408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1536px\",null,null]},\"VXdnwHlZV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1536px\",null,null]}}}\n * @framerVariables {\"eHPuEghWA\":\"backgroundImage\",\"SS8Sfcui9\":\"title\",\"JIZZpNoav\":\"supportText\",\"CHwbtAWhA\":\"button\",\"GMkVPnk7e\":\"buttonLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNoHdoawwl=withCSS(Component,css,\"framer-kvJV6\");export default FramerNoHdoawwl;FramerNoHdoawwl.displayName=\"Banner\";FramerNoHdoawwl.defaultProps={height:311,width:1408};addPropertyControls(FramerNoHdoawwl,{variant:{options:[\"lYqGam7hx\",\"VXdnwHlZV\"],optionTitles:[\"Desktop/Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},eHPuEghWA:{__defaultAssetReference:\"data:framer/asset-reference,CKa0YDAH7BhL60Vjash5F65gc.png?originalFilename=Gradient-bg.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,CKa0YDAH7BhL60Vjash5F65gc.png?originalFilename=Gradient-bg.png&preferredSize=auto\"},title:\"Background Image\",type:ControlType.ResponsiveImage},SS8Sfcui9:{defaultValue:\"Experience the magic \uD83E\uDE84\",displayTextArea:false,title:\"Title\",type:ControlType.String},JIZZpNoav:{defaultValue:\"Get in touch and see how PaperworkFlows transforms your operations.\",displayTextArea:false,title:\"Support Text\",type:ControlType.String},CHwbtAWhA:PPWElementsButtonsControls?.[\"variant\"]&&{...PPWElementsButtonsControls[\"variant\"],defaultValue:\"a6RTUzsBO\",description:undefined,hidden:undefined,title:\"Button\"},GMkVPnk7e:{title:\"Button Link\",type:ControlType.Link}});addFonts(FramerNoHdoawwl,[{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\"}]},...PPWElementsButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNoHdoawwl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"eHPuEghWA\\\":\\\"backgroundImage\\\",\\\"SS8Sfcui9\\\":\\\"title\\\",\\\"JIZZpNoav\\\":\\\"supportText\\\",\\\"CHwbtAWhA\\\":\\\"button\\\",\\\"GMkVPnk7e\\\":\\\"buttonLink\\\"}\",\"framerIntrinsicHeight\":\"311\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1536px\\\",null,null]},\\\"VXdnwHlZV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1536px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"1408\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NoHdoawwl.map", "// Generated by Framer (ab6b6d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PPWElementsButtons from\"https://framerusercontent.com/modules/l65ixseR93FTsmo6bwQp/HAsnSUZ4AsM350oVRyRs/Y3qzKSxvB.js\";const PPWElementsButtonsFonts=getFonts(PPWElementsButtons);const cycleOrder=[\"v6i9tsOI0\",\"JXwu2JRCp\",\"or7q8KZGS\"];const serializationHash=\"framer-c47cR\";const variantClassNames={JXwu2JRCp:\"framer-v-kjixhw\",or7q8KZGS:\"framer-v-1s3yk12\",v6i9tsOI0:\"framer-v-ys3uk7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Phone:\"or7q8KZGS\",Tablet:\"JXwu2JRCp\",Wide:\"v6i9tsOI0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"v6i9tsOI0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v6i9tsOI0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"or7q8KZGS\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"or7q8KZGS\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ys3uk7\",className,classNames),\"data-framer-name\":\"Wide\",layoutDependency:layoutDependency,layoutId:\"v6i9tsOI0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({JXwu2JRCp:{\"data-framer-name\":\"Tablet\"},or7q8KZGS:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:302,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:604,pixelWidth:1440,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/aaYFQmqRn7gYHmUuw5FhwOCVLc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aaYFQmqRn7gYHmUuw5FhwOCVLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/aaYFQmqRn7gYHmUuw5FhwOCVLc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aaYFQmqRn7gYHmUuw5FhwOCVLc.png 1440w\"},className:\"framer-9ph892\",\"data-framer-name\":\"Mask\",layoutDependency:layoutDependency,layoutId:\"oPB1hgeLg\",transformTemplate:transformTemplate1}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15gigau\",\"data-framer-name\":\"PWF-Logo-Short\",layoutDependency:layoutDependency,layoutId:\"m2XYmcKWe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1668dox\",\"data-framer-name\":\"PWF-Logo-Short\",fill:\"black\",intrinsicHeight:510,intrinsicWidth:510,layoutDependency:layoutDependency,layoutId:\"HS_u7Nx48\",svg:'<svg width=\"510\" height=\"510\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".9\" fill=\"#8CBDFC\" style=\"fill:color(display-p3 .5505 .7394 .9864);fill-opacity:1\" d=\"M.531 169.216h340.224v340.08H.531z\"/><path fill=\"#7394FF\" style=\"fill:color(display-p3 .4524 .5808 1);fill-opacity:1\" d=\"M169.533.018h340.241v340.244H169.533z\"/><path fill=\"#007BFF\" style=\"fill:color(display-p3 0 .4833 1);fill-opacity:1\" d=\"M.531 339.011h170.243v169.214H.531z\"/><path fill=\"#0248D3\" style=\"fill:color(display-p3 .0095 .2828 .8293);fill-opacity:1\" d=\"M170.741 169.216h170.243V338.43H170.741z\"/><path fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\" d=\"M339.542-.001h170.243v169.214H339.542z\"/></svg>',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"cvwbQIcnT\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:31,intrinsicWidth:238,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||72)-28-31)/2)),pixelHeight:62,pixelWidth:476,src:\"https://framerusercontent.com/images/TMXHpE3ocIJIMKCvqQyZh6S2KGo.png\"},className:\"framer-149jjs2 framer-1xncwy6\",\"data-framer-name\":\"PWF-Logo\",layoutDependency:layoutDependency,layoutId:\"cvwbQIcnT\"})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pwnwUcrb2\"},implicitPathVariables:undefined},{href:{webPageId:\"pwnwUcrb2\"},implicitPathVariables:undefined},{href:{webPageId:\"pwnwUcrb2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||72)-28-44)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukowcc-container\",layoutDependency:layoutDependency,layoutId:\"hFpM_Chbk-container\",children:/*#__PURE__*/_jsx(PPWElementsButtons,{height:\"100%\",id:\"hFpM_Chbk\",layoutId:\"hFpM_Chbk\",P4_tTwmz3:resolvedLinks[0],variant:\"rbCGmBxPD\",w5iZd6WT9:\"Book a Consultation\",width:\"100%\",...addPropertyOverrides({JXwu2JRCp:{P4_tTwmz3:resolvedLinks[1]},or7q8KZGS:{P4_tTwmz3:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c47cR.framer-1xncwy6, .framer-c47cR .framer-1xncwy6 { display: block; }\",\".framer-c47cR.framer-ys3uk7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 14px 32px 14px 32px; position: relative; width: 1440px; }\",\".framer-c47cR .framer-9ph892 { aspect-ratio: 2.3567921440261865 / 1; bottom: -552px; flex: none; height: var(--framer-aspect-ratio-supported, 611px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-c47cR .framer-15gigau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c47cR .framer-1668dox { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 31px; }\",\".framer-c47cR .framer-149jjs2 { aspect-ratio: 7.67741935483871 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; text-decoration: none; width: 238px; z-index: 5; }\",\".framer-c47cR .framer-ukowcc-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c47cR .framer-15gigau { gap: 0px; } .framer-c47cR .framer-15gigau > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c47cR .framer-15gigau > :first-child { margin-top: 0px; } .framer-c47cR .framer-15gigau > :last-child { margin-bottom: 0px; } }\",\".framer-c47cR.framer-v-kjixhw.framer-ys3uk7 { width: 768px; }\",\".framer-c47cR.framer-v-kjixhw .framer-9ph892 { height: var(--framer-aspect-ratio-supported, 326px); }\",\".framer-c47cR.framer-v-1s3yk12.framer-ys3uk7 { padding: 14px 16px 14px 16px; width: 320px; }\",\".framer-c47cR.framer-v-1s3yk12 .framer-9ph892 { height: var(--framer-aspect-ratio-supported, 136px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JXwu2JRCp\":{\"layout\":[\"fixed\",\"auto\"]},\"or7q8KZGS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPMefyZH9D=withCSS(Component,css,\"framer-c47cR\");export default FramerPMefyZH9D;FramerPMefyZH9D.displayName=\"Navbar\";FramerPMefyZH9D.defaultProps={height:72,width:1440};addPropertyControls(FramerPMefyZH9D,{variant:{options:[\"v6i9tsOI0\",\"JXwu2JRCp\",\"or7q8KZGS\"],optionTitles:[\"Wide\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPMefyZH9D,[{explicitInter:true,fonts:[]},...PPWElementsButtonsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPMefyZH9D\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"72\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JXwu2JRCp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"or7q8KZGS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PMefyZH9D.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8bayDOvufhRDinbB3OjJ/vL2lvME9zaBa8p4PLkgC/GWb8GzGa2.js\";const serializationHash=\"framer-Hy9P4\";const variantClassNames={vNugi0FD8:\"framer-v-un7df6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({author,authorSupportText,height,id,image1,image2,image3,image4,image5,image6,showImage,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,Ab5eMqcQI:(_ref=authorSupportText!==null&&authorSupportText!==void 0?authorSupportText:props.Ab5eMqcQI)!==null&&_ref!==void 0?_ref:\"Founder, Higher Frog\",dq9geQAe0:image3!==null&&image3!==void 0?image3:props.dq9geQAe0,G9r_Ocy4A:(_ref1=author!==null&&author!==void 0?author:props.G9r_Ocy4A)!==null&&_ref1!==void 0?_ref1:\"Charlotte Berry\",j50hdmKGX:image2!==null&&image2!==void 0?image2:props.j50hdmKGX,lr23J3isl:(_ref2=image6!==null&&image6!==void 0?image6:props.lr23J3isl)!==null&&_ref2!==void 0?_ref2:true,LZCQH0Eew:(_ref3=showImage!==null&&showImage!==void 0?showImage:props.LZCQH0Eew)!==null&&_ref3!==void 0?_ref3:true,O4JkTMgxd:image4!==null&&image4!==void 0?image4:props.O4JkTMgxd,Rt_eiI4qC:image5!==null&&image5!==void 0?image5:props.Rt_eiI4qC,ZMKo6R0Wc:(_ref4=testimonial!==null&&testimonial!==void 0?testimonial:props.ZMKo6R0Wc)!==null&&_ref4!==void 0?_ref4:\"I adore your platform and recommend it constantly to other businesses and colleagues. I\u2019ve never had such positive feedback from both clients and my team about the ease of the system. Your customer service is incredible, and the features are continually improving. What\u2019s not to love?\",zo7kJOMIs:image1!==null&&image1!==void 0?image1:props.zo7kJOMIs};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZMKo6R0Wc,G9r_Ocy4A,Ab5eMqcQI,LZCQH0Eew,zo7kJOMIs,j50hdmKGX,dq9geQAe0,O4JkTMgxd,Rt_eiI4qC,lr23J3isl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vNugi0FD8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-un7df6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vNugi0FD8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3f7399b3-425b-4607-9520-05ba1c73ae14, rgb(207, 209, 213))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wb0u91\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"u3TdXC5H9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4zdt4\",\"data-styles-preset\":\"GWb8GzGa2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70)))\"},children:\"I adore your platform and recommend it constantly to other businesses and colleagues. I\u2019ve never had such positive feedback from both clients and my team about the ease of the system. Your customer service is incredible, and the features are continually improving. What\u2019s not to love?\"})}),className:\"framer-15h5gvg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vuPm8cWYV\",style:{\"--extracted-r6o4lv\":\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ZMKo6R0Wc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxeqbh\",\"data-framer-name\":\"Name Container\",layoutDependency:layoutDependency,layoutId:\"MM6YZR9ru\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1171vma\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"qKYR9aehP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b0lyg8\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"kS4EZJXYW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70)))\"},children:\"Charlotte Berry\"})}),className:\"framer-1fxzgiu\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"XiaVdBmxZ\",style:{\"--extracted-r6o4lv\":\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:G9r_Ocy4A,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(87, 109, 126))\"},children:\"Founder, Higher Frog\"})}),className:\"framer-b5vrzr\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"SL_m8Kl6X\",style:{\"--extracted-r6o4lv\":\"rgb(87, 109, 126)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Ab5eMqcQI,verticalAlignment:\"top\",withExternalLayout:true})]}),LZCQH0Eew&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tczdp2\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"cZh41gD2t\",children:[zo7kJOMIs&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-80nz2e\",layoutDependency:layoutDependency,layoutId:\"aISbUTwzR\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:17.5,intrinsicWidth:100.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+17.25000000000001),pixelHeight:35,pixelWidth:201,src:\"https://framerusercontent.com/images/dX8Q5LjvMWl1FifcV9bludNcEjw.png\"},className:\"framer-1bddoqd\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"ntZBdQg6_\",transformTemplate:transformTemplate1})}),j50hdmKGX&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wyozy3\",layoutDependency:layoutDependency,layoutId:\"Psf37Suow\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.5,intrinsicWidth:56.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+8.75000000000001),pixelHeight:65,pixelWidth:113,src:\"https://framerusercontent.com/images/cPUO7Kr81kpGjEPvJp9EwQslyrg.png\"},className:\"framer-19hnbu6\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"rWwmQ4Kue\",transformTemplate:transformTemplate2})}),dq9geQAe0&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bs171e\",layoutDependency:layoutDependency,layoutId:\"CuIK13ief\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:16.5,intrinsicWidth:44,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+17.75000000000001),pixelHeight:33,pixelWidth:88,src:\"https://framerusercontent.com/images/CVUbATDZwiy4KNMjCjguMrx2Cc.png\"},className:\"framer-10fusd0\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"uT7BRoHbJ\",transformTemplate:transformTemplate2})}),O4JkTMgxd&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11y1wvp\",layoutDependency:layoutDependency,layoutId:\"Kes6w_Sb6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:21,intrinsicWidth:89.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+15.50000000000001),pixelHeight:42,pixelWidth:179,src:\"https://framerusercontent.com/images/hyH0IB1f63FrBibbAmoTV7zYnA.png\"},className:\"framer-1ounub4\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"PJii0H8J0\",transformTemplate:transformTemplate2})}),Rt_eiI4qC&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1imgtu8\",layoutDependency:layoutDependency,layoutId:\"hJzzNOUhF\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.5,intrinsicWidth:68.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+9.50000000000001),pixelHeight:65,pixelWidth:137,src:\"https://framerusercontent.com/images/nebp7Qa11bg5gunb1R3VluKaPLg.png\"},className:\"framer-apgkwc\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"dkpu0cfWC\",transformTemplate:transformTemplate2})}),lr23J3isl&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14gegv3\",layoutDependency:layoutDependency,layoutId:\"mO2ewottL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.5,intrinsicWidth:100.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+0+(0+160+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||428)-64)*1-0-439)/1*1)+0+125.5+0+8.75000000000001),pixelHeight:65,pixelWidth:201,src:\"https://framerusercontent.com/images/euklzdc4YNoYGpN3BakHdixs8.png\"},className:\"framer-10kk59e\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"RlUEraysl\",transformTemplate:transformTemplate1})})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hy9P4.framer-1a01vki, .framer-Hy9P4 .framer-1a01vki { display: block; }\",\".framer-Hy9P4.framer-un7df6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 394px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hy9P4 .framer-1wb0u91 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Hy9P4 .framer-15h5gvg, .framer-Hy9P4 .framer-1fxzgiu, .framer-Hy9P4 .framer-b5vrzr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Hy9P4 .framer-1wxeqbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Hy9P4 .framer-1171vma { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Hy9P4 .framer-1b0lyg8 { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Hy9P4 .framer-tczdp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-Hy9P4 .framer-80nz2e, .framer-Hy9P4 .framer-wyozy3, .framer-Hy9P4 .framer-bs171e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-Hy9P4 .framer-1bddoqd { aspect-ratio: 5.742857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 50%; z-index: 1; }\",\".framer-Hy9P4 .framer-19hnbu6 { aspect-ratio: 1.7384615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 50%; overflow: visible; position: absolute; top: 48%; width: 57px; z-index: 1; }\",\".framer-Hy9P4 .framer-10fusd0 { aspect-ratio: 2.6666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 44px; z-index: 1; }\",\".framer-Hy9P4 .framer-11y1wvp, .framer-Hy9P4 .framer-1imgtu8, .framer-Hy9P4 .framer-14gegv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-Hy9P4 .framer-1ounub4 { aspect-ratio: 4.261904761904762 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 90px; z-index: 1; }\",\".framer-Hy9P4 .framer-apgkwc { aspect-ratio: 2.1076923076923078 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 69px; z-index: 1; }\",\".framer-Hy9P4 .framer-10kk59e { aspect-ratio: 3.0923076923076924 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 48%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hy9P4.framer-un7df6, .framer-Hy9P4 .framer-1wxeqbh, .framer-Hy9P4 .framer-1171vma, .framer-Hy9P4 .framer-1b0lyg8, .framer-Hy9P4 .framer-tczdp2, .framer-Hy9P4 .framer-80nz2e, .framer-Hy9P4 .framer-wyozy3, .framer-Hy9P4 .framer-bs171e, .framer-Hy9P4 .framer-11y1wvp, .framer-Hy9P4 .framer-1imgtu8, .framer-Hy9P4 .framer-14gegv3 { gap: 0px; } .framer-Hy9P4.framer-un7df6 > *, .framer-Hy9P4 .framer-1171vma > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Hy9P4.framer-un7df6 > :first-child, .framer-Hy9P4 .framer-1wxeqbh > :first-child, .framer-Hy9P4 .framer-1171vma > :first-child, .framer-Hy9P4 .framer-tczdp2 > :first-child, .framer-Hy9P4 .framer-11y1wvp > :first-child, .framer-Hy9P4 .framer-1imgtu8 > :first-child, .framer-Hy9P4 .framer-14gegv3 > :first-child { margin-left: 0px; } .framer-Hy9P4.framer-un7df6 > :last-child, .framer-Hy9P4 .framer-1wxeqbh > :last-child, .framer-Hy9P4 .framer-1171vma > :last-child, .framer-Hy9P4 .framer-tczdp2 > :last-child, .framer-Hy9P4 .framer-11y1wvp > :last-child, .framer-Hy9P4 .framer-1imgtu8 > :last-child, .framer-Hy9P4 .framer-14gegv3 > :last-child { margin-right: 0px; } .framer-Hy9P4 .framer-1wxeqbh > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Hy9P4 .framer-1b0lyg8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Hy9P4 .framer-1b0lyg8 > :first-child, .framer-Hy9P4 .framer-80nz2e > :first-child, .framer-Hy9P4 .framer-wyozy3 > :first-child, .framer-Hy9P4 .framer-bs171e > :first-child { margin-top: 0px; } .framer-Hy9P4 .framer-1b0lyg8 > :last-child, .framer-Hy9P4 .framer-80nz2e > :last-child, .framer-Hy9P4 .framer-wyozy3 > :last-child, .framer-Hy9P4 .framer-bs171e > :last-child { margin-bottom: 0px; } .framer-Hy9P4 .framer-tczdp2 > *, .framer-Hy9P4 .framer-11y1wvp > *, .framer-Hy9P4 .framer-1imgtu8 > *, .framer-Hy9P4 .framer-14gegv3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hy9P4 .framer-80nz2e > *, .framer-Hy9P4 .framer-wyozy3 > *, .framer-Hy9P4 .framer-bs171e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-Hy9P4[data-border=\"true\"]::after, .framer-Hy9P4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 428\n * @framerIntrinsicWidth 394\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZMKo6R0Wc\":\"testimonial\",\"G9r_Ocy4A\":\"author\",\"Ab5eMqcQI\":\"authorSupportText\",\"LZCQH0Eew\":\"showImage\",\"zo7kJOMIs\":\"image1\",\"j50hdmKGX\":\"image2\",\"dq9geQAe0\":\"image3\",\"O4JkTMgxd\":\"image4\",\"Rt_eiI4qC\":\"image5\",\"lr23J3isl\":\"image6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUf0qEFtD=withCSS(Component,css,\"framer-Hy9P4\");export default FramertUf0qEFtD;FramertUf0qEFtD.displayName=\"Testimonial-Card\";FramertUf0qEFtD.defaultProps={height:428,width:394};addPropertyControls(FramertUf0qEFtD,{ZMKo6R0Wc:{defaultValue:\"I adore your platform and recommend it constantly to other businesses and colleagues. I\u2019ve never had such positive feedback from both clients and my team about the ease of the system. Your customer service is incredible, and the features are continually improving. What\u2019s not to love?\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},G9r_Ocy4A:{defaultValue:\"Charlotte Berry\",displayTextArea:false,title:\"Author\",type:ControlType.String},Ab5eMqcQI:{defaultValue:\"Founder, Higher Frog\",displayTextArea:false,title:\"Author Support Text\",type:ControlType.String},LZCQH0Eew:{defaultValue:true,title:\"Show Image\",type:ControlType.Boolean},zo7kJOMIs:{defaultValue:false,title:\"Image 1\",type:ControlType.Boolean},j50hdmKGX:{defaultValue:false,title:\"Image 2\",type:ControlType.Boolean},dq9geQAe0:{defaultValue:false,title:\"Image 3\",type:ControlType.Boolean},O4JkTMgxd:{defaultValue:false,title:\"Image 4\",type:ControlType.Boolean},Rt_eiI4qC:{defaultValue:false,title:\"Image 5\",type:ControlType.Boolean},lr23J3isl:{defaultValue:true,title:\"Image 6\",type:ControlType.Boolean}});addFonts(FramertUf0qEFtD,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUf0qEFtD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ZMKo6R0Wc\\\":\\\"testimonial\\\",\\\"G9r_Ocy4A\\\":\\\"author\\\",\\\"Ab5eMqcQI\\\":\\\"authorSupportText\\\",\\\"LZCQH0Eew\\\":\\\"showImage\\\",\\\"zo7kJOMIs\\\":\\\"image1\\\",\\\"j50hdmKGX\\\":\\\"image2\\\",\\\"dq9geQAe0\\\":\\\"image3\\\",\\\"O4JkTMgxd\\\":\\\"image4\\\",\\\"Rt_eiI4qC\\\":\\\"image5\\\",\\\"lr23J3isl\\\":\\\"image6\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"394\",\"framerIntrinsicHeight\":\"428\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tUf0qEFtD.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-4HAAu\";const variantClassNames={RYE1XHgN3:\"framer-v-4bbu1p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,icon1,icon2,icon3,icon4,icon5,icon6,id,supportText,title,titleColor,width,...props})=>{return{...props,AYe95BAht:icon5??props.AYe95BAht,Fqb2ABR59:title??props.Fqb2ABR59??\"Title\",jrE6DNYEK:icon4??props.jrE6DNYEK,N0vFiosU3:icon3??props.N0vFiosU3,Oz7AXvafg:icon6??props.Oz7AXvafg,pclNtHKUN:icon1??props.pclNtHKUN??true,qJn4DyeCy:icon2??props.qJn4DyeCy,tOPyqMZ2B:supportText??props.tOPyqMZ2B??\"Support Text\",vm19QH7Y6:titleColor??props.vm19QH7Y6??\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pclNtHKUN,qJn4DyeCy,N0vFiosU3,jrE6DNYEK,AYe95BAht,Oz7AXvafg,Fqb2ABR59,vm19QH7Y6,tOPyqMZ2B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"RYE1XHgN3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-4bbu1p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RYE1XHgN3\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w7sym6\",\"data-framer-name\":\"Atoms/Icon\",layoutDependency:layoutDependency,layoutId:\"z_8E4IR5E\",style:{backgroundColor:\"var(--token-501e30e7-774a-4f27-9890-3be2bdf30568, rgb(219, 234, 254))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[pclNtHKUN&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12awuor\",\"data-framer-name\":\"Icon-1\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ff4utVNUu\",svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" d=\"M5.555 14.16h-4.43a1.123 1.123 0 0 1-.961-1.706L2.639 8.38a3.369 3.369 0 0 1 2.883-1.626h3.787C7.973 8.9 6.464 12.12 5.555 14.16Zm12.351 1.19v3.788a3.365 3.365 0 0 1-1.622 2.883l-4.073 2.475a1.12 1.12 0 0 1-1.135.019 1.129 1.129 0 0 1-.571-.98v-4.51c2.057-.894 5.268-2.357 7.406-3.674h-.005ZM7.805 22.692c-1.603 1.608-4.711 1.922-6.478 1.965a1.275 1.275 0 0 1-1.322-1.322c.042-1.768.356-4.875 1.964-6.479a4.125 4.125 0 0 1 5.836 0 4.125 4.125 0 0 1 0 5.836Zm-2.19-1.706a1.375 1.375 0 0 0 0-1.94 1.375 1.375 0 0 0-1.94 0c-.473.473-.61 1.335-.642 1.935a.61.61 0 0 0 .651.652c.6-.033 1.463-.173 1.936-.642l-.004-.005Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/><path d=\"M10.486 19.03a5.253 5.253 0 0 0-4.936-4.865c1.003-2.245 2.737-5.935 4.162-8.04C13.552.469 19.27.28 22.682.91c.545.098.966.525 1.07 1.068.628 3.418.435 9.132-5.222 12.97-2.096 1.421-5.77 3.104-8.044 4.088v-.005Zm9.389-12.37a1.875 1.875 0 1 0-3.75 0 1.875 1.875 0 0 0 3.75 0Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true}),qJn4DyeCy&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gwidat\",\"data-framer-name\":\"Icon-2\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Hf8hxN6ck\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" d=\"M15.352 3.994 18 3l.994-2.648A.542.542 0 0 1 19.5 0a.54.54 0 0 1 .506.352L21 3l2.648.994a.54.54 0 0 1 0 1.012L21 6l-.994 2.648A.542.542 0 0 1 19.5 9a.542.542 0 0 1-.506-.352L18 6l-2.648-.994A.542.542 0 0 1 15 4.5a.54.54 0 0 1 .352-.506Zm0 15L18 18l.994-2.648A.542.542 0 0 1 19.5 15a.54.54 0 0 1 .506.352L21 18l2.648.994a.54.54 0 0 1 0 1.012L21 21l-.994 2.648A.542.542 0 0 1 19.5 24a.542.542 0 0 1-.506-.352L18 21l-2.648-.994A.542.542 0 0 1 15 19.5a.54.54 0 0 1 .352-.506Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/><path d=\"M9.614 3.436a.747.747 0 0 0-1.36 0l-2.47 5.348L.436 11.25a.749.749 0 0 0-.436.684c0 .296.169.558.436.68l5.348 2.47 2.466 5.344a.747.747 0 0 0 1.36 0l2.47-5.348 5.348-2.47a.747.747 0 0 0 0-1.36l-5.344-2.466-2.47-5.348Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true}),N0vFiosU3&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gwjdh6\",\"data-framer-name\":\"Icon-3\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"OlutjJEPR\",svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" d=\"M1.5 2.23a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm19.5 6a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm1.5 12a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM7.828 7.902a1.12 1.12 0 0 1 0-1.589l.39-.389a4.873 4.873 0 0 0 1.396-2.91l.14-1.285a1.135 1.135 0 0 1 1.248-.994 1.12 1.12 0 0 1 .993 1.242l-.14 1.284A7.124 7.124 0 0 1 9.81 7.513l-.39.39a1.12 1.12 0 0 1-1.588 0h-.005Zm9 7.406.384-.389a7.125 7.125 0 0 1 4.252-2.043l1.284-.141a1.123 1.123 0 0 1 1.243.994 1.123 1.123 0 0 1-.994 1.242l-1.285.14a4.873 4.873 0 0 0-2.91 1.397l-.38.394a1.125 1.125 0 0 1-1.59-1.589l-.004-.005Zm6.905-14.18a1.123 1.123 0 0 1-.131 1.585l-.47.398a3.704 3.704 0 0 1-2.484.872 1.449 1.449 0 0 0-1.48 1.36l-.085 1.406a3.698 3.698 0 0 1-3.788 3.478 1.431 1.431 0 0 0-.97.342l-.469.399a1.123 1.123 0 0 1-1.584-.132 1.127 1.127 0 0 1 .131-1.584l.469-.398a3.704 3.704 0 0 1 2.484-.872 1.449 1.449 0 0 0 1.481-1.36l.085-1.406a3.698 3.698 0 0 1 3.787-3.478c.357.01.704-.112.97-.342l.47-.399a1.123 1.123 0 0 1 1.584.132ZM3.895 12.567l8.27 8.269-1.543.576-7.303-7.303.576-1.542ZM2.26 16.93l5.54 5.54-1.542.577-4.575-4.575.576-1.542Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/><path d=\"M5.681 9.763a1.512 1.512 0 0 1 1.378.403l7.5 7.5c.361.361.516.881.404 1.378a1.52 1.52 0 0 1-.938 1.088l-1.861.698-8.269-8.264.699-1.86c.178-.479.59-.83 1.087-.938v-.005ZM3.32 14.108l7.303 7.303-2.822 1.06-5.54-5.54 1.059-2.823Zm2.939 8.94-4.233 1.588a1.51 1.51 0 0 1-1.59-.342 1.5 1.5 0 0 1-.341-1.589l1.584-4.233 4.575 4.575h.005Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true}),jrE6DNYEK&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p04vl7\",\"data-framer-name\":\"Icon-4\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"RDtdPgOhV\",svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" d=\"M2.25 12.27A9.749 9.749 0 0 1 12 2.52a9.749 9.749 0 0 1 9.75 9.75v6.755c0 1.036-.84 1.875-1.875 1.875l-5.175-.005a2.244 2.244 0 0 0-1.95-1.125h-1.5a2.25 2.25 0 0 0 0 4.5h1.5c.834 0 1.56-.455 1.95-1.125l5.175.005a4.13 4.13 0 0 0 4.13-4.125V12.27C24 5.642 18.628.27 12 .27c-6.628 0-12 5.372-12 12v1.875c0 .623.502 1.125 1.125 1.125s1.125-.502 1.125-1.125V12.27Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/><path d=\"M6.75 10.02c-1.655 0-3 1.345-3 3v2.25c0 1.655 1.345 3 3 3h.75c.83 0 1.5-.67 1.5-1.5v-5.25c0-.83-.67-1.5-1.5-1.5h-.75Zm10.5 0h-.75c-.83 0-1.5.67-1.5 1.5v5.25c0 .83.67 1.5 1.5 1.5h.75c1.655 0 3-1.345 3-3v-2.25c0-1.655-1.345-3-3-3Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true}),AYe95BAht&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5trq5i\",\"data-framer-name\":\"Icon-5\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"HvxKARWnt\",svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m10.584 22.507-.117-.108-8.212-7.627A7.06 7.06 0 0 1 0 9.597v-.154a6.87 6.87 0 0 1 5.588-6.75A6.853 6.853 0 0 1 12 4.868a6.11 6.11 0 0 1 .633-.624 6.875 6.875 0 0 1 5.78-1.556A6.876 6.876 0 0 1 24 9.443v.154a7.059 7.059 0 0 1-2.255 5.175L13.533 22.4l-.117.108a2.09 2.09 0 0 1-1.416.558 2.065 2.065 0 0 1-1.416-.558Zm.624-15.15a.233.233 0 0 1-.047-.052l-.834-.937-.005-.005A4.614 4.614 0 0 0 6.009 4.9 4.621 4.621 0 0 0 2.25 9.444v.154c0 1.336.558 2.616 1.538 3.525L12 20.75l8.212-7.627a4.814 4.814 0 0 0 1.538-3.525v-.154A4.625 4.625 0 0 0 17.995 4.9a4.621 4.621 0 0 0-4.312 1.462l-.005.005-.005.004-.834.938c-.014.019-.033.033-.047.051a1.122 1.122 0 0 1-1.584 0v-.004Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true}),Oz7AXvafg&&/*#__PURE__*/_jsx(SVG,{className:\"framer-34mbl0\",\"data-framer-name\":\"Icon-6\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"YYTSPCoaI\",svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".4\" d=\"M3 6.99a1.5 1.5 0 1 0-3 0v8.306a3.6 3.6 0 0 0 1.054 2.547L4.8 21.588a2.4 2.4 0 0 0 1.699.701H9a1.8 1.8 0 0 0 1.8-1.8V17.53a4.2 4.2 0 0 0-1.23-2.97l-.949-.948-.57-.57-1.2-1.2a1.202 1.202 0 0 0-1.699 1.698l1.2 1.2.57.57a.92.92 0 1 1-1.3 1.302l-1.92-1.917A2.4 2.4 0 0 1 3 12.998V6.99Zm18 0v6.008a2.4 2.4 0 0 1-.701 1.698l-1.916 1.917a.92.92 0 1 1-1.302-1.302l.57-.57 1.2-1.2a1.202 1.202 0 0 0-1.698-1.699l-1.2 1.2-.57.57-.95.95a4.2 4.2 0 0 0-1.23 2.97v2.958a1.8 1.8 0 0 0 1.8 1.8h2.502c.637 0 1.249-.251 1.699-.701l3.746-3.746a3.599 3.599 0 0 0 1.054-2.547V6.99a1.5 1.5 0 1 0-3 0H21Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/><path d=\"M7.346 4.174a2.893 2.893 0 0 0 0 4.05l3.81 3.87c.233.236.537.352.844.352.307 0 .611-.116.844-.352l3.81-3.87a2.893 2.893 0 0 0 0-4.05 2.793 2.793 0 0 0-3.99 0L12 4.849l-.664-.675a2.793 2.793 0 0 0-3.99 0Z\" fill=\"#05F\" style=\"fill:color(display-p3 0 .3333 1);fill-opacity:1\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ka0t21\",layoutDependency:layoutDependency,layoutId:\"zyOvLU00q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.34px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-vm19QH7Y6-Hd9JAXKiK))\"},children:\"Title\"})}),className:\"framer-lw3yz8\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"BNVF7WulD\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-vm19QH7Y6-Hd9JAXKiK)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-vm19QH7Y6-Hd9JAXKiK\":vm19QH7Y6},text:Fqb2ABR59,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.24px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70)))\"},children:\"Support Text\"})}),className:\"framer-1eot8gw\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"lHviKbA1p\",style:{\"--extracted-r6o4lv\":\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tOPyqMZ2B,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4HAAu.framer-195p6dn, .framer-4HAAu .framer-195p6dn { display: block; }\",\".framer-4HAAu.framer-4bbu1p { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 572px; }\",\".framer-4HAAu .framer-w7sym6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-4HAAu .framer-12awuor, .framer-4HAAu .framer-1gwjdh6, .framer-4HAAu .framer-p04vl7, .framer-4HAAu .framer-5trq5i, .framer-4HAAu .framer-34mbl0 { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 24px; }\",\".framer-4HAAu .framer-1gwidat { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-4HAAu .framer-1ka0t21 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4HAAu .framer-lw3yz8, .framer-4HAAu .framer-1eot8gw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4HAAu.framer-4bbu1p, .framer-4HAAu .framer-w7sym6, .framer-4HAAu .framer-1ka0t21 { gap: 0px; } .framer-4HAAu.framer-4bbu1p > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-4HAAu.framer-4bbu1p > :first-child { margin-left: 0px; } .framer-4HAAu.framer-4bbu1p > :last-child { margin-right: 0px; } .framer-4HAAu .framer-w7sym6 > *, .framer-4HAAu .framer-1ka0t21 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4HAAu .framer-w7sym6 > :first-child, .framer-4HAAu .framer-1ka0t21 > :first-child { margin-top: 0px; } .framer-4HAAu .framer-w7sym6 > :last-child, .framer-4HAAu .framer-1ka0t21 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 572\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pclNtHKUN\":\"icon1\",\"qJn4DyeCy\":\"icon2\",\"N0vFiosU3\":\"icon3\",\"jrE6DNYEK\":\"icon4\",\"AYe95BAht\":\"icon5\",\"Oz7AXvafg\":\"icon6\",\"Fqb2ABR59\":\"title\",\"vm19QH7Y6\":\"titleColor\",\"tOPyqMZ2B\":\"supportText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHd9JAXKiK=withCSS(Component,css,\"framer-4HAAu\");export default FramerHd9JAXKiK;FramerHd9JAXKiK.displayName=\"Atoms/Bullet Point\";FramerHd9JAXKiK.defaultProps={height:55,width:572};addPropertyControls(FramerHd9JAXKiK,{pclNtHKUN:{defaultValue:true,title:\"Icon 1\",type:ControlType.Boolean},qJn4DyeCy:{defaultValue:false,title:\"Icon 2\",type:ControlType.Boolean},N0vFiosU3:{defaultValue:false,title:\"Icon 3\",type:ControlType.Boolean},jrE6DNYEK:{defaultValue:false,title:\"Icon 4\",type:ControlType.Boolean},AYe95BAht:{defaultValue:false,title:\"Icon 5\",type:ControlType.Boolean},Oz7AXvafg:{defaultValue:false,title:\"Icon 6\",type:ControlType.Boolean},Fqb2ABR59:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},vm19QH7Y6:{defaultValue:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",title:\"Title | Color\",type:ControlType.Color},tOPyqMZ2B:{defaultValue:\"Support Text\",displayTextArea:false,title:\"Support Text\",type:ControlType.String}});addFonts(FramerHd9JAXKiK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHd9JAXKiK\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pclNtHKUN\\\":\\\"icon1\\\",\\\"qJn4DyeCy\\\":\\\"icon2\\\",\\\"N0vFiosU3\\\":\\\"icon3\\\",\\\"jrE6DNYEK\\\":\\\"icon4\\\",\\\"AYe95BAht\\\":\\\"icon5\\\",\\\"Oz7AXvafg\\\":\\\"icon6\\\",\\\"Fqb2ABR59\\\":\\\"title\\\",\\\"vm19QH7Y6\\\":\\\"titleColor\\\",\\\"tOPyqMZ2B\\\":\\\"supportText\\\"}\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"572\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hd9JAXKiK.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5rtfu1PK49x346Wr4Bjw/Og51a23oxfBQtokbQDby/jvcTbu0um.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uJ7lydswzI4M3luvw1bR/DHLtbmCMam0TrNo0e5ak/me7neuCMj.js\";import AtomsBulletPoint from\"https://framerusercontent.com/modules/NuPogXlP5C54dBePYRvd/7Z5NRxoyzyzyOBtoGl97/Hd9JAXKiK.js\";const AtomsBulletPointFonts=getFonts(AtomsBulletPoint);const cycleOrder=[\"mKIQhbQHN\",\"CxIBrcNWU\",\"MCb_V73lR\",\"id3wdgOxG\",\"DkbBsUnry\",\"btGU3S2KQ\",\"pSVHlUArQ\",\"arL9aKh_r\",\"lxPIZqjl5\"];const serializationHash=\"framer-VJ8eg\";const variantClassNames={arL9aKh_r:\"framer-v-r4ig8c\",btGU3S2KQ:\"framer-v-lkqbhc\",CxIBrcNWU:\"framer-v-1ui16ku\",DkbBsUnry:\"framer-v-xw3p08\",id3wdgOxG:\"framer-v-1hwerrj\",lxPIZqjl5:\"framer-v-1hurccu\",MCb_V73lR:\"framer-v-1ggmfcf\",mKIQhbQHN:\"framer-v-1m8r1hf\",pSVHlUArQ:\"framer-v-1qfag0z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 | Desktop\":\"mKIQhbQHN\",\"Variant 1 | Phone\":\"MCb_V73lR\",\"Variant 1 | Tablet\":\"CxIBrcNWU\",\"Variant 2 | Desktop\":\"id3wdgOxG\",\"Variant 2 | Phone\":\"btGU3S2KQ\",\"Variant 2 | Tablet\":\"DkbBsUnry\",\"Variant 3 | Desktop\":\"pSVHlUArQ\",\"Variant 3 | Phone\":\"lxPIZqjl5\",\"Variant 3 | Tablet\":\"arL9aKh_r\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mKIQhbQHN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mKIQhbQHN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"id3wdgOxG\",\"DkbBsUnry\",\"btGU3S2KQ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"id3wdgOxG\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"id3wdgOxG\")return false;return true;};const isDisplayed3=()=>{if([\"id3wdgOxG\",\"DkbBsUnry\",\"btGU3S2KQ\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m8r1hf\",className,classNames),\"data-framer-name\":\"Variant 1 | Desktop\",layoutDependency:layoutDependency,layoutId:\"mKIQhbQHN\",ref:ref??ref1,style:{backgroundColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",...style},variants:{arL9aKh_r:{backgroundColor:\"rgba(0, 0, 0, 0)\"},lxPIZqjl5:{backgroundColor:\"rgba(0, 0, 0, 0)\"},pSVHlUArQ:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({arL9aKh_r:{\"data-framer-name\":\"Variant 3 | Tablet\"},btGU3S2KQ:{\"data-framer-name\":\"Variant 2 | Phone\"},CxIBrcNWU:{\"data-framer-name\":\"Variant 1 | Tablet\"},DkbBsUnry:{\"data-framer-name\":\"Variant 2 | Tablet\"},id3wdgOxG:{\"data-framer-name\":\"Variant 2 | Desktop\"},lxPIZqjl5:{\"data-framer-name\":\"Variant 3 | Phone\"},MCb_V73lR:{\"data-framer-name\":\"Variant 1 | Phone\"},pSVHlUArQ:{\"data-framer-name\":\"Variant 3 | Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g9s83r\",layoutDependency:layoutDependency,layoutId:\"zloQqT8jk\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{arL9aKh_r:{backgroundColor:\"rgb(235, 240, 247)\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},lxPIZqjl5:{backgroundColor:\"rgb(235, 240, 247)\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},pSVHlUArQ:{backgroundColor:\"rgb(235, 240, 247)\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56}},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hgrca7\",\"data-framer-name\":\"Image Left\",layoutDependency:layoutDependency,layoutId:\"k1mn19TMJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{arL9aKh_r:{backgroundColor:\"var(--token-501e30e7-774a-4f27-9890-3be2bdf30568, rgb(219, 234, 254))\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},lxPIZqjl5:{backgroundColor:\"var(--token-501e30e7-774a-4f27-9890-3be2bdf30568, rgb(219, 234, 254))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},pSVHlUArQ:{backgroundColor:\"var(--token-501e30e7-774a-4f27-9890-3be2bdf30568, rgb(219, 234, 254))\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||583)-0-601.92)/2+0+0)+80+0),pixelHeight:561,pixelWidth:996,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,src:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png 996w\"},className:\"framer-j0o7m6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gv5HZ9efm\",style:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},variants:{arL9aKh_r:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopRightRadius:0},lxPIZqjl5:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopRightRadius:0},pSVHlUArQ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({arL9aKh_r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1076.5)-0-1051.42)/2+0+0)+80+5684341886080802e-29+32),pixelHeight:1270,pixelWidth:1453,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png 1453w\"}},CxIBrcNWU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1073.5)-0-1037.92)/2+0+0)+80+5684341886080802e-29+0),pixelHeight:561,pixelWidth:996,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png 996w\"}},lxPIZqjl5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||969.5)-0-1035.42)/2+0+0)+80+5684341886080802e-29+16),pixelHeight:1270,pixelWidth:1453,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png 1453w\"}},MCb_V73lR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||967.5)-0-1037.92)/2+0+0)+80+5684341886080802e-29+0+0),pixelHeight:561,pixelWidth:996,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,src:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/XAnhN8Kgvlly9E2li2lIaPQs.png 996w\"}},pSVHlUArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:280.5,intrinsicWidth:498,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||583)-0-601.92)/2+0+0)+80+32),pixelHeight:1270,pixelWidth:1453,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 136px) / 2, 1px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ucAE8Z7UCJRNg7S7KEZgXBAqsJE.png 1453w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dgjd2b\",layoutDependency:layoutDependency,layoutId:\"hbBgxe2Vj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dmqbph\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"q1ugTAPjk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h6jnki\",\"data-styles-preset\":\"me7neuCMj\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2349c67-e759-4824-8cdd-b8bd4164990f, rgb(102, 116, 127)))\"},children:\"We're here for you. Always.\"})}),className:\"framer-mzex00\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Umnta0LWH\",style:{\"--extracted-r6o4lv\":\"var(--token-e2349c67-e759-4824-8cdd-b8bd4164990f, rgb(102, 116, 127))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-oqr48z\",\"data-styles-preset\":\"jvcTbu0um\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our customer service is our superpower\"})}),className:\"framer-14q474q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yilIEq_w9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a3g73l\",layoutDependency:layoutDependency,layoutId:\"FjUQ6hbhF\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gumhrk\",layoutDependency:layoutDependency,layoutId:\"reaKLh82V\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,...addPropertyOverrides({id3wdgOxG:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||702.5)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgd934-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"vW3ToJOxL-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:false,Fqb2ABR59:\"All you need, all in one place\",height:\"100%\",id:\"vW3ToJOxL\",jrE6DNYEK:false,layoutId:\"vW3ToJOxL\",N0vFiosU3:false,name:\"Bullet Point\",Oz7AXvafg:false,pclNtHKUN:true,qJn4DyeCy:false,style:{width:\"100%\"},tOPyqMZ2B:\"Get everything in one platform: CRM integration, automation, dashboards, and e-signatures.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,...addPropertyOverrides({id3wdgOxG:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||702.5)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+87}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jg7upd-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"EHyZS5fta-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:false,Fqb2ABR59:\"Easy to use and implement\",height:\"100%\",id:\"EHyZS5fta\",jrE6DNYEK:false,layoutId:\"EHyZS5fta\",N0vFiosU3:false,name:\"Bullet Point\",Oz7AXvafg:false,pclNtHKUN:false,qJn4DyeCy:true,style:{width:\"100%\"},tOPyqMZ2B:\"Start quickly with intuitive tools and pre-built workflows designed for effortless setup.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,...addPropertyOverrides({id3wdgOxG:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||702.5)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+174}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hhxizj-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"U9CN4rL03-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:false,Fqb2ABR59:\"Built with clients in mind\",height:\"100%\",id:\"U9CN4rL03\",jrE6DNYEK:false,layoutId:\"U9CN4rL03\",N0vFiosU3:true,name:\"Bullet Point\",Oz7AXvafg:false,pclNtHKUN:false,qJn4DyeCy:false,style:{width:\"100%\"},tOPyqMZ2B:\"Deliver a seamless client experience with simple, professional, and reliable tools for onboarding and contracts.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qhrjr3\",layoutDependency:layoutDependency,layoutId:\"o9bqewZKY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||583)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+0,...addPropertyOverrides({arL9aKh_r:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1076.5)-0-1051.42)/2+0+0)+80+449.50000000000006+0+212.92+0+0+0+0},btGU3S2KQ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1044)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+0},CxIBrcNWU:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1073.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+0},DkbBsUnry:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1240)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+0},lxPIZqjl5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||969.5)-0-1035.42)/2+0+0)+80+433.50000000000006+0+212.92+0+0+0+0},MCb_V73lR:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||967.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+0},pSVHlUArQ:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 136px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1777no5-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"MlItYoL_I-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:false,Fqb2ABR59:\"Live chat support for all users\",height:\"100%\",id:\"MlItYoL_I\",jrE6DNYEK:true,layoutId:\"MlItYoL_I\",N0vFiosU3:false,name:\"Bullet Point\",Oz7AXvafg:false,pclNtHKUN:false,qJn4DyeCy:false,style:{width:\"100%\"},tOPyqMZ2B:\"Get help within minutes via our live chat or email.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||583)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+87,...addPropertyOverrides({arL9aKh_r:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1076.5)-0-1051.42)/2+0+0)+80+449.50000000000006+0+212.92+0+0+0+87},btGU3S2KQ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1044)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+87},CxIBrcNWU:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1073.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+87},DkbBsUnry:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1240)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+87},lxPIZqjl5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||969.5)-0-1035.42)/2+0+0)+80+433.50000000000006+0+212.92+0+0+0+87},MCb_V73lR:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||967.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+87},pSVHlUArQ:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 136px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4wy0kz-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"Lqm9FxVhf-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:true,Fqb2ABR59:\"Quick and easy onboarding\",height:\"100%\",id:\"Lqm9FxVhf\",jrE6DNYEK:false,layoutId:\"Lqm9FxVhf\",N0vFiosU3:false,name:\"Bullet Point\",Oz7AXvafg:false,pclNtHKUN:false,qJn4DyeCy:false,style:{width:\"100%\"},tOPyqMZ2B:\"Get started with PaperworkFlows right away. Our onboarding team is here to support you at every step.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||583)-0-601.92)/2+0+0)+80+0+212.92+0+0+0+174,...addPropertyOverrides({arL9aKh_r:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1076.5)-0-1051.42)/2+0+0)+80+449.50000000000006+0+212.92+0+0+0+174},btGU3S2KQ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1044)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+174},CxIBrcNWU:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1073.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+174},DkbBsUnry:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1240)-0-992.92)/2+0+0)+80+391+0+212.92+0+0+0+174},lxPIZqjl5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||969.5)-0-1035.42)/2+0+0)+80+433.50000000000006+0+212.92+0+0+0+174},MCb_V73lR:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||967.5)-0-1037.92)/2+0+0)+80+436.00000000000006+0+212.92+0+0+0+174},pSVHlUArQ:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 136px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10lty2k-container\",\"data-framer-name\":\"Bullet Point\",layoutDependency:layoutDependency,layoutId:\"NfxwsT1Fl-container\",name:\"Bullet Point\",children:/*#__PURE__*/_jsx(AtomsBulletPoint,{AYe95BAht:false,Fqb2ABR59:\"Dedicated Customer Success Manager\",height:\"100%\",id:\"NfxwsT1Fl\",jrE6DNYEK:false,layoutId:\"NfxwsT1Fl\",N0vFiosU3:false,name:\"Bullet Point\",Oz7AXvafg:true,pclNtHKUN:false,qJn4DyeCy:false,style:{width:\"100%\"},tOPyqMZ2B:\"We give you everything you need to succeed.\",vm19QH7Y6:\"var(--token-ca0b4e0d-54c8-4383-a10f-0e7f60a4e478, rgb(36, 55, 70))\",width:\"100%\"})})})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nofynp\",\"data-framer-name\":\"Image Right\",layoutDependency:layoutDependency,layoutId:\"eX6JiM4Bj\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:524,intrinsicWidth:664,pixelHeight:1048,pixelWidth:1328,src:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png 1328w\"},className:\"framer-19plrpe\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"Q9P7YmBsn\",...addPropertyOverrides({btGU3S2KQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:524,intrinsicWidth:664,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1044)-0-992.92)/2+0+0)+80+0+0),pixelHeight:1048,pixelWidth:1328,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png 1328w\"}},DkbBsUnry:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:524,intrinsicWidth:664,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1240)-0-992.92)/2+0+0)+80+0+0),pixelHeight:1048,pixelWidth:1328,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1536px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png 1328w\"}},id3wdgOxG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:524,intrinsicWidth:664,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||702.5)-0-601.92)/2+0+0)+80+0),pixelHeight:1048,pixelWidth:1328,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1536px) - 72px) / 2, 1px)`,src:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbBTLg2BDGaG1pvVWroEDMsi25U.png 1328w\"}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VJ8eg.framer-1fiwc5s, .framer-VJ8eg .framer-1fiwc5s { display: block; }\",\".framer-VJ8eg.framer-1m8r1hf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-VJ8eg .framer-1g9s83r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1536px; overflow: visible; padding: 80px 16px 80px 16px; position: relative; width: 100%; }\",\".framer-VJ8eg .framer-1hgrca7, .framer-VJ8eg .framer-nofynp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VJ8eg .framer-j0o7m6 { aspect-ratio: 1.7272727272727273 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 396px); overflow: visible; position: relative; width: 1px; }\",\".framer-VJ8eg .framer-dgjd2b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-VJ8eg .framer-1dmqbph { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VJ8eg .framer-mzex00, .framer-VJ8eg .framer-14q474q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VJ8eg .framer-1a3g73l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VJ8eg .framer-1gumhrk, .framer-VJ8eg .framer-1qhrjr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VJ8eg .framer-rgd934-container, .framer-VJ8eg .framer-1jg7upd-container, .framer-VJ8eg .framer-1hhxizj-container, .framer-VJ8eg .framer-1777no5-container, .framer-VJ8eg .framer-4wy0kz-container, .framer-VJ8eg .framer-10lty2k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-VJ8eg .framer-19plrpe { aspect-ratio: 1.2606837606837606 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 159px); overflow: visible; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-1m8r1hf, .framer-VJ8eg .framer-1g9s83r, .framer-VJ8eg .framer-1hgrca7, .framer-VJ8eg .framer-dgjd2b, .framer-VJ8eg .framer-1dmqbph, .framer-VJ8eg .framer-1a3g73l, .framer-VJ8eg .framer-1gumhrk, .framer-VJ8eg .framer-1qhrjr3, .framer-VJ8eg .framer-nofynp { gap: 0px; } .framer-VJ8eg.framer-1m8r1hf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VJ8eg.framer-1m8r1hf > :first-child, .framer-VJ8eg .framer-dgjd2b > :first-child, .framer-VJ8eg .framer-1dmqbph > :first-child, .framer-VJ8eg .framer-1a3g73l > :first-child, .framer-VJ8eg .framer-1gumhrk > :first-child, .framer-VJ8eg .framer-1qhrjr3 > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-1m8r1hf > :last-child, .framer-VJ8eg .framer-dgjd2b > :last-child, .framer-VJ8eg .framer-1dmqbph > :last-child, .framer-VJ8eg .framer-1a3g73l > :last-child, .framer-VJ8eg .framer-1gumhrk > :last-child, .framer-VJ8eg .framer-1qhrjr3 > :last-child { margin-bottom: 0px; } .framer-VJ8eg .framer-1g9s83r > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-VJ8eg .framer-1g9s83r > :first-child, .framer-VJ8eg .framer-1hgrca7 > :first-child, .framer-VJ8eg .framer-nofynp > :first-child { margin-left: 0px; } .framer-VJ8eg .framer-1g9s83r > :last-child, .framer-VJ8eg .framer-1hgrca7 > :last-child, .framer-VJ8eg .framer-nofynp > :last-child { margin-right: 0px; } .framer-VJ8eg .framer-1hgrca7 > *, .framer-VJ8eg .framer-nofynp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VJ8eg .framer-dgjd2b > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-VJ8eg .framer-1dmqbph > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VJ8eg .framer-1a3g73l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VJ8eg .framer-1gumhrk > *, .framer-VJ8eg .framer-1qhrjr3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-VJ8eg.framer-v-1ui16ku.framer-1m8r1hf, .framer-VJ8eg.framer-v-xw3p08.framer-1m8r1hf { gap: 24px; width: 810px; }\",\".framer-VJ8eg.framer-v-1ui16ku .framer-1g9s83r, .framer-VJ8eg.framer-v-1ggmfcf .framer-1g9s83r, .framer-VJ8eg.framer-v-xw3p08 .framer-1g9s83r, .framer-VJ8eg.framer-v-lkqbhc .framer-1g9s83r, .framer-VJ8eg.framer-v-r4ig8c .framer-1g9s83r, .framer-VJ8eg.framer-v-1hurccu .framer-1g9s83r { flex-direction: column; }\",\".framer-VJ8eg.framer-v-1ui16ku .framer-1hgrca7 { flex: none; order: 0; width: 100%; }\",\".framer-VJ8eg.framer-v-1ui16ku .framer-j0o7m6 { height: var(--framer-aspect-ratio-supported, 451px); }\",\".framer-VJ8eg.framer-v-1ui16ku .framer-dgjd2b, .framer-VJ8eg.framer-v-1ggmfcf .framer-dgjd2b, .framer-VJ8eg.framer-v-xw3p08 .framer-dgjd2b, .framer-VJ8eg.framer-v-lkqbhc .framer-dgjd2b { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-1ui16ku.framer-1m8r1hf, .framer-VJ8eg.framer-v-1ui16ku .framer-1g9s83r { gap: 0px; } .framer-VJ8eg.framer-v-1ui16ku.framer-1m8r1hf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VJ8eg.framer-v-1ui16ku.framer-1m8r1hf > :first-child, .framer-VJ8eg.framer-v-1ui16ku .framer-1g9s83r > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-1ui16ku.framer-1m8r1hf > :last-child, .framer-VJ8eg.framer-v-1ui16ku .framer-1g9s83r > :last-child { margin-bottom: 0px; } .framer-VJ8eg.framer-v-1ui16ku .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-VJ8eg.framer-v-1ggmfcf.framer-1m8r1hf, .framer-VJ8eg.framer-v-lkqbhc.framer-1m8r1hf { gap: 24px; width: 390px; }\",\".framer-VJ8eg.framer-v-1ggmfcf .framer-1hgrca7 { flex: none; flex-direction: column; order: 0; width: 100%; }\",\".framer-VJ8eg.framer-v-1ggmfcf .framer-j0o7m6 { flex: none; height: var(--framer-aspect-ratio-supported, 208px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-1ggmfcf.framer-1m8r1hf, .framer-VJ8eg.framer-v-1ggmfcf .framer-1g9s83r, .framer-VJ8eg.framer-v-1ggmfcf .framer-1hgrca7 { gap: 0px; } .framer-VJ8eg.framer-v-1ggmfcf.framer-1m8r1hf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VJ8eg.framer-v-1ggmfcf.framer-1m8r1hf > :first-child, .framer-VJ8eg.framer-v-1ggmfcf .framer-1g9s83r > :first-child, .framer-VJ8eg.framer-v-1ggmfcf .framer-1hgrca7 > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-1ggmfcf.framer-1m8r1hf > :last-child, .framer-VJ8eg.framer-v-1ggmfcf .framer-1g9s83r > :last-child, .framer-VJ8eg.framer-v-1ggmfcf .framer-1hgrca7 > :last-child { margin-bottom: 0px; } .framer-VJ8eg.framer-v-1ggmfcf .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VJ8eg.framer-v-1ggmfcf .framer-1hgrca7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-VJ8eg.framer-v-1hwerrj .framer-19plrpe { height: var(--framer-aspect-ratio-supported, 543px); }\",\".framer-VJ8eg.framer-v-xw3p08 .framer-nofynp, .framer-VJ8eg.framer-v-lkqbhc .framer-nofynp { flex: none; order: 1; width: 100%; }\",\".framer-VJ8eg.framer-v-xw3p08 .framer-19plrpe { height: var(--framer-aspect-ratio-supported, 617px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-xw3p08.framer-1m8r1hf, .framer-VJ8eg.framer-v-xw3p08 .framer-1g9s83r { gap: 0px; } .framer-VJ8eg.framer-v-xw3p08.framer-1m8r1hf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VJ8eg.framer-v-xw3p08.framer-1m8r1hf > :first-child, .framer-VJ8eg.framer-v-xw3p08 .framer-1g9s83r > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-xw3p08.framer-1m8r1hf > :last-child, .framer-VJ8eg.framer-v-xw3p08 .framer-1g9s83r > :last-child { margin-bottom: 0px; } .framer-VJ8eg.framer-v-xw3p08 .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-VJ8eg.framer-v-lkqbhc .framer-19plrpe { height: var(--framer-aspect-ratio-supported, 284px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-lkqbhc.framer-1m8r1hf, .framer-VJ8eg.framer-v-lkqbhc .framer-1g9s83r { gap: 0px; } .framer-VJ8eg.framer-v-lkqbhc.framer-1m8r1hf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VJ8eg.framer-v-lkqbhc.framer-1m8r1hf > :first-child, .framer-VJ8eg.framer-v-lkqbhc .framer-1g9s83r > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-lkqbhc.framer-1m8r1hf > :last-child, .framer-VJ8eg.framer-v-lkqbhc .framer-1g9s83r > :last-child { margin-bottom: 0px; } .framer-VJ8eg.framer-v-lkqbhc .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-VJ8eg.framer-v-1qfag0z .framer-1g9s83r { padding: 80px 48px 80px 48px; }\",\".framer-VJ8eg.framer-v-1qfag0z .framer-1hgrca7 { overflow: hidden; padding: 32px 0px 0px 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VJ8eg.framer-v-1qfag0z .framer-j0o7m6 { aspect-ratio: 1.7695364238410596 / 1; height: var(--framer-aspect-ratio-supported, 360px); z-index: 1; }\",\".framer-VJ8eg.framer-v-r4ig8c.framer-1m8r1hf { width: 810px; }\",\".framer-VJ8eg.framer-v-r4ig8c .framer-1hgrca7 { flex: none; overflow: hidden; padding: 32px 0px 0px 32px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VJ8eg.framer-v-r4ig8c .framer-j0o7m6 { aspect-ratio: 1.7695364238410596 / 1; height: var(--framer-aspect-ratio-supported, 422px); z-index: 1; }\",\".framer-VJ8eg.framer-v-r4ig8c .framer-dgjd2b, .framer-VJ8eg.framer-v-1hurccu .framer-dgjd2b { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-r4ig8c .framer-1g9s83r { gap: 0px; } .framer-VJ8eg.framer-v-r4ig8c .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VJ8eg.framer-v-r4ig8c .framer-1g9s83r > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-r4ig8c .framer-1g9s83r > :last-child { margin-bottom: 0px; } }\",\".framer-VJ8eg.framer-v-1hurccu.framer-1m8r1hf { width: 390px; }\",\".framer-VJ8eg.framer-v-1hurccu .framer-1hgrca7 { flex: none; overflow: hidden; padding: 16px 0px 0px 16px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VJ8eg.framer-v-1hurccu .framer-j0o7m6 { aspect-ratio: 1.7695364238410596 / 1; height: var(--framer-aspect-ratio-supported, 194px); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VJ8eg.framer-v-1hurccu .framer-1g9s83r { gap: 0px; } .framer-VJ8eg.framer-v-1hurccu .framer-1g9s83r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-VJ8eg.framer-v-1hurccu .framer-1g9s83r > :first-child { margin-top: 0px; } .framer-VJ8eg.framer-v-1hurccu .framer-1g9s83r > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 583\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CxIBrcNWU\":{\"layout\":[\"fixed\",\"auto\"]},\"MCb_V73lR\":{\"layout\":[\"fixed\",\"auto\"]},\"id3wdgOxG\":{\"layout\":[\"fixed\",\"auto\"]},\"DkbBsUnry\":{\"layout\":[\"fixed\",\"auto\"]},\"btGU3S2KQ\":{\"layout\":[\"fixed\",\"auto\"]},\"pSVHlUArQ\":{\"layout\":[\"fixed\",\"auto\"]},\"arL9aKh_r\":{\"layout\":[\"fixed\",\"auto\"]},\"lxPIZqjl5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWW5Ks6OE7=withCSS(Component,css,\"framer-VJ8eg\");export default FramerWW5Ks6OE7;FramerWW5Ks6OE7.displayName=\"Feature List\";FramerWW5Ks6OE7.defaultProps={height:583,width:1440};addPropertyControls(FramerWW5Ks6OE7,{variant:{options:[\"mKIQhbQHN\",\"CxIBrcNWU\",\"MCb_V73lR\",\"id3wdgOxG\",\"DkbBsUnry\",\"btGU3S2KQ\",\"pSVHlUArQ\",\"arL9aKh_r\",\"lxPIZqjl5\"],optionTitles:[\"Variant 1 | Desktop\",\"Variant 1 | Tablet\",\"Variant 1 | Phone\",\"Variant 2 | Desktop\",\"Variant 2 | Tablet\",\"Variant 2 | Phone\",\"Variant 3 | Desktop\",\"Variant 3 | Tablet\",\"Variant 3 | Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWW5Ks6OE7,[{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\"}]},...AtomsBulletPointFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWW5Ks6OE7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"583\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CxIBrcNWU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MCb_V73lR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"id3wdgOxG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DkbBsUnry\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"btGU3S2KQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pSVHlUArQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"arL9aKh_r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lxPIZqjl5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WW5Ks6OE7.map"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "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", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerEtplGeMKP", "withCSS", "EtplGeMKP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image1", "image2", "image3", "image4", "supportText", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ho0LB6_3v", "gHYGeWml9", "rEyV2sDKT", "P08VJWPUI", "zpaQnWYIP", "QYTA1zxLt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerlkGrgVdeO", "withCSS", "lkGrgVdeO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PPWElementsButtonsFonts", "getFonts", "Y3qzKSxvB_default", "PPWElementsButtonsControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "backgroundImage", "button", "buttonLink", "height", "id", "supportText", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eHPuEghWA", "SS8Sfcui9", "JIZZpNoav", "CHwbtAWhA", "GMkVPnk7e", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerNoHdoawwl", "withCSS", "NoHdoawwl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PPWElementsButtonsFonts", "getFonts", "Y3qzKSxvB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "SVG", "Link", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerPMefyZH9D", "withCSS", "PMefyZH9D_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "author", "authorSupportText", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "showImage", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ZMKo6R0Wc", "G9r_Ocy4A", "Ab5eMqcQI", "LZCQH0Eew", "zo7kJOMIs", "j50hdmKGX", "dq9geQAe0", "O4JkTMgxd", "Rt_eiI4qC", "lr23J3isl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramertUf0qEFtD", "withCSS", "tUf0qEFtD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon1", "icon2", "icon3", "icon4", "icon5", "icon6", "id", "supportText", "title", "titleColor", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "pclNtHKUN", "qJn4DyeCy", "N0vFiosU3", "jrE6DNYEK", "AYe95BAht", "Oz7AXvafg", "Fqb2ABR59", "vm19QH7Y6", "tOPyqMZ2B", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerHd9JAXKiK", "withCSS", "Hd9JAXKiK_default", "addPropertyControls", "ControlType", "addFonts", "AtomsBulletPointFonts", "getFonts", "Hd9JAXKiK_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerWW5Ks6OE7", "withCSS", "WW5Ks6OE7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
