{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/LcdBjereLElgDv0iYfyF/GkJWrLdDHLKQbSmSeP0c/y24WSm8Ew.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// 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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Footer from\"#framer/local/canvasComponent/Ckf0pTLb_/Ckf0pTLb_.js\";import Button from\"#framer/local/canvasComponent/mW8WUEuzc/mW8WUEuzc.js\";import NavBar from\"#framer/local/canvasComponent/ubbUvcuV6/ubbUvcuV6.js\";import*as sharedStyle from\"#framer/local/css/IU0culQLh/IU0culQLh.js\";import metadataProvider from\"#framer/local/webPageMetadata/y24WSm8Ew/y24WSm8Ew.js\";const NavBarFonts=getFonts(NavBar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const EmbedFonts=getFonts(Embed);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={a5fnqwTfG:\"(min-width: 810px) and (max-width: 1439px)\",PoWAGPc5J:\"(max-width: 809px)\",Qw7Pmtzg4:\"(min-width: 1440px) and (max-width: 1439px)\",ZMnYiPTd4:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Wth8d\";const variantClassNames={a5fnqwTfG:\"framer-v-1f6gpji\",PoWAGPc5J:\"framer-v-1p38enp\",Qw7Pmtzg4:\"framer-v-4au6vz\",ZMnYiPTd4:\"framer-v-gbz4jh\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition2={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-1e3,y:0};const transition4={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-150,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Breakpoint:\"Qw7Pmtzg4\",Desktop:\"ZMnYiPTd4\",Phone:\"PoWAGPc5J\",Tablet:\"a5fnqwTfG\"};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:\"ZMnYiPTd4\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...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-Wth8d`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Wth8d`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"a5fnqwTfG\",\"PoWAGPc5J\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"PoWAGPc5J\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZMnYiPTd4\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gbz4jh\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-su1870\",\"data-framer-name\":\"About Section\",name:\"About Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PoWAGPc5J:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9nwvd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a5fnqwTfG:{variant:\"exrEEPBuz\"},PoWAGPc5J:{variant:\"vPfOFVwq7\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"IX1iYJ0J6\",layoutId:\"IX1iYJ0J6\",style:{width:\"100%\"},variant:\"qOKlHcCW8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-coabai\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed7bz6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7i7xw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PoWAGPc5J:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMGl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TEAM \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMGl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TRAINING\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMGl0YWxpYw==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TEAM TRAINING\"})}),className:\"framer-18dzg9l\",\"data-framer-appear-id\":\"18dzg9l\",fonts:[\"GF;Roboto-900italic\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"The strength of the team is each individual member. The strength of each member is the team.\" - Phil Jackson'})}),className:\"framer-cjnzak hidden-1f6gpji hidden-1p38enp\",\"data-framer-appear-id\":\"cjnzak\",fonts:[\"GF;Roboto-500\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-80kbw4\",\"data-framer-appear-id\":\"80kbw4\",\"data-framer-name\":\"Orange Line\",initial:animation5,name:\"Orange Line\",optimized:true,style:{transformPerspective:1200}})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lmoxq2\",\"data-framer-name\":\"Black Tilt 1\",name:\"Black Tilt 1\",style:{rotate:30}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z29p2u\",\"data-framer-name\":\"Black Overlay\",name:\"Black Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PoWAGPc5J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3852,intrinsicWidth:5771,pixelHeight:3852,pixelWidth:5771,sizes:\"100vw\",src:\"https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg\",srcSet:\"https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg 5771w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,\"aria-label\":\"Landing Page Image\",as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3852,intrinsicWidth:5771,loading:getLoadingLazyAtYPosition(0),pixelHeight:3852,pixelWidth:5771,sizes:\"100vw\",src:\"https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg\",srcSet:\"https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1CDVwd4wVakgL3rlREW1uk8vz8o.jpg 5771w\"},className:\"framer-dhlaon\",\"data-framer-appear-id\":\"dhlaon\",\"data-framer-name\":\"Landing Page Image\",initial:animation7,name:\"Landing Page Image\",optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jga1a-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n          src=\"https://api.grow.pushpress.com/widget/form/UnSV4ii5Nlz2U7af4WYr\" \\n          style=\"width:100%;height:100%;border:none;border-radius:0px\"\\n          id=\"inline-UnSV4ii5Nlz2U7af4WYr\" \\n        data-layout=\"{\\'id\\':\\'INLINE\\'}\"\\n        data-trigger-type=\"alwaysShow\"\\n        data-trigger-value=\"\"\\n        data-activation-type=\"alwaysActivated\"\\n        data-activation-value=\"\"\\n        data-deactivation-type=\"neverDeactivate\"\\n        data-deactivation-value=\"\"\\n        data-form-name=\"Team Training\"\\n        data-height=\"904\"\\n        data-layout-iframe-id=\"inline-UnSV4ii5Nlz2U7af4WYr\"\\n        data-form-id=\"UnSV4ii5Nlz2U7af4WYr\"\\n      >\\n        </iframe>\\n        <script src=\"https://api.grow.pushpress.com/js/form_embed.js\"></script>',id:\"GEswfY2O7\",layoutId:\"GEswfY2O7\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://api.grow.pushpress.com/widget/form/UnSV4ii5Nlz2U7af4WYr\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pjbnfd\",\"data-border\":true,\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PoWAGPc5J:{background:{alt:\"CTA Background Image 2\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,pixelHeight:4016,pixelWidth:6016,sizes:\"100vw\",src:\"https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg\",srcSet:\"https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg 6016w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"CTA Background Image 2\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition(1554),pixelHeight:4016,pixelWidth:6016,sizes:\"100vw\",src:\"https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg\",srcSet:\"https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NqbWPjx2BchUNrOy0sNdmdLu44.jpg 6016w\"},className:\"framer-tda8a9\",\"data-framer-name\":\"CTA Background Image\",name:\"CTA Background Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1m8fa\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hh5kw hidden-1p38enp\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Fitness Woman\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:1511.5,pixelHeight:1080,pixelWidth:621,positionX:\"center\",positionY:\"center\",sizes:\"354.2578px\",src:\"https://framerusercontent.com/images/YVhWgtUPbldrrKMEZuga89PTHY.png\",srcSet:\"https://framerusercontent.com/images/YVhWgtUPbldrrKMEZuga89PTHY.png?scale-down-to=1024 588w,https://framerusercontent.com/images/YVhWgtUPbldrrKMEZuga89PTHY.png 621w\"},className:\"framer-1ut5qbl\",\"data-border\":true,\"data-framer-name\":\"Runner_Chick\",name:\"Runner_Chick\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12tjhbq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-zrox9u\",\"data-styles-preset\":\"IU0culQLh\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d4e47616-fdd1-4135-b982-4f579be7dc9a, rgb(87, 172, 255))\"},children:\"ACHIEVE YOUR GOALS\"}),\" AND EMBRACE A HEALTHIER YOU\"]})}),className:\"framer-13ig11c\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-co59oa\",\"data-framer-name\":\"Button Stack\",name:\"Button Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{href:\"https://api.grow.pushpress.com/widget/bookings/nsconsult\",nodeId:\"WyU9_hEhY\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1g32jz framer-60ewo8\",\"data-framer-name\":\"Get Started Link\",name:\"Get Started Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45trot-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ACAxzbFoY\",layoutId:\"ACAxzbFoY\",style:{height:\"100%\"},variant:\"rWZwzbUnu\",width:\"100%\",wOU8USZAF:\"Book A Consult\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZZP82XtIl\"},nodeId:\"sK5ayUoNe\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1e1omrp framer-60ewo8\",\"data-framer-name\":\"Learn More Link\",name:\"Learn More Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z1ls7g-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"VhNDnuLKJ\",layoutId:\"VhNDnuLKJ\",style:{height:\"100%\"},variant:\"YGL8zdGk6\",width:\"100%\",wOU8USZAF:\"Learn More\"})})})})})]})]})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined},{href:{hash:\":xtOCE2cbH\",webPageId:\"ZZP82XtIl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PoWAGPc5J:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:533,width:\"100vw\",y:1929,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yfchr5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a5fnqwTfG:{ttfCXDhu7:resolvedLinks[1],variant:\"I40Ux2jfg\"},PoWAGPc5J:{ttfCXDhu7:resolvedLinks[2],variant:\"T9CfV1enk\"},Qw7Pmtzg4:{ttfCXDhu7:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"q1Gh0GkB_\",layoutId:\"q1Gh0GkB_\",style:{width:\"100%\"},ttfCXDhu7:resolvedLinks[0],variant:\"r51QG3NQM\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Wth8d { background: #1A1A1A; }`,\".framer-Wth8d.framer-60ewo8, .framer-Wth8d .framer-60ewo8 { display: block; }\",\".framer-Wth8d.framer-gbz4jh { 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: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Wth8d .framer-su1870 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; min-height: 50vh; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-Wth8d .framer-1f9nwvd-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 5; }\",\".framer-Wth8d .framer-coabai { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 4; }\",\".framer-Wth8d .framer-ed7bz6 { 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; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 5; }\",\".framer-Wth8d .framer-1y7i7xw { align-content: flex-start; align-items: flex-start; 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-Wth8d .framer-18dzg9l, .framer-Wth8d .framer-cjnzak { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Wth8d .framer-80kbw4 { align-self: stretch; background-color: var(--token-d4e47616-fdd1-4135-b982-4f579be7dc9a, #57acff); flex: none; height: 4px; overflow: hidden; position: relative; width: auto; }\",\".framer-Wth8d .framer-1lmoxq2 { background-color: #000000; bottom: -401px; flex: none; left: -425px; opacity: 0.5; overflow: hidden; position: absolute; top: -599px; width: 67%; z-index: 3; }\",\".framer-Wth8d .framer-z29p2u { background-color: #000000; bottom: 0px; flex: none; left: 0px; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-Wth8d .framer-dhlaon { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Wth8d .framer-10jga1a-container { flex: none; height: 1054px; position: relative; width: 1120px; }\",\".framer-Wth8d .framer-pjbnfd { --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: #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-Wth8d .framer-tda8a9 { -webkit-filter: brightness(0.8) contrast(1.5) grayscale(1); bottom: 0px; filter: brightness(0.8) contrast(1.5) grayscale(1); flex: none; left: 0px; opacity: 0.2; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Wth8d .framer-1s1m8fa { 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-Wth8d .framer-16hh5kw { 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; min-height: 560px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Wth8d .framer-1ut5qbl { --border-bottom-width: 1.4px; --border-color: #3e3e3e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 0.738037109375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); left: 50%; overflow: visible; position: absolute; top: -12px; transform: translateX(-50%); width: 354px; z-index: 1; }\",\".framer-Wth8d .framer-12tjhbq { 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-Wth8d .framer-13ig11c { --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-Wth8d .framer-co59oa { 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-Wth8d .framer-1g32jz, .framer-Wth8d .framer-1e1omrp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Wth8d .framer-45trot-container, .framer-Wth8d .framer-z1ls7g-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Wth8d .framer-1yfchr5-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wth8d.framer-gbz4jh, .framer-Wth8d .framer-su1870, .framer-Wth8d .framer-coabai, .framer-Wth8d .framer-ed7bz6, .framer-Wth8d .framer-1y7i7xw, .framer-Wth8d .framer-pjbnfd, .framer-Wth8d .framer-1s1m8fa, .framer-Wth8d .framer-16hh5kw, .framer-Wth8d .framer-12tjhbq, .framer-Wth8d .framer-co59oa, .framer-Wth8d .framer-1g32jz, .framer-Wth8d .framer-1e1omrp { gap: 0px; } .framer-Wth8d.framer-gbz4jh > *, .framer-Wth8d .framer-1y7i7xw > *, .framer-Wth8d .framer-pjbnfd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Wth8d.framer-gbz4jh > :first-child, .framer-Wth8d .framer-ed7bz6 > :first-child, .framer-Wth8d .framer-1y7i7xw > :first-child, .framer-Wth8d .framer-pjbnfd > :first-child, .framer-Wth8d .framer-16hh5kw > :first-child, .framer-Wth8d .framer-12tjhbq > :first-child { margin-top: 0px; } .framer-Wth8d.framer-gbz4jh > :last-child, .framer-Wth8d .framer-ed7bz6 > :last-child, .framer-Wth8d .framer-1y7i7xw > :last-child, .framer-Wth8d .framer-pjbnfd > :last-child, .framer-Wth8d .framer-16hh5kw > :last-child, .framer-Wth8d .framer-12tjhbq > :last-child { margin-bottom: 0px; } .framer-Wth8d .framer-su1870 > *, .framer-Wth8d .framer-1g32jz > *, .framer-Wth8d .framer-1e1omrp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Wth8d .framer-su1870 > :first-child, .framer-Wth8d .framer-coabai > :first-child, .framer-Wth8d .framer-1s1m8fa > :first-child, .framer-Wth8d .framer-co59oa > :first-child, .framer-Wth8d .framer-1g32jz > :first-child, .framer-Wth8d .framer-1e1omrp > :first-child { margin-left: 0px; } .framer-Wth8d .framer-su1870 > :last-child, .framer-Wth8d .framer-coabai > :last-child, .framer-Wth8d .framer-1s1m8fa > :last-child, .framer-Wth8d .framer-co59oa > :last-child, .framer-Wth8d .framer-1g32jz > :last-child, .framer-Wth8d .framer-1e1omrp > :last-child { margin-right: 0px; } .framer-Wth8d .framer-coabai > *, .framer-Wth8d .framer-1s1m8fa > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Wth8d .framer-ed7bz6 > *, .framer-Wth8d .framer-12tjhbq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Wth8d .framer-16hh5kw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Wth8d .framer-co59oa > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-Wth8d { background: #1A1A1A; } .framer-Wth8d.framer-gbz4jh { width: 810px; } .framer-Wth8d .framer-su1870, .framer-Wth8d .framer-pjbnfd { padding: 100px 50px 100px 50px; } .framer-Wth8d .framer-coabai { max-width: 100%; } .framer-Wth8d .framer-ed7bz6, .framer-Wth8d .framer-10jga1a-container { width: 100%; } .framer-Wth8d .framer-1y7i7xw { align-self: unset; width: min-content; } .framer-Wth8d .framer-80kbw4 { align-self: unset; width: 100%; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Wth8d { background: #1A1A1A; } .framer-Wth8d.framer-gbz4jh { width: 390px; } .framer-Wth8d .framer-su1870 { flex-direction: column; height: 600px; padding: 100px 20px 100px 20px; } .framer-Wth8d .framer-coabai { height: 1px; width: 100%; } .framer-Wth8d .framer-ed7bz6 { flex: 1 0 0px; height: 100%; width: 1px; } .framer-Wth8d .framer-1y7i7xw, .framer-Wth8d .framer-80kbw4 { align-self: unset; width: 100%; } .framer-Wth8d .framer-10jga1a-container { height: 1414px; width: 100%; } .framer-Wth8d .framer-pjbnfd { padding: 100px 20px 100px 20px; } .framer-Wth8d .framer-1s1m8fa { height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Wth8d .framer-su1870 { gap: 0px; } .framer-Wth8d .framer-su1870 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Wth8d .framer-su1870 > :first-child { margin-top: 0px; } .framer-Wth8d .framer-su1870 > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 1440px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-Wth8d { background: #1A1A1A; } .framer-Wth8d.framer-gbz4jh { height: 2048px; }}`,...sharedStyle.css,'.framer-Wth8d[data-border=\"true\"]::after, .framer-Wth8d [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 2362.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a5fnqwTfG\":{\"layout\":[\"fixed\",\"auto\"]},\"PoWAGPc5J\":{\"layout\":[\"fixed\",\"auto\"]},\"Qw7Pmtzg4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framery24WSm8Ew=withCSS(Component,css,\"framer-Wth8d\");export default Framery24WSm8Ew;Framery24WSm8Ew.displayName=\"Team Training\";Framery24WSm8Ew.defaultProps={height:2362.5,width:1440};addFonts(Framery24WSm8Ew,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOjCnqEu92Fr1Mu51TLBBc4AMX6lJBP.woff2\",weight:\"900\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmEU9vBh05IsDqlA.woff2\",weight:\"500\"},{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\"}]},...NavBarFonts,...EmbedFonts,...ButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery24WSm8Ew\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a5fnqwTfG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PoWAGPc5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qw7Pmtzg4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"2362.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "NavBarFonts", "getFonts", "ubbUvcuV6_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "EmbedFonts", "Embed", "ImageWithFX", "withFX", "RichTextWithFX", "ButtonFonts", "mW8WUEuzc_default", "MotionDivWithFX", "FooterFonts", "Ckf0pTLb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "animation8", "animation9", "transformTemplate1", "_", "t", "animation10", "animation11", "transition5", "animation12", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "getLoadingLazyAtYPosition", "Link", "ResolveLinks", "resolvedLinks", "css", "Framery24WSm8Ew", "withCSS", "y24WSm8Ew_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
