{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/fVugLJfixYBYnOZuZvf5/Qf4Ulo9f8uhfIXvwy5Tg/PTP9Gvrf7.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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import ButtonStroke from\"#framer/local/canvasComponent/JKCbhNhnh/JKCbhNhnh.js\";import Navbar from\"#framer/local/canvasComponent/PLTi8pu0T/PLTi8pu0T.js\";import Footer from\"#framer/local/canvasComponent/ZPzL4zqtl/ZPzL4zqtl.js\";import*as sharedStyle1 from\"#framer/local/css/kf7bwnSqK/kf7bwnSqK.js\";import*as sharedStyle from\"#framer/local/css/WGf0PE3EJ/WGf0PE3EJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/PTP9Gvrf7/PTP9Gvrf7.js\";const NavbarFonts=getFonts(Navbar);const YouTubeFonts=getFonts(YouTube);const ButtonStrokeFonts=getFonts(ButtonStroke);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const cycleOrder=[\"MiHW6ly6D\",\"uOkjV5Lmh\",\"n92MC2SJZ\",\"GhKp0gPLK\"];const breakpoints={GhKp0gPLK:\"(max-width: 767px)\",MiHW6ly6D:\"(min-width: 1536px)\",n92MC2SJZ:\"(min-width: 768px) and (max-width: 1199px)\",uOkjV5Lmh:\"(min-width: 1200px) and (max-width: 1535px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-eweCq\";const variantClassNames={GhKp0gPLK:\"framer-v-1nxcg87\",MiHW6ly6D:\"framer-v-eo4waz\",n92MC2SJZ:\"framer-v-n536m4\",uOkjV5Lmh:\"framer-v-1iw56zo\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const transition1={delay:.1,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const transition2={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"MiHW6ly6D\",Laptop:\"uOkjV5Lmh\",Mobile:\"GhKp0gPLK\",Tablet:\"n92MC2SJZ\"};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:\"MiHW6ly6D\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-eweCq`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-eweCq`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const id=useRouteElementId(\"dCLPyMjts\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MiHW6ly6D\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eo4waz\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16d8dvd\",\"data-framer-name\":\"hero-section\",name:\"hero-section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9q4rzu\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GhKp0gPLK:{width:\"calc(100vw - 20px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 100px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f4rssa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GhKp0gPLK:{variant:\"bwkUKkUrv\"},n92MC2SJZ:{variant:\"bwkUKkUrv\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"SsQIOYSPG\",layoutId:\"SsQIOYSPG\",style:{width:\"100%\"},variant:\"OVL7Azpt7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtrwlf\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvjuon\",\"data-framer-name\":\"Hero-content\",name:\"Hero-content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qv877p\",\"data-framer-name\":\"content\",name:\"content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gjlt7v\",\"data-framer-name\":\"category+txt\",name:\"category+txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"The secret to break through a plateau, overcome obstacles & achieve goals that feel out of reach within 24h.\"})}),className:\"framer-1juxzqr\",\"data-framer-name\":\"Trusted by Professionals\",fonts:[\"Inter\"],name:\"Trusted by Professionals\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ari11j-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"eapUC4iXz\",isMixedBorderRadius:false,isRed:true,layoutId:\"eapUC4iXz\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=hfNOXhDpXOk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LAoMhwSfP\"},implicitPathVariables:undefined},{href:{webPageId:\"LAoMhwSfP\"},implicitPathVariables:undefined},{href:{webPageId:\"LAoMhwSfP\"},implicitPathVariables:undefined},{href:{webPageId:\"LAoMhwSfP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ix24pu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GhKp0gPLK:{Rb5OgUSWE:14,tYYpH2ueZ:resolvedLinks[3]},n92MC2SJZ:{tYYpH2ueZ:resolvedLinks[2]},uOkjV5Lmh:{tYYpH2ueZ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonStroke,{BrUi5h7tU:\"rgb(255, 255, 255)\",height:\"100%\",hF4OstQAV:false,id:\"HpCwF3XQX\",layoutId:\"HpCwF3XQX\",ofLqZhEO8:\"Claim Your Free Strategy Call\",PPM8eZNfR:\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17))\",Rb5OgUSWE:28,tYYpH2ueZ:resolvedLinks[0],variant:\"ooDs0cGDm\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asp1e4\",\"data-framer-name\":\"Testemonials\",name:\"Testemonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-534oye\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsistd\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c3t136\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mebw9\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-se92vp\",\"data-framer-name\":\"txt\",name:\"txt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GhKp0gPLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Testimonials\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",children:\"Testimonials\"})}),className:\"framer-nx24kh\",\"data-framer-name\":\"Trusted by Professionals\",fonts:[\"Inter\"],name:\"Trusted by Professionals\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:232,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xvg4zi\",\"data-framer-name\":\"Testimonials\",id:id,name:\"Testimonials\",ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8xb73x\",\"data-framer-name\":\"Christiana M.\",name:\"Christiana M.\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v6jt58\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zcg46p\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"I have been seeing a TREMENDOUS change on my life everyday. I launched my program online, completed three lives and a PAID workshop. Tony, thank you. To the community, thank you ALL for all the insights, discussion and information that you guys have been sharing and contributing to our growth!!\"})}),className:\"framer-2ds0q3\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1674\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-co72a\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QYDymjkQtjtkCpu4c9XbLjwbY.png\"},className:\"framer-qfzuoy\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:242,pixelWidth:242,src:\"https://framerusercontent.com/images/pMq7sf5vy7REewve2WjhFSMHs.png\"},className:\"framer-172ltke\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lz3tb\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"Christiana M.\"})}),className:\"framer-1rvpder\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmsfmr\",\"data-framer-name\":\"Derek S.\",name:\"Derek S.\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6xbdik\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lv2sc2\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"I'm grateful to be here in Tony Robbins Inner Circle and capturing the momentum of this tribe as I work relentlessly on building multiple businesses. Let\u2019s grow together!\"})}),className:\"framer-5t858i\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wa07q7\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16yhg6q\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HtEpJwK1tPhkm2f2xcFe1u4O9w.png\"},className:\"framer-1vmiuf2\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1144npv\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bt8cs2\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"Derek S.\"})}),className:\"framer-h8qqjy\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kmi6nk\",\"data-framer-name\":\"Rebecca K.\",name:\"Rebecca K.\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-150yl2n\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wctdnm\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"Being a part of Tony Robbins Inner Circle means that I am absolutely committed, all-in, for training my mind, body and soul daily. It means I have a peer group that has high expectations of me and I of them and we support each other. It means the opportunity of a lifetime and a total blessing.\"})}),className:\"framer-1vxpirq\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qhng7\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zjk9g0\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QYDymjkQtjtkCpu4c9XbLjwbY.png\"},className:\"framer-1d19bna\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6g4ls\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vt3wrv\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Rebecca\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"K.\"})]})}),className:\"framer-j00a8m\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-black\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rc6mai\",\"data-framer-name\":\"Conor McGregor\",name:\"Conor McGregor\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-38im6u\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtvu1w\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"Tony is top\u2026 and it's not just about words. There's an action and a structure to what he's saying. He's shaping up to be a life coach of mine, and I'm very happy with that.\\\"\"})}),className:\"framer-miafax\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egod4z\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82sz91\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",pixelHeight:478,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"56px\",src:\"https://framerusercontent.com/images/e3mOZwn2hf9AVE5rbB2Pv1qb8.webp\",srcSet:\"https://framerusercontent.com/images/e3mOZwn2hf9AVE5rbB2Pv1qb8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/e3mOZwn2hf9AVE5rbB2Pv1qb8.webp 640w\"},className:\"framer-pusce\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dbwh44\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxyy9z\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"Conor McGregor\"})}),className:\"framer-1q70qtw\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"World Champion Fighter\"})}),className:\"framer-7xojfl\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Satoshi-regular\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fuf47w\",\"data-framer-name\":\"Serena Williams\",name:\"Serena Williams\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dmhixq\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yaliku\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"With Tony's help, I've set new standards for myself, and I've taken my tennis game\u2013and my life\u2013to a whole new level!\"})}),className:\"framer-68kl9o\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mu241s\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hegfe6\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",pixelHeight:756,pixelWidth:720,positionX:\"center\",positionY:\"center\",sizes:\"56px\",src:\"https://framerusercontent.com/images/CPp0pk2yOFjAIhfb0OCpn0RS9E.jpg\",srcSet:\"https://framerusercontent.com/images/CPp0pk2yOFjAIhfb0OCpn0RS9E.jpg 720w\"},className:\"framer-qngt9m\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eex4mi\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1akmttd\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"Serena Williams\"})}),className:\"framer-oujmwu\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"World Class Athlete\"})}),className:\"framer-lr19ye\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Satoshi-regular\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e23v63\",\"data-framer-name\":\"Pit Bull\",name:\"Pit Bull\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wtn4gk\",\"data-framer-name\":\"stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,name:\"stars\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4828 16.8526C17.116 17.1808 15.6891 17.1649 14.3299 16.8063C12.9707 16.4477 11.7217 15.7576 10.6946 14.7979C9.66756 13.8381 8.89457 12.6386 8.44487 11.3068C7.99516 9.97496 7.88276 8.55241 8.11775 7.1665C8.08201 7.20102 8.04428 7.23341 8.00475 7.2635C7.72475 7.4765 7.37475 7.5555 6.67475 7.7135L6.03975 7.8575C3.57975 8.4145 2.34975 8.69251 2.05675 9.63351C1.76475 10.5736 2.60275 11.5546 4.27975 13.5156L4.71375 14.0226C5.18975 14.5796 5.42875 14.8586 5.53575 15.2026C5.64275 15.5476 5.60675 15.9196 5.53475 16.6626L5.46875 17.3396C5.21575 19.9566 5.08875 21.2646 5.85475 21.8456C6.62075 22.4276 7.77275 21.8976 10.0748 20.8366L10.6718 20.5626C11.3258 20.2606 11.6528 20.1106 11.9998 20.1106C12.3468 20.1106 12.6738 20.2606 13.3288 20.5626L13.9238 20.8366C16.2268 21.8966 17.3788 22.4266 18.1438 21.8466C18.9108 21.2646 18.7838 19.9566 18.5308 17.3396L18.4828 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M9.15319 5.49345L8.82518 6.08145C8.46518 6.72745 8.28519 7.05045 8.00519 7.26345C8.04519 7.23345 8.08219 7.20145 8.11819 7.16645C7.88314 8.55246 7.99553 9.97512 8.44528 11.307C8.89504 12.6389 9.66812 13.8385 10.6953 14.7982C11.7225 15.758 12.9717 16.4482 14.331 16.8067C15.6903 17.1651 17.1173 17.1808 18.4842 16.8524L18.4642 16.6624C18.3932 15.9194 18.3572 15.5474 18.4642 15.2024C18.5712 14.8584 18.8092 14.5794 19.2862 14.0224L19.7202 13.5154C21.3972 11.5554 22.2352 10.5744 21.9422 9.63345C21.6502 8.69245 20.4202 8.41345 17.9602 7.85745L17.3242 7.71345C16.6252 7.55545 16.2752 7.47645 15.9942 7.26345C15.7142 7.05045 15.5342 6.72745 15.1742 6.08145L14.8472 5.49345C13.5802 3.22145 12.9472 2.08545 12.0002 2.08545C11.0532 2.08545 10.4202 3.22145 9.15319 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M42.4832 16.8526C41.1164 17.1808 39.6895 17.1649 38.3303 16.8063C36.9711 16.4477 35.7221 15.7576 34.695 14.7979C33.668 13.8381 32.895 12.6386 32.4453 11.3068C31.9956 9.97496 31.8832 8.55241 32.1182 7.1665C32.0825 7.20102 32.0447 7.23341 32.0052 7.2635C31.7252 7.4765 31.3752 7.5555 30.6752 7.7135L30.0402 7.8575C27.5802 8.4145 26.3502 8.69251 26.0572 9.63351C25.7652 10.5736 26.6032 11.5546 28.2802 13.5156L28.7142 14.0226C29.1902 14.5796 29.4292 14.8586 29.5362 15.2026C29.6432 15.5476 29.6072 15.9196 29.5352 16.6626L29.4692 17.3396C29.2162 19.9566 29.0892 21.2646 29.8552 21.8456C30.6212 22.4276 31.7732 21.8976 34.0752 20.8366L34.6722 20.5626C35.3262 20.2606 35.6532 20.1106 36.0002 20.1106C36.3472 20.1106 36.6742 20.2606 37.3292 20.5626L37.9242 20.8366C40.2272 21.8966 41.3792 22.4266 42.1442 21.8466C42.9112 21.2646 42.7842 19.9566 42.5312 17.3396L42.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M33.1532 5.49345L32.8252 6.08145C32.4652 6.72745 32.2852 7.05045 32.0052 7.26345C32.0452 7.23345 32.0822 7.20145 32.1182 7.16645C31.8832 8.55246 31.9955 9.97512 32.4453 11.307C32.8951 12.6389 33.6681 13.8385 34.6953 14.7982C35.7225 15.758 36.9717 16.4482 38.331 16.8067C39.6903 17.1651 41.1173 17.1808 42.4842 16.8524L42.4642 16.6624C42.3932 15.9194 42.3572 15.5474 42.4642 15.2024C42.5712 14.8584 42.8092 14.5794 43.2862 14.0224L43.7202 13.5154C45.3972 11.5554 46.2352 10.5744 45.9422 9.63345C45.6502 8.69245 44.4202 8.41345 41.9602 7.85745L41.3242 7.71345C40.6252 7.55545 40.2752 7.47645 39.9942 7.26345C39.7142 7.05045 39.5342 6.72745 39.1742 6.08145L38.8472 5.49345C37.5802 3.22145 36.9472 2.08545 36.0002 2.08545C35.0532 2.08545 34.4202 3.22145 33.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M66.4832 16.8526C65.1164 17.1808 63.6895 17.1649 62.3303 16.8063C60.9711 16.4477 59.7221 15.7576 58.695 14.7979C57.668 13.8381 56.895 12.6386 56.4453 11.3068C55.9956 9.97496 55.8832 8.55241 56.1182 7.1665C56.0825 7.20102 56.0447 7.23341 56.0052 7.2635C55.7252 7.4765 55.3752 7.5555 54.6752 7.7135L54.0402 7.8575C51.5802 8.4145 50.3502 8.69251 50.0572 9.63351C49.7652 10.5736 50.6032 11.5546 52.2802 13.5156L52.7142 14.0226C53.1902 14.5796 53.4292 14.8586 53.5362 15.2026C53.6432 15.5476 53.6072 15.9196 53.5352 16.6626L53.4692 17.3396C53.2162 19.9566 53.0892 21.2646 53.8552 21.8456C54.6212 22.4276 55.7732 21.8976 58.0752 20.8366L58.6722 20.5626C59.3262 20.2606 59.6532 20.1106 60.0002 20.1106C60.3472 20.1106 60.6742 20.2606 61.3292 20.5626L61.9242 20.8366C64.2272 21.8966 65.3792 22.4266 66.1442 21.8466C66.9112 21.2646 66.7842 19.9566 66.5312 17.3396L66.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M57.1532 5.49345L56.8252 6.08145C56.4652 6.72745 56.2852 7.05045 56.0052 7.26345C56.0452 7.23345 56.0822 7.20145 56.1182 7.16645C55.8832 8.55246 55.9955 9.97512 56.4453 11.307C56.8951 12.6389 57.6681 13.8385 58.6953 14.7982C59.7225 15.758 60.9717 16.4482 62.331 16.8067C63.6903 17.1651 65.1173 17.1808 66.4842 16.8524L66.4642 16.6624C66.3932 15.9194 66.3572 15.5474 66.4642 15.2024C66.5712 14.8584 66.8092 14.5794 67.2862 14.0224L67.7202 13.5154C69.3972 11.5554 70.2352 10.5744 69.9422 9.63345C69.6502 8.69245 68.4202 8.41345 65.9602 7.85745L65.3242 7.71345C64.6252 7.55545 64.2752 7.47645 63.9942 7.26345C63.7142 7.05045 63.5342 6.72745 63.1742 6.08145L62.8472 5.49345C61.5802 3.22145 60.9472 2.08545 60.0002 2.08545C59.0532 2.08545 58.4202 3.22145 57.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M90.4832 16.8526C89.1164 17.1808 87.6895 17.1649 86.3303 16.8063C84.9711 16.4477 83.7221 15.7576 82.695 14.7979C81.668 13.8381 80.895 12.6386 80.4453 11.3068C79.9956 9.97496 79.8832 8.55241 80.1182 7.1665C80.0825 7.20102 80.0447 7.23341 80.0052 7.2635C79.7252 7.4765 79.3752 7.5555 78.6752 7.7135L78.0402 7.8575C75.5802 8.4145 74.3502 8.69251 74.0572 9.63351C73.7652 10.5736 74.6032 11.5546 76.2802 13.5156L76.7142 14.0226C77.1902 14.5796 77.4292 14.8586 77.5362 15.2026C77.6432 15.5476 77.6072 15.9196 77.5352 16.6626L77.4692 17.3396C77.2162 19.9566 77.0892 21.2646 77.8552 21.8456C78.6212 22.4276 79.7732 21.8976 82.0752 20.8366L82.6722 20.5626C83.3262 20.2606 83.6532 20.1106 84.0002 20.1106C84.3472 20.1106 84.6742 20.2606 85.3292 20.5626L85.9242 20.8366C88.2272 21.8966 89.3792 22.4266 90.1442 21.8466C90.9112 21.2646 90.7842 19.9566 90.5312 17.3396L90.4832 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M81.1532 5.49345L80.8252 6.08145C80.4652 6.72745 80.2852 7.05045 80.0052 7.26345C80.0452 7.23345 80.0822 7.20145 80.1182 7.16645C79.8832 8.55246 79.9955 9.97512 80.4453 11.307C80.8951 12.6389 81.6681 13.8385 82.6953 14.7982C83.7225 15.758 84.9717 16.4482 86.331 16.8067C87.6903 17.1651 89.1173 17.1808 90.4842 16.8524L90.4642 16.6624C90.3932 15.9194 90.3572 15.5474 90.4642 15.2024C90.5712 14.8584 90.8092 14.5794 91.2862 14.0224L91.7202 13.5154C93.3972 11.5554 94.2352 10.5744 93.9422 9.63345C93.6502 8.69245 92.4202 8.41345 89.9602 7.85745L89.3242 7.71345C88.6252 7.55545 88.2752 7.47645 87.9942 7.26345C87.7142 7.05045 87.5342 6.72745 87.1742 6.08145L86.8472 5.49345C85.5802 3.22145 84.9472 2.08545 84.0002 2.08545C83.0532 2.08545 82.4202 3.22145 81.1532 5.49345Z\" fill=\"#FFC42D\"/>\\n<path d=\"M114.483 16.8526C113.116 17.1808 111.689 17.1649 110.33 16.8063C108.971 16.4477 107.722 15.7576 106.695 14.7979C105.668 13.8381 104.895 12.6386 104.445 11.3068C103.995 9.97496 103.883 8.55241 104.118 7.1665C104.082 7.20102 104.045 7.23341 104.005 7.2635C103.725 7.4765 103.375 7.5555 102.675 7.7135L102.04 7.8575C99.5802 8.4145 98.3502 8.69251 98.0572 9.63351C97.7652 10.5736 98.6032 11.5546 100.28 13.5156L100.714 14.0226C101.19 14.5796 101.429 14.8586 101.536 15.2026C101.643 15.5476 101.607 15.9196 101.535 16.6626L101.469 17.3396C101.216 19.9566 101.089 21.2646 101.855 21.8456C102.621 22.4276 103.773 21.8976 106.075 20.8366L106.672 20.5626C107.326 20.2606 107.653 20.1106 108 20.1106C108.347 20.1106 108.674 20.2606 109.329 20.5626L109.924 20.8366C112.227 21.8966 113.379 22.4266 114.144 21.8466C114.911 21.2646 114.784 19.9566 114.531 17.3396L114.483 16.8526Z\" fill=\"#FFC42D\"/>\\n<path opacity=\"0.7\" d=\"M105.153 5.49345L104.825 6.08145C104.465 6.72745 104.285 7.05045 104.005 7.26345C104.045 7.23345 104.082 7.20145 104.118 7.16645C103.883 8.55246 103.995 9.97512 104.445 11.307C104.895 12.6389 105.668 13.8385 106.695 14.7982C107.722 15.758 108.971 16.4482 110.331 16.8067C111.69 17.1651 113.117 17.1808 114.484 16.8524L114.464 16.6624C114.393 15.9194 114.357 15.5474 114.464 15.2024C114.571 14.8584 114.809 14.5794 115.286 14.0224L115.72 13.5154C117.397 11.5554 118.235 10.5744 117.942 9.63345C117.65 8.69245 116.42 8.41345 113.96 7.85745L113.324 7.71345C112.625 7.55545 112.275 7.47645 111.994 7.26345C111.714 7.05045 111.534 6.72745 111.174 6.08145L110.847 5.49345C109.58 3.22145 108.947 2.08545 108 2.08545C107.053 2.08545 106.42 3.22145 105.153 5.49345Z\" fill=\"#FFC42D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1miymlh\",\"data-framer-name\":\"Company and quote\",name:\"Company and quote\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bloxs3\",\"data-styles-preset\":\"kf7bwnSqK\",children:\"Tony taught me there is no success without failure and no winning without losing.\"})}),className:\"framer-3zzleq\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],name:\"Quote\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-no01zx\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-126do8e\",\"data-framer-name\":\"Avatar and text\",name:\"Avatar and text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/s6uuGRZQHHA8lo0p8RXwsOHHMNw.jpg\"},className:\"framer-10t6azv\",\"data-border\":true,\"data-framer-name\":\"Avatar\",name:\"Avatar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yzv1hm\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",name:\"Contrast border\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ukst9\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"Pitbull\"})}),className:\"framer-mbxss6\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(17, 16, 17)\"},children:\"World Class Performer\"})}),className:\"framer-13kytal\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Satoshi-regular\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gielc1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GhKp0gPLK:{variant:\"TSeotqQjL\"},n92MC2SJZ:{variant:\"SH_zxL5Vq\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"yBOhJT33Y\",layoutId:\"yBOhJT33Y\",style:{width:\"100%\"},variant:\"Vobo7pRP3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-eweCq { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); }`,\".framer-eweCq.framer-17aunws, .framer-eweCq .framer-17aunws { display: block; }\",\".framer-eweCq.framer-eo4waz { align-content: center; align-items: center; background-color: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, #eae8e1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1536px; }\",\".framer-eweCq .framer-16d8dvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-eweCq .framer-9q4rzu { align-content: center; align-items: center; background: linear-gradient(180deg, #f7f4f2 0%, rgba(247, 244, 242, 0) 83.55469107627869%); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-1f4rssa-container, .framer-eweCq .framer-1gielc1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-eweCq .framer-1qtrwlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: 1349px; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 60px 40px 60px; position: relative; width: 100%; }\",\".framer-eweCq .framer-vvjuon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-qv877p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eweCq .framer-gjlt7v { 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%; }\",\".framer-eweCq .framer-1juxzqr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eweCq .framer-1ari11j-container { flex: none; height: 740px; position: relative; width: 108%; }\",\".framer-eweCq .framer-1ix24pu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eweCq .framer-1asp1e4 { align-content: center; align-items: center; background-color: #eae8e1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-eweCq .framer-534oye { align-content: center; align-items: center; background: linear-gradient(180deg, #f7f4f2 0%, rgba(247, 244, 242, 0) 100%); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-jsistd { align-content: center; align-items: center; background-color: #eae8e1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-eweCq .framer-1c3t136 { align-content: center; align-items: center; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-12mebw9 { 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 32px 50px 32px; position: relative; width: 100%; }\",\".framer-eweCq .framer-se92vp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-eweCq .framer-nx24kh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eweCq .framer-1xvg4zi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-8xb73x, .framer-eweCq .framer-1mmsfmr, .framer-eweCq .framer-1kmi6nk, .framer-eweCq .framer-1rc6mai, .framer-eweCq .framer-1fuf47w, .framer-eweCq .framer-1e23v63 { align-content: flex-start; align-items: flex-start; background-color: #f4f2ef; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 420px; justify-content: space-between; overflow: visible; padding: 24px; position: relative; width: 384px; }\",\".framer-eweCq .framer-v6jt58, .framer-eweCq .framer-6xbdik, .framer-eweCq .framer-150yl2n, .framer-eweCq .framer-38im6u, .framer-eweCq .framer-1dmhixq, .framer-eweCq .framer-wtn4gk { flex: none; height: 25px; position: relative; width: 120px; }\",\".framer-eweCq .framer-zcg46p, .framer-eweCq .framer-lv2sc2, .framer-eweCq .framer-1wctdnm, .framer-eweCq .framer-1gtvu1w, .framer-eweCq .framer-yaliku { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-2ds0q3 { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-eweCq .framer-r1674, .framer-eweCq .framer-wa07q7, .framer-eweCq .framer-2qhng7, .framer-eweCq .framer-1egod4z, .framer-eweCq .framer-mu241s { background-color: var(--token-779bf994-c88b-4734-bbca-93a3630b98c8, #dce4ea); flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-eweCq .framer-co72a, .framer-eweCq .framer-16yhg6q, .framer-eweCq .framer-zjk9g0, .framer-eweCq .framer-82sz91, .framer-eweCq .framer-hegfe6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eweCq .framer-qfzuoy, .framer-eweCq .framer-1vmiuf2, .framer-eweCq .framer-1d19bna, .framer-eweCq .framer-pusce, .framer-eweCq .framer-qngt9m, .framer-eweCq .framer-10t6azv { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 56px; overflow: visible; position: relative; width: 56px; }\",\".framer-eweCq .framer-172ltke, .framer-eweCq .framer-1144npv, .framer-eweCq .framer-r6g4ls, .framer-eweCq .framer-1dbwh44, .framer-eweCq .framer-1eex4mi, .framer-eweCq .framer-yzv1hm { --border-bottom-width: 0.75px; --border-color: rgba(16, 24, 40, 0.08); --border-left-width: 0.75px; --border-right-width: 0.75px; --border-style: solid; --border-top-width: 0.75px; aspect-ratio: 1 / 1; border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 56px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eweCq .framer-13lz3tb, .framer-eweCq .framer-1bt8cs2, .framer-eweCq .framer-1vt3wrv, .framer-eweCq .framer-zxyy9z, .framer-eweCq .framer-1akmttd, .framer-eweCq .framer-2ukst9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eweCq .framer-1rvpder, .framer-eweCq .framer-h8qqjy, .framer-eweCq .framer-j00a8m, .framer-eweCq .framer-1q70qtw, .framer-eweCq .framer-oujmwu, .framer-eweCq .framer-mbxss6 { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-eweCq .framer-5t858i, .framer-eweCq .framer-1vxpirq, .framer-eweCq .framer-miafax, .framer-eweCq .framer-68kl9o, .framer-eweCq .framer-3zzleq { --framer-paragraph-spacing: 18px; flex: none; height: 200px; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-eweCq .framer-7xojfl, .framer-eweCq .framer-lr19ye, .framer-eweCq .framer-13kytal { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-eweCq .framer-1miymlh { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 336px; }\",\".framer-eweCq .framer-no01zx { background-color: var(--token-779bf994-c88b-4734-bbca-93a3630b98c8, #dce4ea); flex: none; height: 2px; overflow: hidden; position: relative; width: 336px; }\",\".framer-eweCq .framer-126do8e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 336px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eweCq.framer-eo4waz, .framer-eweCq .framer-16d8dvd, .framer-eweCq .framer-9q4rzu, .framer-eweCq .framer-1qtrwlf, .framer-eweCq .framer-vvjuon, .framer-eweCq .framer-qv877p, .framer-eweCq .framer-gjlt7v, .framer-eweCq .framer-1asp1e4, .framer-eweCq .framer-534oye, .framer-eweCq .framer-jsistd, .framer-eweCq .framer-1c3t136, .framer-eweCq .framer-12mebw9, .framer-eweCq .framer-se92vp, .framer-eweCq .framer-1xvg4zi, .framer-eweCq .framer-zcg46p, .framer-eweCq .framer-co72a, .framer-eweCq .framer-13lz3tb, .framer-eweCq .framer-lv2sc2, .framer-eweCq .framer-16yhg6q, .framer-eweCq .framer-1bt8cs2, .framer-eweCq .framer-1wctdnm, .framer-eweCq .framer-zjk9g0, .framer-eweCq .framer-1vt3wrv, .framer-eweCq .framer-1gtvu1w, .framer-eweCq .framer-82sz91, .framer-eweCq .framer-zxyy9z, .framer-eweCq .framer-yaliku, .framer-eweCq .framer-hegfe6, .framer-eweCq .framer-1akmttd, .framer-eweCq .framer-1miymlh, .framer-eweCq .framer-126do8e, .framer-eweCq .framer-2ukst9 { gap: 0px; } .framer-eweCq.framer-eo4waz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eweCq.framer-eo4waz > :first-child, .framer-eweCq .framer-16d8dvd > :first-child, .framer-eweCq .framer-9q4rzu > :first-child, .framer-eweCq .framer-1qtrwlf > :first-child, .framer-eweCq .framer-qv877p > :first-child, .framer-eweCq .framer-gjlt7v > :first-child, .framer-eweCq .framer-1asp1e4 > :first-child, .framer-eweCq .framer-534oye > :first-child, .framer-eweCq .framer-jsistd > :first-child, .framer-eweCq .framer-1c3t136 > :first-child, .framer-eweCq .framer-12mebw9 > :first-child, .framer-eweCq .framer-se92vp > :first-child, .framer-eweCq .framer-zcg46p > :first-child, .framer-eweCq .framer-13lz3tb > :first-child, .framer-eweCq .framer-lv2sc2 > :first-child, .framer-eweCq .framer-1bt8cs2 > :first-child, .framer-eweCq .framer-1wctdnm > :first-child, .framer-eweCq .framer-1vt3wrv > :first-child, .framer-eweCq .framer-1gtvu1w > :first-child, .framer-eweCq .framer-zxyy9z > :first-child, .framer-eweCq .framer-yaliku > :first-child, .framer-eweCq .framer-1akmttd > :first-child, .framer-eweCq .framer-1miymlh > :first-child, .framer-eweCq .framer-2ukst9 > :first-child { margin-top: 0px; } .framer-eweCq.framer-eo4waz > :last-child, .framer-eweCq .framer-16d8dvd > :last-child, .framer-eweCq .framer-9q4rzu > :last-child, .framer-eweCq .framer-1qtrwlf > :last-child, .framer-eweCq .framer-qv877p > :last-child, .framer-eweCq .framer-gjlt7v > :last-child, .framer-eweCq .framer-1asp1e4 > :last-child, .framer-eweCq .framer-534oye > :last-child, .framer-eweCq .framer-jsistd > :last-child, .framer-eweCq .framer-1c3t136 > :last-child, .framer-eweCq .framer-12mebw9 > :last-child, .framer-eweCq .framer-se92vp > :last-child, .framer-eweCq .framer-zcg46p > :last-child, .framer-eweCq .framer-13lz3tb > :last-child, .framer-eweCq .framer-lv2sc2 > :last-child, .framer-eweCq .framer-1bt8cs2 > :last-child, .framer-eweCq .framer-1wctdnm > :last-child, .framer-eweCq .framer-1vt3wrv > :last-child, .framer-eweCq .framer-1gtvu1w > :last-child, .framer-eweCq .framer-zxyy9z > :last-child, .framer-eweCq .framer-yaliku > :last-child, .framer-eweCq .framer-1akmttd > :last-child, .framer-eweCq .framer-1miymlh > :last-child, .framer-eweCq .framer-2ukst9 > :last-child { margin-bottom: 0px; } .framer-eweCq .framer-16d8dvd > *, .framer-eweCq .framer-1asp1e4 > *, .framer-eweCq .framer-jsistd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eweCq .framer-9q4rzu > *, .framer-eweCq .framer-534oye > *, .framer-eweCq .framer-1c3t136 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-eweCq .framer-1qtrwlf > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-eweCq .framer-vvjuon > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-eweCq .framer-vvjuon > :first-child, .framer-eweCq .framer-1xvg4zi > :first-child, .framer-eweCq .framer-co72a > :first-child, .framer-eweCq .framer-16yhg6q > :first-child, .framer-eweCq .framer-zjk9g0 > :first-child, .framer-eweCq .framer-82sz91 > :first-child, .framer-eweCq .framer-hegfe6 > :first-child, .framer-eweCq .framer-126do8e > :first-child { margin-left: 0px; } .framer-eweCq .framer-vvjuon > :last-child, .framer-eweCq .framer-1xvg4zi > :last-child, .framer-eweCq .framer-co72a > :last-child, .framer-eweCq .framer-16yhg6q > :last-child, .framer-eweCq .framer-zjk9g0 > :last-child, .framer-eweCq .framer-82sz91 > :last-child, .framer-eweCq .framer-hegfe6 > :last-child, .framer-eweCq .framer-126do8e > :last-child { margin-right: 0px; } .framer-eweCq .framer-qv877p > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-eweCq .framer-gjlt7v > *, .framer-eweCq .framer-se92vp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-eweCq .framer-12mebw9 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-eweCq .framer-1xvg4zi > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-eweCq .framer-zcg46p > *, .framer-eweCq .framer-lv2sc2 > *, .framer-eweCq .framer-1wctdnm > *, .framer-eweCq .framer-1gtvu1w > *, .framer-eweCq .framer-yaliku > *, .framer-eweCq .framer-1miymlh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eweCq .framer-co72a > *, .framer-eweCq .framer-16yhg6q > *, .framer-eweCq .framer-zjk9g0 > *, .framer-eweCq .framer-82sz91 > *, .framer-eweCq .framer-hegfe6 > *, .framer-eweCq .framer-126do8e > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-eweCq .framer-13lz3tb > *, .framer-eweCq .framer-1bt8cs2 > *, .framer-eweCq .framer-1vt3wrv > *, .framer-eweCq .framer-zxyy9z > *, .framer-eweCq .framer-1akmttd > *, .framer-eweCq .framer-2ukst9 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\"@media (min-width: 1536px) { .framer-eweCq .hidden-eo4waz { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1535px) { .framer-eweCq .hidden-1iw56zo { display: none !important; } .${metadata.bodyClassName}-framer-eweCq { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-eweCq.framer-eo4waz { width: 1200px; } .framer-eweCq .framer-9q4rzu { gap: 96px; } .framer-eweCq .framer-1qtrwlf { height: 1111px; padding: 0px 100px 40px 100px; } .framer-eweCq .framer-vvjuon { gap: 32px; } .framer-eweCq .framer-1ari11j-container { height: 592px; width: 109%; } .framer-eweCq .framer-12mebw9 { padding: 0px 60px 50px 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eweCq .framer-9q4rzu, .framer-eweCq .framer-vvjuon { gap: 0px; } .framer-eweCq .framer-9q4rzu > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-eweCq .framer-9q4rzu > :first-child { margin-top: 0px; } .framer-eweCq .framer-9q4rzu > :last-child { margin-bottom: 0px; } .framer-eweCq .framer-vvjuon > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-eweCq .framer-vvjuon > :first-child { margin-left: 0px; } .framer-eweCq .framer-vvjuon > :last-child { margin-right: 0px; } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .framer-eweCq .hidden-n536m4 { display: none !important; } .${metadata.bodyClassName}-framer-eweCq { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-eweCq.framer-eo4waz { width: 768px; } .framer-eweCq .framer-1qtrwlf { height: 919px; } .framer-eweCq .framer-vvjuon { flex-direction: column; gap: 64px; } .framer-eweCq .framer-qv877p { flex: none; width: 100%; } .framer-eweCq .framer-1ari11j-container { height: 374px; width: 115%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eweCq .framer-vvjuon { gap: 0px; } .framer-eweCq .framer-vvjuon > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-eweCq .framer-vvjuon > :first-child { margin-top: 0px; } .framer-eweCq .framer-vvjuon > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 767px) { .framer-eweCq .hidden-1nxcg87 { display: none !important; } .${metadata.bodyClassName}-framer-eweCq { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-eweCq.framer-eo4waz { width: 320px; } .framer-eweCq .framer-16d8dvd { padding: 74px 10px 10px 10px; } .framer-eweCq .framer-1qtrwlf { height: 689px; padding: 0px 24px 40px 24px; } .framer-eweCq .framer-vvjuon { flex-direction: column; gap: 48px; } .framer-eweCq .framer-qv877p { flex: none; width: 100%; } .framer-eweCq .framer-1ari11j-container { height: 162px; width: 108%; } .framer-eweCq .framer-1asp1e4 { padding: 0px 10px 0px 10px; } .framer-eweCq .framer-jsistd { padding: 30px 10px 0px 10px; } .framer-eweCq .framer-12mebw9 { padding: 0px 20px 50px 20px; } .framer-eweCq .framer-se92vp { padding: 0px; } .framer-eweCq .framer-nx24kh { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eweCq .framer-vvjuon { gap: 0px; } .framer-eweCq .framer-vvjuon > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-eweCq .framer-vvjuon > :first-child { margin-top: 0px; } .framer-eweCq .framer-vvjuon > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-eweCq[data-border=\"true\"]::after, .framer-eweCq [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 2573.5\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uOkjV5Lmh\":{\"layout\":[\"fixed\",\"auto\"]},\"n92MC2SJZ\":{\"layout\":[\"fixed\",\"auto\"]},\"GhKp0gPLK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerPTP9Gvrf7=withCSS(Component,css,\"framer-eweCq\");export default FramerPTP9Gvrf7;FramerPTP9Gvrf7.displayName=\"Opt In\";FramerPTP9Gvrf7.defaultProps={height:2573.5,width:1536};addFonts(FramerPTP9Gvrf7,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]},...NavbarFonts,...YouTubeFonts,...ButtonStrokeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPTP9Gvrf7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1536\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uOkjV5Lmh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n92MC2SJZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GhKp0gPLK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"2573.5\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavbarFonts", "getFonts", "PLTi8pu0T_default", "YouTubeFonts", "Youtube", "ButtonStrokeFonts", "JKCbhNhnh_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "FooterFonts", "ZPzL4zqtl_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "ref2", "useRouteElementId", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides", "ComponentViewportProvider", "Container", "PLTi8pu0T_default", "RichText", "x", "Youtube", "ResolveLinks", "resolvedLinks", "JKCbhNhnh_default", "RichTextWithFX", "MotionDivWithFX", "SVG", "Image2", "ZPzL4zqtl_default", "css", "FramerPTP9Gvrf7", "withCSS", "PTP9Gvrf7_default", "addFonts", "NavbarFonts", "YouTubeFonts", "ButtonStrokeFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
