{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/hrFZnouSX0tgiSFFbn2h/itrjfP0UWx9Kn2GtmGJe/YmlYWmRSu.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/9yhZnwQnqadGwS8iJufN/Ticker.js\";import Typeform from\"https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import InstagramImage6 from\"#framer/local/canvasComponent/aMfamMW60/aMfamMW60.js\";import InstagramImage2 from\"#framer/local/canvasComponent/B_lEnGRgc/B_lEnGRgc.js\";import Footer from\"#framer/local/canvasComponent/Ckf0pTLb_/Ckf0pTLb_.js\";import InstagramImage4 from\"#framer/local/canvasComponent/dpRU6InM6/dpRU6InM6.js\";import Button from\"#framer/local/canvasComponent/mW8WUEuzc/mW8WUEuzc.js\";import InstagramImage5 from\"#framer/local/canvasComponent/OxPiLzC5Q/OxPiLzC5Q.js\";import InstagramImage3 from\"#framer/local/canvasComponent/QHYZqozPB/QHYZqozPB.js\";import NavBar from\"#framer/local/canvasComponent/ubbUvcuV6/ubbUvcuV6.js\";import InstagramImage1 from\"#framer/local/canvasComponent/wwAdFx0Gt/wwAdFx0Gt.js\";import FitnessArticles from\"#framer/local/collection/kFHjh6Mfn/kFHjh6Mfn.js\";import*as sharedStyle from\"#framer/local/css/DEds97uf4/DEds97uf4.js\";import*as sharedStyle8 from\"#framer/local/css/hOJ550JOU/hOJ550JOU.js\";import*as sharedStyle6 from\"#framer/local/css/hX_K3PayB/hX_K3PayB.js\";import*as sharedStyle2 from\"#framer/local/css/iMy6yFwqF/iMy6yFwqF.js\";import*as sharedStyle1 from\"#framer/local/css/IU0culQLh/IU0culQLh.js\";import*as sharedStyle5 from\"#framer/local/css/l42ksQCOy/l42ksQCOy.js\";import*as sharedStyle7 from\"#framer/local/css/Lur6TJwDX/Lur6TJwDX.js\";import*as sharedStyle4 from\"#framer/local/css/yS42JdO6j/yS42JdO6j.js\";import*as sharedStyle3 from\"#framer/local/css/ZnPlhiXl5/ZnPlhiXl5.js\";import*as sharedStyle9 from\"#framer/local/css/ZuBpUyaq_/ZuBpUyaq_.js\";import metadataProvider from\"#framer/local/webPageMetadata/YmlYWmRSu/YmlYWmRSu.js\";const NavBarFonts=getFonts(NavBar);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const YouTubeFonts=getFonts(YouTube);const ContainerWithFX=withFX(Container);const MaterialFonts=getFonts(Material);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const TypeformFonts=getFonts(Typeform);const InstagramImage1Fonts=getFonts(InstagramImage1);const InstagramImage2Fonts=getFonts(InstagramImage2);const InstagramImage3Fonts=getFonts(InstagramImage3);const InstagramImage4Fonts=getFonts(InstagramImage4);const InstagramImage5Fonts=getFonts(InstagramImage5);const InstagramImage6Fonts=getFonts(InstagramImage6);const GoogleMapsFonts=getFonts(GoogleMaps);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={E9dKC_GEp:\"(min-width: 810px) and (max-width: 1439px)\",JMTTArST1:\"(min-width: 1440px)\",uOyj92Wvu:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-OPLhU\";const variantClassNames={E9dKC_GEp:\"framer-v-1ky7t0\",JMTTArST1:\"framer-v-vaf0s7\",uOyj92Wvu:\"framer-v-e1w47q\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition3={damping:20,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:20,delay:.25,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"JMTTArST1\",Phone:\"uOyj92Wvu\",Tablet:\"E9dKC_GEp\"};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:\"JMTTArST1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UM0cVh4EuXx_e9riDB,U5AY8JDGIXx_e9riDB,XEy54wrziXx_e9riDB,x4nbGqkFiXx_e9riDB,IiLTzEHg4Xx_e9riDB,idXx_e9riDB,U5AY8JDGIjkxA975uA,XEy54wrzijkxA975uA,x4nbGqkFijkxA975uA,IiLTzEHg4jkxA975uA,idjkxA975uA,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-OPLhU`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-OPLhU`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uOyj92Wvu\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"uOyj92Wvu\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"E9dKC_GEp\",\"uOyj92Wvu\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"E9dKC_GEp\")return false;return true;};const elementId=useRouteElementId(\"IHHnQK91w\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JMTTArST1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vaf0s7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:0},uOyj92Wvu:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ekihe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{variant:\"exrEEPBuz\"},uOyj92Wvu:{variant:\"vPfOFVwq7\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"U9Ut13pWg\",layoutId:\"U9Ut13pWg\",style:{width:\"100%\"},variant:\"qOKlHcCW8\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition(64),pixelHeight:1500,pixelWidth:2399,sizes:\"100vw\",src:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png\",srcSet:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png 2399w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2399,sizes:\"100vw\",src:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png\",srcSet:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png 2399w\"},className:\"framer-1e3lxk7 hidden-e1w47q\",\"data-framer-name\":\"Header Image\",name:\"Header Image\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"T1DIAL: Turn One Day into a Lifestyle\"})}),className:\"framer-1b02clz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Parents looking to lose 10-15 pounds without giving up family time? You've come to the right place.\"})}),className:\"framer-113re65\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"gZO3WIrBT\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1wl70l1 framer-ozm13r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:347}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pla6qn-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"XUwr5CgRS\",layoutId:\"XUwr5CgRS\",style:{height:\"100%\"},variant:\"SHaVPLYf3\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0)\"},children:\"Parents looking to lose 10-15 pounds without giving up family time? You've come to the right place.\"})}),className:\"framer-amk533\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bufx7\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bbb.org/us/ca/fontana/profile/health-and-fitness-services/t1dial-training-llc-1066-850111588#sealclick\",nodeId:\"BL62As40F\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-fztisd framer-ozm13r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(434),pixelHeight:855,pixelWidth:1673,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png\",srcSet:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png 1673w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:855,pixelWidth:1673,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png\",srcSet:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png 1673w\"},className:\"framer-e8cpt4\"})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4a24t hidden-vaf0s7 hidden-1ky7t0\",\"data-framer-name\":\"2 Columns Image Text\",name:\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(64),pixelHeight:1500,pixelWidth:2399,sizes:\"100vw\",src:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png 2399w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1500,pixelWidth:2399,src:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yIRotYpPicFI4MeKGbiLT2fSQZU.png 2399w\"},className:\"framer-3v6aid\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7lgf5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jymwd\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"T1DIAL: Turn One Day into a Lifestyle\"})}),className:\"framer-1rvhw1w\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Parents looking to lose 10-15 pounds without giving up family time? You've come to the right place\"})}),className:\"framer-1tg7fln\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"iy8oof25e\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-15ybk7f framer-ozm13r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{y:555.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fbngo-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pgB_IiWWy\",layoutId:\"pgB_IiWWy\",style:{height:\"100%\"},variant:\"SHaVPLYf3\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3puy5\",\"data-framer-name\":\"Ticker\",name:\"Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eevq5u-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"AXulSnAFA\",layoutId:\"AXulSnAFA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1apm8u5\",\"data-framer-name\":\"STRENGTH TRAINING\",name:\"STRENGTH TRAINING\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"STRENGTH TRAINING \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-1aaw5ib\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8cqt5l\",\"data-framer-name\":\"WEIGHT LOSS\",name:\"WEIGHT LOSS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"WEIGHT LOSS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-x83vw4\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qwpy0a\",\"data-framer-name\":\"BODYBUILDING\",name:\"BODYBUILDING\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"BODYBUILDING \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-1959laa\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1185xzn\",\"data-framer-name\":\"POWERLIFTING\",name:\"POWERLIFTING\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"WEIGHT LOSS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-1rh39js\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11hzszl\",\"data-framer-name\":\"SPORTS PERFORMANCE\",name:\"SPORTS PERFORMANCE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"LIFESTYLE FITNESS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-hs5y8g\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssjsyk\",\"data-framer-name\":\"FITNESS\",name:\"FITNESS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"FITNESS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-nz1stm\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-99dzgw\",\"data-framer-name\":\"MOBILITY\",name:\"MOBILITY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"ONLINE TRAINING \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-pfh3lf\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ae9lzf\",\"data-framer-name\":\"NUTRITION\",name:\"NUTRITION\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"NUTRITION \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"//\"})]})}),className:\"framer-1slfgx0\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wg5e16\",\"data-framer-name\":\"Testimonials Section\",name:\"Testimonials Section\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-89lrsd\",\"data-framer-name\":\"Header\",name:\"Header\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.bbb.org/us/ca/fontana/profile/health-and-fitness-services/t1dial-training-llc-1066-850111588#sealclick\",nodeId:\"uTfuP3NE9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(749.4),pixelHeight:855,pixelWidth:1673,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png\",srcSet:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png 1673w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:855,pixelWidth:1673,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png\",srcSet:\"https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8cMv5tjoYHQ2Txhbutl0NMf1bg.png 1673w\"},className:\"framer-wx6zn4 hidden-vaf0s7 hidden-1ky7t0 framer-ozm13r\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"What T1DIAL Clients are Saying!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"What T1DIAL Clients are Saying!\"})}),className:\"framer-1tlx1pr\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ugjjs3\",\"data-framer-name\":\"YouTube Stack\",name:\"YouTube Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oexmx7-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"GO6pB8zWH\",isMixedBorderRadius:false,isRed:false,layoutId:\"GO6pB8zWH\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtu.be/E9hz19pJaLU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9je1b-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"EuRGmwdZN\",isMixedBorderRadius:false,isRed:false,layoutId:\"EuRGmwdZN\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtu.be/1oAHE8A4n_U\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccvw8c\",\"data-framer-name\":\"YouTube Stack\",name:\"YouTube Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ugf4iw-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"OFuOCQl2o\",isMixedBorderRadius:false,isRed:false,layoutId:\"OFuOCQl2o\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtu.be/IHS_0r1DNkQ?si=JnZ9cjkqPZ89tOD5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qxdpt-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"QjDOWbiSX\",isMixedBorderRadius:false,isRed:false,layoutId:\"QjDOWbiSX\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtu.be/BxMnMyctCbs?si=h0_OSyK4ideZ8RX2\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1i7dr6i\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"View our Transformations!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"View our Transformations!\"})}),className:\"framer-fv3o44\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12wtpn5-container\",\"data-framer-name\":\"Instagram Ticker\",name:\"Instagram Ticker\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:5,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"BBiHs77Ru\",layoutId:\"BBiHs77Ru\",name:\"Instagram Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"best-fitness-transformation-in-ca\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:584,pixelHeight:410,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/8mrV4rDOE1192J5cLxFYsR1neb8.png\",srcSet:\"https://framerusercontent.com/images/8mrV4rDOE1192J5cLxFYsR1neb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8mrV4rDOE1192J5cLxFYsR1neb8.png 584w\"},className:\"framer-1kd7xth\",\"data-framer-name\":\"transformation 1\",name:\"transformation 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"best-fitness-transformation-in-ca\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:584,pixelHeight:410,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/WzvMleAXlhWMIzDFB3tOhFyd8g.png\",srcSet:\"https://framerusercontent.com/images/WzvMleAXlhWMIzDFB3tOhFyd8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/WzvMleAXlhWMIzDFB3tOhFyd8g.png 584w\"},className:\"framer-5avapr\",\"data-framer-name\":\"transformation 2\",name:\"transformation 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:438,pixelHeight:410,pixelWidth:438,src:\"https://framerusercontent.com/images/JRshaYXVauTSRO3TgwMkWk4ZdgY.png\"},className:\"framer-52ianr\",\"data-framer-name\":\"transformation 3\",name:\"transformation 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:411,intrinsicWidth:584,pixelHeight:411,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/S7ZXWWMNeHTvfwUjkNigY4vwLY.png\",srcSet:\"https://framerusercontent.com/images/S7ZXWWMNeHTvfwUjkNigY4vwLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/S7ZXWWMNeHTvfwUjkNigY4vwLY.png 584w\"},className:\"framer-fk2nt8\",\"data-framer-name\":\"transformation 4\",name:\"transformation 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:411,intrinsicWidth:584,pixelHeight:411,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/4Sx6mEZ6WFm1Mtn7TunKbuOpmvs.png\",srcSet:\"https://framerusercontent.com/images/4Sx6mEZ6WFm1Mtn7TunKbuOpmvs.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Sx6mEZ6WFm1Mtn7TunKbuOpmvs.png 584w\"},className:\"framer-178psc6\",\"data-framer-name\":\"transformation 5\",name:\"transformation 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:584,pixelHeight:410,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/LZeCxwBSDtpXEYDSg3KJeMbFI.png\",srcSet:\"https://framerusercontent.com/images/LZeCxwBSDtpXEYDSg3KJeMbFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/LZeCxwBSDtpXEYDSg3KJeMbFI.png 584w\"},className:\"framer-10sn4ju\",\"data-framer-name\":\"transformation 6\",name:\"transformation 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:584,pixelHeight:410,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/AXYdKd73yDPC7ZA0XDxwFMT3Yec.png\",srcSet:\"https://framerusercontent.com/images/AXYdKd73yDPC7ZA0XDxwFMT3Yec.png?scale-down-to=512 512w,https://framerusercontent.com/images/AXYdKd73yDPC7ZA0XDxwFMT3Yec.png 584w\"},className:\"framer-wkaev6\",\"data-framer-name\":\"transformation 7\",name:\"transformation 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:410,intrinsicWidth:584,pixelHeight:410,pixelWidth:584,sizes:\"434px\",src:\"https://framerusercontent.com/images/msEumMZhHMBUZmfnk3mf872RpQ.png\",srcSet:\"https://framerusercontent.com/images/msEumMZhHMBUZmfnk3mf872RpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/msEumMZhHMBUZmfnk3mf872RpQ.png 584w\"},className:\"framer-10tk9fk\",\"data-framer-name\":\"transformation 8\",name:\"transformation 8\"})],speed:120,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6x018n\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gteomb\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12498uw\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e7olnp\",\"data-styles-preset\":\"DEds97uf4\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"SUCCESS STORIES\"})}),className:\"framer-7f4wwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15u3end\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"What My Clients Say\"})}),className:\"framer-k0ko6f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zx9ycw-container\",\"data-framer-name\":\"Testimonial Ticker\",name:\"Testimonial Ticker\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"JcllDE2pd\",layoutId:\"JcllDE2pd\",name:\"Testimonial Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1onafiy\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 1\",name:\"Testimonial Card 1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gb7daq\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aztujz-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Pd0XxdXUp\",layoutId:\"Pd0XxdXUp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yezssr-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"N_bdd5V6d\",layoutId:\"N_bdd5V6d\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qosllp-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mTYgLk_Yx\",layoutId:\"mTYgLk_Yx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1juwd2m-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"dJlU83EBR\",layoutId:\"dJlU83EBR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pc1kii-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"D_wQ59Eoc\",layoutId:\"D_wQ59Eoc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Yeah I had to double check, jumped on the scale 3 times to make sure it wasn't wobbly. Thank you for keeping me on it I would've given up a few weeks back since I wasn't seeing movement.\"})}),className:\"framer-dwhn1w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ngg9g\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f3puce\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Rafael V.\"})}),className:\"framer-1p76alm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b82v1k\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 2\",name:\"Testimonial Card 2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dbq0qg\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p9x0o6-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"OZi0NIEEI\",layoutId:\"OZi0NIEEI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cif8l1-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"R4zvpKPOh\",layoutId:\"R4zvpKPOh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yngz70-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wpypL4qew\",layoutId:\"wpypL4qew\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yslh3k-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Rz93PnFSZ\",layoutId:\"Rz93PnFSZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gp56gc-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RGMjsRN2S\",layoutId:\"RGMjsRN2S\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"I wouldn't be here if it weren't for you coach! You taught me that fitness is something that should be prioritized.\"})}),className:\"framer-18wnp68\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xs3714\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vqpq0y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Matthew C.\"})}),className:\"framer-9v03lt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d7pbsj\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 3\",name:\"Testimonial Card 3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14vbdin\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c9i2y1-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"kC7js1sQP\",layoutId:\"kC7js1sQP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6uhrr-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CHUkPvuWk\",layoutId:\"CHUkPvuWk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8fuzr-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"KJByT0ejf\",layoutId:\"KJByT0ejf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohtjop-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"LjfT8uN6E\",layoutId:\"LjfT8uN6E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9sl9ty-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mcj5k2bct\",layoutId:\"mcj5k2bct\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"I went home to shower and weighed myself and I was down to 424.8. Another 5 pounds down and a total of 21lbs since I joined T1DIAL Training [10 Weeks].\"})}),className:\"framer-1kv75wk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8kldpc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l6fbiz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Louiz E.\"})}),className:\"framer-1j9gedp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i23f9w\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 4\",name:\"Testimonial Card 4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n5yrsa\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xy2psh-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"PRtP_e8qa\",layoutId:\"PRtP_e8qa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bc4rf2-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"oqHK3MdlE\",layoutId:\"oqHK3MdlE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vlbz3f-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"v5VpZcwUL\",layoutId:\"v5VpZcwUL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sr30w3-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"XO_drw79G\",layoutId:\"XO_drw79G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ifhlwx-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"TL0XZjF1K\",layoutId:\"TL0XZjF1K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"I am finally in the 160's!!!!!!\"})}),className:\"framer-5c2nes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14f1l55\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zk8los\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Leo C.\"})}),className:\"framer-f0s84h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kt5g1u\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 5\",name:\"Testimonial Card 5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fc573\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v649u2-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"MRv2BgsXp\",layoutId:\"MRv2BgsXp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pah18j-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"A6Z8q4yeM\",layoutId:\"A6Z8q4yeM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kxlxwy-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ztYmgp9UV\",layoutId:\"ztYmgp9UV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxhwvz-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BPd2QRcMO\",layoutId:\"BPd2QRcMO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v78jpw-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AYtcFSDx0\",layoutId:\"AYtcFSDx0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Now the progress I've made both before and after joining T1DIAL means I'll never go back to that. Never just be a lump on the couch. T1DIAL has changed my life.\"})}),className:\"framer-1f96afo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ueyqp6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5vcv2c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Eric R.\"})}),className:\"framer-1jtx2og\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17h828l\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 6\",name:\"Testimonial Card 6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16re72s\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0cqlj-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"c3H0tbv66\",layoutId:\"c3H0tbv66\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c4u7fq-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lG3VOtdKi\",layoutId:\"lG3VOtdKi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-188vz7t-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VykiD7it3\",layoutId:\"VykiD7it3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e5i6xv-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"x4TvWnaRY\",layoutId:\"x4TvWnaRY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2kdlm-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Z6klPf5Gk\",layoutId:\"Z6klPf5Gk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"October 15th I weighed in @ 350 this morning (3 weeks later) I weighed in at 340!\"})}),className:\"framer-1q61ge5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgrt5h\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q6itfi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Pedro R.\"})}),className:\"framer-vkpknx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y121y7\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 7\",name:\"Testimonial Card 7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p8dmul\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hh1tj7-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uMb8z1bUY\",layoutId:\"uMb8z1bUY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d97xuq-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"bpk_2cEj3\",layoutId:\"bpk_2cEj3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gmidru-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wiNnM8ZSd\",layoutId:\"wiNnM8ZSd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i33ex0-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"dzidPm_37\",layoutId:\"dzidPm_37\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tp6qaz-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"unIMcBYER\",layoutId:\"unIMcBYER\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"This way of seeing it as lifestyle wouldn\u2019t have happened without your coaching.\"})}),className:\"framer-1shew2i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n96bp4\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zq2bx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Yesenia R.\"})}),className:\"framer-96ihpr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fl7j3i\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card 8\",name:\"Testimonial Card 8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m6z36p\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpxvp9-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CdrjGuYpZ\",layoutId:\"CdrjGuYpZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xt46rf-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"WZsoU3Hqm\",layoutId:\"WZsoU3Hqm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wegexo-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"WfoIUeEu4\",layoutId:\"WfoIUeEu4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ykb0a-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"pCac2m_6V\",layoutId:\"pCac2m_6V\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14soc40-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"QqQGtHtyi\",layoutId:\"QqQGtHtyi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"I feel really great about myself and it has 100% to do with you changing my relationship with food. That's my biggest takeaway from this program along with new workouts. Excited to see where we go.\"})}),className:\"framer-1a9ioyl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ws9wol\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uswptu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Rishaad T.\"})}),className:\"framer-1w4erft\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"fVUFrmBwf\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-lztk18 framer-ozm13r\",\"data-framer-name\":\"Share Your Success Link\",name:\"Share Your Success Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:2772.8},uOyj92Wvu:{y:3557.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17hwgnu-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"lPwYMUIkb\",layoutId:\"lPwYMUIkb\",style:{height:\"100%\"},variant:\"YGL8zdGk6\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-gc2rm6\",\"data-border\":true,\"data-framer-name\":\"Features Section\",name:\"Features Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Custom Plans. \",/*#__PURE__*/_jsx(\"br\",{}),\"Proven Results.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",children:\"Personalization Meets Performance\"})}),className:\"framer-t6h384\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezlklm\",\"data-framer-name\":\"Features Stack\",name:\"Features Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xpgjdk\",\"data-framer-name\":\"Feature 1\",name:\"Feature 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mh15yj-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"run\",iconSelection:\"Person\",id:\"pDcieE0nI\",layoutId:\"pDcieE0nI\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120oebb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-c8dh0g\",\"data-styles-preset\":\"ZnPlhiXl5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beginner Friendly\"})}),className:\"framer-1cugz48\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mn9wn8\",\"data-styles-preset\":\"yS42JdO6j\",children:\"Dive into fitness with ease and support with T1DIAL TRAINING's beginner-friendly programs, designed to welcome you into a world of health and strength, no matter your starting point.\"})}),className:\"framer-1ekvf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4rk860\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16e6tpd-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"run\",iconSelection:\"Barbell\",id:\"XHQouOhps\",layoutId:\"XHQouOhps\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-spjvkh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-c8dh0g\",\"data-styles-preset\":\"ZnPlhiXl5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Strength Training\"})}),className:\"framer-130tqig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mn9wn8\",\"data-styles-preset\":\"yS42JdO6j\",children:\"Designed to empower you with muscle-building techniques that fit seamlessly into even the busiest schedules. Through personalized online training, we guide you in developing a stronger, more resilient body.\"})}),className:\"framer-elwu51\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13273cq\",\"data-framer-name\":\"Feature 3\",name:\"Feature 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gku6s0\",\"data-framer-name\":\"ion:fitness\",layout:\"position\",name:\"ion:fitness\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 18.159 14.329 C 18.293 14.06 18.505 13.838 18.768 13.691 C 19.03 13.544 19.33 13.479 19.63 13.505 C 19.929 13.531 20.214 13.646 20.447 13.836 C 20.681 14.025 20.851 14.281 20.938 14.569 L 24.35 25.946 L 27.163 20.329 C 27.287 20.08 27.479 19.87 27.716 19.724 C 27.953 19.577 28.226 19.5 28.504 19.5 C 28.783 19.5 29.056 19.577 29.293 19.724 C 29.53 19.87 29.721 20.08 29.846 20.329 L 32.428 25.5 L 41.499 25.5 C 42.849 22.716 43.535 19.655 43.501 16.561 C 43.441 10.738 38.77 6 33.087 6 C 28.578 6 25.587 8.769 24 10.781 C 22.418 8.767 19.423 6 14.914 6 C 9.231 6 4.56 10.738 4.5 16.561 C 4.476 18.572 4.759 20.574 5.338 22.5 L 14.073 22.5 Z\" fill=\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0)) /* {&quot;name&quot;:&quot;gold&quot;} */\"></path><path d=\"M 30.158 27.671 L 28.5 24.354 L 25.342 30.671 C 25.217 30.92 25.025 31.13 24.788 31.276 C 24.551 31.422 24.278 31.5 24 31.5 C 23.958 31.5 23.915 31.498 23.871 31.494 C 23.57 31.469 23.285 31.355 23.05 31.165 C 22.816 30.975 22.645 30.72 22.558 30.431 L 19.146 19.054 L 16.333 24.671 C 16.209 24.919 16.019 25.128 15.784 25.274 C 15.548 25.42 15.277 25.498 15 25.5 L 6.502 25.5 C 7.377 27.331 8.541 29.133 9.996 30.906 C 11.755 33.051 14.946 36.48 22.313 41.481 C 22.81 41.822 23.399 42.004 24.001 42.004 C 24.603 42.004 25.192 41.822 25.688 41.481 C 33.056 36.48 36.247 33.051 38.006 30.906 C 38.64 30.134 39.235 29.331 39.787 28.5 L 31.5 28.5 C 31.221 28.5 30.948 28.422 30.711 28.276 C 30.475 28.13 30.283 27.92 30.158 27.671 Z M 43.5 25.5 L 41.498 25.5 C 41 26.539 40.428 27.542 39.787 28.5 L 43.5 28.5 C 43.898 28.5 44.279 28.342 44.561 28.061 C 44.842 27.779 45 27.398 45 27 C 45 26.602 44.842 26.221 44.561 25.939 C 44.279 25.658 43.898 25.5 43.5 25.5 Z M 4.5 22.5 C 4.102 22.5 3.721 22.658 3.439 22.939 C 3.158 23.221 3 23.602 3 24 C 3 24.398 3.158 24.779 3.439 25.061 C 3.721 25.342 4.102 25.5 4.5 25.5 L 6.502 25.5 C 6.038 24.531 5.648 23.528 5.337 22.5 Z\" fill=\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0)) /* {&quot;name&quot;:&quot;gold&quot;} */\"></path></svg>',svgContentId:9175697022,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4xsxi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-c8dh0g\",\"data-styles-preset\":\"ZnPlhiXl5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Weight Loss\"})}),className:\"framer-1dpiy0x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mn9wn8\",\"data-styles-preset\":\"yS42JdO6j\",children:\"Embrace a weight loss journey that defies the norm, where our D.I.R.T.Y CUT Method integrates indulgence with effective fat loss strategies, making it possible to enjoy your meals and see transformative results.\"})}),className:\"framer-1q9ej5r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ejeum2\",\"data-framer-name\":\"Feature 4\",name:\"Feature 4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kutdjp-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\",height:\"100%\",iconSearch:\"run\",iconSelection:\"Person\",id:\"mpZByAom0\",layoutId:\"mpZByAom0\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16oz4fx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-c8dh0g\",\"data-styles-preset\":\"ZnPlhiXl5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lifestyle Fitness\"})}),className:\"framer-1qde9y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mn9wn8\",\"data-styles-preset\":\"yS42JdO6j\",children:\"Transform your daily routine into a health-boosting powerhouse with T1DIAL TRAINING's lifestyle fitness approach, where the goal is to make fitness a natural and enjoyable part of your everyday life.\"})}),className:\"framer-1x7fdia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a8thjx hidden-1ky7t0 hidden-e1w47q\",\"data-framer-name\":\"Welcome Section\",name:\"Welcome Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uqhcin\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fi7g9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tp7zh5\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2u0zlb\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1grns20\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m057sj\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e7olnp\",\"data-styles-preset\":\"DEds97uf4\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"WELCOME\"})}),className:\"framer-11c480w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Indulge, Thrive, & Achieve - Fitness Tailored for Busy Lives\"})}),className:\"framer-3kn3af\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__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__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"T1DIAL TRAINING was designed with the realities of busy parents in mind, our online personal training programs range from quick 15-minute home workouts to detailed gym-focused plans, ensuring that no matter how packed your schedule, there's always time for fitness. We'd love to welcome you to the T1DIAL Wave, our vibrant online community, where support and motivation are just a click away. Here, every achievement is celebrated, and every challenge is faced together.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"The journey to your best self starts today!\"})]}),className:\"framer-13tvwdn\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"Zby07DczL\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1mt6pvj framer-ozm13r\",\"data-framer-name\":\"About Us Link\",name:\"About Us Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xv7yie-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZG1SQh1HF\",layoutId:\"ZG1SQh1HF\",style:{height:\"100%\"},variant:\"rWZwzbUnu\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"best-personal-trainer-los-angeles\",fit:\"fit\",intrinsicHeight:1800,intrinsicWidth:1440,pixelHeight:1800,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 200px, 1px), 1240px)\",src:\"https://framerusercontent.com/images/T4ZgGkCFBq22zMETIS3363TM6E.jpg\",srcSet:\"https://framerusercontent.com/images/T4ZgGkCFBq22zMETIS3363TM6E.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/T4ZgGkCFBq22zMETIS3363TM6E.jpg 1440w\"},className:\"framer-1b8dhg1\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1je6efj hidden-1ky7t0\",\"data-framer-name\":\"Testimonials Section\",name:\"Testimonials Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fv5vcp\",\"data-border\":true,\"data-framer-name\":\"Contact Section\",id:elementId,name:\"Contact Section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1si60b9\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpmnk0\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"uC_R1smlE\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1w45zvf framer-ozm13r\",\"data-framer-name\":\"Form Link\",name:\"Form Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1augct1-container\",children:/*#__PURE__*/_jsx(Typeform,{autoFocus:true,formId:\"rNeu6Lsk\",height:\"100%\",hideFooter:false,hideHeaders:false,id:\"ltw7_kdtX\",layoutId:\"ltw7_kdtX\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6poaq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwfpmn\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ycr30a\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mezch8\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"CONTACT ME\"})}),className:\"framer-1hblxnq\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",children:\"Get Your First Week Free!\"})}),className:\"framer-6xlbda\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__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(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",children:\"Take the first step towards a healthier, happier you with T1DIAL TRAINING. Sign up now and begin your transformation with our personalized online personal training, nutrition, and mindset coaching tailored just for you.\"})}),className:\"framer-1td1dwm\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktbtq4\",\"data-framer-name\":\"Articles Section\",name:\"Articles Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgbgf4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvbc0l\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5o0i1\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ievij\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e7olnp\",\"data-styles-preset\":\"DEds97uf4\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"ARTICLES\"})}),className:\"framer-1q4ooe9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:\"Fitness Content\"})}),className:\"framer-damanb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":BrhE_C6Om\",webPageId:\"UX8jOaQwI\"},nodeId:\"hoPUE6hh9\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-s7ts3l\",\"data-styles-preset\":\"l42ksQCOy\",children:\"See All\"})})})}),className:\"framer-1r4qp2\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17d3oqq\",\"data-framer-name\":\"Articles\",name:\"Articles\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11novmj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Xx_e9riDB\",data:FitnessArticles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Xx_e9riDB\",name:\"UM0cVh4Eu\",type:\"Identifier\"},{collection:\"Xx_e9riDB\",name:\"U5AY8JDGI\",type:\"Identifier\"},{collection:\"Xx_e9riDB\",name:\"XEy54wrzi\",type:\"Identifier\"},{collection:\"Xx_e9riDB\",name:\"x4nbGqkFi\",type:\"Identifier\"},{collection:\"Xx_e9riDB\",name:\"IiLTzEHg4\",type:\"Identifier\"},{collection:\"Xx_e9riDB\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"UM0cVh4Eu\":UM0cVh4EuXx_e9riDB,\"U5AY8JDGI\":U5AY8JDGIXx_e9riDB,\"XEy54wrzi\":XEy54wrziXx_e9riDB,\"x4nbGqkFi\":x4nbGqkFiXx_e9riDB,\"IiLTzEHg4\":IiLTzEHg4Xx_e9riDB,\"id\":idXx_e9riDB},i)=>{U5AY8JDGIXx_e9riDB!==null&&U5AY8JDGIXx_e9riDB!==void 0?U5AY8JDGIXx_e9riDB:U5AY8JDGIXx_e9riDB=\"\";XEy54wrziXx_e9riDB!==null&&XEy54wrziXx_e9riDB!==void 0?XEy54wrziXx_e9riDB:XEy54wrziXx_e9riDB=\"\";IiLTzEHg4Xx_e9riDB!==null&&IiLTzEHg4Xx_e9riDB!==void 0?IiLTzEHg4Xx_e9riDB:IiLTzEHg4Xx_e9riDB=\"\";const textContent=toDateString(x4nbGqkFiXx_e9riDB,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Xx_e9riDB-${idXx_e9riDB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IiLTzEHg4:IiLTzEHg4Xx_e9riDB},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2msd1t\",\"data-framer-name\":\"Article Card\",name:\"Article Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3457.8833333333337),sizes:\"max((min(100vw - 100px, 1240px) - 20px) / 2, 200px)\",...toResponsiveImage(UM0cVh4EuXx_e9riDB)}},uOyj92Wvu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(25963.199999999997),sizes:\"min(100vw - 40px, 1240px)\",...toResponsiveImage(UM0cVh4EuXx_e9riDB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"max((max(min(100vw - 200px, 1240px) - 380px, 1px) - 20px) / 2, 200px)\",...toResponsiveImage(UM0cVh4EuXx_e9riDB)},className:\"framer-1lqrcli\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phit4j\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8rv1jx\",\"data-styles-preset\":\"hX_K3PayB\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"Nutrition\"})}),className:\"framer-sv6e9a\",\"data-framer-name\":\"Article Type\",fonts:[\"Inter\"],name:\"Article Type\",text:U5AY8JDGIXx_e9riDB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-h5hugv\",\"data-styles-preset\":\"Lur6TJwDX\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Why Using a Food Scale Is the Secret to Consistent Weight Loss\"})}),className:\"framer-1i8tgd4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:XEy54wrziXx_e9riDB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pdlxg4\",\"data-styles-preset\":\"hOJ550JOU\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Nov 7, 2024\"})}),className:\"framer-1dgdkzj\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1237xcy\",\"data-styles-preset\":\"ZuBpUyaq_\",style:{\"--framer-text-color\":\"var(--token-3d1be4c0-d677-4b96-89a1-27d4da8bbbc9, rgb(220, 177, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IiLTzEHg4:IiLTzEHg4Xx_e9riDB},webPageId:\"ngKNcGIRj\"},nodeId:\"Qf3iZgOBv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-s7ts3l\",\"data-styles-preset\":\"l42ksQCOy\",children:\"Read More\"})})})}),className:\"framer-9dwq7z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})},idXx_e9riDB);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g0lz5\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jkxA975uA\",data:FitnessArticles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"jkxA975uA\",name:\"U5AY8JDGI\",type:\"Identifier\"},{collection:\"jkxA975uA\",name:\"XEy54wrzi\",type:\"Identifier\"},{collection:\"jkxA975uA\",name:\"x4nbGqkFi\",type:\"Identifier\"},{collection:\"jkxA975uA\",name:\"IiLTzEHg4\",type:\"Identifier\"},{collection:\"jkxA975uA\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"U5AY8JDGI\":U5AY8JDGIjkxA975uA,\"XEy54wrzi\":XEy54wrzijkxA975uA,\"x4nbGqkFi\":x4nbGqkFijkxA975uA,\"IiLTzEHg4\":IiLTzEHg4jkxA975uA,\"id\":idjkxA975uA},i)=>{U5AY8JDGIjkxA975uA!==null&&U5AY8JDGIjkxA975uA!==void 0?U5AY8JDGIjkxA975uA:U5AY8JDGIjkxA975uA=\"\";XEy54wrzijkxA975uA!==null&&XEy54wrzijkxA975uA!==void 0?XEy54wrzijkxA975uA:XEy54wrzijkxA975uA=\"\";IiLTzEHg4jkxA975uA!==null&&IiLTzEHg4jkxA975uA!==void 0?IiLTzEHg4jkxA975uA:IiLTzEHg4jkxA975uA=\"\";const textContent1=toDateString(x4nbGqkFijkxA975uA,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`jkxA975uA-${idjkxA975uA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IiLTzEHg4:IiLTzEHg4jkxA975uA},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cbej3\",\"data-framer-name\":\"Article Card\",name:\"Article Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kjw1f0\",\"data-border\":true,\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"Fitness\"})}),className:\"framer-1r5gg54\",\"data-framer-name\":\"Article Type\",fonts:[\"GF;Roboto-regular\"],name:\"Article Type\",text:U5AY8JDGIjkxA975uA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Fit It In: 7 Quick and Effective Workouts for Even the Busiest Schedules\"})}),className:\"framer-1t10tqc\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Bold\"],name:\"Title\",text:XEy54wrzijkxA975uA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Oct 10, 2024\"})}),className:\"framer-1f83pgl\",\"data-framer-name\":\"Date\",fonts:[\"GF;Roboto-regular\"],name:\"Date\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMGl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(253, 131, 1)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IiLTzEHg4:IiLTzEHg4jkxA975uA},webPageId:\"ngKNcGIRj\"},nodeId:\"bjVcwjwQp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-s7ts3l\",\"data-styles-preset\":\"l42ksQCOy\",children:\"Read More\"})})})}),className:\"framer-8p22q7\",fonts:[\"GF;Roboto-700italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})},idjkxA975uA);})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2qh7d\",\"data-border\":true,\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rj4pix\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gykwx\",\"data-framer-name\":\"Content\",name:\"Content\",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-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-color\":\"var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, rgb(255, 255, 255))\"},children:\"Get started today.\"})}),className:\"framer-1u88v3g\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ocudru\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"kbCrd5Gfj\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-195d3q7 framer-ozm13r\",\"data-framer-name\":\"Get Started Link\",name:\"Get Started Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9f75u7-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"rMGai5Mn9\",layoutId:\"rMGai5Mn9\",style:{height:\"100%\"},variant:\"rWZwzbUnu\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZZP82XtIl\"},nodeId:\"oydnQxH1U\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-15ajg2j framer-ozm13r\",\"data-framer-name\":\"Our Programs Link\",name:\"Our Programs Link\"})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h7i0c hidden-e1w47q\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"best-personal-trainer-biceps-los-angeles\",fit:\"fit\",intrinsicHeight:577,intrinsicWidth:433,pixelHeight:577,pixelWidth:433,positionX:\"center\",positionY:\"center\",sizes:\"446.281px\",src:\"https://framerusercontent.com/images/Ko83bWK4dBxwoanMV3sNddtmTI.png\",srcSet:\"https://framerusercontent.com/images/Ko83bWK4dBxwoanMV3sNddtmTI.png 433w\"},className:\"framer-lqypd8\",\"data-framer-name\":\"Runner\",name:\"Runner\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{background:{alt:\"best-personal-trainer-squat-wokrout-los-angeles\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(27375.499999999985),pixelHeight:4032,pixelWidth:3024,sizes:\"100vw\",src:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg\",srcSet:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg 3024w\"}},uOyj92Wvu:{background:{alt:\"best-personal-trainer-squat-wokrout-los-angeles\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(49010.399999999994),pixelHeight:4032,pixelWidth:3024,sizes:\"100vw\",src:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg\",srcSet:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"best-personal-trainer-squat-wokrout-los-angeles\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,pixelHeight:4032,pixelWidth:3024,sizes:\"100vw\",src:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg\",srcSet:\"https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/DqtMKXhsgkMxv22T4vwTDPbAaAg.jpg 3024w\"},className:\"framer-4xzv1b\",\"data-framer-name\":\"CTA Background Image\",name:\"CTA Background Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-br1c49\",\"data-framer-name\":\"Instagram Section\",name:\"Instagram Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhewqm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1otg2c0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4pc94\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-epyqqu\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3hfsb\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e7olnp\",\"data-styles-preset\":\"DEds97uf4\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"FOLLOW ME\"})}),className:\"framer-ox72zv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13h8ry3\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Fitness & Lifestyle Tips\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-color\":\"var(--token-a6236882-c687-4922-a233-827222edc1c2, rgb(26, 26, 26))\"},children:\"Fitness & Lifestyle Tips\"})}),className:\"framer-1ijlwo4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12luhnr-container\",\"data-framer-name\":\"Instagram Ticker\",name:\"Instagram Ticker\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"AfbpTiPo0\",layoutId:\"AfbpTiPo0\",name:\"Instagram Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-978v5x-container\",children:/*#__PURE__*/_jsx(InstagramImage1,{height:\"100%\",id:\"Bmn8LxQKO\",layoutId:\"Bmn8LxQKO\",LLd1LgDrg:addImageAlt({src:\"https://framerusercontent.com/images/a6YTgZB99ujYMS6o5aGCpUfgC0.jpg\",srcSet:\"https://framerusercontent.com/images/a6YTgZB99ujYMS6o5aGCpUfgC0.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/a6YTgZB99ujYMS6o5aGCpUfgC0.jpg 1080w\"},\"best-blueberry-waffle-recipe\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ij8fn-container\",children:/*#__PURE__*/_jsx(InstagramImage2,{d1HFXrxPP:\"https://www.instagram.com/flexcam_91\",height:\"100%\",id:\"veMBj68Zu\",layoutId:\"veMBj68Zu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7aqsj-container\",children:/*#__PURE__*/_jsx(InstagramImage3,{height:\"100%\",id:\"CHZLZFNr9\",layoutId:\"CHZLZFNr9\",NEfPjKuxx:\"https://www.instagram.com/flexcam_91\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1agfpxt-container\",children:/*#__PURE__*/_jsx(InstagramImage4,{height:\"100%\",id:\"I2UUn86IN\",layoutId:\"I2UUn86IN\",OuczSx2cc:\"https://www.instagram.com/flexcam_91\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-re936z-container\",children:/*#__PURE__*/_jsx(InstagramImage5,{height:\"100%\",id:\"xKVmr8oSo\",layoutId:\"xKVmr8oSo\",style:{height:\"100%\",width:\"100%\"},VX0b7BHGq:\"https://www.instagram.com/flexcam_91\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17lqor6-container\",children:/*#__PURE__*/_jsx(InstagramImage6,{height:\"100%\",id:\"Qjf5O0h8j\",layoutId:\"Qjf5O0h8j\",nIaUhupHF:\"https://www.instagram.com/flexcam_91\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/flexcam_91\",nodeId:\"sq3ZsiQFF\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-dvxv6a framer-ozm13r\",\"data-framer-name\":\"Follow Our Instagram Link\",name:\"Follow Our Instagram Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:28329.299999999985},uOyj92Wvu:{y:49900.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqhaji-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"XNhv3pQ2L\",layoutId:\"XNhv3pQ2L\",style:{height:\"100%\"},variant:\"YGL8zdGk6\",width:\"100%\",wOU8USZAF:\"Follow My Instagram\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, rgb(255, 255, 255))\"},children:\"Free Fitness & Lifestyle Tips\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",style:{\"--framer-text-color\":\"var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, rgb(255, 255, 255))\"},children:\"Free Fitness & Lifestyle Tips\"})}),className:\"framer-gqq1fa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6husw\",\"data-border\":true,\"data-framer-name\":\"Location Section\",name:\"Location Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q3hxjz-container\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:\"34.081019719622354, -118.40474097526936\",height:\"100%\",id:\"ggDVA2Hd9\",isMixedBorderRadius:false,layoutId:\"ggDVA2Hd9\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:15})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15a9vx1\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1om04rg\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12dubd7\",\"data-framer-name\":\"Title Stack\",name:\"Title Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4t70o\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-120gma9\",\"data-framer-name\":\"Orange Bar\",name:\"Orange Bar\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e7olnp\",\"data-styles-preset\":\"DEds97uf4\",style:{\"--framer-text-color\":\"var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, rgb(0, 166, 165))\"},children:\"LOCATION\"})}),className:\"framer-s1yo8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",children:\"Get Started Today.\"})}),className:\"framer-zbb2g0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ddvadc\",\"data-styles-preset\":\"iMy6yFwqF\",children:\"Get started on the body and results you want.\"})}),className:\"framer-13n09hf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://ghostai.typeform.com/t1dialtraining\",nodeId:\"kl8ZjYcWj\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-8wzc4n framer-ozm13r\",\"data-framer-name\":\"Start Now Link\",name:\"Start Now Link\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:28820.299999999985},uOyj92Wvu:{y:50591.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m6java-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Hc08dnbRL\",layoutId:\"Hc08dnbRL\",style:{height:\"100%\"},variant:\"rWZwzbUnu\",width:\"100%\",wOU8USZAF:\"Get a free week\"})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-75hr09\",\"data-framer-name\":\"Templates\",name:\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxxjyi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pji9qa\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3},className:\"framer-wv3v1q\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11io7a3-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.bbb.org/us/ca/fontana/profile/health-and-fitness-services/t1dial-training-llc-1066-850111588/#sealclick\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://seal-cencal.bbb.org/seals/blue-seal-293-61-whitetxt-bbb-850111588.png\" style=\"border: 0;\" alt=\"T1DIAL Training, LLC BBB Business Review\" /></a>',id:\"ALRoL_zoX\",layoutId:\"ALRoL_zoX\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19pyrz9\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3},className:\"framer-1ir3987\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xs9era-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uOyj92Wvu:{html:'<div style=\"text-align: left;\">\\n    <a href=\"https://www.bbb.org/central-california-inland-empire/customer-reviews/health-and-fitness-services/t1dial-training-llc-in-fontana-ca-850111588/add/\" target=\"_blank\" rel=\"nofollow\">\\n        <img src=\"https://seal-cencal.bbb.org/customer-reviews/badge-7-bbb-850111588.png\" style=\"border: 0;\" alt=\"T1DIAL Training, LLC BBB Business Review\" />\\n    </a>\\n</div>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.bbb.org/central-california-inland-empire/customer-reviews/health-and-fitness-services/t1dial-training-llc-in-fontana-ca-850111588/add/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://seal-cencal.bbb.org/customer-reviews/badge-7-bbb-850111588.png\" style=\"border: 0;\" alt=\"T1DIAL Training, LLC BBB Business Review\" /></a>',id:\"ekm3jrTN0\",layoutId:\"ekm3jrTN0\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zIszZYo_e\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"UX8jOaQwI\"},implicitPathVariables:undefined},{href:{webPageId:\"yPKAEZpEe\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":G4GQdyRah\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":t1_yaKNYb\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"zIszZYo_e\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"UX8jOaQwI\"},implicitPathVariables:undefined},{href:{webPageId:\"yPKAEZpEe\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":G4GQdyRah\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":t1_yaKNYb\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"zIszZYo_e\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"UX8jOaQwI\"},implicitPathVariables:undefined},{href:{webPageId:\"yPKAEZpEe\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":G4GQdyRah\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":t1_yaKNYb\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{y:29131.899999999987},uOyj92Wvu:{y:51171.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:533,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12cesk6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9dKC_GEp:{AdygXBqqe:resolvedLinks[16],eBTj2VCCF:resolvedLinks[13],Hb6uRrsMv:resolvedLinks[11],isAvBXHj8:resolvedLinks[12],IVfduDUcD:resolvedLinks[10],LphnLmOQ_:resolvedLinks[19],QbwRHwD7i:resolvedLinks[17],ttfCXDhu7:resolvedLinks[14],v21Hf7xSh:resolvedLinks[18],variant:\"I40Ux2jfg\",ViJnOi2Jc:resolvedLinks[15]},uOyj92Wvu:{AdygXBqqe:resolvedLinks[26],eBTj2VCCF:resolvedLinks[23],Hb6uRrsMv:resolvedLinks[21],isAvBXHj8:resolvedLinks[22],IVfduDUcD:resolvedLinks[20],LphnLmOQ_:resolvedLinks[29],QbwRHwD7i:resolvedLinks[27],ttfCXDhu7:resolvedLinks[24],v21Hf7xSh:resolvedLinks[28],variant:\"T9CfV1enk\",ViJnOi2Jc:resolvedLinks[25]}},children:/*#__PURE__*/_jsx(Footer,{AdygXBqqe:resolvedLinks[6],eBTj2VCCF:resolvedLinks[3],fA_aeKj4K:\"https://www.threads.net\",fqzQ463hO:\"https://www.facebook.com\",Hb6uRrsMv:resolvedLinks[1],height:\"100%\",id:\"fpWT0seIs\",isAvBXHj8:resolvedLinks[2],IVfduDUcD:resolvedLinks[0],layoutId:\"fpWT0seIs\",LphnLmOQ_:resolvedLinks[9],QbwRHwD7i:resolvedLinks[7],style:{width:\"100%\"},ttfCXDhu7:resolvedLinks[4],v21Hf7xSh:resolvedLinks[8],variant:\"r51QG3NQM\",ViJnOi2Jc:resolvedLinks[5],width:\"100%\",xGtoFxVRw:\"https://www.tiktok.com\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-OPLhU { background: #1A1A1A; }`,\".framer-OPLhU.framer-ozm13r, .framer-OPLhU .framer-ozm13r { display: block; }\",\".framer-OPLhU.framer-vaf0s7 { align-content: center; align-items: center; background-color: #1a1a1a; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-OPLhU .framer-7ekihe-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 5; }\",\".framer-OPLhU .framer-1e3lxk7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 796px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1b02clz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-OPLhU .framer-113re65 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 575px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-OPLhU .framer-1wl70l1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-OPLhU .framer-pla6qn-container, .framer-OPLhU .framer-6fbngo-container, .framer-OPLhU .framer-17hwgnu-container, .framer-OPLhU .framer-1xv7yie-container, .framer-OPLhU .framer-9f75u7-container, .framer-OPLhU .framer-1kqhaji-container, .framer-OPLhU .framer-m6java-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-OPLhU .framer-amk533 { --framer-paragraph-spacing: 0px; flex: none; height: 27px; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 575px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-OPLhU .framer-7bufx7 { background-color: rgba(0, 0, 0, 0.25); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-OPLhU .framer-fztisd { flex: none; height: 73px; overflow: hidden; position: relative; text-decoration: none; width: 400px; }\",\".framer-OPLhU .framer-e8cpt4 { flex: none; height: 72px; left: 0px; position: absolute; right: 0px; top: calc(49.315068493150704% - 72px / 2); }\",\".framer-OPLhU .framer-1t4a24t { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-3v6aid { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 315px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-1y7lgf5 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-16jymwd { align-content: flex-start; align-items: flex-start; background-color: var(--token-a6236882-c687-4922-a233-827222edc1c2, #1a1a1a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 50px 20px 50px 20px; position: relative; width: 400px; }\",\".framer-OPLhU .framer-1rvhw1w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-1tg7fln { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-15ybk7f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-OPLhU .framer-1w3puy5 { align-content: center; align-items: center; background-color: var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, #00a6a5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1eevq5u-container { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1apm8u5, .framer-OPLhU .framer-8cqt5l, .framer-OPLhU .framer-qwpy0a, .framer-OPLhU .framer-1185xzn, .framer-OPLhU .framer-11hzszl, .framer-OPLhU .framer-1ssjsyk, .framer-OPLhU .framer-99dzgw, .framer-OPLhU .framer-1ae9lzf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-1aaw5ib, .framer-OPLhU .framer-x83vw4, .framer-OPLhU .framer-1959laa, .framer-OPLhU .framer-1rh39js, .framer-OPLhU .framer-hs5y8g, .framer-OPLhU .framer-nz1stm, .framer-OPLhU .framer-pfh3lf, .framer-OPLhU .framer-1slfgx0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OPLhU .framer-wg5e16, .framer-OPLhU .framer-1je6efj { align-content: center; align-items: center; background-color: var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-89lrsd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-wx6zn4 { flex: none; height: 116px; position: relative; text-decoration: none; width: 400px; }\",\".framer-OPLhU .framer-1tlx1pr, .framer-OPLhU .framer-fv3o44 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-ugjjs3, .framer-OPLhU .framer-1ccvw8c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-oexmx7-container, .framer-OPLhU .framer-1h9je1b-container, .framer-OPLhU .framer-1ugf4iw-container, .framer-OPLhU .framer-11qxdpt-container { flex: 0.5 0 0px; height: 320px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-1i7dr6i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 515px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 116%; }\",\".framer-OPLhU .framer-12wtpn5-container, .framer-OPLhU .framer-12luhnr-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1kd7xth, .framer-OPLhU .framer-5avapr, .framer-OPLhU .framer-52ianr, .framer-OPLhU .framer-fk2nt8, .framer-OPLhU .framer-178psc6, .framer-OPLhU .framer-10sn4ju, .framer-OPLhU .framer-wkaev6, .framer-OPLhU .framer-10tk9fk { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 320px; overflow: hidden; position: relative; width: 434px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OPLhU .framer-6x018n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 49px 0px 49px 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-gteomb, .framer-OPLhU .framer-1grns20, .framer-OPLhU .framer-ycr30a, .framer-OPLhU .framer-1l5o0i1, .framer-OPLhU .framer-epyqqu, .framer-OPLhU .framer-h4t70o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-12498uw, .framer-OPLhU .framer-15u3end, .framer-OPLhU .framer-m057sj, .framer-OPLhU .framer-mezch8, .framer-OPLhU .framer-4ievij, .framer-OPLhU .framer-t3hfsb, .framer-OPLhU .framer-13h8ry3, .framer-OPLhU .framer-120gma9 { background-color: var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, #00a6a5); flex: none; height: 2px; overflow: hidden; position: relative; width: 10px; }\",\".framer-OPLhU .framer-7f4wwr, .framer-OPLhU .framer-k0ko6f, .framer-OPLhU .framer-1p76alm, .framer-OPLhU .framer-9v03lt, .framer-OPLhU .framer-1j9gedp, .framer-OPLhU .framer-f0s84h, .framer-OPLhU .framer-1jtx2og, .framer-OPLhU .framer-vkpknx, .framer-OPLhU .framer-96ihpr, .framer-OPLhU .framer-1w4erft, .framer-OPLhU .framer-11c480w, .framer-OPLhU .framer-1hblxnq, .framer-OPLhU .framer-1q4ooe9, .framer-OPLhU .framer-damanb, .framer-OPLhU .framer-ox72zv, .framer-OPLhU .framer-1ijlwo4, .framer-OPLhU .framer-gqq1fa, .framer-OPLhU .framer-s1yo8g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-OPLhU .framer-zx9ycw-container { flex: none; height: 320px; max-width: 1240px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1onafiy, .framer-OPLhU .framer-b82v1k, .framer-OPLhU .framer-1d7pbsj, .framer-OPLhU .framer-1i23f9w, .framer-OPLhU .framer-kt5g1u, .framer-OPLhU .framer-17h828l, .framer-OPLhU .framer-1y121y7, .framer-OPLhU .framer-1fl7j3i { --border-bottom-width: 2px; --border-color: #3e3e3e; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 320px; justify-content: flex-start; padding: 30px; position: relative; width: 295px; }\",\".framer-OPLhU .framer-1gb7daq, .framer-OPLhU .framer-dbq0qg, .framer-OPLhU .framer-14vbdin, .framer-OPLhU .framer-n5yrsa, .framer-OPLhU .framer-1fc573, .framer-OPLhU .framer-16re72s, .framer-OPLhU .framer-1p8dmul, .framer-OPLhU .framer-1m6z36p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-aztujz-container, .framer-OPLhU .framer-yezssr-container, .framer-OPLhU .framer-1qosllp-container, .framer-OPLhU .framer-1juwd2m-container, .framer-OPLhU .framer-pc1kii-container, .framer-OPLhU .framer-1p9x0o6-container, .framer-OPLhU .framer-1cif8l1-container, .framer-OPLhU .framer-yngz70-container, .framer-OPLhU .framer-1yslh3k-container, .framer-OPLhU .framer-1gp56gc-container, .framer-OPLhU .framer-c9i2y1-container, .framer-OPLhU .framer-b6uhrr-container, .framer-OPLhU .framer-r8fuzr-container, .framer-OPLhU .framer-ohtjop-container, .framer-OPLhU .framer-9sl9ty-container, .framer-OPLhU .framer-1xy2psh-container, .framer-OPLhU .framer-1bc4rf2-container, .framer-OPLhU .framer-1vlbz3f-container, .framer-OPLhU .framer-1sr30w3-container, .framer-OPLhU .framer-ifhlwx-container, .framer-OPLhU .framer-v649u2-container, .framer-OPLhU .framer-pah18j-container, .framer-OPLhU .framer-1kxlxwy-container, .framer-OPLhU .framer-zxhwvz-container, .framer-OPLhU .framer-1v78jpw-container, .framer-OPLhU .framer-u0cqlj-container, .framer-OPLhU .framer-c4u7fq-container, .framer-OPLhU .framer-188vz7t-container, .framer-OPLhU .framer-e5i6xv-container, .framer-OPLhU .framer-c2kdlm-container, .framer-OPLhU .framer-1hh1tj7-container, .framer-OPLhU .framer-d97xuq-container, .framer-OPLhU .framer-gmidru-container, .framer-OPLhU .framer-i33ex0-container, .framer-OPLhU .framer-tp6qaz-container, .framer-OPLhU .framer-1dpxvp9-container, .framer-OPLhU .framer-xt46rf-container, .framer-OPLhU .framer-wegexo-container, .framer-OPLhU .framer-15ykb0a-container, .framer-OPLhU .framer-14soc40-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-OPLhU .framer-dwhn1w, .framer-OPLhU .framer-18wnp68, .framer-OPLhU .framer-1kv75wk, .framer-OPLhU .framer-5c2nes, .framer-OPLhU .framer-1f96afo, .framer-OPLhU .framer-1q61ge5, .framer-OPLhU .framer-1shew2i, .framer-OPLhU .framer-1a9ioyl { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-14ngg9g, .framer-OPLhU .framer-1xs3714, .framer-OPLhU .framer-8kldpc, .framer-OPLhU .framer-14f1l55, .framer-OPLhU .framer-ueyqp6, .framer-OPLhU .framer-1sgrt5h, .framer-OPLhU .framer-1n96bp4, .framer-OPLhU .framer-1ws9wol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-f3puce, .framer-OPLhU .framer-vqpq0y, .framer-OPLhU .framer-1l6fbiz, .framer-OPLhU .framer-zk8los, .framer-OPLhU .framer-5vcv2c, .framer-OPLhU .framer-q6itfi, .framer-OPLhU .framer-13zq2bx, .framer-OPLhU .framer-uswptu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-OPLhU .framer-lztk18, .framer-OPLhU .framer-1mt6pvj, .framer-OPLhU .framer-195d3q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OPLhU .framer-gc2rm6 { --border-bottom-width: 2px; --border-color: #3e3e3e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-7cf9f2a6-488a-4d8f-9ec8-5a98cf0878ed, #00a6a5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 100px 50px 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-t6h384 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-OPLhU .framer-1ezlklm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1xpgjdk, .framer-OPLhU .framer-4rk860, .framer-OPLhU .framer-13273cq, .framer-OPLhU .framer-ejeum2, .framer-OPLhU .framer-1h7i0c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-mh15yj-container, .framer-OPLhU .framer-16e6tpd-container, .framer-OPLhU .framer-gku6s0, .framer-OPLhU .framer-1kutdjp-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-OPLhU .framer-120oebb, .framer-OPLhU .framer-spjvkh, .framer-OPLhU .framer-1k4xsxi, .framer-OPLhU .framer-16oz4fx, .framer-OPLhU .framer-1otg2c0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-1cugz48, .framer-OPLhU .framer-1ekvf1, .framer-OPLhU .framer-130tqig, .framer-OPLhU .framer-elwu51, .framer-OPLhU .framer-1dpiy0x, .framer-OPLhU .framer-1q9ej5r, .framer-OPLhU .framer-1qde9y, .framer-OPLhU .framer-1x7fdia { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-1a8thjx { align-content: center; align-items: center; background-color: var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1uqhcin { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-15fi7g9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 480px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-tp7zh5, .framer-OPLhU .framer-1p6poaq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-2u0zlb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-3kn3af, .framer-OPLhU .framer-1u88v3g, .framer-OPLhU .framer-13n09hf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-13tvwdn, .framer-OPLhU .framer-1td1dwm, .framer-OPLhU .framer-9dwq7z, .framer-OPLhU .framer-8p22q7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-1b8dhg1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-1fv5vcp { --border-bottom-width: 2px; --border-color: #3e3e3e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-23698a30-4fda-4045-a87a-0c59dc2ef36f, #292927); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1si60b9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-hpmnk0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1w45zvf { align-content: center; align-items: center; background-color: var(--token-23698a30-4fda-4045-a87a-0c59dc2ef36f, #292927); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-OPLhU .framer-1augct1-container { flex: none; height: 462px; position: relative; width: 487px; }\",\".framer-OPLhU .framer-1hwfpmn, .framer-OPLhU .framer-12dubd7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-6xlbda { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-ktbtq4 { align-content: center; align-items: center; background-color: var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1wgbgf4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1240px; overflow: hidden; padding: 27px 0px 27px 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1mvbc0l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-1r4qp2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-OPLhU .framer-17d3oqq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-11novmj { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: 566px; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-2msd1t { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1lqrcli { --border-bottom-width: 0px; --border-color: var(--token-f5c5d3d8-ffaf-429e-a67b-b63e0eb1ffb8, #3e3e3e); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-phit4j { --border-bottom-width: 2px; --border-color: var(--token-f5c5d3d8-ffaf-429e-a67b-b63e0eb1ffb8, #3e3e3e); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-sv6e9a, .framer-OPLhU .framer-1i8tgd4, .framer-OPLhU .framer-1dgdkzj, .framer-OPLhU .framer-1r5gg54, .framer-OPLhU .framer-1t10tqc, .framer-OPLhU .framer-1f83pgl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-g0lz5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 320px; }\",\".framer-OPLhU .framer-cbej3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-kjw1f0 { --border-bottom-width: 2px; --border-color: var(--token-f5c5d3d8-ffaf-429e-a67b-b63e0eb1ffb8, #3e3e3e); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-h2qh7d { --border-bottom-width: 2px; --border-color: #3e3e3e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #1a1a1a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-rj4pix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 175px; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-5gykwx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-OPLhU .framer-1ocudru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-15ajg2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 40px; min-width: 117px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OPLhU .framer-lqypd8 { aspect-ratio: 0.9297520661157025 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); overflow: visible; position: relative; width: 446px; z-index: 6; }\",\".framer-OPLhU .framer-4xzv1b { -webkit-filter: contrast(1.5) grayscale(1); bottom: -105px; filter: contrast(1.5) grayscale(1); flex: none; left: 0px; opacity: 0.2; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-OPLhU .framer-br1c49 { align-content: center; align-items: center; background-color: var(--token-2e7a0cb4-1cf1-46c6-9b43-8212a2ec539e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: center; overflow: hidden; padding: 78px 0px 78px 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1jhewqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPLhU .framer-y4pc94 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-OPLhU .framer-978v5x-container, .framer-OPLhU .framer-14ij8fn-container, .framer-OPLhU .framer-1x7aqsj-container, .framer-OPLhU .framer-1agfpxt-container, .framer-OPLhU .framer-re936z-container, .framer-OPLhU .framer-17lqor6-container { height: 320px; position: relative; width: 320px; }\",\".framer-OPLhU .framer-dvxv6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OPLhU .framer-o6husw { --border-bottom-width: 0px; --border-color: #3e3e3e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-30d61e11-5818-4775-b40e-454f79b82d07, #2e2e2e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 320px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1q3hxjz-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-OPLhU .framer-15a9vx1 { --border-bottom-width: 0px; --border-color: #3e3e3e; --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-1om04rg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 40px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-zbb2g0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 420px; word-break: break-word; word-wrap: break-word; }\",\".framer-OPLhU .framer-8wzc4n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OPLhU .framer-75hr09 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-1nxxjyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OPLhU .framer-pji9qa, .framer-OPLhU .framer-19pyrz9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OPLhU .framer-wv3v1q, .framer-OPLhU .framer-1ir3987 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-OPLhU .framer-11io7a3-container, .framer-OPLhU .framer-1xs9era-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-OPLhU .framer-12cesk6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-OPLhU.framer-vaf0s7, .framer-OPLhU .framer-1e3lxk7, .framer-OPLhU .framer-1wl70l1, .framer-OPLhU .framer-1t4a24t, .framer-OPLhU .framer-3v6aid, .framer-OPLhU .framer-1y7lgf5, .framer-OPLhU .framer-16jymwd, .framer-OPLhU .framer-15ybk7f, .framer-OPLhU .framer-1w3puy5, .framer-OPLhU .framer-1apm8u5, .framer-OPLhU .framer-8cqt5l, .framer-OPLhU .framer-qwpy0a, .framer-OPLhU .framer-1185xzn, .framer-OPLhU .framer-11hzszl, .framer-OPLhU .framer-1ssjsyk, .framer-OPLhU .framer-99dzgw, .framer-OPLhU .framer-1ae9lzf, .framer-OPLhU .framer-wg5e16, .framer-OPLhU .framer-89lrsd, .framer-OPLhU .framer-ugjjs3, .framer-OPLhU .framer-1ccvw8c, .framer-OPLhU .framer-1i7dr6i, .framer-OPLhU .framer-6x018n, .framer-OPLhU .framer-gteomb, .framer-OPLhU .framer-1onafiy, .framer-OPLhU .framer-1gb7daq, .framer-OPLhU .framer-14ngg9g, .framer-OPLhU .framer-f3puce, .framer-OPLhU .framer-b82v1k, .framer-OPLhU .framer-dbq0qg, .framer-OPLhU .framer-1xs3714, .framer-OPLhU .framer-vqpq0y, .framer-OPLhU .framer-1d7pbsj, .framer-OPLhU .framer-14vbdin, .framer-OPLhU .framer-8kldpc, .framer-OPLhU .framer-1l6fbiz, .framer-OPLhU .framer-1i23f9w, .framer-OPLhU .framer-n5yrsa, .framer-OPLhU .framer-14f1l55, .framer-OPLhU .framer-zk8los, .framer-OPLhU .framer-kt5g1u, .framer-OPLhU .framer-1fc573, .framer-OPLhU .framer-ueyqp6, .framer-OPLhU .framer-5vcv2c, .framer-OPLhU .framer-17h828l, .framer-OPLhU .framer-16re72s, .framer-OPLhU .framer-1sgrt5h, .framer-OPLhU .framer-q6itfi, .framer-OPLhU .framer-1y121y7, .framer-OPLhU .framer-1p8dmul, .framer-OPLhU .framer-1n96bp4, .framer-OPLhU .framer-13zq2bx, .framer-OPLhU .framer-1fl7j3i, .framer-OPLhU .framer-1m6z36p, .framer-OPLhU .framer-1ws9wol, .framer-OPLhU .framer-uswptu, .framer-OPLhU .framer-lztk18, .framer-OPLhU .framer-gc2rm6, .framer-OPLhU .framer-1xpgjdk, .framer-OPLhU .framer-120oebb, .framer-OPLhU .framer-4rk860, .framer-OPLhU .framer-spjvkh, .framer-OPLhU .framer-13273cq, .framer-OPLhU .framer-1k4xsxi, .framer-OPLhU .framer-ejeum2, .framer-OPLhU .framer-16oz4fx, .framer-OPLhU .framer-1a8thjx, .framer-OPLhU .framer-1uqhcin, .framer-OPLhU .framer-15fi7g9, .framer-OPLhU .framer-tp7zh5, .framer-OPLhU .framer-2u0zlb, .framer-OPLhU .framer-1grns20, .framer-OPLhU .framer-1mt6pvj, .framer-OPLhU .framer-1b8dhg1, .framer-OPLhU .framer-1je6efj, .framer-OPLhU .framer-1fv5vcp, .framer-OPLhU .framer-1si60b9, .framer-OPLhU .framer-hpmnk0, .framer-OPLhU .framer-1w45zvf, .framer-OPLhU .framer-1p6poaq, .framer-OPLhU .framer-1hwfpmn, .framer-OPLhU .framer-ycr30a, .framer-OPLhU .framer-ktbtq4, .framer-OPLhU .framer-1mvbc0l, .framer-OPLhU .framer-1l5o0i1, .framer-OPLhU .framer-17d3oqq, .framer-OPLhU .framer-2msd1t, .framer-OPLhU .framer-phit4j, .framer-OPLhU .framer-g0lz5, .framer-OPLhU .framer-cbej3, .framer-OPLhU .framer-kjw1f0, .framer-OPLhU .framer-h2qh7d, .framer-OPLhU .framer-rj4pix, .framer-OPLhU .framer-5gykwx, .framer-OPLhU .framer-1ocudru, .framer-OPLhU .framer-195d3q7, .framer-OPLhU .framer-15ajg2j, .framer-OPLhU .framer-1h7i0c, .framer-OPLhU .framer-br1c49, .framer-OPLhU .framer-1jhewqm, .framer-OPLhU .framer-1otg2c0, .framer-OPLhU .framer-y4pc94, .framer-OPLhU .framer-epyqqu, .framer-OPLhU .framer-dvxv6a, .framer-OPLhU .framer-o6husw, .framer-OPLhU .framer-15a9vx1, .framer-OPLhU .framer-1om04rg, .framer-OPLhU .framer-12dubd7, .framer-OPLhU .framer-h4t70o, .framer-OPLhU .framer-8wzc4n, .framer-OPLhU .framer-75hr09, .framer-OPLhU .framer-1nxxjyi, .framer-OPLhU .framer-pji9qa, .framer-OPLhU .framer-19pyrz9 { gap: 0px; } .framer-OPLhU.framer-vaf0s7 > *, .framer-OPLhU .framer-6x018n > *, .framer-OPLhU .framer-f3puce > *, .framer-OPLhU .framer-vqpq0y > *, .framer-OPLhU .framer-1l6fbiz > *, .framer-OPLhU .framer-zk8los > *, .framer-OPLhU .framer-5vcv2c > *, .framer-OPLhU .framer-q6itfi > *, .framer-OPLhU .framer-13zq2bx > *, .framer-OPLhU .framer-uswptu > *, .framer-OPLhU .framer-2u0zlb > *, .framer-OPLhU .framer-1hwfpmn > *, .framer-OPLhU .framer-1mvbc0l > *, .framer-OPLhU .framer-2msd1t > *, .framer-OPLhU .framer-phit4j > *, .framer-OPLhU .framer-cbej3 > *, .framer-OPLhU .framer-kjw1f0 > *, .framer-OPLhU .framer-h2qh7d > *, .framer-OPLhU .framer-y4pc94 > *, .framer-OPLhU .framer-12dubd7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-OPLhU.framer-vaf0s7 > :first-child, .framer-OPLhU .framer-1e3lxk7 > :first-child, .framer-OPLhU .framer-3v6aid > :first-child, .framer-OPLhU .framer-16jymwd > :first-child, .framer-OPLhU .framer-1w3puy5 > :first-child, .framer-OPLhU .framer-1apm8u5 > :first-child, .framer-OPLhU .framer-8cqt5l > :first-child, .framer-OPLhU .framer-qwpy0a > :first-child, .framer-OPLhU .framer-1185xzn > :first-child, .framer-OPLhU .framer-11hzszl > :first-child, .framer-OPLhU .framer-1ssjsyk > :first-child, .framer-OPLhU .framer-99dzgw > :first-child, .framer-OPLhU .framer-1ae9lzf > :first-child, .framer-OPLhU .framer-wg5e16 > :first-child, .framer-OPLhU .framer-89lrsd > :first-child, .framer-OPLhU .framer-1i7dr6i > :first-child, .framer-OPLhU .framer-6x018n > :first-child, .framer-OPLhU .framer-1onafiy > :first-child, .framer-OPLhU .framer-f3puce > :first-child, .framer-OPLhU .framer-b82v1k > :first-child, .framer-OPLhU .framer-vqpq0y > :first-child, .framer-OPLhU .framer-1d7pbsj > :first-child, .framer-OPLhU .framer-1l6fbiz > :first-child, .framer-OPLhU .framer-1i23f9w > :first-child, .framer-OPLhU .framer-zk8los > :first-child, .framer-OPLhU .framer-kt5g1u > :first-child, .framer-OPLhU .framer-5vcv2c > :first-child, .framer-OPLhU .framer-17h828l > :first-child, .framer-OPLhU .framer-q6itfi > :first-child, .framer-OPLhU .framer-1y121y7 > :first-child, .framer-OPLhU .framer-13zq2bx > :first-child, .framer-OPLhU .framer-1fl7j3i > :first-child, .framer-OPLhU .framer-uswptu > :first-child, .framer-OPLhU .framer-gc2rm6 > :first-child, .framer-OPLhU .framer-1xpgjdk > :first-child, .framer-OPLhU .framer-120oebb > :first-child, .framer-OPLhU .framer-4rk860 > :first-child, .framer-OPLhU .framer-spjvkh > :first-child, .framer-OPLhU .framer-13273cq > :first-child, .framer-OPLhU .framer-1k4xsxi > :first-child, .framer-OPLhU .framer-ejeum2 > :first-child, .framer-OPLhU .framer-16oz4fx > :first-child, .framer-OPLhU .framer-1uqhcin > :first-child, .framer-OPLhU .framer-tp7zh5 > :first-child, .framer-OPLhU .framer-2u0zlb > :first-child, .framer-OPLhU .framer-1b8dhg1 > :first-child, .framer-OPLhU .framer-1je6efj > :first-child, .framer-OPLhU .framer-1si60b9 > :first-child, .framer-OPLhU .framer-1p6poaq > :first-child, .framer-OPLhU .framer-1hwfpmn > :first-child, .framer-OPLhU .framer-ktbtq4 > :first-child, .framer-OPLhU .framer-1mvbc0l > :first-child, .framer-OPLhU .framer-2msd1t > :first-child, .framer-OPLhU .framer-phit4j > :first-child, .framer-OPLhU .framer-g0lz5 > :first-child, .framer-OPLhU .framer-cbej3 > :first-child, .framer-OPLhU .framer-kjw1f0 > :first-child, .framer-OPLhU .framer-h2qh7d > :first-child, .framer-OPLhU .framer-5gykwx > :first-child, .framer-OPLhU .framer-1h7i0c > :first-child, .framer-OPLhU .framer-br1c49 > :first-child, .framer-OPLhU .framer-1jhewqm > :first-child, .framer-OPLhU .framer-1otg2c0 > :first-child, .framer-OPLhU .framer-y4pc94 > :first-child, .framer-OPLhU .framer-dvxv6a > :first-child, .framer-OPLhU .framer-1om04rg > :first-child, .framer-OPLhU .framer-12dubd7 > :first-child, .framer-OPLhU .framer-8wzc4n > :first-child, .framer-OPLhU .framer-75hr09 > :first-child, .framer-OPLhU .framer-pji9qa > :first-child, .framer-OPLhU .framer-19pyrz9 > :first-child { margin-top: 0px; } .framer-OPLhU.framer-vaf0s7 > :last-child, .framer-OPLhU .framer-1e3lxk7 > :last-child, .framer-OPLhU .framer-3v6aid > :last-child, .framer-OPLhU .framer-16jymwd > :last-child, .framer-OPLhU .framer-1w3puy5 > :last-child, .framer-OPLhU .framer-1apm8u5 > :last-child, .framer-OPLhU .framer-8cqt5l > :last-child, .framer-OPLhU .framer-qwpy0a > :last-child, .framer-OPLhU .framer-1185xzn > :last-child, .framer-OPLhU .framer-11hzszl > :last-child, .framer-OPLhU .framer-1ssjsyk > :last-child, .framer-OPLhU .framer-99dzgw > :last-child, .framer-OPLhU .framer-1ae9lzf > :last-child, .framer-OPLhU .framer-wg5e16 > :last-child, .framer-OPLhU .framer-89lrsd > :last-child, .framer-OPLhU .framer-1i7dr6i > :last-child, .framer-OPLhU .framer-6x018n > :last-child, .framer-OPLhU .framer-1onafiy > :last-child, .framer-OPLhU .framer-f3puce > :last-child, .framer-OPLhU .framer-b82v1k > :last-child, .framer-OPLhU .framer-vqpq0y > :last-child, .framer-OPLhU .framer-1d7pbsj > :last-child, .framer-OPLhU .framer-1l6fbiz > :last-child, .framer-OPLhU .framer-1i23f9w > :last-child, .framer-OPLhU .framer-zk8los > :last-child, .framer-OPLhU .framer-kt5g1u > :last-child, .framer-OPLhU .framer-5vcv2c > :last-child, .framer-OPLhU .framer-17h828l > :last-child, .framer-OPLhU .framer-q6itfi > :last-child, .framer-OPLhU .framer-1y121y7 > :last-child, .framer-OPLhU .framer-13zq2bx > :last-child, .framer-OPLhU .framer-1fl7j3i > :last-child, .framer-OPLhU .framer-uswptu > :last-child, .framer-OPLhU .framer-gc2rm6 > :last-child, .framer-OPLhU .framer-1xpgjdk > :last-child, .framer-OPLhU .framer-120oebb > :last-child, .framer-OPLhU .framer-4rk860 > :last-child, .framer-OPLhU .framer-spjvkh > :last-child, .framer-OPLhU .framer-13273cq > :last-child, .framer-OPLhU .framer-1k4xsxi > :last-child, .framer-OPLhU .framer-ejeum2 > :last-child, .framer-OPLhU .framer-16oz4fx > :last-child, .framer-OPLhU .framer-1uqhcin > :last-child, .framer-OPLhU .framer-tp7zh5 > :last-child, .framer-OPLhU .framer-2u0zlb > :last-child, .framer-OPLhU .framer-1b8dhg1 > :last-child, .framer-OPLhU .framer-1je6efj > :last-child, .framer-OPLhU .framer-1si60b9 > :last-child, .framer-OPLhU .framer-1p6poaq > :last-child, .framer-OPLhU .framer-1hwfpmn > :last-child, .framer-OPLhU .framer-ktbtq4 > :last-child, .framer-OPLhU .framer-1mvbc0l > :last-child, .framer-OPLhU .framer-2msd1t > :last-child, .framer-OPLhU .framer-phit4j > :last-child, .framer-OPLhU .framer-g0lz5 > :last-child, .framer-OPLhU .framer-cbej3 > :last-child, .framer-OPLhU .framer-kjw1f0 > :last-child, .framer-OPLhU .framer-h2qh7d > :last-child, .framer-OPLhU .framer-5gykwx > :last-child, .framer-OPLhU .framer-1h7i0c > :last-child, .framer-OPLhU .framer-br1c49 > :last-child, .framer-OPLhU .framer-1jhewqm > :last-child, .framer-OPLhU .framer-1otg2c0 > :last-child, .framer-OPLhU .framer-y4pc94 > :last-child, .framer-OPLhU .framer-dvxv6a > :last-child, .framer-OPLhU .framer-1om04rg > :last-child, .framer-OPLhU .framer-12dubd7 > :last-child, .framer-OPLhU .framer-8wzc4n > :last-child, .framer-OPLhU .framer-75hr09 > :last-child, .framer-OPLhU .framer-pji9qa > :last-child, .framer-OPLhU .framer-19pyrz9 > :last-child { margin-bottom: 0px; } .framer-OPLhU .framer-1e3lxk7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-OPLhU .framer-1wl70l1 > *, .framer-OPLhU .framer-14ngg9g > *, .framer-OPLhU .framer-1xs3714 > *, .framer-OPLhU .framer-8kldpc > *, .framer-OPLhU .framer-14f1l55 > *, .framer-OPLhU .framer-ueyqp6 > *, .framer-OPLhU .framer-1sgrt5h > *, .framer-OPLhU .framer-1n96bp4 > *, .framer-OPLhU .framer-1ws9wol > *, .framer-OPLhU .framer-1ocudru > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-OPLhU .framer-1wl70l1 > :first-child, .framer-OPLhU .framer-1t4a24t > :first-child, .framer-OPLhU .framer-1y7lgf5 > :first-child, .framer-OPLhU .framer-15ybk7f > :first-child, .framer-OPLhU .framer-ugjjs3 > :first-child, .framer-OPLhU .framer-1ccvw8c > :first-child, .framer-OPLhU .framer-gteomb > :first-child, .framer-OPLhU .framer-1gb7daq > :first-child, .framer-OPLhU .framer-14ngg9g > :first-child, .framer-OPLhU .framer-dbq0qg > :first-child, .framer-OPLhU .framer-1xs3714 > :first-child, .framer-OPLhU .framer-14vbdin > :first-child, .framer-OPLhU .framer-8kldpc > :first-child, .framer-OPLhU .framer-n5yrsa > :first-child, .framer-OPLhU .framer-14f1l55 > :first-child, .framer-OPLhU .framer-1fc573 > :first-child, .framer-OPLhU .framer-ueyqp6 > :first-child, .framer-OPLhU .framer-16re72s > :first-child, .framer-OPLhU .framer-1sgrt5h > :first-child, .framer-OPLhU .framer-1p8dmul > :first-child, .framer-OPLhU .framer-1n96bp4 > :first-child, .framer-OPLhU .framer-1m6z36p > :first-child, .framer-OPLhU .framer-1ws9wol > :first-child, .framer-OPLhU .framer-lztk18 > :first-child, .framer-OPLhU .framer-1a8thjx > :first-child, .framer-OPLhU .framer-15fi7g9 > :first-child, .framer-OPLhU .framer-1grns20 > :first-child, .framer-OPLhU .framer-1mt6pvj > :first-child, .framer-OPLhU .framer-1fv5vcp > :first-child, .framer-OPLhU .framer-hpmnk0 > :first-child, .framer-OPLhU .framer-1w45zvf > :first-child, .framer-OPLhU .framer-ycr30a > :first-child, .framer-OPLhU .framer-1l5o0i1 > :first-child, .framer-OPLhU .framer-17d3oqq > :first-child, .framer-OPLhU .framer-rj4pix > :first-child, .framer-OPLhU .framer-1ocudru > :first-child, .framer-OPLhU .framer-195d3q7 > :first-child, .framer-OPLhU .framer-15ajg2j > :first-child, .framer-OPLhU .framer-epyqqu > :first-child, .framer-OPLhU .framer-o6husw > :first-child, .framer-OPLhU .framer-15a9vx1 > :first-child, .framer-OPLhU .framer-h4t70o > :first-child, .framer-OPLhU .framer-1nxxjyi > :first-child { margin-left: 0px; } .framer-OPLhU .framer-1wl70l1 > :last-child, .framer-OPLhU .framer-1t4a24t > :last-child, .framer-OPLhU .framer-1y7lgf5 > :last-child, .framer-OPLhU .framer-15ybk7f > :last-child, .framer-OPLhU .framer-ugjjs3 > :last-child, .framer-OPLhU .framer-1ccvw8c > :last-child, .framer-OPLhU .framer-gteomb > :last-child, .framer-OPLhU .framer-1gb7daq > :last-child, .framer-OPLhU .framer-14ngg9g > :last-child, .framer-OPLhU .framer-dbq0qg > :last-child, .framer-OPLhU .framer-1xs3714 > :last-child, .framer-OPLhU .framer-14vbdin > :last-child, .framer-OPLhU .framer-8kldpc > :last-child, .framer-OPLhU .framer-n5yrsa > :last-child, .framer-OPLhU .framer-14f1l55 > :last-child, .framer-OPLhU .framer-1fc573 > :last-child, .framer-OPLhU .framer-ueyqp6 > :last-child, .framer-OPLhU .framer-16re72s > :last-child, .framer-OPLhU .framer-1sgrt5h > :last-child, .framer-OPLhU .framer-1p8dmul > :last-child, .framer-OPLhU .framer-1n96bp4 > :last-child, .framer-OPLhU .framer-1m6z36p > :last-child, .framer-OPLhU .framer-1ws9wol > :last-child, .framer-OPLhU .framer-lztk18 > :last-child, .framer-OPLhU .framer-1a8thjx > :last-child, .framer-OPLhU .framer-15fi7g9 > :last-child, .framer-OPLhU .framer-1grns20 > :last-child, .framer-OPLhU .framer-1mt6pvj > :last-child, .framer-OPLhU .framer-1fv5vcp > :last-child, .framer-OPLhU .framer-hpmnk0 > :last-child, .framer-OPLhU .framer-1w45zvf > :last-child, .framer-OPLhU .framer-ycr30a > :last-child, .framer-OPLhU .framer-1l5o0i1 > :last-child, .framer-OPLhU .framer-17d3oqq > :last-child, .framer-OPLhU .framer-rj4pix > :last-child, .framer-OPLhU .framer-1ocudru > :last-child, .framer-OPLhU .framer-195d3q7 > :last-child, .framer-OPLhU .framer-15ajg2j > :last-child, .framer-OPLhU .framer-epyqqu > :last-child, .framer-OPLhU .framer-o6husw > :last-child, .framer-OPLhU .framer-15a9vx1 > :last-child, .framer-OPLhU .framer-h4t70o > :last-child, .framer-OPLhU .framer-1nxxjyi > :last-child { margin-right: 0px; } .framer-OPLhU .framer-1t4a24t > *, .framer-OPLhU .framer-rj4pix > *, .framer-OPLhU .framer-o6husw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OPLhU .framer-3v6aid > *, .framer-OPLhU .framer-16jymwd > *, .framer-OPLhU .framer-89lrsd > *, .framer-OPLhU .framer-1i7dr6i > *, .framer-OPLhU .framer-1onafiy > *, .framer-OPLhU .framer-b82v1k > *, .framer-OPLhU .framer-1d7pbsj > *, .framer-OPLhU .framer-1i23f9w > *, .framer-OPLhU .framer-kt5g1u > *, .framer-OPLhU .framer-17h828l > *, .framer-OPLhU .framer-1y121y7 > *, .framer-OPLhU .framer-1fl7j3i > *, .framer-OPLhU .framer-tp7zh5 > *, .framer-OPLhU .framer-1b8dhg1 > *, .framer-OPLhU .framer-1p6poaq > *, .framer-OPLhU .framer-g0lz5 > *, .framer-OPLhU .framer-5gykwx > *, .framer-OPLhU .framer-1jhewqm > *, .framer-OPLhU .framer-1om04rg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-OPLhU .framer-1y7lgf5 > *, .framer-OPLhU .framer-15ybk7f > *, .framer-OPLhU .framer-1gb7daq > *, .framer-OPLhU .framer-dbq0qg > *, .framer-OPLhU .framer-14vbdin > *, .framer-OPLhU .framer-n5yrsa > *, .framer-OPLhU .framer-1fc573 > *, .framer-OPLhU .framer-16re72s > *, .framer-OPLhU .framer-1p8dmul > *, .framer-OPLhU .framer-1m6z36p > *, .framer-OPLhU .framer-lztk18 > *, .framer-OPLhU .framer-1a8thjx > *, .framer-OPLhU .framer-1mt6pvj > *, .framer-OPLhU .framer-1fv5vcp > *, .framer-OPLhU .framer-1w45zvf > *, .framer-OPLhU .framer-195d3q7 > *, .framer-OPLhU .framer-15ajg2j > *, .framer-OPLhU .framer-15a9vx1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OPLhU .framer-1w3puy5 > *, .framer-OPLhU .framer-ktbtq4 > *, .framer-OPLhU .framer-75hr09 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-OPLhU .framer-1apm8u5 > *, .framer-OPLhU .framer-8cqt5l > *, .framer-OPLhU .framer-qwpy0a > *, .framer-OPLhU .framer-1185xzn > *, .framer-OPLhU .framer-11hzszl > *, .framer-OPLhU .framer-1ssjsyk > *, .framer-OPLhU .framer-99dzgw > *, .framer-OPLhU .framer-1ae9lzf > *, .framer-OPLhU .framer-1xpgjdk > *, .framer-OPLhU .framer-120oebb > *, .framer-OPLhU .framer-4rk860 > *, .framer-OPLhU .framer-spjvkh > *, .framer-OPLhU .framer-13273cq > *, .framer-OPLhU .framer-1k4xsxi > *, .framer-OPLhU .framer-ejeum2 > *, .framer-OPLhU .framer-16oz4fx > *, .framer-OPLhU .framer-1h7i0c > *, .framer-OPLhU .framer-1otg2c0 > *, .framer-OPLhU .framer-dvxv6a > *, .framer-OPLhU .framer-8wzc4n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OPLhU .framer-wg5e16 > *, .framer-OPLhU .framer-gc2rm6 > *, .framer-OPLhU .framer-1je6efj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OPLhU .framer-ugjjs3 > *, .framer-OPLhU .framer-1ccvw8c > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-OPLhU .framer-gteomb > *, .framer-OPLhU .framer-1grns20 > *, .framer-OPLhU .framer-ycr30a > *, .framer-OPLhU .framer-1l5o0i1 > *, .framer-OPLhU .framer-epyqqu > *, .framer-OPLhU .framer-h4t70o > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-OPLhU .framer-1uqhcin > *, .framer-OPLhU .framer-1si60b9 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-OPLhU .framer-15fi7g9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-OPLhU .framer-hpmnk0 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-OPLhU .framer-17d3oqq > *, .framer-OPLhU .framer-1nxxjyi > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-OPLhU .framer-br1c49 > * { margin: 0px; margin-bottom: calc(47px / 2); margin-top: calc(47px / 2); } .framer-OPLhU .framer-pji9qa > *, .framer-OPLhU .framer-19pyrz9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-OPLhU { background: #1A1A1A; } .framer-OPLhU.framer-vaf0s7 { width: 810px; } .framer-OPLhU .framer-7ekihe-container { order: 0; } .framer-OPLhU .framer-1e3lxk7 { height: 600px; order: 1; } .framer-OPLhU .framer-amk533 { height: 17px; } .framer-OPLhU .framer-1w3puy5 { order: 3; } .framer-OPLhU .framer-wg5e16 { gap: 23px; order: 5; padding: 50px; } .framer-OPLhU .framer-1i7dr6i { height: 600px; } .framer-OPLhU .framer-gc2rm6 { order: 7; } .framer-OPLhU .framer-1ezlklm { align-content: unset; align-items: unset; display: grid; gap: 60px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-OPLhU .framer-1xpgjdk, .framer-OPLhU .framer-4rk860, .framer-OPLhU .framer-13273cq, .framer-OPLhU .framer-ejeum2 { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-OPLhU .framer-ktbtq4 { order: 8; padding: 0px 50px 100px 50px; } .framer-OPLhU .framer-17d3oqq { flex-direction: column; } .framer-OPLhU .framer-11novmj { flex: none; height: 1118px; width: 100%; } .framer-OPLhU .framer-g0lz5 { width: 100%; } .framer-OPLhU .framer-h2qh7d { order: 9; padding: 100px 50px 100px 50px; } .framer-OPLhU .framer-br1c49 { order: 11; padding: 88px 0px 88px 0px; } .framer-OPLhU .framer-o6husw { order: 12; } .framer-OPLhU .framer-75hr09 { order: 13; padding: 0px 40px 0px 40px; } .framer-OPLhU .framer-12cesk6-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-OPLhU .framer-wg5e16, .framer-OPLhU .framer-1ezlklm, .framer-OPLhU .framer-17d3oqq { gap: 0px; } .framer-OPLhU .framer-wg5e16 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-OPLhU .framer-wg5e16 > :first-child, .framer-OPLhU .framer-17d3oqq > :first-child { margin-top: 0px; } .framer-OPLhU .framer-wg5e16 > :last-child, .framer-OPLhU .framer-17d3oqq > :last-child { margin-bottom: 0px; } .framer-OPLhU .framer-1ezlklm > *, .framer-OPLhU .framer-1ezlklm > :first-child, .framer-OPLhU .framer-1ezlklm > :last-child { margin: 0px; } .framer-OPLhU .framer-17d3oqq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-OPLhU { background: #1A1A1A; } .framer-OPLhU.framer-vaf0s7 { height: 13540px; width: 390px; } .framer-OPLhU .framer-7ekihe-container, .framer-OPLhU .framer-1rvhw1w { order: 0; } .framer-OPLhU .framer-1t4a24t { flex-direction: column; order: 2; } .framer-OPLhU .framer-3v6aid, .framer-OPLhU .framer-1p6poaq { flex: none; order: 0; width: 100%; } .framer-OPLhU .framer-1y7lgf5 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-OPLhU .framer-16jymwd { flex: 1 0 0px; width: 1px; } .framer-OPLhU .framer-1tg7fln { order: 1; } .framer-OPLhU .framer-15ybk7f { order: 2; } .framer-OPLhU .framer-1w3puy5 { order: 3; } .framer-OPLhU .framer-wg5e16 { gap: 44px; order: 4; padding: 0px 20px 100px 20px; } .framer-OPLhU .framer-89lrsd { padding: 52px 60px 52px 60px; } .framer-OPLhU .framer-ugjjs3, .framer-OPLhU .framer-1ccvw8c, .framer-OPLhU .framer-hpmnk0 { flex-direction: column; } .framer-OPLhU .framer-oexmx7-container, .framer-OPLhU .framer-1h9je1b-container, .framer-OPLhU .framer-1ugf4iw-container, .framer-OPLhU .framer-11qxdpt-container, .framer-OPLhU .framer-1xpgjdk, .framer-OPLhU .framer-4rk860, .framer-OPLhU .framer-13273cq, .framer-OPLhU .framer-ejeum2, .framer-OPLhU .framer-1si60b9, .framer-OPLhU .framer-pji9qa, .framer-OPLhU .framer-19pyrz9 { flex: none; width: 100%; } .framer-OPLhU .framer-1i7dr6i { gap: 57px; height: 540px; padding: 60px; } .framer-OPLhU .framer-fv3o44 { width: 382px; } .framer-OPLhU .framer-12wtpn5-container { width: 355px; } .framer-OPLhU .framer-k0ko6f, .framer-OPLhU .framer-t6h384, .framer-OPLhU .framer-1ijlwo4, .framer-OPLhU .framer-gqq1fa { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-OPLhU .framer-gc2rm6 { order: 5; padding: 40px 20px 40px 20px; } .framer-OPLhU .framer-1ezlklm { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-OPLhU .framer-1je6efj { gap: 44px; order: 7; padding: 0px 20px 100px 20px; } .framer-OPLhU .framer-1fv5vcp { flex-direction: column; padding: 100px 20px 100px 20px; } .framer-OPLhU .framer-1w45zvf { flex: none; height: min-content; order: 1; width: 100%; } .framer-OPLhU .framer-1augct1-container { height: 443px; width: 352px; } .framer-OPLhU .framer-ktbtq4 { gap: 40px; order: 8; padding: 0px 20px 100px 20px; } .framer-OPLhU .framer-17d3oqq { flex-direction: column; gap: 50px; } .framer-OPLhU .framer-11novmj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: flex-start; width: 100%; } .framer-OPLhU .framer-2msd1t { align-self: unset; height: 480px; } .framer-OPLhU .framer-h2qh7d { order: 9; padding: 100px 20px 100px 20px; } .framer-OPLhU .framer-br1c49 { order: 11; padding: 24px 0px 24px 0px; } .framer-OPLhU .framer-1otg2c0 { width: 350px; } .framer-OPLhU .framer-y4pc94 { align-self: unset; width: 100%; } .framer-OPLhU .framer-o6husw { flex-direction: column; height: min-content; order: 12; } .framer-OPLhU .framer-1q3hxjz-container { flex: none; height: 240px; width: 100%; } .framer-OPLhU .framer-15a9vx1 { --border-top-width: 2px; flex: none; height: min-content; width: 100%; } .framer-OPLhU .framer-1om04rg { padding: 40px 20px 40px 20px; } .framer-OPLhU .framer-12dubd7 { gap: 5px; width: 100%; } .framer-OPLhU .framer-zbb2g0 { width: 100%; } .framer-OPLhU .framer-75hr09 { order: 13; padding: 0px 20px 0px 20px; } .framer-OPLhU .framer-1nxxjyi { flex-direction: column; gap: 0px; } .framer-OPLhU .framer-11io7a3-container { left: 138px; } .framer-OPLhU .framer-12cesk6-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-OPLhU .framer-1t4a24t, .framer-OPLhU .framer-wg5e16, .framer-OPLhU .framer-ugjjs3, .framer-OPLhU .framer-1ccvw8c, .framer-OPLhU .framer-1i7dr6i, .framer-OPLhU .framer-1ezlklm, .framer-OPLhU .framer-1je6efj, .framer-OPLhU .framer-1fv5vcp, .framer-OPLhU .framer-hpmnk0, .framer-OPLhU .framer-ktbtq4, .framer-OPLhU .framer-17d3oqq, .framer-OPLhU .framer-11novmj, .framer-OPLhU .framer-o6husw, .framer-OPLhU .framer-12dubd7, .framer-OPLhU .framer-1nxxjyi { gap: 0px; } .framer-OPLhU .framer-1t4a24t > *, .framer-OPLhU .framer-o6husw > *, .framer-OPLhU .framer-1nxxjyi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-OPLhU .framer-1t4a24t > :first-child, .framer-OPLhU .framer-wg5e16 > :first-child, .framer-OPLhU .framer-ugjjs3 > :first-child, .framer-OPLhU .framer-1ccvw8c > :first-child, .framer-OPLhU .framer-1i7dr6i > :first-child, .framer-OPLhU .framer-1ezlklm > :first-child, .framer-OPLhU .framer-1je6efj > :first-child, .framer-OPLhU .framer-1fv5vcp > :first-child, .framer-OPLhU .framer-hpmnk0 > :first-child, .framer-OPLhU .framer-ktbtq4 > :first-child, .framer-OPLhU .framer-17d3oqq > :first-child, .framer-OPLhU .framer-11novmj > :first-child, .framer-OPLhU .framer-o6husw > :first-child, .framer-OPLhU .framer-12dubd7 > :first-child, .framer-OPLhU .framer-1nxxjyi > :first-child { margin-top: 0px; } .framer-OPLhU .framer-1t4a24t > :last-child, .framer-OPLhU .framer-wg5e16 > :last-child, .framer-OPLhU .framer-ugjjs3 > :last-child, .framer-OPLhU .framer-1ccvw8c > :last-child, .framer-OPLhU .framer-1i7dr6i > :last-child, .framer-OPLhU .framer-1ezlklm > :last-child, .framer-OPLhU .framer-1je6efj > :last-child, .framer-OPLhU .framer-1fv5vcp > :last-child, .framer-OPLhU .framer-hpmnk0 > :last-child, .framer-OPLhU .framer-ktbtq4 > :last-child, .framer-OPLhU .framer-17d3oqq > :last-child, .framer-OPLhU .framer-11novmj > :last-child, .framer-OPLhU .framer-o6husw > :last-child, .framer-OPLhU .framer-12dubd7 > :last-child, .framer-OPLhU .framer-1nxxjyi > :last-child { margin-bottom: 0px; } .framer-OPLhU .framer-wg5e16 > *, .framer-OPLhU .framer-1je6efj > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-OPLhU .framer-ugjjs3 > *, .framer-OPLhU .framer-1ccvw8c > *, .framer-OPLhU .framer-11novmj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-OPLhU .framer-1i7dr6i > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-OPLhU .framer-1ezlklm > *, .framer-OPLhU .framer-ktbtq4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-OPLhU .framer-1fv5vcp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OPLhU .framer-hpmnk0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-OPLhU .framer-17d3oqq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-OPLhU .framer-12dubd7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-OPLhU[data-border=\"true\"]::after, .framer-OPLhU [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 8929\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E9dKC_GEp\":{\"layout\":[\"fixed\",\"auto\"]},\"uOyj92Wvu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerYmlYWmRSu=withCSS(Component,css,\"framer-OPLhU\");export default FramerYmlYWmRSu;FramerYmlYWmRSu.displayName=\"Home\";FramerYmlYWmRSu.defaultProps={height:8929,width:1440};addFonts(FramerYmlYWmRSu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmYUtvBh05IsDqlA.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOjCnqEu92Fr1Mu51TzBhc4AMX6lJBP.woff2\",weight:\"700\"}]},...NavBarFonts,...ButtonFonts,...TickerFonts,...YouTubeFonts,...MaterialFonts,...PhosphorFonts,...TypeformFonts,...InstagramImage1Fonts,...InstagramImage2Fonts,...InstagramImage3Fonts,...InstagramImage4Fonts,...InstagramImage5Fonts,...InstagramImage6Fonts,...GoogleMapsFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYmlYWmRSu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E9dKC_GEp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uOyj92Wvu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8929\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "NavBarFonts", "getFonts", "ubbUvcuV6_default", "ButtonFonts", "mW8WUEuzc_default", "TickerFonts", "$", "YouTubeFonts", "Youtube", "ContainerWithFX", "withFX", "Container", "MaterialFonts", "Icon", "PhosphorFonts", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "ImageWithFX", "Image2", "TypeformFonts", "Typeform", "InstagramImage1Fonts", "wwAdFx0Gt_default", "InstagramImage2Fonts", "B_lEnGRgc_default", "InstagramImage3Fonts", "QHYZqozPB_default", "InstagramImage4Fonts", "dpRU6InM6_default", "InstagramImage5Fonts", "OxPiLzC5Q_default", "InstagramImage6Fonts", "aMfamMW60_default", "GoogleMapsFonts", "GoogleMaps", "EmbedFonts", "Embed", "FooterFonts", "Ckf0pTLb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation3", "animation4", "addImageAlt", "image", "alt", "animation5", "transition3", "animation6", "animation7", "transition4", "animation8", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "UM0cVh4EuXx_e9riDB", "U5AY8JDGIXx_e9riDB", "XEy54wrziXx_e9riDB", "x4nbGqkFiXx_e9riDB", "IiLTzEHg4Xx_e9riDB", "idXx_e9riDB", "U5AY8JDGIjkxA975uA", "XEy54wrzijkxA975uA", "x4nbGqkFijkxA975uA", "IiLTzEHg4jkxA975uA", "idjkxA975uA", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref2", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "Link", "SVG", "ChildrenCanSuspend", "kFHjh6Mfn_default", "collection", "paginationInfo", "loadMore", "l", "i", "textContent", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "textContent1", "ResolveLinks", "resolvedLinks", "css", "FramerYmlYWmRSu", "withCSS", "YmlYWmRSu_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
