{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/vU2p0CZ6JGlv3w2HSgpB/mzf9V1cScWr8l9g9Kw26/NgZr9Oj_8.js", "ssg:https://framerusercontent.com/modules/slsgCPtvjgsS5fXFfedp/fcXSfHxp0DvZKPxo8p9e/uPFpc5Wzw.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", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import TestimonialCard from\"https://framerusercontent.com/modules/2jON4NzvHe0u0QerBep7/IyaSN49dAWv2mSpdSOxG/ypnyoBq1r.js\";const TestimonialCardFonts=getFonts(TestimonialCard);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"UTaxqisP0\"];const serializationHash=\"framer-UwX3S\";const variantClassNames={UTaxqisP0:\"framer-v-1asfnvd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UTaxqisP0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const SoOWFbO631xi8rmr=activeVariantCallback(async(...args)=>{setVariant(\"UTaxqisP0\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1asfnvd\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UTaxqisP0\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15oqpeo-container\",layoutDependency:layoutDependency,layoutId:\"AwKKSPryw-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:35,overflow:false},gap:24,height:\"100%\",hoverFactor:.2,id:\"AwKKSPryw\",layoutId:\"AwKKSPryw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"400px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-54kvry-container\",\"data-framer-name\":\"Juiced Bets\",layoutDependency:layoutDependency,layoutId:\"oI5d6E3jL-container\",name:\"Juiced Bets\",children:/*#__PURE__*/_jsx(TestimonialCard,{DkiokaeMU:\"Juiced Bets\",H5EiY3_GP:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Bet Hero has done a wonderful job providing us with top of the line discord bots, being able to code them to our likely and deliver these bots in a timely manner.\"'})}),height:\"100%\",id:\"oI5d6E3jL\",layoutId:\"oI5d6E3jL\",name:\"Juiced Bets\",style:{width:\"100%\"},VKd7Vcnns:\"Mitch\",width:\"100%\",WxOOsPC23:addImageAlt({src:\"https://framerusercontent.com/images/Q5QqOPMSSkRBpZf1OSahINxDY.jpeg\",srcSet:\"https://framerusercontent.com/images/Q5QqOPMSSkRBpZf1OSahINxDY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Q5QqOPMSSkRBpZf1OSahINxDY.jpeg 900w\"},\"Testimonial User 3\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"400px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gtd8eg-container\",\"data-framer-name\":\"Break The Odds\",layoutDependency:layoutDependency,layoutId:\"uW6p4yVix-container\",name:\"Break The Odds\",children:/*#__PURE__*/_jsx(TestimonialCard,{DkiokaeMU:\"Break The Odds\",H5EiY3_GP:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Bet Hero has been the best to partner with! The team is really responsive and caters to our specific needs with full customization of our bots. Bet Hero provides access to all the US, Canadian and offshore books along with more sports markets and leagues. They offer a lot more than other services at an affordable price. The bet links make is so easy and efficient to grab +EV lines before they move and helpful for those on the move to simply click the link and place the bets. Our discord community has been profiting more than ever every single day.\"'})}),height:\"100%\",id:\"uW6p4yVix\",layoutId:\"uW6p4yVix\",name:\"Break The Odds\",style:{width:\"100%\"},VKd7Vcnns:\"Mr.BreakTheBoox\",width:\"100%\",WxOOsPC23:addImageAlt({src:\"https://framerusercontent.com/images/XxxR9plaP1kiIodHvPGc6z88sE.jpeg\"},\"Testimonial User 2\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"400px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sytbfh-container\",\"data-framer-name\":\"Yaupicks\",layoutDependency:layoutDependency,layoutId:\"lsO8fxiI9-container\",name:\"Yaupicks\",children:/*#__PURE__*/_jsx(TestimonialCard,{DkiokaeMU:\"YAUPICKS\",H5EiY3_GP:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Bet Hero is genuinely one of the only legit sports betting services out there that can genuinely help your sever. Its made our existing members so much money and brought in many more as well\"'})}),height:\"100%\",id:\"lsO8fxiI9\",layoutId:\"lsO8fxiI9\",name:\"Yaupicks\",style:{width:\"100%\"},VKd7Vcnns:\"cmonshun\",width:\"100%\",WxOOsPC23:addImageAlt({src:\"https://framerusercontent.com/images/ZFs6U1kgk7xHAj2YnRvRCxwrcKU.webp\"},\"Testimonial User 6\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"400px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13neio1-container\",\"data-framer-name\":\"Lowkey\",layoutDependency:layoutDependency,layoutId:\"bYHff_07u-container\",name:\"Lowkey\",children:/*#__PURE__*/_jsx(TestimonialCard,{DkiokaeMU:\"Lowkey\",H5EiY3_GP:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Very good arbitrage bot. Nice staff and always open to adding new things for their clients. Can highly recommend to anyone.\"'})}),height:\"100%\",id:\"bYHff_07u\",layoutId:\"bYHff_07u\",name:\"Lowkey\",SoOWFbO63:SoOWFbO631xi8rmr,style:{height:\"100%\",width:\"100%\"},VKd7Vcnns:\"WhoShotGhost\",width:\"100%\",WxOOsPC23:addImageAlt({src:\"https://framerusercontent.com/images/DVm1X46hK0MLSXSdPm6nzwDh3xI.png\"},\"Testimonial User 6\")})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UwX3S.framer-1jp87e1, .framer-UwX3S .framer-1jp87e1 { display: block; }\",\".framer-UwX3S.framer-1asfnvd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1600px; }\",\".framer-UwX3S .framer-15oqpeo-container { flex: none; height: 552px; position: relative; width: 100%; }\",\".framer-UwX3S .framer-54kvry-container, .framer-UwX3S .framer-gtd8eg-container, .framer-UwX3S .framer-1sytbfh-container { height: auto; position: relative; width: 400px; }\",\".framer-UwX3S .framer-13neio1-container { height: 512px; position: relative; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UwX3S.framer-1asfnvd { gap: 0px; } .framer-UwX3S.framer-1asfnvd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UwX3S.framer-1asfnvd > :first-child { margin-top: 0px; } .framer-UwX3S.framer-1asfnvd > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 552\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNgZr9Oj_8=withCSS(Component,css,\"framer-UwX3S\");export default FramerNgZr9Oj_8;FramerNgZr9Oj_8.displayName=\"Testimonials Ticker B2B\";FramerNgZr9Oj_8.defaultProps={height:552,width:1600};addFonts(FramerNgZr9Oj_8,[{explicitInter:true,fonts:[]},...TestimonialCardFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNgZr9Oj_8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"552\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import TopNav from\"#framer/local/canvasComponent/CjLkdId0w/CjLkdId0w.js\";import FAQTab from\"#framer/local/canvasComponent/mSqDi0k7P/mSqDi0k7P.js\";import TestimonialsTickerB2B from\"#framer/local/canvasComponent/NgZr9Oj_8/NgZr9Oj_8.js\";import FooterSection from\"#framer/local/canvasComponent/udUPwDJNB/udUPwDJNB.js\";import KeyFeaturesCard from\"#framer/local/canvasComponent/Xk_vxvOSu/Xk_vxvOSu.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/Z7IBc6LTO/Z7IBc6LTO.js\";import SpanPill from\"#framer/local/canvasComponent/ZGg9yZD62/ZGg9yZD62.js\";import{withQueryParams}from\"#framer/local/codeFile/pGNz1xS/Examples.js\";import*as sharedStyle from\"#framer/local/css/CWlmmjrhn/CWlmmjrhn.js\";import*as sharedStyle3 from\"#framer/local/css/DqxdBOcsI/DqxdBOcsI.js\";import*as sharedStyle2 from\"#framer/local/css/nUsrBDsb3/nUsrBDsb3.js\";import*as sharedStyle4 from\"#framer/local/css/RcgrVUq_l/RcgrVUq_l.js\";import*as sharedStyle1 from\"#framer/local/css/svB9AhXdi/svB9AhXdi.js\";import metadataProvider from\"#framer/local/webPageMetadata/uPFpc5Wzw/uPFpc5Wzw.js\";const TopNavFonts=getFonts(TopNav);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SpanPillFonts=getFonts(SpanPill);const ButtonFonts=getFonts(Button);const ButtonWithQueryParamsWithMappedReactProps1v1ipky=withMappedReactProps(withQueryParams(Button),ButtonInfo);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const KeyFeaturesCardFonts=getFonts(KeyFeaturesCard);const TestimonialsTickerB2BFonts=getFonts(TestimonialsTickerB2B);const FAQTabFonts=getFonts(FAQTab);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={L9tCG0_NS:\"(min-width: 1920px)\",Lwdt7aV7_:\"(max-width: 809px)\",p8ILV07FI:\"(min-width: 810px) and (max-width: 1295px)\",yl3BhwM8y:\"(min-width: 1296px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-u1EtO\";const variantClassNames={L9tCG0_NS:\"framer-v-fce6g\",Lwdt7aV7_:\"framer-v-dwh0ij\",p8ILV07FI:\"framer-v-16ar2lf\",yl3BhwM8y:\"framer-v-1f61kcr\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1920\":\"L9tCG0_NS\",Desktop:\"yl3BhwM8y\",Phone:\"Lwdt7aV7_\",Tablet:\"p8ILV07FI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"yl3BhwM8y\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"L9tCG0_NS\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"p8ILV07FI\",\"Lwdt7aV7_\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"s0Nltq0lE\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"lTX8F6nPV\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"p8ILV07FI\")return true;return false;};const elementId2=useRouteElementId(\"G2hNLrQyX\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"QGV1j35o7\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Lwdt7aV7_\")return true;return false;};const elementId4=useRouteElementId(\"iyPfWy5sk\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"kSestnv8c\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"lQmnGyDeF\");const ref8=React.useRef(null);const router=useRouter();const elementId7=useRouteElementId(\"OvMn08S2I\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"qdhyy4jKw\");const ref10=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"yl3BhwM8y\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(26, 26, 26)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1f61kcr\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n03yec-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{variant:\"HZ2yhsklD\"},p8ILV07FI:{variant:\"G0SCObYMD\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"g8e7esFG2\",layoutId:\"g8e7esFG2\",style:{width:\"100%\"},variant:\"qDU7EUa69\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3toqu\",\"data-framer-name\":\"Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1e2usxz hidden-1f61kcr hidden-16ar2lf hidden-dwh0ij\",\"data-framer-appear-id\":\"1e2usxz\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-17s2j3r\",\"data-framer-appear-id\":\"17s2j3r\",\"data-framer-name\":\"Heading Content\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{y:(componentViewport?.y||0)+0+0+180+0+25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+180+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s5t4r6-container\",children:/*#__PURE__*/_jsx(SpanPill,{height:\"100%\",i9JpmiMYv:\"For Business\",id:\"DWlbpB_ff\",layoutId:\"DWlbpB_ff\",variant:\"bF67_URz9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3ybpz2\",\"data-styles-preset\":\"CWlmmjrhn\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165))\"},children:\"Supercharge\"}),\" your group with daily \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165))\"},children:\"profitable\"}),\" bets.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3ybpz2\",\"data-styles-preset\":\"CWlmmjrhn\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-83d134ee-1cc9-48b6-b9bc-33bf22f6aea0, rgb(230, 230, 230))\"},children:\"Supercharge\"}),\" your group \",/*#__PURE__*/_jsx(\"br\",{}),\"with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, rgb(31, 244, 165))\"},children:\"profitable\"}),\" bets.\"]})}),className:\"framer-17zueiq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wstcjg\",\"data-styles-preset\":\"nUsrBDsb3\",children:[\"Integrate our Discord bot and provide your members \",/*#__PURE__*/_jsx(\"br\",{}),\"unlimited +EV and arbitrage bets. \",/*#__PURE__*/_jsx(\"br\",{}),\"Non-stop. 24/7.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1y66lyh\",\"data-styles-preset\":\"svB9AhXdi\",children:[\"Integrate our Discord bot and provide your members \",/*#__PURE__*/_jsx(\"br\",{}),\"unlimited +EV and arbitrage bets. \",/*#__PURE__*/_jsx(\"br\",{}),\"Non-stop. 24/7.\"]})}),className:\"framer-160t893\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ls2dyv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{width:\"240px\",y:(componentViewport?.y||0)+0+0+180+0+25+217.1+0+0},p8ILV07FI:{width:\"221px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"183px\",y:(componentViewport?.y||0)+0+0+180+0+0+223.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0c67s-container\",children:/*#__PURE__*/_jsx(ButtonWithQueryParamsWithMappedReactProps1v1ipky,{height:\"100%\",id:\"T_yHJw4e2\",layoutId:\"T_yHJw4e2\",pAzw4efBs:\"https://discord.com/invite/t6ZdDmr9z6\",style:{height:\"100%\",width:\"100%\"},TYqbnkqDS:\"Get Started\",variant:\"l4QG0RxZu\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-qnaw4t hidden-16ar2lf hidden-dwh0ij\",\"data-framer-appear-id\":\"qnaw4t\",\"data-framer-name\":\"Desktop-Screen\",id:elementId,initial:animation2,optimized:true,ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-qcov3b\",\"data-framer-appear-id\":\"qcov3b\",\"data-framer-name\":\"Desktop-Screen\",id:elementId1,initial:animation2,optimized:true,ref:ref3,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pxo3z-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"OEo5_yLzd\",isMixedBorderRadius:false,isRed:true,layoutId:\"OEo5_yLzd\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://youtu.be/TwBaJOlazMw\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-l7yla2 hidden-1f61kcr hidden-dwh0ij hidden-fce6g\",\"data-framer-appear-id\":\"l7yla2\",\"data-framer-name\":\"Desktop-Screen\",id:elementId2,initial:animation2,optimized:true,ref:ref4,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-1pbd1xj\",\"data-framer-appear-id\":\"1pbd1xj\",\"data-framer-name\":\"Desktop-Screen\",id:elementId3,initial:animation2,optimized:true,ref:ref5,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utlpp1-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"XjMi6Fgen\",isMixedBorderRadius:false,isRed:true,layoutId:\"XjMi6Fgen\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://youtu.be/TwBaJOlazMw\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-16akp29 hidden-1f61kcr hidden-16ar2lf hidden-fce6g\",\"data-framer-appear-id\":\"16akp29\",\"data-framer-name\":\"Desktop-Screen\",id:elementId4,initial:animation2,optimized:true,ref:ref6,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-a00xlx\",\"data-framer-appear-id\":\"a00xlx\",\"data-framer-name\":\"Desktop-Screen\",id:elementId5,initial:animation2,optimized:true,ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t8oqlh-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"DNkFdazzN\",isMixedBorderRadius:false,isRed:true,layoutId:\"DNkFdazzN\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://youtu.be/TwBaJOlazMw\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6uxw7\",\"data-framer-name\":\"Key Features Section\",id:elementId6,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wg4omk\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c1a8g5\",\"data-framer-name\":\"Heading Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+1193.6+25+0+0+0+0+0},Lwdt7aV7_:{y:(componentViewport?.y||0)+0+746.1+41+0+0+0+0+0},p8ILV07FI:{y:(componentViewport?.y||0)+0+879.6+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+1128.6+41+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ni20ru-container\",children:/*#__PURE__*/_jsx(SpanPill,{height:\"100%\",i9JpmiMYv:\"Features\",id:\"czxvGXiZc\",layoutId:\"czxvGXiZc\",variant:\"bF67_URz9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qwtzg3\",\"data-styles-preset\":\"DqxdBOcsI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Better bets, happier members\"})}),className:\"framer-1tvy2oc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-by1ft\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+1193.6+25+158.6+0+0},Lwdt7aV7_:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+746.1+41+158.6+0+0},p8ILV07FI:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+879.6+50+158.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:282,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1128.6+41+158.6+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m42yqt-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{k47m_8s1W:resolvedLinks[3]},Lwdt7aV7_:{k47m_8s1W:resolvedLinks[2],variant:\"ZwUHCgnvL\"},p8ILV07FI:{k47m_8s1W:resolvedLinks[1],variant:\"GXnahNVwN\"}},children:/*#__PURE__*/_jsx(KeyFeaturesCard,{height:\"100%\",id:\"bxR7vhjeN\",IXZi8fUUk:\"Positive Value Bets (+EV)\",k47m_8s1W:resolvedLinks[0],layoutId:\"bxR7vhjeN\",riJOEoQ8A:\"ChartLineUp\",style:{width:\"100%\"},variant:\"YcFHuH7DZ\",width:\"100%\",xlaWDV4jw:\"The most profitable bets available. Instantly delivered to your group.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KT3w4XnVc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+1193.6+25+158.6+0+0},Lwdt7aV7_:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+746.1+41+158.6+0+306},p8ILV07FI:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+879.6+50+158.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:282,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1128.6+41+158.6+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xo7ios-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{k47m_8s1W:resolvedLinks1[3]},Lwdt7aV7_:{k47m_8s1W:resolvedLinks1[2],variant:\"ZwUHCgnvL\"},p8ILV07FI:{k47m_8s1W:resolvedLinks1[1],variant:\"GXnahNVwN\"}},children:/*#__PURE__*/_jsx(KeyFeaturesCard,{height:\"100%\",id:\"p93nS2CUx\",IXZi8fUUk:\"Arbitrage Bets\",k47m_8s1W:resolvedLinks1[0],layoutId:\"p93nS2CUx\",riJOEoQ8A:\"Lock\",style:{width:\"100%\"},variant:\"YcFHuH7DZ\",width:\"100%\",xlaWDV4jw:\"Guarantee a profit for your members with risk-free bets.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YIUwajWtL\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":YIUwajWtL\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":YIUwajWtL\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":YIUwajWtL\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+1193.6+25+158.6+0+306},Lwdt7aV7_:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+746.1+41+158.6+0+612},p8ILV07FI:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+879.6+50+158.6+0+306}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:282,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1128.6+41+158.6+0+306,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ast7k5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{k47m_8s1W:resolvedLinks2[3]},Lwdt7aV7_:{k47m_8s1W:resolvedLinks2[2],variant:\"ZwUHCgnvL\"},p8ILV07FI:{k47m_8s1W:resolvedLinks2[1],variant:\"GXnahNVwN\"}},children:/*#__PURE__*/_jsx(KeyFeaturesCard,{height:\"100%\",id:\"UFeXie6YV\",IXZi8fUUk:\"Fully Customizable\",k47m_8s1W:resolvedLinks2[0],layoutId:\"UFeXie6YV\",riJOEoQ8A:\"Star\",style:{width:\"100%\"},variant:\"YcFHuH7DZ\",width:\"100%\",xlaWDV4jw:\"Customize the software to your needs. Use your own layouts and devigging methods.\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":McPQa_5yX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":McPQa_5yX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":McPQa_5yX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":McPQa_5yX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+1193.6+25+158.6+0+306},Lwdt7aV7_:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+746.1+41+158.6+0+918},p8ILV07FI:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+879.6+50+158.6+0+306}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:282,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1128.6+41+158.6+0+306,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dty27-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{k47m_8s1W:resolvedLinks3[3]},Lwdt7aV7_:{k47m_8s1W:resolvedLinks3[2],variant:\"ZwUHCgnvL\"},p8ILV07FI:{k47m_8s1W:resolvedLinks3[1],variant:\"GXnahNVwN\"}},children:/*#__PURE__*/_jsx(KeyFeaturesCard,{height:\"100%\",id:\"i29XyXXPc\",IXZi8fUUk:\"1-on-1 Support\",k47m_8s1W:resolvedLinks3[0],layoutId:\"i29XyXXPc\",riJOEoQ8A:\"ChalkboardTeacher\",style:{width:\"100%\"},variant:\"YcFHuH7DZ\",width:\"100%\",xlaWDV4jw:\"Work side by side with our engineering team to cover your all group's needs.\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-121t3xb\",\"data-framer-name\":\"Testimonials Section\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t81lyf\",\"data-framer-name\":\"Heading Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i56aba\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+2014.1999999999998+40+0+0+0+0+0},Lwdt7aV7_:{y:(componentViewport?.y||0)+0+2223.7+40+0+0+0+0+0},p8ILV07FI:{y:(componentViewport?.y||0)+0+1725.2+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+1965.1999999999998+40+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ijsngp-container\",children:/*#__PURE__*/_jsx(SpanPill,{height:\"100%\",i9JpmiMYv:\"Testimonials\",id:\"f0NPWwUG0\",layoutId:\"f0NPWwUG0\",variant:\"bF67_URz9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qwtzg3\",\"data-styles-preset\":\"DqxdBOcsI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by the best groups\"})}),className:\"framer-134tq37\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+2014.1999999999998+40+0+0+158.6},Lwdt7aV7_:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+2223.7+40+0+0+158.6},p8ILV07FI:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+1725.2+40+0+0+158.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+1965.1999999999998+40+0+0+158.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9nnccu-container\",children:/*#__PURE__*/_jsx(TestimonialsTickerB2B,{height:\"100%\",id:\"aZKydRxeR\",layoutId:\"aZKydRxeR\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5keaqx\",\"data-framer-name\":\"FAQ Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8esrq\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eggmsn\",\"data-framer-name\":\"Heading Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+2860.7999999999997+60+0+0+0+0+0},Lwdt7aV7_:{y:(componentViewport?.y||0)+0+3033.2999999999997+50+0+0+0+0+0},p8ILV07FI:{y:(componentViewport?.y||0)+0+2505.8+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+2811.7999999999997+60+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d2lhtn-container\",children:/*#__PURE__*/_jsx(SpanPill,{height:\"100%\",i9JpmiMYv:\"FAQ\",id:\"LjTYpvkfP\",layoutId:\"LjTYpvkfP\",variant:\"bF67_URz9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qwtzg3\",\"data-styles-preset\":\"DqxdBOcsI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Common Queries\"})}),className:\"framer-30wvlj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9d8fxp\",\"data-styles-preset\":\"RcgrVUq_l\",children:\"Get quick answers to your questions about Bet Hero.\"})}),className:\"framer-8dpocf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsnoyg\",\"data-framer-name\":\"FAQ Group\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+2860.7999999999997+60+290.59999999999997+0+0},Lwdt7aV7_:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+0+3033.2999999999997+50+290.59999999999997+0+0},p8ILV07FI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+0+2505.8+60+290.59999999999997+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 800px)`,y:(componentViewport?.y||0)+0+2811.7999999999997+60+290.59999999999997+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gdcjcr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{variant:\"KjKfWhlcF\"},p8ILV07FI:{variant:\"hrkvcBpr2\"}},children:/*#__PURE__*/_jsx(FAQTab,{height:\"100%\",i3_2fIBDZ:\"Our pricing is flexible. We power small groups that are just getting started as well as large well-established communities. Fill out the form to get the best plan for your needs.\",id:\"CHSPOhK2j\",layoutId:\"CHSPOhK2j\",style:{width:\"100%\"},variant:\"Lzac6CV6_\",vSxf8W5cU:\"How much does this cost?\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+2860.7999999999997+60+290.59999999999997+0+122},Lwdt7aV7_:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+0+3033.2999999999997+50+290.59999999999997+0+122},p8ILV07FI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 800px)`,y:(componentViewport?.y||0)+0+2505.8+60+290.59999999999997+0+122}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 800px)`,y:(componentViewport?.y||0)+0+2811.7999999999997+60+290.59999999999997+0+122,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yi9ave-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{variant:\"KjKfWhlcF\"},p8ILV07FI:{variant:\"hrkvcBpr2\"}},children:/*#__PURE__*/_jsx(FAQTab,{height:\"100%\",i3_2fIBDZ:\"You can find out the full list of books on when signing up on our dashboard.\",id:\"yPJdxATDt\",layoutId:\"yPJdxATDt\",style:{width:\"100%\"},variant:\"Lzac6CV6_\",vSxf8W5cU:\"What sportsbooks do you support?\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L9tCG0_NS:{y:(componentViewport?.y||0)+0+3551.3999999999996},Lwdt7aV7_:{y:(componentViewport?.y||0)+0+3706.8999999999996},p8ILV07FI:{y:(componentViewport?.y||0)+0+3196.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3502.3999999999996,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j2cnba-container\",id:elementId8,ref:ref10,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lwdt7aV7_:{variant:\"JUCbyehji\"},p8ILV07FI:{variant:\"Ri5chqdfm\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"qdhyy4jKw\",layoutId:\"qdhyy4jKw\",style:{width:\"100%\"},variant:\"aq_Iiypwd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u1EtO.framer-1uzlr21, .framer-u1EtO .framer-1uzlr21 { display: block; }\",\".framer-u1EtO.framer-1f61kcr { align-content: center; align-items: center; background-color: var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, #1a1a1a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1296px; }\",\".framer-u1EtO .framer-n03yec-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-u1EtO .framer-a3toqu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 180px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-1e2usxz { aspect-ratio: 1 / 1; background: radial-gradient(50% 50% at 50% 50%, #10a06d 0%, rgba(31, 244, 165, 0.2) 59.75949367088605%, rgba(13, 13, 13, 0) 100%); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; flex: none; height: var(--framer-aspect-ratio-supported, 753px); left: 283px; overflow: hidden; position: absolute; right: 260px; top: 124px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-u1EtO .framer-17s2j3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-u1EtO .framer-s5t4r6-container, .framer-u1EtO .framer-1ni20ru-container, .framer-u1EtO .framer-1ijsngp-container, .framer-u1EtO .framer-1d2lhtn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-u1EtO .framer-17zueiq, .framer-u1EtO .framer-1tvy2oc, .framer-u1EtO .framer-134tq37, .framer-u1EtO .framer-30wvlj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-u1EtO .framer-160t893 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 827px; word-break: break-word; word-wrap: break-word; }\",\".framer-u1EtO .framer-1ls2dyv { 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: 123px; }\",\".framer-u1EtO .framer-q0c67s-container { flex: none; height: 48px; position: relative; width: 183px; }\",\".framer-u1EtO .framer-qnaw4t { align-content: center; align-items: center; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 677px; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 1189px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-u1EtO .framer-qcov3b { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, #1ff4a5) /* {\"name\":\"Green 2\"} */ 0%, var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13)) /* {\"name\":\"Dark/5\"} */ 100%); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 652px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 1141px; will-change: var(--framer-will-change-override, transform); z-index: 1; }',\".framer-u1EtO .framer-pxo3z-container { flex: none; height: 636px; position: relative; width: 1131px; }\",\".framer-u1EtO .framer-l7yla2 { align-content: center; align-items: center; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 428px; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 994px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-u1EtO .framer-1pbd1xj { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, #1ff4a5) /* {\"name\":\"Green 2\"} */ 0%, var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13)) /* {\"name\":\"Dark/5\"} */ 100%); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 414px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 732px; will-change: var(--framer-will-change-override, transform); z-index: 1; }',\".framer-u1EtO .framer-1utlpp1-container { flex: none; height: 403px; position: relative; width: 722px; }\",\".framer-u1EtO .framer-16akp29 { align-content: center; align-items: center; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 222px; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 359px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-u1EtO .framer-a00xlx { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-c37c6141-79f9-4a09-a9ce-37be3a18d52c, #1ff4a5) /* {\"name\":\"Green 2\"} */ 0%, var(--token-3c0773e2-e4f9-4bf4-8185-514b67d01490, rgb(13, 13, 13)) /* {\"name\":\"Dark/5\"} */ 100%); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 204px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 358px; will-change: var(--framer-will-change-override, transform); z-index: 1; }',\".framer-u1EtO .framer-1t8oqlh-container { flex: none; height: 196px; position: relative; width: 351px; }\",\".framer-u1EtO .framer-6uxw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 41px 48px 49px 48px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-1wg4omk, .framer-u1EtO .framer-1p8esrq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-1c1a8g5, .framer-u1EtO .framer-eggmsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-u1EtO .framer-by1ft { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-1m42yqt-container, .framer-u1EtO .framer-1xo7ios-container, .framer-u1EtO .framer-1ast7k5-container, .framer-u1EtO .framer-1dty27-container { align-self: center; flex: none; height: auto; justify-self: center; position: relative; width: 100%; }\",\".framer-u1EtO .framer-121t3xb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-t81lyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-u1EtO .framer-i56aba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-9nnccu-container, .framer-u1EtO .framer-1gdcjcr-container, .framer-u1EtO .framer-yi9ave-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-u1EtO .framer-5keaqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-8dpocf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-u1EtO .framer-tsnoyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u1EtO .framer-j2cnba-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1EtO.framer-1f61kcr, .framer-u1EtO .framer-a3toqu, .framer-u1EtO .framer-17s2j3r, .framer-u1EtO .framer-1ls2dyv, .framer-u1EtO .framer-qnaw4t, .framer-u1EtO .framer-qcov3b, .framer-u1EtO .framer-l7yla2, .framer-u1EtO .framer-1pbd1xj, .framer-u1EtO .framer-16akp29, .framer-u1EtO .framer-a00xlx, .framer-u1EtO .framer-6uxw7, .framer-u1EtO .framer-1wg4omk, .framer-u1EtO .framer-1c1a8g5, .framer-u1EtO .framer-121t3xb, .framer-u1EtO .framer-t81lyf, .framer-u1EtO .framer-i56aba, .framer-u1EtO .framer-5keaqx, .framer-u1EtO .framer-1p8esrq, .framer-u1EtO .framer-eggmsn, .framer-u1EtO .framer-tsnoyg { gap: 0px; } .framer-u1EtO.framer-1f61kcr > *, .framer-u1EtO .framer-a3toqu > *, .framer-u1EtO .framer-tsnoyg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-u1EtO.framer-1f61kcr > :first-child, .framer-u1EtO .framer-a3toqu > :first-child, .framer-u1EtO .framer-17s2j3r > :first-child, .framer-u1EtO .framer-6uxw7 > :first-child, .framer-u1EtO .framer-1wg4omk > :first-child, .framer-u1EtO .framer-1c1a8g5 > :first-child, .framer-u1EtO .framer-121t3xb > :first-child, .framer-u1EtO .framer-t81lyf > :first-child, .framer-u1EtO .framer-i56aba > :first-child, .framer-u1EtO .framer-5keaqx > :first-child, .framer-u1EtO .framer-1p8esrq > :first-child, .framer-u1EtO .framer-eggmsn > :first-child, .framer-u1EtO .framer-tsnoyg > :first-child { margin-top: 0px; } .framer-u1EtO.framer-1f61kcr > :last-child, .framer-u1EtO .framer-a3toqu > :last-child, .framer-u1EtO .framer-17s2j3r > :last-child, .framer-u1EtO .framer-6uxw7 > :last-child, .framer-u1EtO .framer-1wg4omk > :last-child, .framer-u1EtO .framer-1c1a8g5 > :last-child, .framer-u1EtO .framer-121t3xb > :last-child, .framer-u1EtO .framer-t81lyf > :last-child, .framer-u1EtO .framer-i56aba > :last-child, .framer-u1EtO .framer-5keaqx > :last-child, .framer-u1EtO .framer-1p8esrq > :last-child, .framer-u1EtO .framer-eggmsn > :last-child, .framer-u1EtO .framer-tsnoyg > :last-child { margin-bottom: 0px; } .framer-u1EtO .framer-17s2j3r > *, .framer-u1EtO .framer-1c1a8g5 > *, .framer-u1EtO .framer-i56aba > *, .framer-u1EtO .framer-eggmsn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-u1EtO .framer-1ls2dyv > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-u1EtO .framer-1ls2dyv > :first-child, .framer-u1EtO .framer-qnaw4t > :first-child, .framer-u1EtO .framer-qcov3b > :first-child, .framer-u1EtO .framer-l7yla2 > :first-child, .framer-u1EtO .framer-1pbd1xj > :first-child, .framer-u1EtO .framer-16akp29 > :first-child, .framer-u1EtO .framer-a00xlx > :first-child { margin-left: 0px; } .framer-u1EtO .framer-1ls2dyv > :last-child, .framer-u1EtO .framer-qnaw4t > :last-child, .framer-u1EtO .framer-qcov3b > :last-child, .framer-u1EtO .framer-l7yla2 > :last-child, .framer-u1EtO .framer-1pbd1xj > :last-child, .framer-u1EtO .framer-16akp29 > :last-child, .framer-u1EtO .framer-a00xlx > :last-child { margin-right: 0px; } .framer-u1EtO .framer-qnaw4t > *, .framer-u1EtO .framer-l7yla2 > *, .framer-u1EtO .framer-16akp29 > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-u1EtO .framer-qcov3b > *, .framer-u1EtO .framer-1pbd1xj > *, .framer-u1EtO .framer-a00xlx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-u1EtO .framer-6uxw7 > *, .framer-u1EtO .framer-1wg4omk > *, .framer-u1EtO .framer-121t3xb > *, .framer-u1EtO .framer-t81lyf > *, .framer-u1EtO .framer-5keaqx > *, .framer-u1EtO .framer-1p8esrq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1295px) { .framer-u1EtO.framer-1f61kcr { width: 810px; } .framer-u1EtO .framer-a3toqu { padding: 180px 24px 0px 24px; } .framer-u1EtO .framer-17s2j3r { order: 1; } .framer-u1EtO .framer-160t893 { width: 753px; } .framer-u1EtO .framer-q0c67s-container { width: 221px; } .framer-u1EtO .framer-l7yla2 { order: 4; } .framer-u1EtO .framer-1utlpp1-container { order: 0; } .framer-u1EtO .framer-6uxw7 { padding: 50px 24px 49px 24px; } .framer-u1EtO .framer-121t3xb { padding: 40px 24px 30px 24px; } .framer-u1EtO .framer-5keaqx { padding: 60px 24px 96px 24px; }}\",\"@media (max-width: 809px) { .framer-u1EtO.framer-1f61kcr { gap: 29px; width: 390px; } .framer-u1EtO .framer-a3toqu { padding: 180px 24px 0px 24px; } .framer-u1EtO .framer-17s2j3r { order: 1; padding: 25px 0px 25px 0px; } .framer-u1EtO .framer-17zueiq, .framer-u1EtO .framer-1tvy2oc, .framer-u1EtO .framer-134tq37, .framer-u1EtO .framer-30wvlj { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-u1EtO .framer-160t893, .framer-u1EtO .framer-8dpocf { width: 100%; } .framer-u1EtO .framer-1ls2dyv { flex-direction: column; } .framer-u1EtO .framer-q0c67s-container { width: 240px; } .framer-u1EtO .framer-16akp29 { order: 5; } .framer-u1EtO .framer-6uxw7 { padding: 41px 24px 49px 24px; } .framer-u1EtO .framer-by1ft { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-u1EtO .framer-121t3xb { padding: 40px 24px 30px 24px; } .framer-u1EtO .framer-5keaqx { padding: 50px 24px 60px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-u1EtO.framer-1f61kcr, .framer-u1EtO .framer-1ls2dyv { gap: 0px; } .framer-u1EtO.framer-1f61kcr > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-u1EtO.framer-1f61kcr > :first-child, .framer-u1EtO .framer-1ls2dyv > :first-child { margin-top: 0px; } .framer-u1EtO.framer-1f61kcr > :last-child, .framer-u1EtO .framer-1ls2dyv > :last-child { margin-bottom: 0px; } .framer-u1EtO .framer-1ls2dyv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (min-width: 1920px) { .framer-u1EtO.framer-1f61kcr { width: 1920px; } .framer-u1EtO .framer-1e2usxz { height: var(--framer-aspect-ratio-supported, 800px); left: 522px; order: 0; right: 598px; top: 160px; } .framer-u1EtO .framer-17s2j3r { order: 1; } .framer-u1EtO .framer-qnaw4t { height: 742px; order: 2; padding: 0px; width: 1575px; } .framer-u1EtO .framer-6uxw7 { padding: 25px 48px 49px 48px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4093.5\n * @framerIntrinsicWidth 1296\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p8ILV07FI\":{\"layout\":[\"fixed\",\"auto\"]},\"Lwdt7aV7_\":{\"layout\":[\"fixed\",\"auto\"]},\"L9tCG0_NS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"s0Nltq0lE\":{\"pattern\":\":s0Nltq0lE\",\"name\":\"desktop-screen\"},\"lTX8F6nPV\":{\"pattern\":\":lTX8F6nPV\",\"name\":\"desktop-screen\"},\"G2hNLrQyX\":{\"pattern\":\":G2hNLrQyX\",\"name\":\"desktop-screen\"},\"QGV1j35o7\":{\"pattern\":\":QGV1j35o7\",\"name\":\"desktop-screen\"},\"iyPfWy5sk\":{\"pattern\":\":iyPfWy5sk\",\"name\":\"desktop-screen\"},\"kSestnv8c\":{\"pattern\":\":kSestnv8c\",\"name\":\"desktop-screen\"},\"lQmnGyDeF\":{\"pattern\":\":lQmnGyDeF\",\"name\":\"features\"},\"OvMn08S2I\":{\"pattern\":\":OvMn08S2I\",\"name\":\"testimonials\"},\"qdhyy4jKw\":{\"pattern\":\":qdhyy4jKw\",\"name\":\"footer-section\"}}\n * @framerResponsiveScreen\n */const FrameruPFpc5Wzw=withCSS(Component,css,\"framer-u1EtO\");export default FrameruPFpc5Wzw;FrameruPFpc5Wzw.displayName=\"Home\";FrameruPFpc5Wzw.defaultProps={height:4093.5,width:1296};addFonts(FrameruPFpc5Wzw,[{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\"}]},...TopNavFonts,...SpanPillFonts,...ButtonFonts,...YouTubeFonts,...KeyFeaturesCardFonts,...TestimonialsTickerB2BFonts,...FAQTabFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruPFpc5Wzw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"s0Nltq0lE\\\":{\\\"pattern\\\":\\\":s0Nltq0lE\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"lTX8F6nPV\\\":{\\\"pattern\\\":\\\":lTX8F6nPV\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"G2hNLrQyX\\\":{\\\"pattern\\\":\\\":G2hNLrQyX\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"QGV1j35o7\\\":{\\\"pattern\\\":\\\":QGV1j35o7\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"iyPfWy5sk\\\":{\\\"pattern\\\":\\\":iyPfWy5sk\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"kSestnv8c\\\":{\\\"pattern\\\":\\\":kSestnv8c\\\",\\\"name\\\":\\\"desktop-screen\\\"},\\\"lQmnGyDeF\\\":{\\\"pattern\\\":\\\":lQmnGyDeF\\\",\\\"name\\\":\\\"features\\\"},\\\"OvMn08S2I\\\":{\\\"pattern\\\":\\\":OvMn08S2I\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"qdhyy4jKw\\\":{\\\"pattern\\\":\\\":qdhyy4jKw\\\",\\\"name\\\":\\\"footer-section\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1296\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p8ILV07FI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lwdt7aV7_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L9tCG0_NS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4093.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "TestimonialCardFonts", "getFonts", "ypnyoBq1r_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "SoOWFbO631xi8rmr", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "ypnyoBq1r_default", "css", "FramerNgZr9Oj_8", "withCSS", "NgZr9Oj_8_default", "addFonts", "TestimonialCardFonts", "TickerFonts", "TopNavFonts", "getFonts", "CjLkdId0w_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SpanPillFonts", "ZGg9yZD62_default", "ButtonFonts", "Z7IBc6LTO_default", "ButtonWithQueryParamsWithMappedReactProps1v1ipky", "withMappedReactProps", "withQueryParams", "Z7IBc6LTO_exports", "YouTubeFonts", "Youtube", "MotionDivWithFXWithOptimizedAppearEffect", "MotionDivWithFX", "KeyFeaturesCardFonts", "Xk_vxvOSu_default", "TestimonialsTickerB2BFonts", "NgZr9Oj_8_default", "FAQTabFonts", "mSqDi0k7P_default", "FooterSectionFonts", "udUPwDJNB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "transition3", "transition4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed2", "elementId2", "ref4", "elementId3", "ref5", "isDisplayed3", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "router", "useRouter", "elementId7", "ref9", "elementId8", "ref10", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameruPFpc5Wzw", "withCSS", "uPFpc5Wzw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
