{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/HZqpWhe7DkmAvkwNrzu1/quZAMv2Q37wpZavrc44T/wuL6u986z.js", "ssg:https://framerusercontent.com/modules/F6mc53rCzZn3D9RvgYpm/Litxt1xK9dgOkbKfGXgj/wuL6u986z.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (aba0f78)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={vFIaakgUe:new LazyValue(()=>import(\"./wuL6u986z-0.js\")),x_FG1RoQM:new LazyValue(()=>import(\"./wuL6u986z-1.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Footer from\"#framer/local/canvasComponent/g1_EqNic9/g1_EqNic9.js\";import Navigation from\"#framer/local/canvasComponent/n7MqFL18j/n7MqFL18j.js\";import*as sharedStyle from\"#framer/local/css/l1koko7En/l1koko7En.js\";import*as sharedStyle1 from\"#framer/local/css/zrns9aH7X/zrns9aH7X.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/wuL6u986z/wuL6u986z.js\";import metadataProvider from\"#framer/local/webPageMetadata/wuL6u986z/wuL6u986z.js\";const NavigationFonts=getFonts(Navigation);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const breakpoints={FgPwsAZWO:\"(min-width: 1200px) and (max-width: 1439px)\",fzMd8L2E6:\"(min-width: 810px) and (max-width: 1199px)\",nRDcUr5wY:\"(max-width: 809px)\",ULYFYaUr4:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lCWJU\";const variantClassNames={FgPwsAZWO:\"framer-v-rlakuk\",fzMd8L2E6:\"framer-v-14set6f\",nRDcUr5wY:\"framer-v-1em1e9e\",ULYFYaUr4:\"framer-v-if1yzm\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.075,duration:1.3,type:\"spring\"};const textEffect={effect:animation,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={bounce:0,delay:.075,duration:3.5,type:\"spring\"};const textEffect1={effect:animation,tokenization:\"line\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ULYFYaUr4\",Laptop:\"FgPwsAZWO\",Phone:\"nRDcUr5wY\",Tablet:\"fzMd8L2E6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ULYFYaUr4\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"nRDcUr5wY\")return false;return true;};usePreloadLocalizedValues(activeLocale);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"nRDcUr5wY\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ULYFYaUr4\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-866bbd4f-873e-440d-a4de-d82634d492af, rgb(244, 245, 246)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-if1yzm\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v3d5ox\",\"data-framer-name\":\"Website Wrapper\",children:[/*#__PURE__*/_jsx(\"nav\",{className:\"framer-1l18ip8\",\"data-framer-name\":\"Left Part Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FgPwsAZWO:{width:\"160px\"},fzMd8L2E6:{height:923.5951178451179,width:\"180px\",y:(componentViewport?.y||0)+0+0+0+40+0},nRDcUr5wY:{height:646,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1053.5814393939395,width:\"296px\",y:(componentViewport?.y||0)+0+0+0+70+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-si2sa0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nRDcUr5wY:{style:{width:\"100%\"},variant:\"ctxoNHdnm\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"E3dL3IZEp\",layoutId:\"E3dL3IZEp\",style:{height:\"100%\",width:\"100%\"},variant:\"FUxjtDYvK\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-vlof7b\",\"data-framer-name\":\"Right Part Content\",children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-kf8vex\",\"data-framer-name\":\"Work Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fh5sxj hidden-1em1e9e\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"header\",{className:\"framer-1w8tbat\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ca03q\",\"data-framer-name\":\"Title / Video\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbnVtZW50R3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"MonumentGrotesk Regular\", \"MonumentGrotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-41ed8478-f863-4494-b356-5bb063de11d2, rgb(9, 10, 11))\"},children:\"Video Anleitungen\"})}),className:\"framer-wo9dn8\",effect:textEffect,fonts:[\"CUSTOM;MonumentGrotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbnVtZW50R3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"MonumentGrotesk Regular\", \"MonumentGrotesk Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-20eeb5b2-1064-40b5-a58c-9d917e46c6eb, rgb(143, 154, 163))\"},children:\"Schau dir kurze Tutorials \\xfcber die grundlegenden Funktionen von Amenti an.\"})}),className:\"framer-1kndc3q\",effect:textEffect1,fonts:[\"CUSTOM;MonumentGrotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-116fm8s hidden-if1yzm hidden-14set6f hidden-rlakuk\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1bbgkrc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h53mgk\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jiw7q9-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tCEt43UVY\",isMixedBorderRadius:false,isRed:true,layoutId:\"tCEt43UVY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=cCJfIOnNBT4&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Erste Schritte\"})}),className:\"framer-d9mqt1\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9x0kj\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tjqdni-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"HyxCkThMU\",isMixedBorderRadius:false,isRed:true,layoutId:\"HyxCkThMU\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=jKTo_CzMQaE&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Ein Projekt erstellen\"})}),className:\"framer-1n13htl\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1cw4pw9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7zjcp\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bipzox-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ZMMgybMXV\",isMixedBorderRadius:false,isRed:true,layoutId:\"ZMMgybMXV\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=X2GL2ZmH96Y&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Baurecht und Hilfslinien\"})}),className:\"framer-1wpavym\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4hxhs\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ln1g3-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"SD46KPP2C\",isMixedBorderRadius:false,isRed:true,layoutId:\"SD46KPP2C\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=g5yoHl0e0fU&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Geb\\xe4ude platzieren\"})}),className:\"framer-z96u2r\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yeb318\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8h0lsx\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-62h36e-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Wbfh2NE_V\",isMixedBorderRadius:false,isRed:true,layoutId:\"Wbfh2NE_V\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=kQ50TMCgw3U&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Fassade bearbeiten\"})}),className:\"framer-g1zc1s\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oi7uj\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yl5vd9-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ayKwv25bJ\",isMixedBorderRadius:false,isRed:true,layoutId:\"ayKwv25bJ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=oDtKkibNGbs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Nutzung definieren\"})}),className:\"framer-1f5pnqn\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ttczr3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0vy5t\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gk5vty-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"jkOhMQU8X\",isMixedBorderRadius:false,isRed:true,layoutId:\"jkOhMQU8X\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=r7exc1_Cam0&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Parkierung erstellen\"})}),className:\"framer-27jrdq\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3vpqh\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uii3mi-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Ic_LRYZpG\",isMixedBorderRadius:false,isRed:true,layoutId:\"Ic_LRYZpG\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=iYjImJQGn9E&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Landschaftsgestaltung\"})}),className:\"framer-16r4zjm\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-f5qoov\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ydme2\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o2zoo0-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"W9Kx0_J_d\",isMixedBorderRadius:false,isRed:true,layoutId:\"W9Kx0_J_d\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=-mxqDmBweJ8&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Projectdata - Kosten und Ertrag\"})}),className:\"framer-1f0grqb\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hq5pfm\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b35ijs-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Ripoa6AQ3\",isMixedBorderRadius:false,isRed:true,layoutId:\"Ripoa6AQ3\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=gi9RRQDGJhE&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=10\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Ergebnisse & Export\"})}),className:\"framer-xs5rrs\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cd8dk5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ivf4k3\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlpfw3-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"KJKsWWQJj\",isMixedBorderRadius:false,isRed:true,layoutId:\"KJKsWWQJj\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=_Pklc8JfH6M&list=PL1mYPvjHy508l9spvErp0CwqVSw2kwGbo&index=11\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Data-Import CAD\"})}),className:\"framer-12yw3kf\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157joq2\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2s8jsw-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ZQynKVhv2\",isMixedBorderRadius:false,isRed:true,layoutId:\"ZQynKVhv2\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=jiYcih36ny0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16jivg5\",\"data-styles-preset\":\"l1koko7En\",children:\"Amenti: Photovoltaik\"})}),className:\"framer-1wkiuqa\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xafif hidden-if1yzm hidden-14set6f hidden-rlakuk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o3tevy\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8rhr\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvdzoe\",\"data-framer-name\":\"Title / Video\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nv606f\",\"data-styles-preset\":\"zrns9aH7X\",children:\"Video Anleitungen\"})}),className:\"framer-6dwtjx\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbnVtZW50R3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"MonumentGrotesk Regular\", \"MonumentGrotesk Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-20eeb5b2-1064-40b5-a58c-9d917e46c6eb, rgb(143, 154, 163))\"},children:\"Schau dir kurze Tutorials \\xfcber die grundlegenden Funktionen von Amenti an.\"})}),className:\"framer-zdzpoz\",effect:textEffect1,fonts:[\"CUSTOM;MonumentGrotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nRDcUr5wY:{height:380,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+3286}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1229psy-container hidden-if1yzm hidden-14set6f hidden-rlakuk\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ktZjZLudY\",layoutId:\"ktZjZLudY\",style:{width:\"100%\"},variant:\"F8NnjJ0Iv\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fzMd8L2E6:{y:(componentViewport?.y||0)+0+1820}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1800,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s1c1wa-container hidden-1em1e9e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FgPwsAZWO:{variant:\"lKV7XCgOS\"},fzMd8L2E6:{variant:\"rhAiil1aw\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gfgGGs64A\",layoutId:\"gfgGGs64A\",style:{width:\"100%\"},variant:\"kYNWJFDkI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lCWJU.framer-3k4jpj, .framer-lCWJU .framer-3k4jpj { display: block; }\",\".framer-lCWJU.framer-if1yzm { align-content: center; align-items: center; background-color: var(--token-866bbd4f-873e-440d-a4de-d82634d492af, #f4f5f6); 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-lCWJU .framer-v3d5ox { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 152px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-1l18ip8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 109.125vh; justify-content: flex-start; overflow: hidden; padding: 70px 0px 70px 0px; position: sticky; top: 0px; width: 296px; will-change: transform; z-index: 1; }\",\".framer-lCWJU .framer-si2sa0-container { flex: none; height: 111%; position: relative; width: 100%; z-index: 10; }\",\".framer-lCWJU .framer-vlof7b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-lCWJU .framer-kf8vex { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lCWJU .framer-fh5sxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 160px 0px 0px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-1w8tbat, .framer-lCWJU .framer-r8rhr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-6ca03q, .framer-lCWJU .framer-1lvdzoe { 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: 100%; }\",\".framer-lCWJU .framer-wo9dn8, .framer-lCWJU .framer-6dwtjx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lCWJU .framer-1kndc3q, .framer-lCWJU .framer-d9mqt1, .framer-lCWJU .framer-1n13htl, .framer-lCWJU .framer-1wpavym, .framer-lCWJU .framer-z96u2r, .framer-lCWJU .framer-g1zc1s, .framer-lCWJU .framer-1f5pnqn, .framer-lCWJU .framer-27jrdq, .framer-lCWJU .framer-16r4zjm, .framer-lCWJU .framer-1f0grqb, .framer-lCWJU .framer-xs5rrs, .framer-lCWJU .framer-12yw3kf, .framer-lCWJU .framer-1wkiuqa, .framer-lCWJU .framer-zdzpoz { --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-lCWJU .framer-116fm8s { flex: none; height: 20px; overflow: visible; position: relative; width: 100%; }\",\".framer-lCWJU .framer-1bbgkrc, .framer-lCWJU .framer-1cw4pw9, .framer-lCWJU .framer-1yeb318, .framer-lCWJU .framer-1ttczr3, .framer-lCWJU .framer-f5qoov, .framer-lCWJU .framer-cd8dk5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-1h53mgk, .framer-lCWJU .framer-a9x0kj, .framer-lCWJU .framer-i7zjcp, .framer-lCWJU .framer-g4hxhs, .framer-lCWJU .framer-8h0lsx, .framer-lCWJU .framer-1oi7uj, .framer-lCWJU .framer-1q0vy5t, .framer-lCWJU .framer-s3vpqh, .framer-lCWJU .framer-6ydme2, .framer-lCWJU .framer-1hq5pfm, .framer-lCWJU .framer-1ivf4k3, .framer-lCWJU .framer-157joq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-lCWJU .framer-jiw7q9-container, .framer-lCWJU .framer-tjqdni-container, .framer-lCWJU .framer-bipzox-container, .framer-lCWJU .framer-15ln1g3-container, .framer-lCWJU .framer-62h36e-container, .framer-lCWJU .framer-1yl5vd9-container, .framer-lCWJU .framer-1gk5vty-container, .framer-lCWJU .framer-1uii3mi-container, .framer-lCWJU .framer-1o2zoo0-container, .framer-lCWJU .framer-1b35ijs-container, .framer-lCWJU .framer-1nlpfw3-container, .framer-lCWJU .framer-2s8jsw-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); position: relative; width: 320px; }\",\".framer-lCWJU .framer-12xafif { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-o3tevy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lCWJU .framer-1229psy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-lCWJU .framer-s1c1wa-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lCWJU.framer-if1yzm, .framer-lCWJU .framer-v3d5ox, .framer-lCWJU .framer-1l18ip8, .framer-lCWJU .framer-vlof7b, .framer-lCWJU .framer-kf8vex, .framer-lCWJU .framer-fh5sxj, .framer-lCWJU .framer-1w8tbat, .framer-lCWJU .framer-6ca03q, .framer-lCWJU .framer-1bbgkrc, .framer-lCWJU .framer-1h53mgk, .framer-lCWJU .framer-a9x0kj, .framer-lCWJU .framer-1cw4pw9, .framer-lCWJU .framer-i7zjcp, .framer-lCWJU .framer-g4hxhs, .framer-lCWJU .framer-1yeb318, .framer-lCWJU .framer-8h0lsx, .framer-lCWJU .framer-1oi7uj, .framer-lCWJU .framer-1ttczr3, .framer-lCWJU .framer-1q0vy5t, .framer-lCWJU .framer-s3vpqh, .framer-lCWJU .framer-f5qoov, .framer-lCWJU .framer-6ydme2, .framer-lCWJU .framer-1hq5pfm, .framer-lCWJU .framer-cd8dk5, .framer-lCWJU .framer-1ivf4k3, .framer-lCWJU .framer-157joq2, .framer-lCWJU .framer-12xafif, .framer-lCWJU .framer-o3tevy, .framer-lCWJU .framer-r8rhr, .framer-lCWJU .framer-1lvdzoe { gap: 0px; } .framer-lCWJU.framer-if1yzm > *, .framer-lCWJU .framer-1l18ip8 > *, .framer-lCWJU .framer-kf8vex > *, .framer-lCWJU .framer-o3tevy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lCWJU.framer-if1yzm > :first-child, .framer-lCWJU .framer-1l18ip8 > :first-child, .framer-lCWJU .framer-kf8vex > :first-child, .framer-lCWJU .framer-fh5sxj > :first-child, .framer-lCWJU .framer-1w8tbat > :first-child, .framer-lCWJU .framer-6ca03q > :first-child, .framer-lCWJU .framer-1h53mgk > :first-child, .framer-lCWJU .framer-a9x0kj > :first-child, .framer-lCWJU .framer-i7zjcp > :first-child, .framer-lCWJU .framer-g4hxhs > :first-child, .framer-lCWJU .framer-8h0lsx > :first-child, .framer-lCWJU .framer-1oi7uj > :first-child, .framer-lCWJU .framer-1q0vy5t > :first-child, .framer-lCWJU .framer-s3vpqh > :first-child, .framer-lCWJU .framer-6ydme2 > :first-child, .framer-lCWJU .framer-1hq5pfm > :first-child, .framer-lCWJU .framer-1ivf4k3 > :first-child, .framer-lCWJU .framer-157joq2 > :first-child, .framer-lCWJU .framer-12xafif > :first-child, .framer-lCWJU .framer-o3tevy > :first-child, .framer-lCWJU .framer-r8rhr > :first-child, .framer-lCWJU .framer-1lvdzoe > :first-child { margin-top: 0px; } .framer-lCWJU.framer-if1yzm > :last-child, .framer-lCWJU .framer-1l18ip8 > :last-child, .framer-lCWJU .framer-kf8vex > :last-child, .framer-lCWJU .framer-fh5sxj > :last-child, .framer-lCWJU .framer-1w8tbat > :last-child, .framer-lCWJU .framer-6ca03q > :last-child, .framer-lCWJU .framer-1h53mgk > :last-child, .framer-lCWJU .framer-a9x0kj > :last-child, .framer-lCWJU .framer-i7zjcp > :last-child, .framer-lCWJU .framer-g4hxhs > :last-child, .framer-lCWJU .framer-8h0lsx > :last-child, .framer-lCWJU .framer-1oi7uj > :last-child, .framer-lCWJU .framer-1q0vy5t > :last-child, .framer-lCWJU .framer-s3vpqh > :last-child, .framer-lCWJU .framer-6ydme2 > :last-child, .framer-lCWJU .framer-1hq5pfm > :last-child, .framer-lCWJU .framer-1ivf4k3 > :last-child, .framer-lCWJU .framer-157joq2 > :last-child, .framer-lCWJU .framer-12xafif > :last-child, .framer-lCWJU .framer-o3tevy > :last-child, .framer-lCWJU .framer-r8rhr > :last-child, .framer-lCWJU .framer-1lvdzoe > :last-child { margin-bottom: 0px; } .framer-lCWJU .framer-v3d5ox > * { margin: 0px; margin-left: calc(152px / 2); margin-right: calc(152px / 2); } .framer-lCWJU .framer-v3d5ox > :first-child, .framer-lCWJU .framer-vlof7b > :first-child, .framer-lCWJU .framer-1bbgkrc > :first-child, .framer-lCWJU .framer-1cw4pw9 > :first-child, .framer-lCWJU .framer-1yeb318 > :first-child, .framer-lCWJU .framer-1ttczr3 > :first-child, .framer-lCWJU .framer-f5qoov > :first-child, .framer-lCWJU .framer-cd8dk5 > :first-child { margin-left: 0px; } .framer-lCWJU .framer-v3d5ox > :last-child, .framer-lCWJU .framer-vlof7b > :last-child, .framer-lCWJU .framer-1bbgkrc > :last-child, .framer-lCWJU .framer-1cw4pw9 > :last-child, .framer-lCWJU .framer-1yeb318 > :last-child, .framer-lCWJU .framer-1ttczr3 > :last-child, .framer-lCWJU .framer-f5qoov > :last-child, .framer-lCWJU .framer-cd8dk5 > :last-child { margin-right: 0px; } .framer-lCWJU .framer-vlof7b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lCWJU .framer-fh5sxj > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-lCWJU .framer-1w8tbat > *, .framer-lCWJU .framer-r8rhr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lCWJU .framer-6ca03q > *, .framer-lCWJU .framer-1h53mgk > *, .framer-lCWJU .framer-a9x0kj > *, .framer-lCWJU .framer-i7zjcp > *, .framer-lCWJU .framer-g4hxhs > *, .framer-lCWJU .framer-8h0lsx > *, .framer-lCWJU .framer-1oi7uj > *, .framer-lCWJU .framer-1q0vy5t > *, .framer-lCWJU .framer-s3vpqh > *, .framer-lCWJU .framer-6ydme2 > *, .framer-lCWJU .framer-1hq5pfm > *, .framer-lCWJU .framer-1ivf4k3 > *, .framer-lCWJU .framer-157joq2 > *, .framer-lCWJU .framer-1lvdzoe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lCWJU .framer-1bbgkrc > *, .framer-lCWJU .framer-1cw4pw9 > *, .framer-lCWJU .framer-1yeb318 > *, .framer-lCWJU .framer-1ttczr3 > *, .framer-lCWJU .framer-f5qoov > *, .framer-lCWJU .framer-cd8dk5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lCWJU .framer-12xafif > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-lCWJU.framer-if1yzm { width: 810px; } .framer-lCWJU .framer-v3d5ox { gap: unset; justify-content: space-between; padding: 0px 30px 0px 30px; } .framer-lCWJU .framer-1l18ip8 { height: 91.38888888888889vh; padding: 40px 0px 40px 0px; width: 180px; } .framer-lCWJU .framer-vlof7b { min-width: 520px; padding: 40px 0px 40px 0px; } .framer-lCWJU .framer-kf8vex { justify-content: flex-start; order: 0; padding: 0px 40px 0px 40px; } .framer-lCWJU .framer-fh5sxj { align-content: flex-start; align-items: flex-start; max-width: 100%; order: 0; padding: 0px; } .framer-lCWJU .framer-1bbgkrc { align-content: flex-start; align-items: flex-start; order: 3; padding: 0px 0px 40px 0px; } .framer-lCWJU .framer-1h53mgk { padding: 0px; } .framer-lCWJU .framer-1cw4pw9 { order: 4; } .framer-lCWJU .framer-1yeb318 { align-content: flex-start; align-items: flex-start; order: 5; } .framer-lCWJU .framer-1ttczr3 { order: 6; } .framer-lCWJU .framer-f5qoov { order: 7; } .framer-lCWJU .framer-cd8dk5 { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lCWJU .framer-v3d5ox { gap: 0px; } .framer-lCWJU .framer-v3d5ox > *, .framer-lCWJU .framer-v3d5ox > :first-child, .framer-lCWJU .framer-v3d5ox > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-lCWJU.framer-if1yzm { width: 390px; } .framer-lCWJU .framer-v3d5ox { flex-direction: column; gap: 0px; order: 0; padding: 0px; } .framer-lCWJU .framer-1l18ip8 { background-color: var(--token-866bbd4f-873e-440d-a4de-d82634d492af, #f4f5f6); height: min-content; min-height: 110px; overflow: visible; padding: 20px 0px 0px 0px; width: 100%; z-index: 10; } .framer-lCWJU .framer-si2sa0-container { height: auto; left: 0px; position: absolute; top: 20px; } .framer-lCWJU .framer-vlof7b { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-lCWJU .framer-116fm8s, .framer-lCWJU .framer-d9mqt1, .framer-lCWJU .framer-1n13htl, .framer-lCWJU .framer-1wpavym, .framer-lCWJU .framer-z96u2r, .framer-lCWJU .framer-g1zc1s, .framer-lCWJU .framer-1f5pnqn, .framer-lCWJU .framer-27jrdq, .framer-lCWJU .framer-16r4zjm, .framer-lCWJU .framer-1f0grqb, .framer-lCWJU .framer-xs5rrs, .framer-lCWJU .framer-12yw3kf, .framer-lCWJU .framer-1wkiuqa, .framer-lCWJU .framer-zdzpoz { order: 1; } .framer-lCWJU .framer-1bbgkrc { flex-direction: column; order: 3; } .framer-lCWJU .framer-1h53mgk, .framer-lCWJU .framer-a9x0kj, .framer-lCWJU .framer-i7zjcp, .framer-lCWJU .framer-g4hxhs, .framer-lCWJU .framer-8h0lsx, .framer-lCWJU .framer-1oi7uj, .framer-lCWJU .framer-1q0vy5t, .framer-lCWJU .framer-s3vpqh, .framer-lCWJU .framer-6ydme2, .framer-lCWJU .framer-1hq5pfm, .framer-lCWJU .framer-1ivf4k3, .framer-lCWJU .framer-157joq2, .framer-lCWJU .framer-1229psy-container { flex: none; width: 100%; } .framer-lCWJU .framer-jiw7q9-container, .framer-lCWJU .framer-tjqdni-container, .framer-lCWJU .framer-bipzox-container, .framer-lCWJU .framer-15ln1g3-container, .framer-lCWJU .framer-62h36e-container, .framer-lCWJU .framer-1yl5vd9-container, .framer-lCWJU .framer-1gk5vty-container, .framer-lCWJU .framer-1uii3mi-container, .framer-lCWJU .framer-1o2zoo0-container, .framer-lCWJU .framer-1b35ijs-container, .framer-lCWJU .framer-1nlpfw3-container, .framer-lCWJU .framer-2s8jsw-container, .framer-lCWJU .framer-1lvdzoe, .framer-lCWJU .framer-6dwtjx { order: 0; } .framer-lCWJU .framer-1cw4pw9 { flex-direction: column; order: 4; } .framer-lCWJU .framer-1yeb318 { flex-direction: column; order: 5; } .framer-lCWJU .framer-1ttczr3 { flex-direction: column; order: 6; } .framer-lCWJU .framer-f5qoov { flex-direction: column; order: 7; } .framer-lCWJU .framer-cd8dk5 { flex-direction: column; order: 8; } .framer-lCWJU .framer-12xafif { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lCWJU .framer-v3d5ox, .framer-lCWJU .framer-1bbgkrc, .framer-lCWJU .framer-1cw4pw9, .framer-lCWJU .framer-1yeb318, .framer-lCWJU .framer-1ttczr3, .framer-lCWJU .framer-f5qoov, .framer-lCWJU .framer-cd8dk5 { gap: 0px; } .framer-lCWJU .framer-v3d5ox > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lCWJU .framer-v3d5ox > :first-child, .framer-lCWJU .framer-1bbgkrc > :first-child, .framer-lCWJU .framer-1cw4pw9 > :first-child, .framer-lCWJU .framer-1yeb318 > :first-child, .framer-lCWJU .framer-1ttczr3 > :first-child, .framer-lCWJU .framer-f5qoov > :first-child, .framer-lCWJU .framer-cd8dk5 > :first-child { margin-top: 0px; } .framer-lCWJU .framer-v3d5ox > :last-child, .framer-lCWJU .framer-1bbgkrc > :last-child, .framer-lCWJU .framer-1cw4pw9 > :last-child, .framer-lCWJU .framer-1yeb318 > :last-child, .framer-lCWJU .framer-1ttczr3 > :last-child, .framer-lCWJU .framer-f5qoov > :last-child, .framer-lCWJU .framer-cd8dk5 > :last-child { margin-bottom: 0px; } .framer-lCWJU .framer-1bbgkrc > *, .framer-lCWJU .framer-1cw4pw9 > *, .framer-lCWJU .framer-1yeb318 > *, .framer-lCWJU .framer-1ttczr3 > *, .framer-lCWJU .framer-f5qoov > *, .framer-lCWJU .framer-cd8dk5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-lCWJU.framer-if1yzm { width: 1200px; } .framer-lCWJU .framer-1l18ip8 { order: 0; width: 160px; } .framer-lCWJU .framer-vlof7b { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2103\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fzMd8L2E6\":{\"layout\":[\"fixed\",\"auto\"]},\"nRDcUr5wY\":{\"layout\":[\"fixed\",\"auto\"]},\"FgPwsAZWO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerwuL6u986z=withCSS(Component,css,\"framer-lCWJU\");export default FramerwuL6u986z;FramerwuL6u986z.displayName=\"Page\";FramerwuL6u986z.defaultProps={height:2103,width:1440};addFonts(FramerwuL6u986z,[{explicitInter:true,fonts:[{family:\"MonumentGrotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/y23zSnzPT8T3EVZ3zjYGGaZRkV4.woff\"},{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\"}]},...NavigationFonts,...YouTubeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwuL6u986z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2103\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fzMd8L2E6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nRDcUr5wY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FgPwsAZWO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "n7MqFL18j_default", "YouTubeFonts", "Youtube", "FooterFonts", "g1_EqNic9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "textEffect1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "usePreloadLocalizedValues", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "getLocalizedValue", "x", "css", "FramerwuL6u986z", "withCSS", "wuL6u986z_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
