{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/W8DgsyTwBp7Yx8a72sTT/5PMFhbNFvhTQe63T1gcr/bpRN8vGPG.js", "ssg:https://framerusercontent.com/modules/AeIVQkiihogMo7yBYkr5/EuxSwwyPp58M9ZKSQejq/bpRN8vGPG.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 (6d82f59)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={rjAMNVUkn:new LazyValue(()=>import(\"./bpRN8vGPG-0.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\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,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 KnowledgeList from\"#framer/local/canvasComponent/cOgJWUmvq/cOgJWUmvq.js\";import Footer from\"#framer/local/canvasComponent/EkdjOs2QP/EkdjOs2QP.js\";import Badge from\"#framer/local/canvasComponent/frXmazaNo/frXmazaNo.js\";import KnowledgeCard from\"#framer/local/canvasComponent/JS0LBWpbU/JS0LBWpbU.js\";import NavbarCopy from\"#framer/local/canvasComponent/PbI6DeCLO/PbI6DeCLO.js\";import Knowledge from\"#framer/local/collection/r3CuOpmIB/r3CuOpmIB.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/BtY5kBr5R/BtY5kBr5R.js\";import*as sharedStyle from\"#framer/local/css/DHWU9AEUG/DHWU9AEUG.js\";import*as sharedStyle8 from\"#framer/local/css/lGDBCNFXQ/lGDBCNFXQ.js\";import*as sharedStyle5 from\"#framer/local/css/LyYJuA2Lx/LyYJuA2Lx.js\";import*as sharedStyle1 from\"#framer/local/css/mBz4Vlahp/mBz4Vlahp.js\";import*as sharedStyle7 from\"#framer/local/css/O8Gngyq6Y/O8Gngyq6Y.js\";import*as sharedStyle6 from\"#framer/local/css/sy3qq4gyd/sy3qq4gyd.js\";import*as sharedStyle2 from\"#framer/local/css/xo1pzz1hh/xo1pzz1hh.js\";import*as sharedStyle3 from\"#framer/local/css/YP5h9Xle0/YP5h9Xle0.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/bpRN8vGPG/bpRN8vGPG.js\";import metadataProvider from\"#framer/local/webPageMetadata/bpRN8vGPG/bpRN8vGPG.js\";const NavbarCopyFonts=getFonts(NavbarCopy);const KnowledgeListFonts=getFonts(KnowledgeList);const YouTubeFonts=getFonts(YouTube);const BadgeFonts=getFonts(Badge);const KnowledgeCardFonts=getFonts(KnowledgeCard);const FooterFonts=getFonts(Footer);const breakpoints={f1LSIAEUD:\"(min-width: 810px) and (max-width: 1199px)\",mtMKJSAid:\"(min-width: 1200px)\",wB2n67gOp:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TLTLS\";const variantClassNames={f1LSIAEUD:\"framer-v-xcj09y\",mtMKJSAid:\"framer-v-4dk64i\",wB2n67gOp:\"framer-v-1e6voj0\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const negate=value=>{return!value;};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"mtMKJSAid\",Phone:\"wB2n67gOp\",Tablet:\"f1LSIAEUD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mtMKJSAid\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"bpRN8vGPG\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"bpRN8vGPG\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"bpRN8vGPG\",data:Knowledge,type:\"Collection\"},right:{alias:\"previousItemId\",data:Knowledge,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Knowledge,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"bpRN8vGPG\",name:\"UCxs_bK6p\",type:\"Identifier\"},{collection:\"bpRN8vGPG\",name:\"Qr4Fbpwrj\",type:\"Identifier\"},{collection:\"bpRN8vGPG\",name:\"moBtGKD6y\",type:\"Identifier\"},{alias:\"o3EQQyPQa\",arguments:[{from:{alias:\"o3EQQyPQa\",data:Knowledge,type:\"Collection\"},orderBy:[{arguments:[{collection:\"bpRN8vGPG\",name:\"o3EQQyPQa\",type:\"Identifier\"},{collection:\"o3EQQyPQa\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"o3EQQyPQa\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"o3EQQyPQa\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"bpRN8vGPG\",name:\"o3EQQyPQa\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"bpRN8vGPG\",name:\"kxwhgq4Ej\",type:\"Identifier\"},{collection:\"bpRN8vGPG\",name:\"OqcbjvQIl\",type:\"Identifier\"},{collection:\"bpRN8vGPG\",name:\"tzZAF5cj0\",type:\"Identifier\"},{collection:\"bpRN8vGPG\",name:\"lbpyqgJNj\",type:\"Identifier\"},{alias:\"previousItemId.UCxs_bK6p\",collection:\"previousItemId\",name:\"UCxs_bK6p\",type:\"Identifier\"},{alias:\"previousItemId.CD30uEko0\",collection:\"previousItemId\",name:\"CD30uEko0\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.UCxs_bK6p\",collection:\"nextItemId\",name:\"UCxs_bK6p\",type:\"Identifier\"},{alias:\"nextItemId.CD30uEko0\",collection:\"nextItemId\",name:\"CD30uEko0\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"bpRN8vGPG\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,OqcbjvQIl=getFromCurrentRouteData(\"OqcbjvQIl\")??\"\",moBtGKD6y=getFromCurrentRouteData(\"moBtGKD6y\"),Qr4Fbpwrj=getFromCurrentRouteData(\"Qr4Fbpwrj\")??\"\",tzZAF5cj0=getFromCurrentRouteData(\"tzZAF5cj0\")??\"\",lbpyqgJNj=getFromCurrentRouteData(\"lbpyqgJNj\")??\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_CD30uEko0=getFromCurrentRouteData(\"previousItemId.CD30uEko0\")??\"\",previousItemId_UCxs_bK6p=getFromCurrentRouteData(\"previousItemId.UCxs_bK6p\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_CD30uEko0=getFromCurrentRouteData(\"nextItemId.CD30uEko0\")??\"\",nextItemId_UCxs_bK6p=getFromCurrentRouteData(\"nextItemId.UCxs_bK6p\")??\"\",kxwhgq4EjYYM2Wavg9,UCxs_bK6pYYM2Wavg9,Qr4FbpwrjYYM2Wavg9,CD30uEko0YYM2Wavg9,idYYM2Wavg9,o3EQQyPQa=getFromCurrentRouteData(\"o3EQQyPQa\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"f1LSIAEUD\",\"wB2n67gOp\"].includes(baseVariant))return false;return true;};const visible=isSet(OqcbjvQIl);const activeLocaleCode=useLocaleCode();const textContent=toDateString(moBtGKD6y,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=isSet(lbpyqgJNj);usePreloadLocalizedValues(activeLocale);const visible2=isSet(previousItemId);const textContent1=prefix(previousItemId_UCxs_bK6p,getLocalizedValue(\"v2\",activeLocale)??\"\u2039 \");const visible3=negate(isSet(previousItemId));const visible4=negate(isSet(nextItemId));const visible5=isSet(nextItemId);const textContent2=suffix(nextItemId_UCxs_bK6p,getLocalizedValue(\"v3\",activeLocale)??\" \u203A\");const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mtMKJSAid\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-4dk64i\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{y:undefined},wB2n67gOp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xisxw9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{variant:\"Iaa58giMv\"},wB2n67gOp:{style:{width:\"100%\"},variant:\"v9dkixTqh\"}},children:/*#__PURE__*/_jsx(NavbarCopy,{height:\"100%\",id:\"VP_pbnUc9\",layoutId:\"VP_pbnUc9\",style:{height:\"100%\",width:\"100%\"},variant:\"lXefxOS6R\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1s4vy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1009,y:(componentViewport?.y||0)+0+105+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-114zy9l-container hidden-xcj09y hidden-1e6voj0\",children:/*#__PURE__*/_jsx(KnowledgeList,{height:\"100%\",id:\"xXDzvaL40\",layoutId:\"xXDzvaL40\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cd7vu7\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-118g8z2-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"o0MFwfo8O\",isMixedBorderRadius:false,isRed:true,layoutId:\"o0MFwfo8O\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:OqcbjvQIl,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k65tlx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lgd4ny\",\"data-styles-preset\":\"DHWU9AEUG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-zv2afn\",\"data-framer-name\":\"LastUpdated\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{y:undefined},wB2n67gOp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+105+10+0+510+1.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f775of-container\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"Qcqq_OCKz\",layoutId:\"Qcqq_OCKz\",OtucqAEm4:Qr4Fbpwrj,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fm5j92\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"rayGCAjIF\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tzZAF5cj0,className:\"framer-2b2xls\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1k18ol8\",code:\"framer-styles-preset-sywqwd\",h1:\"framer-styles-preset-dj0g51\",h2:\"framer-styles-preset-1oxwn7g\",h3:\"framer-styles-preset-kg0ubz\",h4:\"framer-styles-preset-xl5kyu\",h5:\"framer-styles-preset-1kvqv6i\",img:\"framer-styles-preset-t6wh0h\",p:\"framer-styles-preset-lgd4ny\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-913931\",\"data-border\":true,\"data-framer-name\":\"Pitch\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{background:{alt:\"\",fit:\"fit\",pixelHeight:83,pixelWidth:82,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5E04roLwqVOGCqq3DIbWQncMHzo.svg\"}},wB2n67gOp:{background:{alt:\"\",fit:\"fit\",pixelHeight:83,pixelWidth:82,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5E04roLwqVOGCqq3DIbWQncMHzo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+10+0+756+20),pixelHeight:83,pixelWidth:82,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5E04roLwqVOGCqq3DIbWQncMHzo.svg\"},className:\"framer-rudaj5\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"rayGCAjIF\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lbpyqgJNj,className:\"framer-2cx9sd\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1k18ol8\",code:\"framer-styles-preset-sywqwd\",h1:\"framer-styles-preset-dj0g51\",h2:\"framer-styles-preset-1oxwn7g\",h3:\"framer-styles-preset-kg0ubz\",h4:\"framer-styles-preset-xl5kyu\",h5:\"framer-styles-preset-1kvqv6i\",img:\"framer-styles-preset-t6wh0h\",p:\"framer-styles-preset-lgd4ny\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11tvz24\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{background:{alt:\"\",fit:\"fit\",pixelHeight:288,pixelWidth:288,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dnZEGBSkPS52H7kck4mNCzitnA.webp\"}},wB2n67gOp:{background:{alt:\"\",fit:\"fit\",pixelHeight:288,pixelWidth:288,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dnZEGBSkPS52H7kck4mNCzitnA.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+105+10+0+952+15.599999999999994),pixelHeight:288,pixelWidth:288,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dnZEGBSkPS52H7kck4mNCzitnA.webp\"},className:\"framer-12kszyh\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vzen3i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1kvqv6i\",\"data-styles-preset\":\"LyYJuA2Lx\",children:\"About the author\"})}),className:\"framer-1kypzen\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Christian Falck, a 2018 Copenhagen Business School graduate with a Master's in Finance and Accounting, also excelled at Columbia University in Corporate Finance. With 11+ years in accounting, his accounting firm won 3x B\\xf8rsen Gazelle awards consecutively. Since 2021, he has been based in Dubai.\"})}),className:\"framer-17b0ruk\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6zoxeo\",children:[visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lgd4ny\",\"data-styles-preset\":\"DHWU9AEUG\",style:{\"--framer-text-color\":\"rgb(103, 58, 183)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{CD30uEko0:previousItemId_CD30uEko0},webPageId:\"bpRN8vGPG\"},nodeId:\"To2aOqVpO\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1k18ol8\",\"data-styles-preset\":\"sy3qq4gyd\",children:\"\u2039 Create an Invoice in Naqood\"})})})}),className:\"framer-8kdk3s\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-r51cor\",\"data-framer-name\":\"Spacer\"}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aawcj7\",\"data-framer-name\":\"Spacer\"}),visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lgd4ny\",\"data-styles-preset\":\"DHWU9AEUG\",style:{\"--framer-text-color\":\"rgb(103, 58, 183)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{CD30uEko0:nextItemId_CD30uEko0},webPageId:\"bpRN8vGPG\"},nodeId:\"UHqauQkyG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1k18ol8\",\"data-styles-preset\":\"sy3qq4gyd\",children:\"Create a Purchase in Naqood \u203A\"})})})}),className:\"framer-1ftbto4\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ltvlxd\",\"data-framer-name\":\"Further Reading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kg0ubz\",\"data-styles-preset\":\"YP5h9Xle0\",children:\"Further Reading\"})}),className:\"framer-4kk7f6\",\"data-framer-name\":\"Further reading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jwufy\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YYM2Wavg9\",data:Knowledge,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:o3EQQyPQa},{collection:\"YYM2Wavg9\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"YYM2Wavg9\",name:\"kxwhgq4Ej\",type:\"Identifier\"},{collection:\"YYM2Wavg9\",name:\"UCxs_bK6p\",type:\"Identifier\"},{collection:\"YYM2Wavg9\",name:\"Qr4Fbpwrj\",type:\"Identifier\"},{collection:\"YYM2Wavg9\",name:\"CD30uEko0\",type:\"Identifier\"},{collection:\"YYM2Wavg9\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YYM2Wavg9\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:o3EQQyPQa},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CD30uEko0:CD30uEko0YYM2Wavg9,id:idYYM2Wavg9,kxwhgq4Ej:kxwhgq4EjYYM2Wavg9,Qr4Fbpwrj:Qr4FbpwrjYYM2Wavg9,UCxs_bK6p:UCxs_bK6pYYM2Wavg9},index)=>{kxwhgq4EjYYM2Wavg9??=\"\";UCxs_bK6pYYM2Wavg9??=\"\";Qr4FbpwrjYYM2Wavg9??=\"\";CD30uEko0YYM2Wavg9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YYM2Wavg9-${idYYM2Wavg9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{CD30uEko0:CD30uEko0YYM2Wavg9},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{CD30uEko0:CD30uEko0YYM2Wavg9},webPageId:\"bpRN8vGPG\"},implicitPathVariables:undefined},{href:{pathVariables:{CD30uEko0:CD30uEko0YYM2Wavg9},webPageId:\"bpRN8vGPG\"},implicitPathVariables:undefined},{href:{pathVariables:{CD30uEko0:CD30uEko0YYM2Wavg9},webPageId:\"bpRN8vGPG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{width:`max(min(min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px), ${componentViewport?.width||\"100vw\"} - 20px), 800px) - 20px, 360px)`,y:undefined},wB2n67gOp:{width:`max(min(min(max(${componentViewport?.width||\"100vw\"} - 20px, 1px), ${componentViewport?.width||\"100vw\"} - 20px), 800px) - 20px, 360px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221,y:(componentViewport?.y||0)+0+105+10+0+1273.2+0+38.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15utq1d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{SkhqOovcM:resolvedLinks[1]},wB2n67gOp:{SkhqOovcM:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(KnowledgeCard,{height:\"100%\",id:\"davb6E3tN\",layoutId:\"davb6E3tN\",qHKmtlHWm:Qr4FbpwrjYYM2Wavg9,QkpTHGs70:UCxs_bK6pYYM2Wavg9,rOTMO5ZgD:kxwhgq4EjYYM2Wavg9,SkhqOovcM:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})})})})},idYYM2Wavg9);})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{y:undefined},wB2n67gOp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1159,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o3t6e8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f1LSIAEUD:{variant:\"AEPE6G1Hn\"},wB2n67gOp:{variant:\"Rv0RR_t_q\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dzyTYa3lK\",layoutId:\"dzyTYa3lK\",style:{width:\"100%\"},variant:\"GzMYQEiUd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TLTLS.framer-aq8jum, .framer-TLTLS .framer-aq8jum { display: block; }\",\".framer-TLTLS.framer-4dk64i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TLTLS .framer-1xisxw9-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-1o1s4vy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-114zy9l-container, .framer-TLTLS .framer-1f775of-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TLTLS .framer-1cd7vu7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1px; }\",\".framer-TLTLS .framer-118g8z2-container { aspect-ratio: 1.8737270875763747 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); max-width: 920px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-1k65tlx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; padding: 0px; position: relative; width: 600px; }\",\".framer-TLTLS .framer-zv2afn { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-TLTLS .framer-1fm5j92 { 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-TLTLS .framer-2b2xls { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-TLTLS .framer-913931 { --border-bottom-width: 1px; --border-color: #e0e0e0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TLTLS .framer-rudaj5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-TLTLS .framer-2cx9sd { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TLTLS .framer-11tvz24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-12kszyh { flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-TLTLS .framer-vzen3i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TLTLS .framer-1kypzen, .framer-TLTLS .framer-17b0ruk { --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-TLTLS .framer-6zoxeo { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 800px; padding: 0px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-8kdk3s, .framer-TLTLS .framer-1ftbto4 { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TLTLS .framer-r51cor, .framer-TLTLS .framer-1aawcj7 { align-self: start; flex: none; height: 30px; justify-self: start; position: relative; width: 0px; }\",\".framer-TLTLS .framer-1ltvlxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-4kk7f6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TLTLS .framer-13jwufy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TLTLS .framer-15utq1d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TLTLS .framer-o3t6e8-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TLTLS.framer-4dk64i, .framer-TLTLS .framer-1o1s4vy, .framer-TLTLS .framer-1cd7vu7, .framer-TLTLS .framer-1fm5j92, .framer-TLTLS .framer-913931, .framer-TLTLS .framer-11tvz24, .framer-TLTLS .framer-vzen3i, .framer-TLTLS .framer-1ltvlxd, .framer-TLTLS .framer-13jwufy { gap: 0px; } .framer-TLTLS.framer-4dk64i > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-TLTLS.framer-4dk64i > :first-child, .framer-TLTLS .framer-1cd7vu7 > :first-child, .framer-TLTLS .framer-vzen3i > :first-child, .framer-TLTLS .framer-1ltvlxd > :first-child { margin-top: 0px; } .framer-TLTLS.framer-4dk64i > :last-child, .framer-TLTLS .framer-1cd7vu7 > :last-child, .framer-TLTLS .framer-vzen3i > :last-child, .framer-TLTLS .framer-1ltvlxd > :last-child { margin-bottom: 0px; } .framer-TLTLS .framer-1o1s4vy > *, .framer-TLTLS .framer-1fm5j92 > *, .framer-TLTLS .framer-11tvz24 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TLTLS .framer-1o1s4vy > :first-child, .framer-TLTLS .framer-1fm5j92 > :first-child, .framer-TLTLS .framer-913931 > :first-child, .framer-TLTLS .framer-11tvz24 > :first-child, .framer-TLTLS .framer-13jwufy > :first-child { margin-left: 0px; } .framer-TLTLS .framer-1o1s4vy > :last-child, .framer-TLTLS .framer-1fm5j92 > :last-child, .framer-TLTLS .framer-913931 > :last-child, .framer-TLTLS .framer-11tvz24 > :last-child, .framer-TLTLS .framer-13jwufy > :last-child { margin-right: 0px; } .framer-TLTLS .framer-1cd7vu7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TLTLS .framer-913931 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-TLTLS .framer-vzen3i > *, .framer-TLTLS .framer-1ltvlxd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TLTLS .framer-13jwufy > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-TLTLS[data-border=\"true\"]::after, .framer-TLTLS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-TLTLS.framer-4dk64i { width: 810px; } .framer-TLTLS .framer-1fm5j92 { padding: 0px 10px 0px 10px; } .framer-TLTLS .framer-2b2xls { flex: 1 0 0px; width: 1px; } .framer-TLTLS .framer-1ltvlxd { padding: 10px; } .framer-TLTLS .framer-13jwufy { flex-wrap: wrap; } .framer-TLTLS .framer-15utq1d-container { min-width: 360px; }}\",\"@media (max-width: 809px) { .framer-TLTLS.framer-4dk64i { width: 390px; } .framer-TLTLS .framer-1xisxw9-container { height: auto; } .framer-TLTLS .framer-1k65tlx, .framer-TLTLS .framer-1fm5j92 { padding: 0px 10px 0px 10px; } .framer-TLTLS .framer-2b2xls { flex: 1 0 0px; width: 1px; } .framer-TLTLS .framer-913931, .framer-TLTLS .framer-11tvz24 { flex-direction: column; } .framer-TLTLS .framer-2cx9sd, .framer-TLTLS .framer-vzen3i { flex: none; width: 100%; } .framer-TLTLS .framer-6zoxeo, .framer-TLTLS .framer-1ltvlxd { padding: 10px; } .framer-TLTLS .framer-13jwufy { flex-wrap: wrap; } .framer-TLTLS .framer-15utq1d-container { min-width: 360px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TLTLS .framer-913931, .framer-TLTLS .framer-11tvz24 { gap: 0px; } .framer-TLTLS .framer-913931 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-TLTLS .framer-913931 > :first-child, .framer-TLTLS .framer-11tvz24 > :first-child { margin-top: 0px; } .framer-TLTLS .framer-913931 > :last-child, .framer-TLTLS .framer-11tvz24 > :last-child { margin-bottom: 0px; } .framer-TLTLS .framer-11tvz24 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3934\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"f1LSIAEUD\":{\"layout\":[\"fixed\",\"auto\"]},\"wB2n67gOp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerbpRN8vGPG=withCSS(Component,css,\"framer-TLTLS\");export default FramerbpRN8vGPG;FramerbpRN8vGPG.displayName=\"test\";FramerbpRN8vGPG.defaultProps={height:3934,width:1200};addFonts(FramerbpRN8vGPG,[{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\"}]},...NavbarCopyFonts,...KnowledgeListFonts,...YouTubeFonts,...BadgeFonts,...KnowledgeCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...componentPresets.fonts?.[\"rayGCAjIF\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"rayGCAjIF\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbpRN8vGPG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3934\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f1LSIAEUD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wB2n67gOp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "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", "NavbarCopyFonts", "getFonts", "PbI6DeCLO_default", "KnowledgeListFonts", "cOgJWUmvq_default", "YouTubeFonts", "Youtube", "BadgeFonts", "frXmazaNo_default", "KnowledgeCardFonts", "JS0LBWpbU_default", "FooterFonts", "EkdjOs2QP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "isSet", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "prefix", "negate", "suffix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "r3CuOpmIB_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "OqcbjvQIl", "moBtGKD6y", "Qr4Fbpwrj", "tzZAF5cj0", "lbpyqgJNj", "previousItemId", "previousItemId_CD30uEko0", "previousItemId_UCxs_bK6p", "nextItemId", "nextItemId_CD30uEko0", "nextItemId_UCxs_bK6p", "kxwhgq4EjYYM2Wavg9", "UCxs_bK6pYYM2Wavg9", "Qr4FbpwrjYYM2Wavg9", "CD30uEko0YYM2Wavg9", "idYYM2Wavg9", "o3EQQyPQa", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "usePreloadLocalizedValues", "visible2", "textContent1", "getLocalizedValue", "visible3", "visible4", "visible5", "textContent2", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText", "x", "ComponentPresetsProvider", "Image2", "getLoadingLazyAtYPosition", "Link", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramerbpRN8vGPG", "withCSS", "bpRN8vGPG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
