{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/8NUN1F2efv7PdkRvVdR2/QKfJkcsUfNhppEmwe5RN/tPNgxZ9AD.js", "ssg:https://framerusercontent.com/modules/iv1FmebKlp2iZFehEW6A/jqXKwvv1SHRVwaVuSatC/pBhbwhNc_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"GF;Manrope-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}];export const css=['.framer-emtXu .framer-styles-preset-ee5fim:not(.rich-text-wrapper), .framer-emtXu .framer-styles-preset-ee5fim.rich-text-wrapper h3 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: rgba(52, 52, 56, 0.85); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-emtXu .framer-styles-preset-ee5fim:not(.rich-text-wrapper), .framer-emtXu .framer-styles-preset-ee5fim.rich-text-wrapper h3 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: rgba(52, 52, 56, 0.85); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-emtXu .framer-styles-preset-ee5fim:not(.rich-text-wrapper), .framer-emtXu .framer-styles-preset-ee5fim.rich-text-wrapper h3 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: rgba(52, 52, 56, 0.85); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-emtXu\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Footer from\"#framer/local/canvasComponent/EUCq5NAFD/EUCq5NAFD.js\";import Button from\"#framer/local/canvasComponent/PwC_wRjnU/PwC_wRjnU.js\";import NavbarDark from\"#framer/local/canvasComponent/sb3KoWIk8/sb3KoWIk8.js\";import*as sharedStyle from\"#framer/local/css/a6KkBJu5z/a6KkBJu5z.js\";import*as sharedStyle3 from\"#framer/local/css/EBsVW2Tm8/EBsVW2Tm8.js\";import*as sharedStyle5 from\"#framer/local/css/jDONfggKD/jDONfggKD.js\";import*as sharedStyle2 from\"#framer/local/css/mHv7jbqAl/mHv7jbqAl.js\";import*as sharedStyle1 from\"#framer/local/css/QwOQFtBqM/QwOQFtBqM.js\";import*as sharedStyle6 from\"#framer/local/css/tPNgxZ9AD/tPNgxZ9AD.js\";import*as sharedStyle4 from\"#framer/local/css/uriM5Kj2f/uriM5Kj2f.js\";import metadataProvider from\"#framer/local/webPageMetadata/pBhbwhNc_/pBhbwhNc_.js\";const NavbarDarkFonts=getFonts(NavbarDark);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const EmbedFonts=getFonts(Embed);const ContainerWithFX=withFX(Container);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const breakpoints={bYhAyqvqW:\"(min-width: 1440px)\",uwZfcIbCw:\"(min-width: 810px) and (max-width: 1439px)\",xPxs3uAH6:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PKLHg\";const variantClassNames={bYhAyqvqW:\"framer-v-ypdrxu\",uwZfcIbCw:\"framer-v-etcmdz\",xPxs3uAH6:\"framer-v-19b6o3w\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const transition2={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,transition:transition2,x:0,y:-150};const transition3={damping:80,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,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 metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"bYhAyqvqW\",Phone:\"xPxs3uAH6\",Tablet:\"uwZfcIbCw\"};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:\"bYhAyqvqW\"};};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-PKLHg`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-PKLHg`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bYhAyqvqW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ypdrxu\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:0},xPxs3uAH6:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xPxs3uAH6:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-3r8sog-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xPxs3uAH6:{variant:\"T6h0qy2rc\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"uqEX1YWOp\",layoutId:\"uqEX1YWOp\",style:{width:\"100%\"},variant:\"UmXRasgBv\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:4200,loading:getLoadingLazyAtYPosition(98),pixelHeight:2541,pixelWidth:3960,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg\",srcSet:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg 3960w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:4200,loading:getLoadingLazyAtYPosition(0),pixelHeight:2541,pixelWidth:3960,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg\",srcSet:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg 3960w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2800,intrinsicWidth:4200,pixelHeight:2541,pixelWidth:3960,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg\",srcSet:\"https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ouLlSkcLDhC103vVEccCzSnbb0.jpg 3960w\"},className:\"framer-19bq8ya\",\"data-framer-name\":\"Hero section\",name:\"Hero section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfa0zj\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(178),pixelHeight:1080,pixelWidth:1920,sizes:\"min(100vw, 1200px)\",src:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png\",srcSet:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png 1920w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(200),pixelHeight:1080,pixelWidth:1920,sizes:\"min(100vw - 60px, 1200px)\",src:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png\",srcSet:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png 1920w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"min(100vw - 120px, 1200px)\",src:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png\",srcSet:\"https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUDvVrGF6PCsJoZN3wWXki8YPU.png 1920w\"},className:\"framer-vjoank\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ii01x7\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12hrp03\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xPxs3uAH6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucr4dj\",\"data-styles-preset\":\"a6KkBJu5z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:\"Transform your body and reignite your energy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucr4dj\",\"data-styles-preset\":\"a6KkBJu5z\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:\"Transform your body and reignite your energy\"})}),className:\"framer-tnhs1q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xPxs3uAH6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12fh8gf\",\"data-styles-preset\":\"QwOQFtBqM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:[\"with the power of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Training and Accountability\"}),\" program\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12fh8gf\",\"data-styles-preset\":\"QwOQFtBqM\",style:{\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:[\"with the power of the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Training and Accountability\"}),\" program\"]})}),className:\"framer-1ckf1r1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i27u2m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:445.5},xPxs3uAH6:{y:320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y2qoqx-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"cHT3icNCc\",layoutId:\"cHT3icNCc\",style:{height:\"100%\"},variant:\"fHD2rNLgY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:445.5},xPxs3uAH6:{y:375}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wre0me-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"uQvPokZDt\",layoutId:\"uQvPokZDt\",style:{height:\"100%\"},variant:\"zrIcGD3tT\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1345,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(178),pixelHeight:1874,pixelWidth:872,sizes:\"239px\",src:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png\",srcSet:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png 872w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1161,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(415),pixelHeight:1874,pixelWidth:872,sizes:\"275px\",src:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png\",srcSet:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png 872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1316,intrinsicWidth:1500,pixelHeight:1874,pixelWidth:872,sizes:\"305.25px\",src:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png\",srcSet:\"https://framerusercontent.com/images/9i8Bpi0cjm1QUhZSYzdsExjzE.png 872w\"},className:\"framer-1i9n9j7\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-zlsmxn\",\"data-framer-name\":\"Intro\",name:\"Intro\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1om2w3q\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",children:\"Together fitness will be more than a routine, it will be a transformative journey\"})}),className:\"framer-s2zn3f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vgjshi\",\"data-styles-preset\":\"EBsVW2Tm8\",style:{\"--framer-text-alignment\":\"center\"},children:\"I believe in the power of community, resilience, and personal growth. Whether you're a mom seeking balance or an individual ready for positive change, we're here to guide you on a path to strength and empowerment\"})}),className:\"framer-nqn2l2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13u0s7j\",\"data-framer-name\":\"About\",name:\"About\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(1006),pixelHeight:1500,pixelWidth:2e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png\",srcSet:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png 2000w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(1228),pixelHeight:1500,pixelWidth:2e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png\",srcSet:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1500,pixelWidth:2e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png\",srcSet:\"https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XKEaMwTJqiKsn9Q6UQWFVfclaU.png 2000w\"},className:\"framer-6f28pr\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2bhpnf\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-he0x48\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",style:{\"--framer-text-alignment\":\"left\"},children:\"At 43, I'm not just your fitness coach\u2026\"})}),className:\"framer-cekb0r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1vgjshi\",\"data-styles-preset\":\"EBsVW2Tm8\",style:{\"--framer-text-alignment\":\"left\"},children:[\"\u2014I'm a proud mom of four incredible kids, including energetic twins. My journey from a corporate accountant to a fitness enthusiast is a testament to the power of change.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Originally from Toronto and now calling Alberta home, I've embraced the challenges of moving across continents, played rugby for a decade, and discovered confidence knows no height.\"]})}),className:\"framer-fuwvjv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:1289},xPxs3uAH6:{y:1911}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-byvasg-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"J8NxVALLa\",layoutId:\"J8NxVALLa\",style:{height:\"100%\"},variant:\"rw_r8OHHE\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-18mwsx8\",\"data-framer-name\":\"T&A highlight\",name:\"T&A highlight\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zpq0r\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3iqh2v\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",style:{\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:\"Ignite Your Motivation, Crush Your Goals\"})}),className:\"framer-1eyrlma\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12fh8gf\",\"data-styles-preset\":\"QwOQFtBqM\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:\"Experience a training program that goes beyond the ordinary.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:[\"What do you get inside the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Training and Accountability\"}),\" package? \"]})]})}),className:\"framer-1ythdv6\",fonts:[\"Inter\",\"Inter-Bold\"],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:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mvwbfv\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lkshs3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpjw7g\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(1747),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(80vw, 1000px) - 20px) / 2, 200px)\",src:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg\",srcSet:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg 6000w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(2329),pixelHeight:4e3,pixelWidth:6e3,sizes:\"max(min((100vw - 80px) * 0.8, 1000px), 200px)\",src:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg\",srcSet:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"max((min(80vw, 1000px) - 40px) / 3, 200px)\",src:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg\",srcSet:\"https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/72SqBbS3B4u4ao9m367g5CTr4w.jpg 6000w\"},className:\"framer-1pqjsrs\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vpe3ou\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o30k9g\",\"data-styles-preset\":\"uriM5Kj2f\",children:\"Monthly training program\"})}),className:\"framer-1up9f7k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2bq5v1\",\"data-styles-preset\":\"jDONfggKD\",children:\"Every month you'll get a detailed training program.\"})}),className:\"framer-92q2bl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nkg4dz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6s834\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2428,intrinsicWidth:2428,loading:getLoadingLazyAtYPosition(1747),pixelHeight:2428,pixelWidth:2428,sizes:\"max((min(80vw, 1000px) - 20px) / 2, 200px)\",src:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg\",srcSet:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg 2428w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2428,intrinsicWidth:2428,loading:getLoadingLazyAtYPosition(2813),pixelHeight:2428,pixelWidth:2428,sizes:\"max(min((100vw - 80px) * 0.8, 1000px), 200px)\",src:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg\",srcSet:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg 2428w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2428,intrinsicWidth:2428,pixelHeight:2428,pixelWidth:2428,sizes:\"calc(max((min(80vw, 1000px) - 40px) / 3, 200px) * 2 + 20px)\",src:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg\",srcSet:\"https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tIhqou6lirpVRGMi2SoO7IUFuvY.jpg 2428w\"},className:\"framer-r99wdn\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tiwe35\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o30k9g\",\"data-styles-preset\":\"uriM5Kj2f\",children:\"Nutrition breakdown\"})}),className:\"framer-wc4kdc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2bq5v1\",\"data-styles-preset\":\"jDONfggKD\",children:\"Get your macros and learn how to eat better to achieve your fitness and energy goals.\"})}),className:\"framer-c4chre\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jbuolt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1529yyx\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2900,intrinsicWidth:4350,loading:getLoadingLazyAtYPosition(2231),pixelHeight:2900,pixelWidth:4350,sizes:\"max((min(80vw, 1000px) - 20px) / 2, 200px)\",src:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg\",srcSet:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg 4350w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2900,intrinsicWidth:4350,loading:getLoadingLazyAtYPosition(3277),pixelHeight:2900,pixelWidth:4350,sizes:\"max(min((100vw - 80px) * 0.8, 1000px), 200px)\",src:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg\",srcSet:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg 4350w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2900,intrinsicWidth:4350,pixelHeight:2900,pixelWidth:4350,sizes:\"calc(max((min(80vw, 1000px) - 40px) / 3, 200px) * 2 + 20px)\",src:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg\",srcSet:\"https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gpSvKHfCySTjLDMwRS4zEkMQ0k.jpg 4350w\"},className:\"framer-xdp6h7\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2sc9gz\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o30k9g\",\"data-styles-preset\":\"uriM5Kj2f\",children:\"Meal plans\"})}),className:\"framer-vs6wrz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2bq5v1\",\"data-styles-preset\":\"jDONfggKD\",children:\"You'll get a lot of ideas get your nutrients easily.\"})}),className:\"framer-wa8gnv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u6tbf4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1slkujk\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(2231),pixelHeight:3392,pixelWidth:1908,sizes:\"max((min(80vw, 1000px) - 20px) / 2, 200px)\",src:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg 3392w\"}},xPxs3uAH6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3741),pixelHeight:3392,pixelWidth:1908,sizes:\"max(min((100vw - 80px) * 0.8, 1000px), 200px)\",src:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg 3392w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1500,pixelHeight:3392,pixelWidth:1908,sizes:\"max((min(80vw, 1000px) - 40px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CY7q7jPTz6ypPozOk5ZplzeI.jpg 3392w\"},className:\"framer-17r311p\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d53j1t\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1o30k9g\",\"data-styles-preset\":\"uriM5Kj2f\",children:\"Ask questions anytime\"})}),className:\"framer-qkc4rz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2bq5v1\",\"data-styles-preset\":\"jDONfggKD\",children:\"I'll be here if you are not sure about a specific exercise.\"})}),className:\"framer-106do7f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-191n69w\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:2745},xPxs3uAH6:{y:4255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a546ru-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"KT_DzlBI4\",layoutId:\"KT_DzlBI4\",variant:\"fHD2rNLgY\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fgooc\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",children:\"What my clients say about me\"})}),className:\"framer-1r4aof9\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1rzqp24-container\",\"data-framer-appear-id\":\"1rzqp24\",initial:animation3,optimized:true,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:\"DsAbp9uoJ\",layoutId:\"DsAbp9uoJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1364.1666124595558,intrinsicWidth:764.1666363014127,pixelHeight:1637,pixelWidth:917,sizes:\"198.3005px\",src:\"https://framerusercontent.com/images/17J5wRTNINFgLz7F09kIEAy3Rg.jpg\",srcSet:\"https://framerusercontent.com/images/17J5wRTNINFgLz7F09kIEAy3Rg.jpg?scale-down-to=1024 573w,https://framerusercontent.com/images/17J5wRTNINFgLz7F09kIEAy3Rg.jpg 917w\"},className:\"framer-1w93yr7\",\"data-framer-name\":\"Screenshot 20240929_163033_Messages\",name:\"Screenshot 20240929_163033_Messages\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:338.33331988917513,intrinsicWidth:899.9999642372145,pixelHeight:406,pixelWidth:1080,sizes:\"233px\",src:\"https://framerusercontent.com/images/Xe9H36welpH9LqUMFiWs55F0hE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Xe9H36welpH9LqUMFiWs55F0hE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xe9H36welpH9LqUMFiWs55F0hE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xe9H36welpH9LqUMFiWs55F0hE.jpg 1080w\"},className:\"framer-8jt8r0\",\"data-framer-name\":\"Screenshot 20240920_212848_Facebook\",name:\"Screenshot 20240920_212848_Facebook\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462.4999418854736,intrinsicWidth:899.9999642372145,pixelHeight:1755,pixelWidth:1080,sizes:\"234px\",src:\"https://framerusercontent.com/images/S09icrye1mlRawpISZbFUQd8AY.jpg\",srcSet:\"https://framerusercontent.com/images/S09icrye1mlRawpISZbFUQd8AY.jpg?scale-down-to=1024 630w,https://framerusercontent.com/images/S09icrye1mlRawpISZbFUQd8AY.jpg 1080w\"},className:\"framer-1l8krb5\",\"data-framer-name\":\"Screenshot 20241001_121157_Instagram\",name:\"Screenshot 20241001_121157_Instagram\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:539.1666452421091,intrinsicWidth:899.9999642372145,pixelHeight:647,pixelWidth:1080,sizes:\"234px\",src:\"https://framerusercontent.com/images/PyHCZrVI2wDajmWWaKcEmcAjVU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PyHCZrVI2wDajmWWaKcEmcAjVU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PyHCZrVI2wDajmWWaKcEmcAjVU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PyHCZrVI2wDajmWWaKcEmcAjVU.jpg 1080w\"},className:\"framer-r0upl9\",\"data-framer-name\":\"Screenshot 20240920_212816_Facebook\",name:\"Screenshot 20240920_212816_Facebook\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:254.16665656699115,intrinsicWidth:735.8333040939449,pixelHeight:305,pixelWidth:883,sizes:\"191px\",src:\"https://framerusercontent.com/images/gwiECVmN7kJdZ32pIuInFczuhRc.jpg\",srcSet:\"https://framerusercontent.com/images/gwiECVmN7kJdZ32pIuInFczuhRc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gwiECVmN7kJdZ32pIuInFczuhRc.jpg 883w\"},className:\"framer-ted14k\",\"data-framer-name\":\"Screenshot 20240929_165837_FormsApp\",name:\"Screenshot 20240929_165837_FormsApp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744.9999703963609,intrinsicWidth:899.9999642372145,pixelHeight:894,pixelWidth:1080,sizes:\"234px\",src:\"https://framerusercontent.com/images/TgY8eAYR3gZM1KWyMW20BHGc.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TgY8eAYR3gZM1KWyMW20BHGc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TgY8eAYR3gZM1KWyMW20BHGc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgY8eAYR3gZM1KWyMW20BHGc.jpg 1080w\"},className:\"framer-ziqi0q\",\"data-framer-name\":\"Screenshot 20240923_105226_Facebook\",name:\"Screenshot 20240923_105226_Facebook\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:686.6666393809859,intrinsicWidth:787.4999687075627,pixelHeight:824,pixelWidth:945,sizes:\"206px\",src:\"https://framerusercontent.com/images/YUInRH6vZ2aXBMdXJ1xUewDTJw0.jpg\",srcSet:\"https://framerusercontent.com/images/YUInRH6vZ2aXBMdXJ1xUewDTJw0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YUInRH6vZ2aXBMdXJ1xUewDTJw0.jpg 945w\"},className:\"framer-fk8q5s\",\"data-framer-name\":\"Screenshot 20241012_114536_Messenger\",name:\"Screenshot 20241012_114536_Messenger\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.6666540834644,intrinsicWidth:733.3333041932859,pixelHeight:380,pixelWidth:880,sizes:\"190px\",src:\"https://framerusercontent.com/images/DAU24OzvMraNRUZRmCMg46WTo.jpg\",srcSet:\"https://framerusercontent.com/images/DAU24OzvMraNRUZRmCMg46WTo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DAU24OzvMraNRUZRmCMg46WTo.jpg 880w\"},className:\"framer-1sf2api\",\"data-framer-name\":\"Screenshot 20240929_170101_FormsApp\",name:\"Screenshot 20240929_170101_FormsApp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:163.33332684305006,intrinsicWidth:643.3333077695645,pixelHeight:196,pixelWidth:772,sizes:\"166px\",src:\"https://framerusercontent.com/images/ZjFh68CSfGC5nYs4ffARY97LhE.jpg\",srcSet:\"https://framerusercontent.com/images/ZjFh68CSfGC5nYs4ffARY97LhE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZjFh68CSfGC5nYs4ffARY97LhE.jpg 772w\"},className:\"framer-gsx35e\",\"data-framer-name\":\"Screenshot 20241007_160003_Messenger\",name:\"Screenshot 20241007_160003_Messenger\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:334.99998668829653,intrinsicWidth:899.9999642372145,pixelHeight:402,pixelWidth:1080,sizes:\"233px\",src:\"https://framerusercontent.com/images/q4sIX4RO717HW6LaiWbTzA4c8A.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q4sIX4RO717HW6LaiWbTzA4c8A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q4sIX4RO717HW6LaiWbTzA4c8A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q4sIX4RO717HW6LaiWbTzA4c8A.jpg 1080w\"},className:\"framer-1pgkg2l\",\"data-framer-name\":\"Screenshot 20240910_123340_WhatsApp\",name:\"Screenshot 20240910_123340_WhatsApp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236.66665726237864,intrinsicWidth:899.9999642372145,pixelHeight:284,pixelWidth:1080,sizes:\"233px\",src:\"https://framerusercontent.com/images/hZ2XnmZx5lnx7dmgZVmQqQRuVqE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hZ2XnmZx5lnx7dmgZVmQqQRuVqE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hZ2XnmZx5lnx7dmgZVmQqQRuVqE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZ2XnmZx5lnx7dmgZVmQqQRuVqE.jpg 1080w\"},className:\"framer-1vnh548\",\"data-framer-name\":\"Screenshot 20240910_123456_WhatsApp\",name:\"Screenshot 20240910_123456_WhatsApp\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9p0wte\",\"data-framer-name\":\"opt-in\",name:\"opt-in\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlnoaq\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kh5wu\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",style:{\"--framer-text-color\":\"rgba(247, 244, 235, 0.9)\"},children:\"Get the high-protein recipe ebook\"})}),className:\"framer-107v4l3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12fh8gf\",\"data-styles-preset\":\"QwOQFtBqM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(247, 244, 235, 0.85)\"},children:\"Over 100 recipes of tasty high-protein dishes ready to help you accomplish your goals\"})}),className:\"framer-1il02wg\",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:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sgnwz3-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<style type=\"text/css\">@import url(\"https://assets.mlcdn.com/fonts.css?version=1701686\");</style>\\n    <style type=\"text/css\">\\n    /* LOADER */\\n    .ml-form-embedSubmitLoad {\\n      display: inline-block;\\n      width: 20px;\\n      height: 20px;\\n    }\\n\\n    .g-recaptcha {\\n    transform: scale(1);\\n    -webkit-transform: scale(1);\\n    transform-origin: 0 0;\\n    -webkit-transform-origin: 0 0;\\n    height: ;\\n    }\\n\\n    .sr-only {\\n      position: absolute;\\n      width: 1px;\\n      height: 1px;\\n      padding: 0;\\n      margin: -1px;\\n      overflow: hidden;\\n      clip: rect(0,0,0,0);\\n      border: 0;\\n    }\\n\\n    .ml-form-embedSubmitLoad:after {\\n      content: \" \";\\n      display: block;\\n      width: 11px;\\n      height: 11px;\\n      margin: 1px;\\n      border-radius: 50%;\\n      border: 4px solid #fff;\\n    border-color: #272727 #272727 #272727 transparent;\\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\\n    }\\n    @keyframes ml-form-embedSubmitLoad {\\n      0% {\\n      transform: rotate(0deg);\\n      }\\n      100% {\\n      transform: rotate(360deg);\\n      }\\n    }\\n      #mlb2-9861295.ml-form-embedContainer {\\n        box-sizing: border-box;\\n        display: table;\\n        margin: 0 auto;\\n        position: static;\\n        width: 100% !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer h4,\\n      #mlb2-9861295.ml-form-embedContainer p,\\n      #mlb2-9861295.ml-form-embedContainer span,\\n      #mlb2-9861295.ml-form-embedContainer button {\\n        text-transform: none !important;\\n        letter-spacing: normal !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper {\\n        background-color: #9C6CD8;\\n        \\n        border-width: 0px;\\n        border-color: transparent;\\n        border-radius: 4px;\\n        border-style: solid;\\n        box-sizing: border-box;\\n        display: inline-block !important;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n              }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-align-left { text-align: left; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-align-center { text-align: center; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-align-right { text-align: right; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\\n        border-top-left-radius: 4px;\\n        border-top-right-radius: 4px;\\n        height: auto;\\n        margin: 0 auto !important;\\n        max-width: 100%;\\n        width: undefinedpx;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\\n        padding: 20px 20px 0 20px;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\\n        padding-bottom: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\\n        text-align: left;\\n        margin: 0 0 20px 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 30px;\\n        font-weight: 400;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n        word-break: break-word;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\\n        color: #000000;\\n        font-family: \\'Lato\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\\n        color: #000000;\\n        font-family: \\'Lato\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\\n        list-style-type: lower-alpha;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\\n        list-style-type: lower-roman;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\\n        text-align: left!important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\\n        margin-bottom: 5px;\\n        color: #333333;\\n        font-size: 14px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-weight: bold; font-style: normal; text-decoration: none;;\\n        display: inline-block;\\n        line-height: 20px;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\\n        margin: 0;\\n        width: 100%;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        margin: 0 0 20px 0;\\n        width: 100%;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        float: left;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n        margin: 0;\\n        padding: 0 0 20px 0;\\n        width: 100%;\\n        height: auto;\\n        float: left;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\\n        margin: 0 0 10px 0;\\n        width: 100%;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\\n        margin: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\\n        margin: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        margin-left: 0;\\n        margin-right: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          border-color: #cccccc!important;\\n          background-color: #ffffff!important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=\"checkbox\"]{\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n        border-radius: 4px!important;\\n      }\\n\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'0 0 8 8\\'%3e%3cpath fill=\\'%23fff\\' d=\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'-4 -4 8 8\\'%3e%3ccircle r=\\'3\\' fill=\\'%23fff\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\\n          border-color: #000000!important;\\n          background-color: #000000!important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\\n           top: 2px;\\n           box-sizing: border-box;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n           top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n        top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n       #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\\n            top: 0px!important;\\n            box-sizing: border-box!important;\\n            position: absolute;\\n            left: -1.5rem;\\n            display: block;\\n            width: 1rem;\\n            height: 1rem;\\n            content: \"\";\\n       }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\\n        top: 0px!important;\\n        box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\\n          position: absolute;\\n          top: 2px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\\n        position: relative;\\n        display: block;\\n        min-height: 1.5rem;\\n        padding-left: 1.5rem;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\\n          position: absolute;\\n          z-index: -1;\\n          opacity: 0;\\n          box-sizing: border-box;\\n          padding: 0;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\\n          color: #000000;\\n          font-size: 12px!important;\\n          font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n          line-height: 22px;\\n          margin-bottom: 0;\\n          position: relative;\\n          vertical-align: top;\\n          font-style: normal;\\n          font-weight: 700;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        line-height: 20px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 28px 10px 12px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n        height: auto;\\n        display: inline-block;\\n        vertical-align: middle;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/dropdown.svg\\') no-repeat right .75rem center/8px 10px;\\n        -webkit-appearance: none;\\n        -moz-appearance: none;\\n        appearance: none;\\n      }\\n\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\\n        height: auto;\\n        width: 100%;\\n        float: left;\\n      }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\\n        background-color: #ffffff;\\n        color: #333333;\\n        border-color: #cccccc;\\n        border-radius: 4px;\\n        border-style: solid;\\n        border-width: 1px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        line-height: 20px;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px;\\n        width: 100%;\\n        box-sizing: border-box;\\n        overflow-y: initial;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\\n        background-color: #F7F4EB !important;\\n        border-color: #F7F4EB;\\n        border-style: solid;\\n        border-width: 1px;\\n        border-radius: 4px;\\n        box-shadow: none;\\n        color: #272727 !important;\\n        cursor: pointer;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        font-weight: 700;\\n        line-height: 20px;\\n        margin: 0 !important;\\n        padding: 10px !important;\\n        width: 100%;\\n        height: auto;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\\n        background-color: #ffffff !important;\\n        border-color: #ffffff !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\\n        color: #000000;\\n        display: block;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\\n        color: #000000 !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 12px !important;\\n        font-weight: normal !important;\\n        line-height: 18px !important;\\n        padding: 0 !important;\\n        margin: 0 5px 0 0 !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\\n        margin: 0 0 20px 0;\\n        float: left;\\n        width: 100%;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\\n        background-color: #F7F4EB !important;\\n        border: none !important;\\n        border-radius: 4px !important;\\n        box-shadow: none !important;\\n        color: #272727 !important;\\n        cursor: pointer;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 700 !important;\\n        line-height: 21px !important;\\n        height: auto;\\n        padding: 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\\n        display: none;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\\n        background-color: #ffffff !important;\\n      }\\n      .ml-subscribe-close {\\n        width: 30px;\\n        height: 30px;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/modal_close.png\\') no-repeat;\\n        background-size: 30px;\\n        cursor: pointer;\\n        margin-top: -10px;\\n        margin-right: -10px;\\n        position: absolute;\\n        top: 0;\\n        right: 0;\\n      }\\n      .ml-error input, .ml-error textarea, .ml-error select {\\n        border-color: red!important;\\n      }\\n\\n      .ml-error .custom-checkbox-radio-list {\\n        border: 1px solid red !important;\\n        border-radius: 4px;\\n        padding: 10px;\\n      }\\n\\n      .ml-error .label-description,\\n      .ml-error .label-description p,\\n      .ml-error .label-description p a,\\n      .ml-error label:first-child {\\n        color: #ff0000 !important;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\\n        color: #ff0000 !important;\\n      }\\n            @media only screen and (max-width: 400px){\\n\\n        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm { float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }\\n\\n      }\\n    </style>\\n\\n    \\n  \\n    \\n    <style type=\"text/css\">\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions { text-align: left; float: left; width: 100%; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent {\\n        margin: 0 0 15px 0;\\n        text-align: left;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.horizontal {\\n        margin: 0 0 15px 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent h4 {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        font-weight: 700;\\n        line-height: 18px;\\n        margin: 0 0 10px 0;\\n        word-break: break-word;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        line-height: 18px;\\n        margin: 0 0 10px 0;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        line-height: 22px;\\n        margin: 0 0 10px 0;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p a {\\n        color: #000000;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p:last-child {\\n        margin: 0;\\n      }\\n\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p:last-child { margin: 0 0 15px 0; }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptions {\\n        margin: 0;\\n        padding: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox {\\n        margin: 0 0 10px 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        line-height: 18px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n        font-style: normal;\\n        font-weight: 700;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .description {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        font-style: italic;\\n        font-weight: 400;\\n        line-height: 18px;\\n        margin: 5px 0 0 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR {\\n        padding-bottom: 20px;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 10px;\\n        line-height: 14px;\\n        margin: 0;\\n        padding: 0;\\n      }\\n      #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p a {\\n        color: #000000;\\n        text-decoration: underline;\\n\\n      }\\n      @media (max-width: 768px) {\\n        #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {\\n          font-size: 12px !important;\\n          line-height: 18px !important;\\n        }\\n        #mlb2-9861295.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {\\n          font-size: 10px !important;\\n          line-height: 14px !important;\\n        }\\n      }\\n    </style>\\n\\n    \\n    \\n\\n    \\n    \\n\\n    \\n\\n      \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n      \\n\\n      \\n\\n            \\n            \\n            \\n            \\n            \\n            \\n      \\n\\n      \\n\\n      \\n        \\n        \\n         \\n        \\n        \\n      \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n\\n      \\n        \\n        \\n        \\n        \\n  \\n\\n\\n\\n  \\n        \\n        \\n        \\n      \\n\\n\\n      \\n    \\n    \\n    \\n    \\n    \\n    \\n    \\n  \\n\\n  \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n       \\n\\n       \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n    \\n\\n    \\n\\n\\n      \\n\\n\\n      \\n\\n      \\n      \\n\\n      \\n\\n      \\n\\n\\n\\n\\n\\n    \\n\\n      \\n    <div id=\"mlb2-9861295\" class=\"ml-form-embedContainer ml-subscribe-form ml-subscribe-form-9861295\">\\n      <div class=\"ml-form-align-center \">\\n        <div class=\"ml-form-embedWrapper embedForm\">\\n\\n          \\n          \\n\\n          <div class=\"ml-form-embedBody ml-form-embedBodyDefault row-form\">\\n\\n            <div class=\"ml-form-embedContent\" style=\"margin-bottom: 0px; \">\\n              \\n            </div>\\n\\n            <form class=\"ml-block-form\" action=\"https://assets.mailerlite.com/jsonp/714924/forms/106457300669040147/subscribe\" data-code=\"\" method=\"post\" target=\"_blank\">\\n              <div class=\"ml-form-formContent\">\\n                \\n\\n                  \\n                  <div class=\"ml-form-fieldRow ml-last-item\">\\n                    <div class=\"ml-field-group ml-field-email ml-validate-email ml-validate-required\">\\n\\n                      \\n\\n\\n                      <!-- input -->\\n                      <input aria-label=\"email\" aria-required=\"true\" type=\"email\" class=\"form-control\" data-inputmask=\"\" name=\"fields[email]\" placeholder=\"Email\" autocomplete=\"email\">\\n                      <!-- /input -->\\n\\n                      <!-- textarea -->\\n                      \\n                      <!-- /textarea -->\\n\\n                      <!-- select -->\\n                      \\n                      <!-- /select -->\\n\\n                      <!-- checkboxes -->\\n            \\n            <!-- /checkboxes -->\\n\\n                      <!-- radio -->\\n                      \\n                      <!-- /radio -->\\n\\n                      <!-- countries -->\\n                      \\n                      <!-- /countries -->\\n\\n\\n\\n\\n\\n                    </div>\\n                  </div>\\n                \\n              </div>\\n\\n              \\n\\n              <!-- Privacy policy -->\\n              <div class=\"ml-form-embedPermissions\" style=\"\">\\n                <div class=\"ml-form-embedPermissionsContent default privacy-policy\">\\n\\n                  \\n\\n                  \\n                          <p>You can unsubscribe anytime. For more details, review our Privacy Policy.</p>\\n                  \\n\\n                  \\n                </div>\\n              </div>\\n              <!-- /Privacy policy -->\\n\\n              \\n\\n              \\n\\n              \\n\\n\\n\\n\\n\\n\\n              \\n              <input type=\"hidden\" name=\"ml-submit\" value=\"1\">\\n\\n              <div class=\"ml-form-embedSubmit\">\\n                \\n                  <button type=\"submit\" class=\"primary\">Get it Now</button>\\n                \\n                <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                  <div class=\"ml-form-embedSubmitLoad\"></div>\\n                  <span class=\"sr-only\">Loading...</span>\\n                </button>\\n              </div>\\n\\n              \\n              <input type=\"hidden\" name=\"anticsrf\" value=\"true\">\\n            </form>\\n          </div>\\n\\n          <div class=\"ml-form-successBody row-success\" style=\"display: none\">\\n\\n            <div class=\"ml-form-successContent\">\\n              \\n                <h4>Thank you!</h4>\\n                \\n                  <p>You have successfully joined our subscriber list.</p>\\n                \\n              \\n            </div>\\n\\n          </div>\\n        </div>\\n      </div>\\n    </div>\\n\\n  \\n\\n  \\n  <script>\\n    function ml_webform_success_9861295() {\\n    try {\\n        window.top.location.href = \\'https://martaritcey.com/opt-in-thank-you\\';\\n      } catch (e) {\\n        window.location.href = \\'https://martaritcey.com/opt-in-thank-you\\';\\n      }\\n    }\\n      </script>\\n  \\n  \\n  \\n      <script src=\"https://groot.mailerlite.com/js/w/webforms.min.js?v1f25ee4b05f240a833e02c19975434a4\" type=\"text/javascript\"></script>\\n        <script>\\n            fetch(\"https://assets.mailerlite.com/jsonp/714924/forms/106457300669040147/takel\")\\n        </script>',id:\"lfevZtbVM\",layoutId:\"lfevZtbVM\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12g1kyd\",\"data-framer-name\":\"Youtube\",name:\"Youtube\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dw009j\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ozxgxm\",\"data-styles-preset\":\"mHv7jbqAl\",children:\"What is it like to train with me?\"})}),className:\"framer-1anur4a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12fh8gf\",\"data-styles-preset\":\"QwOQFtBqM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(52, 52, 56, 0.85)\"},children:\"Watch some of my classes on YouTube and get a feel for it\"})}),className:\"framer-1r94fka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11gd57x\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h7nqqb\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3iov3-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"OqcsY3BKx\",isMixedBorderRadius:false,isRed:true,layoutId:\"OqcsY3BKx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://www.youtube.com/watch?v=FAW0ZDf15vw\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ng3udl\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ee5fim\",\"data-styles-preset\":\"tPNgxZ9AD\",children:\"Muscle endurance\"})}),className:\"framer-844o85\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vgjshi\",\"data-styles-preset\":\"EBsVW2Tm8\",children:\"Focusing on leg movement and making you stronger\"})}),className:\"framer-1ok1xe\",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:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9nqe3c\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjkmjp-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"QXS4ykzkI\",isMixedBorderRadius:false,isRed:true,layoutId:\"QXS4ykzkI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://www.youtube.com/watch?v=s8e_-lFEIJs\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1clzkzq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ee5fim\",\"data-styles-preset\":\"tPNgxZ9AD\",children:\"Lifting heavy and pelvic floor work\"})}),className:\"framer-6x7qm1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vgjshi\",\"data-styles-preset\":\"EBsVW2Tm8\",children:\"Switching it up with weights and pelvic floor work\"})}),className:\"framer-8derwk\",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:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y5sfhb\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ofpwww-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"UPFSdjieg\",isMixedBorderRadius:false,isRed:true,layoutId:\"UPFSdjieg\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://www.youtube.com/watch?v=ZVlVh-bH2Oc\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10uasg1\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ee5fim\",\"data-styles-preset\":\"tPNgxZ9AD\",children:\"Muscle endurance\"})}),className:\"framer-9r9e11\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vgjshi\",\"data-styles-preset\":\"EBsVW2Tm8\",children:\"Follow me at home to strenghten your muscles\"})}),className:\"framer-aln54g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uwZfcIbCw:{y:6184},xPxs3uAH6:{y:7473}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:451,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1soy7cc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xPxs3uAH6:{variant:\"Hu9be9KMp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cUF8y5zkh\",layoutId:\"cUF8y5zkh\",style:{width:\"100%\"},variant:\"uirSCxYJQ\",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-PKLHg { background: rgb(248, 244, 235); }`,\".framer-PKLHg.framer-epwikd, .framer-PKLHg .framer-epwikd { display: block; }\",\".framer-PKLHg.framer-ypdrxu { align-content: center; align-items: center; background-color: #f8f4eb; 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-PKLHg .framer-3r8sog-container, .framer-PKLHg .framer-1soy7cc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PKLHg .framer-19bq8ya { 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: 80px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1sfa0zj { background-color: rgba(49, 71, 225, 0.8); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-PKLHg .framer-vjoank { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-ii01x7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 575px; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-PKLHg .framer-12hrp03 { 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: 0px; position: relative; width: min-content; }\",\".framer-PKLHg .framer-tnhs1q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; max-width: 575px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-1ckf1r1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-PKLHg .framer-i27u2m { 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-PKLHg .framer-1y2qoqx-container, .framer-PKLHg .framer-wre0me-container, .framer-PKLHg .framer-byvasg-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-PKLHg .framer-1i9n9j7 { align-content: center; align-items: center; aspect-ratio: 0.55 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 555px; justify-content: center; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: var(--framer-aspect-ratio-supported, 305px); }\",\".framer-PKLHg .framer-zlsmxn { 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: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1om2w3q { 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: 60%; }\",\".framer-PKLHg .framer-s2zn3f, .framer-PKLHg .framer-1eyrlma { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-nqn2l2, .framer-PKLHg .framer-1ythdv6 { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-13u0s7j { align-content: center; align-items: center; background-color: #f8f8f8; 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-PKLHg .framer-6f28pr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PKLHg .framer-2bhpnf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 60px; position: relative; width: 1px; }\",\".framer-PKLHg .framer-he0x48 { 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 80px 0px 0px; position: relative; width: 1px; }\",\".framer-PKLHg .framer-cekb0r, .framer-PKLHg .framer-1up9f7k, .framer-PKLHg .framer-wc4kdc, .framer-PKLHg .framer-vs6wrz, .framer-PKLHg .framer-qkc4rz, .framer-PKLHg .framer-844o85, .framer-PKLHg .framer-6x7qm1, .framer-PKLHg .framer-9r9e11 { --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-PKLHg .framer-fuwvjv, .framer-PKLHg .framer-92q2bl, .framer-PKLHg .framer-c4chre, .framer-PKLHg .framer-wa8gnv, .framer-PKLHg .framer-106do7f, .framer-PKLHg .framer-1ok1xe, .framer-PKLHg .framer-8derwk, .framer-PKLHg .framer-aln54g { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-18mwsx8 { align-content: center; align-items: center; background-color: var(--token-96c16048-296a-418b-a203-644b85ede9c2, #3147e1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-zpq0r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-PKLHg .framer-3iqh2v { 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: 80%; }\",\".framer-PKLHg .framer-1mvwbfv { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-lkshs3, .framer-PKLHg .framer-u6tbf4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-hpjw7g, .framer-PKLHg .framer-e6s834, .framer-PKLHg .framer-1529yyx, .framer-PKLHg .framer-1slkujk { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; 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: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PKLHg .framer-1pqjsrs, .framer-PKLHg .framer-17r311p { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PKLHg .framer-1vpe3ou, .framer-PKLHg .framer-tiwe35, .framer-PKLHg .framer-2sc9gz, .framer-PKLHg .framer-d53j1t { 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: 30px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-nkg4dz, .framer-PKLHg .framer-1jbuolt { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-r99wdn, .framer-PKLHg .framer-xdp6h7 { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 220px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PKLHg .framer-191n69w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1a546ru-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PKLHg .framer-14fgooc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1r4aof9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 55%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-1rzqp24-container { flex: none; height: 442px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1w93yr7 { aspect-ratio: 0.5601710445937691 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 354px); overflow: visible; position: relative; width: 198px; }\",\".framer-PKLHg .framer-8jt8r0 { aspect-ratio: 2.660098522167487 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 233px; }\",\".framer-PKLHg .framer-1l8krb5 { aspect-ratio: 0.6153846153846153 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: relative; width: 234px; }\",\".framer-PKLHg .framer-r0upl9 { aspect-ratio: 1.669242658423493 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 140px); overflow: visible; position: relative; width: 234px; }\",\".framer-PKLHg .framer-ted14k { aspect-ratio: 2.8950819672131147 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 191px; }\",\".framer-PKLHg .framer-ziqi0q { aspect-ratio: 1.2080536912751678 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 194px); overflow: visible; position: relative; width: 234px; }\",\".framer-PKLHg .framer-fk8q5s { aspect-ratio: 1.1468446601941749 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 180px); overflow: visible; position: relative; width: 206px; }\",\".framer-PKLHg .framer-1sf2api { aspect-ratio: 2.3157894736842106 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 82px); overflow: visible; position: relative; width: 190px; }\",\".framer-PKLHg .framer-gsx35e { aspect-ratio: 3.9387755102040813 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 166px; }\",\".framer-PKLHg .framer-1pgkg2l { aspect-ratio: 2.6865671641791042 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 87px); overflow: visible; position: relative; width: 233px; }\",\".framer-PKLHg .framer-1vnh548 { aspect-ratio: 3.8028169014084505 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 233px; }\",\".framer-PKLHg .framer-9p0wte { align-content: center; align-items: center; background-color: #9c6cd8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 150px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1nlnoaq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 89%; }\",\".framer-PKLHg .framer-5kh5wu, .framer-PKLHg .framer-dw009j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-107v4l3, .framer-PKLHg .framer-1anur4a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-1il02wg, .framer-PKLHg .framer-1r94fka { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 67%; word-break: break-word; word-wrap: break-word; }\",\".framer-PKLHg .framer-1sgnwz3-container { flex: none; height: 260px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-12g1kyd { align-content: center; align-items: center; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-11gd57x { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1h7nqqb, .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1y5sfhb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-PKLHg .framer-1e3iov3-container, .framer-PKLHg .framer-1xjkmjp-container, .framer-PKLHg .framer-ofpwww-container { flex: none; height: 270px; position: relative; width: 480px; }\",\".framer-PKLHg .framer-ng3udl, .framer-PKLHg .framer-1clzkzq, .framer-PKLHg .framer-10uasg1 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PKLHg.framer-ypdrxu, .framer-PKLHg .framer-19bq8ya, .framer-PKLHg .framer-vjoank, .framer-PKLHg .framer-ii01x7, .framer-PKLHg .framer-12hrp03, .framer-PKLHg .framer-i27u2m, .framer-PKLHg .framer-1i9n9j7, .framer-PKLHg .framer-zlsmxn, .framer-PKLHg .framer-1om2w3q, .framer-PKLHg .framer-13u0s7j, .framer-PKLHg .framer-6f28pr, .framer-PKLHg .framer-2bhpnf, .framer-PKLHg .framer-he0x48, .framer-PKLHg .framer-18mwsx8, .framer-PKLHg .framer-zpq0r, .framer-PKLHg .framer-3iqh2v, .framer-PKLHg .framer-lkshs3, .framer-PKLHg .framer-hpjw7g, .framer-PKLHg .framer-1vpe3ou, .framer-PKLHg .framer-nkg4dz, .framer-PKLHg .framer-e6s834, .framer-PKLHg .framer-tiwe35, .framer-PKLHg .framer-1jbuolt, .framer-PKLHg .framer-1529yyx, .framer-PKLHg .framer-2sc9gz, .framer-PKLHg .framer-u6tbf4, .framer-PKLHg .framer-1slkujk, .framer-PKLHg .framer-d53j1t, .framer-PKLHg .framer-191n69w, .framer-PKLHg .framer-14fgooc, .framer-PKLHg .framer-9p0wte, .framer-PKLHg .framer-1nlnoaq, .framer-PKLHg .framer-5kh5wu, .framer-PKLHg .framer-12g1kyd, .framer-PKLHg .framer-dw009j, .framer-PKLHg .framer-11gd57x, .framer-PKLHg .framer-1h7nqqb, .framer-PKLHg .framer-ng3udl, .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1clzkzq, .framer-PKLHg .framer-1y5sfhb, .framer-PKLHg .framer-10uasg1 { gap: 0px; } .framer-PKLHg.framer-ypdrxu > *, .framer-PKLHg .framer-hpjw7g > *, .framer-PKLHg .framer-e6s834 > *, .framer-PKLHg .framer-1529yyx > *, .framer-PKLHg .framer-1slkujk > *, .framer-PKLHg .framer-9p0wte > *, .framer-PKLHg .framer-11gd57x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PKLHg.framer-ypdrxu > :first-child, .framer-PKLHg .framer-19bq8ya > :first-child, .framer-PKLHg .framer-12hrp03 > :first-child, .framer-PKLHg .framer-1i9n9j7 > :first-child, .framer-PKLHg .framer-zlsmxn > :first-child, .framer-PKLHg .framer-1om2w3q > :first-child, .framer-PKLHg .framer-6f28pr > :first-child, .framer-PKLHg .framer-he0x48 > :first-child, .framer-PKLHg .framer-18mwsx8 > :first-child, .framer-PKLHg .framer-zpq0r > :first-child, .framer-PKLHg .framer-3iqh2v > :first-child, .framer-PKLHg .framer-lkshs3 > :first-child, .framer-PKLHg .framer-hpjw7g > :first-child, .framer-PKLHg .framer-1vpe3ou > :first-child, .framer-PKLHg .framer-nkg4dz > :first-child, .framer-PKLHg .framer-e6s834 > :first-child, .framer-PKLHg .framer-tiwe35 > :first-child, .framer-PKLHg .framer-1jbuolt > :first-child, .framer-PKLHg .framer-1529yyx > :first-child, .framer-PKLHg .framer-2sc9gz > :first-child, .framer-PKLHg .framer-u6tbf4 > :first-child, .framer-PKLHg .framer-1slkujk > :first-child, .framer-PKLHg .framer-d53j1t > :first-child, .framer-PKLHg .framer-14fgooc > :first-child, .framer-PKLHg .framer-9p0wte > :first-child, .framer-PKLHg .framer-1nlnoaq > :first-child, .framer-PKLHg .framer-5kh5wu > :first-child, .framer-PKLHg .framer-12g1kyd > :first-child, .framer-PKLHg .framer-dw009j > :first-child, .framer-PKLHg .framer-11gd57x > :first-child, .framer-PKLHg .framer-ng3udl > :first-child, .framer-PKLHg .framer-1clzkzq > :first-child, .framer-PKLHg .framer-10uasg1 > :first-child { margin-top: 0px; } .framer-PKLHg.framer-ypdrxu > :last-child, .framer-PKLHg .framer-19bq8ya > :last-child, .framer-PKLHg .framer-12hrp03 > :last-child, .framer-PKLHg .framer-1i9n9j7 > :last-child, .framer-PKLHg .framer-zlsmxn > :last-child, .framer-PKLHg .framer-1om2w3q > :last-child, .framer-PKLHg .framer-6f28pr > :last-child, .framer-PKLHg .framer-he0x48 > :last-child, .framer-PKLHg .framer-18mwsx8 > :last-child, .framer-PKLHg .framer-zpq0r > :last-child, .framer-PKLHg .framer-3iqh2v > :last-child, .framer-PKLHg .framer-lkshs3 > :last-child, .framer-PKLHg .framer-hpjw7g > :last-child, .framer-PKLHg .framer-1vpe3ou > :last-child, .framer-PKLHg .framer-nkg4dz > :last-child, .framer-PKLHg .framer-e6s834 > :last-child, .framer-PKLHg .framer-tiwe35 > :last-child, .framer-PKLHg .framer-1jbuolt > :last-child, .framer-PKLHg .framer-1529yyx > :last-child, .framer-PKLHg .framer-2sc9gz > :last-child, .framer-PKLHg .framer-u6tbf4 > :last-child, .framer-PKLHg .framer-1slkujk > :last-child, .framer-PKLHg .framer-d53j1t > :last-child, .framer-PKLHg .framer-14fgooc > :last-child, .framer-PKLHg .framer-9p0wte > :last-child, .framer-PKLHg .framer-1nlnoaq > :last-child, .framer-PKLHg .framer-5kh5wu > :last-child, .framer-PKLHg .framer-12g1kyd > :last-child, .framer-PKLHg .framer-dw009j > :last-child, .framer-PKLHg .framer-11gd57x > :last-child, .framer-PKLHg .framer-ng3udl > :last-child, .framer-PKLHg .framer-1clzkzq > :last-child, .framer-PKLHg .framer-10uasg1 > :last-child { margin-bottom: 0px; } .framer-PKLHg .framer-19bq8ya > *, .framer-PKLHg .framer-12hrp03 > *, .framer-PKLHg .framer-1i9n9j7 > *, .framer-PKLHg .framer-zlsmxn > *, .framer-PKLHg .framer-6f28pr > *, .framer-PKLHg .framer-he0x48 > *, .framer-PKLHg .framer-1vpe3ou > *, .framer-PKLHg .framer-tiwe35 > *, .framer-PKLHg .framer-2sc9gz > *, .framer-PKLHg .framer-d53j1t > *, .framer-PKLHg .framer-ng3udl > *, .framer-PKLHg .framer-1clzkzq > *, .framer-PKLHg .framer-10uasg1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PKLHg .framer-vjoank > *, .framer-PKLHg .framer-13u0s7j > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PKLHg .framer-vjoank > :first-child, .framer-PKLHg .framer-ii01x7 > :first-child, .framer-PKLHg .framer-i27u2m > :first-child, .framer-PKLHg .framer-13u0s7j > :first-child, .framer-PKLHg .framer-2bhpnf > :first-child, .framer-PKLHg .framer-191n69w > :first-child, .framer-PKLHg .framer-1h7nqqb > :first-child, .framer-PKLHg .framer-9nqe3c > :first-child, .framer-PKLHg .framer-1y5sfhb > :first-child { margin-left: 0px; } .framer-PKLHg .framer-vjoank > :last-child, .framer-PKLHg .framer-ii01x7 > :last-child, .framer-PKLHg .framer-i27u2m > :last-child, .framer-PKLHg .framer-13u0s7j > :last-child, .framer-PKLHg .framer-2bhpnf > :last-child, .framer-PKLHg .framer-191n69w > :last-child, .framer-PKLHg .framer-1h7nqqb > :last-child, .framer-PKLHg .framer-9nqe3c > :last-child, .framer-PKLHg .framer-1y5sfhb > :last-child { margin-right: 0px; } .framer-PKLHg .framer-ii01x7 > *, .framer-PKLHg .framer-2bhpnf > *, .framer-PKLHg .framer-191n69w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PKLHg .framer-i27u2m > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PKLHg .framer-1om2w3q > *, .framer-PKLHg .framer-3iqh2v > *, .framer-PKLHg .framer-12g1kyd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PKLHg .framer-18mwsx8 > *, .framer-PKLHg .framer-zpq0r > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-PKLHg .framer-lkshs3 > *, .framer-PKLHg .framer-nkg4dz > *, .framer-PKLHg .framer-1jbuolt > *, .framer-PKLHg .framer-u6tbf4 > *, .framer-PKLHg .framer-1nlnoaq > *, .framer-PKLHg .framer-5kh5wu > *, .framer-PKLHg .framer-dw009j > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PKLHg .framer-14fgooc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PKLHg .framer-1h7nqqb > *, .framer-PKLHg .framer-9nqe3c > *, .framer-PKLHg .framer-1y5sfhb > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-PKLHg { background: rgb(248, 244, 235); } .framer-PKLHg.framer-ypdrxu { width: 810px; } .framer-PKLHg .framer-3r8sog-container { order: 0; } .framer-PKLHg .framer-19bq8ya { order: 1; padding: 80px 0px 0px 0px; } .framer-PKLHg .framer-vjoank { padding: 0px; } .framer-PKLHg .framer-ii01x7 { flex: none; padding: 100px 0px 80px 60px; width: min-content; } .framer-PKLHg .framer-tnhs1q { align-self: unset; } .framer-PKLHg .framer-1i9n9j7 { height: var(--framer-aspect-ratio-supported, 435px); width: 239px; } .framer-PKLHg .framer-zlsmxn { order: 2; padding: 100px 0px 100px 0px; } .framer-PKLHg .framer-1om2w3q, .framer-PKLHg .framer-1r4aof9 { width: 70%; } .framer-PKLHg .framer-13u0s7j { order: 3; } .framer-PKLHg .framer-6f28pr { align-self: stretch; height: auto; } .framer-PKLHg .framer-2bhpnf { height: min-content; padding: 0px 40px 0px 60px; } .framer-PKLHg .framer-he0x48 { padding: 60px 0px 60px 0px; } .framer-PKLHg .framer-18mwsx8 { order: 4; padding: 100px 0px 100px 0px; } .framer-PKLHg .framer-1mvwbfv { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-PKLHg .framer-1pqjsrs, .framer-PKLHg .framer-17r311p { height: var(--framer-aspect-ratio-supported, 236px); } .framer-PKLHg .framer-nkg4dz, .framer-PKLHg .framer-1jbuolt { grid-column: unset; } .framer-PKLHg .framer-14fgooc { order: 5; padding: 80px 40px 0px 40px; } .framer-PKLHg .framer-9p0wte { order: 6; padding: 100px 40px 100px 40px; } .framer-PKLHg .framer-12g1kyd { order: 7; padding: 100px 0px 0px 0px; } .framer-PKLHg .framer-1h7nqqb { flex-direction: column; } .framer-PKLHg .framer-1e3iov3-container, .framer-PKLHg .framer-1xjkmjp-container, .framer-PKLHg .framer-ofpwww-container { width: 100%; } .framer-PKLHg .framer-ng3udl, .framer-PKLHg .framer-1clzkzq, .framer-PKLHg .framer-10uasg1 { align-self: unset; gap: 10px; height: min-content; width: 100%; } .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1y5sfhb { flex-direction: column; padding: 0px 40px 40px 40px; } .framer-PKLHg .framer-1soy7cc-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PKLHg .framer-1h7nqqb, .framer-PKLHg .framer-ng3udl, .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1clzkzq, .framer-PKLHg .framer-1y5sfhb, .framer-PKLHg .framer-10uasg1 { gap: 0px; } .framer-PKLHg .framer-1h7nqqb > *, .framer-PKLHg .framer-9nqe3c > *, .framer-PKLHg .framer-1y5sfhb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PKLHg .framer-1h7nqqb > :first-child, .framer-PKLHg .framer-ng3udl > :first-child, .framer-PKLHg .framer-9nqe3c > :first-child, .framer-PKLHg .framer-1clzkzq > :first-child, .framer-PKLHg .framer-1y5sfhb > :first-child, .framer-PKLHg .framer-10uasg1 > :first-child { margin-top: 0px; } .framer-PKLHg .framer-1h7nqqb > :last-child, .framer-PKLHg .framer-ng3udl > :last-child, .framer-PKLHg .framer-9nqe3c > :last-child, .framer-PKLHg .framer-1clzkzq > :last-child, .framer-PKLHg .framer-1y5sfhb > :last-child, .framer-PKLHg .framer-10uasg1 > :last-child { margin-bottom: 0px; } .framer-PKLHg .framer-ng3udl > *, .framer-PKLHg .framer-1clzkzq > *, .framer-PKLHg .framer-10uasg1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-PKLHg { background: rgb(248, 244, 235); } .framer-PKLHg.framer-ypdrxu { width: 390px; } .framer-PKLHg .framer-3r8sog-container { left: 50%; position: fixed; top: 0px; transform: translateX(-50%); z-index: 1; } .framer-PKLHg .framer-19bq8ya { padding: 200px 30px 0px 30px; } .framer-PKLHg .framer-vjoank { flex-direction: column; padding: 0px; } .framer-PKLHg .framer-ii01x7 { flex: none; padding: 0px; width: 100%; } .framer-PKLHg .framer-12hrp03 { flex: 1 0 0px; width: 1px; } .framer-PKLHg .framer-tnhs1q { align-self: unset; width: 100%; } .framer-PKLHg .framer-i27u2m { flex-direction: column; width: 100%; } .framer-PKLHg .framer-1i9n9j7 { height: 500px; width: var(--framer-aspect-ratio-supported, 275px); } .framer-PKLHg .framer-zlsmxn, .framer-PKLHg .framer-18mwsx8 { padding: 60px 40px 60px 40px; } .framer-PKLHg .framer-1om2w3q, .framer-PKLHg .framer-3iqh2v, .framer-PKLHg .framer-1nlnoaq, .framer-PKLHg .framer-1il02wg, .framer-PKLHg .framer-1r94fka, .framer-PKLHg .framer-1e3iov3-container, .framer-PKLHg .framer-1xjkmjp-container { width: 100%; } .framer-PKLHg .framer-13u0s7j, .framer-PKLHg .framer-191n69w { flex-direction: column; } .framer-PKLHg .framer-6f28pr { flex: none; height: 400px; order: 0; width: 100%; } .framer-PKLHg .framer-2bhpnf { flex: none; height: min-content; order: 1; padding: 0px; width: 100%; } .framer-PKLHg .framer-he0x48 { align-content: center; align-items: center; padding: 60px 40px 60px 40px; } .framer-PKLHg .framer-1mvwbfv { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-PKLHg .framer-1pqjsrs, .framer-PKLHg .framer-17r311p { height: var(--framer-aspect-ratio-supported, 186px); } .framer-PKLHg .framer-nkg4dz, .framer-PKLHg .framer-1jbuolt { grid-column: auto / span 1; } .framer-PKLHg .framer-14fgooc { gap: 20px; padding: 60px 20px 60px 20px; } .framer-PKLHg .framer-1r4aof9 { width: 70%; } .framer-PKLHg .framer-9p0wte, .framer-PKLHg .framer-12g1kyd { padding: 60px; } .framer-PKLHg .framer-5kh5wu { gap: 20px; } .framer-PKLHg .framer-11gd57x { gap: 40px; } .framer-PKLHg .framer-1h7nqqb, .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1y5sfhb { flex-direction: column; gap: 20px; padding: 0px; } .framer-PKLHg .framer-ng3udl, .framer-PKLHg .framer-1clzkzq, .framer-PKLHg .framer-10uasg1 { align-self: unset; height: min-content; width: 100%; } .framer-PKLHg .framer-ofpwww-container { height: 269px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PKLHg .framer-vjoank, .framer-PKLHg .framer-i27u2m, .framer-PKLHg .framer-13u0s7j, .framer-PKLHg .framer-191n69w, .framer-PKLHg .framer-14fgooc, .framer-PKLHg .framer-5kh5wu, .framer-PKLHg .framer-11gd57x, .framer-PKLHg .framer-1h7nqqb, .framer-PKLHg .framer-9nqe3c, .framer-PKLHg .framer-1y5sfhb { gap: 0px; } .framer-PKLHg .framer-vjoank > *, .framer-PKLHg .framer-13u0s7j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PKLHg .framer-vjoank > :first-child, .framer-PKLHg .framer-i27u2m > :first-child, .framer-PKLHg .framer-13u0s7j > :first-child, .framer-PKLHg .framer-191n69w > :first-child, .framer-PKLHg .framer-14fgooc > :first-child, .framer-PKLHg .framer-5kh5wu > :first-child, .framer-PKLHg .framer-11gd57x > :first-child, .framer-PKLHg .framer-1h7nqqb > :first-child, .framer-PKLHg .framer-9nqe3c > :first-child, .framer-PKLHg .framer-1y5sfhb > :first-child { margin-top: 0px; } .framer-PKLHg .framer-vjoank > :last-child, .framer-PKLHg .framer-i27u2m > :last-child, .framer-PKLHg .framer-13u0s7j > :last-child, .framer-PKLHg .framer-191n69w > :last-child, .framer-PKLHg .framer-14fgooc > :last-child, .framer-PKLHg .framer-5kh5wu > :last-child, .framer-PKLHg .framer-11gd57x > :last-child, .framer-PKLHg .framer-1h7nqqb > :last-child, .framer-PKLHg .framer-9nqe3c > :last-child, .framer-PKLHg .framer-1y5sfhb > :last-child { margin-bottom: 0px; } .framer-PKLHg .framer-i27u2m > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-PKLHg .framer-191n69w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PKLHg .framer-14fgooc > *, .framer-PKLHg .framer-5kh5wu > *, .framer-PKLHg .framer-1h7nqqb > *, .framer-PKLHg .framer-9nqe3c > *, .framer-PKLHg .framer-1y5sfhb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PKLHg .framer-11gd57x > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6622\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uwZfcIbCw\":{\"layout\":[\"fixed\",\"auto\"]},\"xPxs3uAH6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerpBhbwhNc_=withCSS(Component,css,\"framer-PKLHg\");export default FramerpBhbwhNc_;FramerpBhbwhNc_.displayName=\"Home\";FramerpBhbwhNc_.defaultProps={height:6622,width:1440};addFonts(FramerpBhbwhNc_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"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\"}]},...NavbarDarkFonts,...ButtonFonts,...TickerFonts,...EmbedFonts,...YouTubeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpBhbwhNc_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uwZfcIbCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xPxs3uAH6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6622\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "NavbarDarkFonts", "getFonts", "sb3KoWIk8_default", "ButtonFonts", "PwC_wRjnU_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "EmbedFonts", "Embed", "ContainerWithFX", "YouTubeFonts", "Youtube", "FooterFonts", "EUCq5NAFD_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "animation3", "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", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "sb3KoWIk8_default", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithFX", "x", "RichText2", "PwC_wRjnU_default", "RichTextWithFX", "ContainerWithOptimizedAppearEffect", "Ticker", "ContainerWithFX", "Embed", "Youtube", "EUCq5NAFD_default", "css", "FramerpBhbwhNc_", "withCSS", "pBhbwhNc_default", "addFonts", "NavbarDarkFonts", "ButtonFonts", "TickerFonts", "EmbedFonts", "YouTubeFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
