{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fxlmqVk0JRNvpLzQkccw/4NzBwC3whPou0UQ7AJ7q/FAQ.js", "ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js", "ssg:https://framerusercontent.com/modules/UgzrLMZljja9RdHK4eje/UTzQp18GGpKpWQlDGB3o/IZoB215nU.js", "ssg:https://framerusercontent.com/modules/Xrqf5fCoYCfXcXg82A9I/DHik9wJMWQefc8WKCC3w/Ofh1D7p2z.js", "ssg:https://framerusercontent.com/modules/z3w9ngxgggHgS87d6tiq/Z0ycrsOC8W0YfYI4dzZg/micXLmiDa.js", "ssg:https://framerusercontent.com/modules/XReoqTPDhnHoKaQIw5Qm/zbYaDiNMworyjtooCItF/VVpZmqfl8.js", "ssg:https://framerusercontent.com/modules/g7uGZAj6DSFJIJh0G7Gs/jdD1iIoH1vyGHoLO8Ort/AFFhgCAcn.js", "ssg:https://framerusercontent.com/modules/0WgjROHJKACjk0Mmd5H4/5rToYcRxSrJgMPJ5Fjif/HyPlxkggo.js", "ssg:https://framerusercontent.com/modules/NEUFGmStO3lSUtEk62it/qUluaTnMj4PZvMGya1q0/lSzDldnge.js", "ssg:https://framerusercontent.com/modules/va21eKdGV54RVhaNW2he/B8OERL9Ks1GC963TrfFz/lWDpz8Lia.js", "ssg:https://framerusercontent.com/modules/LFUCE2HQAYdaZ0ONmMAf/TzX3ylMs8QcAEWFdGdpH/W5gHPqeWi.js", "ssg:https://framerusercontent.com/modules/spr0JGteBeOHmnYPFsBS/83cGGsVV25H6soDIpoMN/XQworCkc9.js", "ssg:https://framerusercontent.com/modules/VgCpsU00X2lEPkk6Oh4i/53hsjaqwKA1B0tZt3AHs/y5qUFOqCv.js", "ssg:https://framerusercontent.com/modules/msP2H7REYppaZL83hEDl/94GUf6MTnhSDsZChmMHT/Nwl61GJ9x.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function FAQContainer(props){const{richText,questionFont,answerFont,containerSpacing,qaSpacing,padding,border,borderRadius,shadow,appearance:{backgroundColor,hoverBackgroundColor,activeBackgroundColor,questionColor,answerColor},icon:{type:iconType,size,color},transition}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[faqs,setFaqs]=React.useState([]);const[openIndex,setOpenIndex]=React.useState(isCanvas?0:null);const[hoveredIndex,setHoveredIndex]=React.useState(null);const didInitialize=React.useRef(false);// Add global style for links to match text color\nReact.useEffect(()=>{if(typeof document!==\"undefined\"){const styleEl=document.createElement(\"style\");styleEl.innerHTML=`\n               .faq-container a {\n                   color: inherit;\n                   text-decoration: underline;\n               }\n           `;document.head.appendChild(styleEl);return()=>{document.head.removeChild(styleEl);};}},[]);const processRichText=React.useCallback(()=>{const extractQA=element=>{const qaList=[];let currentQA={};const processContent=element=>{if(element.props&&element.props.children){React.Children.forEach(element.props.children,child=>{if(child.type&&typeof child.type===\"string\"&&child.type.match(/h[1-6]/)){if(currentQA.question){qaList.push({...currentQA});}currentQA={question:child.props.children,answer:\"\"};}else if(child.type===\"p\"&&currentQA.question){currentQA.answer=child.props.children;}if(child.props&&child.props.children){processContent(child);}});}};processContent(element);if(currentQA.question){qaList.push(currentQA);}return qaList;};if(richText&&richText.props&&Array.isArray(richText.props.children)){const faqList=extractQA(richText);if(faqList.length>0){setFaqs(faqList);return true;}}return false;},[richText]);// Process rich text when component mounts\nReact.useEffect(()=>{const hasContent=processRichText();// Use default content if no content from rich text\nif(!hasContent||isCanvas){setFaqs(prevFaqs=>{if(prevFaqs.length===0){return[{question:\"What is this component?\",answer:\"This is a FAQ accordion component that displays questions and answers.\"},{question:\"How do I add content?\",answer:\"Use the Rich Text editor to add h1-h6 elements for questions and paragraphs for answers.\"}];}return prevFaqs;});}didInitialize.current=true;},[]);// Process rich text when it changes\nReact.useEffect(()=>{if(didInitialize.current){processRichText();}},[richText,processRichText]);const toggleFAQ=index=>{if(!isCanvas){setOpenIndex(openIndex===index?null:index);}};const isItemOpen=index=>{if(isCanvas)return index===0;return openIndex===index;};const getBackgroundColor=index=>{if(isItemOpen(index))return activeBackgroundColor;if(hoveredIndex===index)return hoverBackgroundColor;return backgroundColor;};const renderIcon=isOpen=>{if(iconType===\"plus\"){return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${size}px`,lineHeight:1,color:color,width:`${size}px`,height:`${size}px`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:isOpen?\"\u2212\":\"+\"});}else{return /*#__PURE__*/_jsx(\"svg\",{width:size,height:size,viewBox:\"0 0 24 24\",fill:\"none\",stroke:color,strokeWidth:\"2\",style:{transform:isOpen?\"rotate(180deg)\":\"rotate(0)\",transition:\"transform 0.3s ease\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M6 9l6 6 6-6\"})});}};return /*#__PURE__*/_jsx(motion.div,{role:\"region\",\"aria-label\":\"Frequently Asked Questions\",className:\"faq-container\",style:{width:\"100%\",display:\"flex\",flexDirection:\"column\",gap:containerSpacing},children:/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:faqs.map((faq,index)=>/*#__PURE__*/_jsxs(motion.section,{layout:true,initial:false,style:{padding,...border,borderRadius,boxShadow:shadow,cursor:isCanvas?\"default\":\"pointer\",backgroundColor:getBackgroundColor(index),overflow:\"hidden\"},onClick:()=>toggleFAQ(index),onMouseEnter:()=>setHoveredIndex(index),onMouseLeave:()=>setHoveredIndex(null),children:[/*#__PURE__*/_jsxs(motion.div,{layout:true,style:{display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",color:questionColor,...questionFont},children:[/*#__PURE__*/_jsx(\"span\",{children:faq.question}),renderIcon(isItemOpen(index))]}),/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:isItemOpen(index)&&/*#__PURE__*/_jsx(motion.div,{initial:{height:0,marginTop:0,opacity:0},animate:{height:\"auto\",marginTop:qaSpacing,opacity:1,transition:transition},exit:{height:0,marginTop:0,opacity:0,transition:{...transition,opacity:{duration:transition.type===\"spring\"?.15:transition.duration*.5||.15}}},style:{color:answerColor,...answerFont},children:faq.answer})})]},index))})});}FAQContainer.defaultProps={richText:null,containerSpacing:10,qaSpacing:15,padding:\"20px\",border:{borderWidth:1,borderStyle:\"solid\",borderColor:\"#EEEEEE\"},borderRadius:\"8px\",shadow:\"none\",appearance:{backgroundColor:\"#FFFFFF\",hoverBackgroundColor:\"#F5F5F5\",activeBackgroundColor:\"#F8F8F8\",questionColor:\"#000000\",answerColor:\"#666666\"},icon:{type:\"chevron\",size:24,color:\"#000000\"},transition:{type:\"spring\",stiffness:500,damping:30}};addPropertyControls(FAQContainer,{richText:{type:ControlType.RichText,title:\"FAQ Content\"},questionFont:{type:ControlType.Font,controls:\"extended\",title:\"Question Font\"},answerFont:{type:ControlType.Font,controls:\"extended\",title:\"Answer Font\"},containerSpacing:{type:ControlType.Number,title:\"Container Spacing\",min:0,max:100},qaSpacing:{type:ControlType.Number,title:\"Q&A Spacing\",min:0,max:100},padding:{type:ControlType.Padding,title:\"Padding\"},border:{type:ControlType.Border,title:\"Border\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\"},shadow:{type:ControlType.BoxShadow,title:\"Shadow\"},appearance:{type:ControlType.Object,title:\"Appearance\",controls:{backgroundColor:{type:ControlType.Color,title:\"Background\"},hoverBackgroundColor:{type:ControlType.Color,title:\"Hover Background\"},activeBackgroundColor:{type:ControlType.Color,title:\"Active Background\"},questionColor:{type:ControlType.Color,title:\"Question Color\"},answerColor:{type:ControlType.Color,title:\"Answer Color\"}}},icon:{type:ControlType.Object,title:\"Icon\",controls:{type:{type:ControlType.Enum,title:\"Type\",options:[\"plus\",\"chevron\"]},size:{type:ControlType.Number,title:\"Size\",min:12,max:48,step:2},color:{type:ControlType.Color,title:\"Color\"}}},transition:{type:ControlType.Transition,title:\"Animation\",description:\"v1.1\\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FAQContainer\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FAQ.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.filter(header=>props[`showH${header.level}`]!==false).forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset,props]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"Preview to see it in effect \\n\\nv1.6 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/CKBCRS8DpKnAHGBoHnrK/Search.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/OmCBTbxXiPIcrnElZJkC/TVfR4DFSGSLr90s4Q4ME/CjY6KVVNO.js\";const PhosphorFonts=getFonts(Phosphor);const SearchFonts=getFonts(Search);const serializationHash=\"framer-I5JUs\";const variantClassNames={LeojkHNLa:\"framer-v-1n4s52w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LeojkHNLa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n4s52w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LeojkHNLa\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-978ca608-7ae7-428c-8436-aa90dd14f1df, rgba(0, 17, 102, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-86eb513f-688a-43ae-ad8a-5f23955c92d3, rgb(255, 255, 255))\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mvzfb2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"chETL6Vsz-container\",nodeId:\"chETL6Vsz\",rendersWithMotion:true,scopeId:\"IZoB215nU\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MagnifyingGlass\",id:\"chETL6Vsz\",layoutId:\"chETL6Vsz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rt5cmt\",\"data-styles-preset\":\"CjY6KVVNO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Search \"})}),className:\"framer-5pthxd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D9DSmeuO4\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uc5yyn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AGsM1nQ5w-container\",nodeId:\"AGsM1nQ5w\",rendersWithMotion:true,scopeId:\"IZoB215nU\",style:{opacity:0},children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",id:\"AGsM1nQ5w\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"AGsM1nQ5w\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I5JUs.framer-c8zzvu, .framer-I5JUs .framer-c8zzvu { display: block; }\",\".framer-I5JUs.framer-1n4s52w { align-content: center; align-items: center; cursor: text; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1040px; }\",\".framer-I5JUs .framer-mvzfb2-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-I5JUs .framer-5pthxd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-I5JUs .framer-1uc5yyn-container { bottom: -1px; cursor: pointer; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I5JUs.framer-1n4s52w { gap: 0px; } .framer-I5JUs.framer-1n4s52w > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-I5JUs.framer-1n4s52w > :first-child { margin-left: 0px; } .framer-I5JUs.framer-1n4s52w > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-I5JUs[data-border=\"true\"]::after, .framer-I5JUs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 59\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIZoB215nU=withCSS(Component,css,\"framer-I5JUs\");export default FramerIZoB215nU;FramerIZoB215nU.displayName=\"Navigation/Search bar\";FramerIZoB215nU.defaultProps={height:59,width:1040};addFonts(FramerIZoB215nU,[{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\"}]},...PhosphorFonts,...SearchFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIZoB215nU\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1040\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"59\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IZoB215nU.map", "// Generated by Framer (b0164a3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-SemiBold\",\"Inter-SemiBoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-poOO5 .framer-styles-preset-9uen2w:not(.rich-text-wrapper), .framer-poOO5 .framer-styles-preset-9uen2w.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 16px; --framer-text-alignment: left; --framer-text-color: var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-poOO5\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99ae5b3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JDxJJBFZQ\",\"AK9cRoPCm\"];const serializationHash=\"framer-tAxNQ\";const variantClassNames={AK9cRoPCm:\"framer-v-te2sqx\",JDxJJBFZQ:\"framer-v-nk6vv0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"JDxJJBFZQ\",Open:\"AK9cRoPCm\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,cknVGaNF8:tap!==null&&tap!==void 0?tap:props.cknVGaNF8,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"JDxJJBFZQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cknVGaNF8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JDxJJBFZQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqeushf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(cknVGaNF8){const res=await cknVGaNF8(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nk6vv0\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JDxJJBFZQ\",onTap:onTapqeushf,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AK9cRoPCm:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yhk6fa\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"mMYdsvqyu\",style:{backgroundColor:\"var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,rotate:0},variants:{AK9cRoPCm:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gebibl\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wD6vsN6Dk\",style:{backgroundColor:\"var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,rotate:0},variants:{AK9cRoPCm:{rotate:45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tAxNQ.framer-1noz178, .framer-tAxNQ .framer-1noz178 { display: block; }\",\".framer-tAxNQ.framer-nk6vv0 { cursor: pointer; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-tAxNQ .framer-yhk6fa { bottom: 10px; flex: none; height: 3px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tAxNQ .framer-gebibl { flex: none; height: 3px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 10px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tAxNQ.framer-v-te2sqx.framer-nk6vv0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 32px); }\",\".framer-tAxNQ.framer-v-te2sqx .framer-yhk6fa { bottom: unset; top: calc(50.00000000000002% - 3px / 2); }\",\".framer-tAxNQ.framer-v-te2sqx .framer-gebibl { top: calc(50.00000000000002% - 3px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AK9cRoPCm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cknVGaNF8\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermicXLmiDa=withCSS(Component,css,\"framer-tAxNQ\");export default FramermicXLmiDa;FramermicXLmiDa.displayName=\"Graphics/Hamburger\";FramermicXLmiDa.defaultProps={height:32,width:32};addPropertyControls(FramermicXLmiDa,{variant:{options:[\"JDxJJBFZQ\",\"AK9cRoPCm\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},cknVGaNF8:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramermicXLmiDa,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermicXLmiDa\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"cknVGaNF8\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AK9cRoPCm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./micXLmiDa.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/CKBCRS8DpKnAHGBoHnrK/Search.js\";import Documentation from\"https://framerusercontent.com/modules/QKaAwVpTZ5l2Ad7FSECP/kNMVOmTeW5pUycryJRtQ/aWLJU80Gr.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WIa5eafF954hN3WwxDWU/siJByYaL6ouYnTiRs86U/B6oy5J0Ib.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/oT2Hms7okBwCUD4w2pYB/w0hXI173hrVC0AiGnyn2/hT73Nq_Kw.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/s1Fd93MhnCg2hA07P4Qk/PdUlHxk4WIyvP0yvKeis/nQkoxQwJR.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/Xrqf5fCoYCfXcXg82A9I/DHik9wJMWQefc8WKCC3w/Ofh1D7p2z.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zziuWoaVvMMhO4orkx4j/aXvv4pUuklTxbiFclzdF/ovqoepNI1.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aT5aMAgpUahp1W3nVg2F/VZbFKJtx3vuDnP9wSzzk/wyyFGJqhN.js\";import GraphicsHamburger from\"https://framerusercontent.com/modules/z3w9ngxgggHgS87d6tiq/Z0ycrsOC8W0YfYI4dzZg/micXLmiDa.js\";const SearchFonts=getFonts(Search);const GraphicsHamburgerFonts=getFonts(GraphicsHamburger);const cycleOrder=[\"SD26gNht2\",\"r5XRdJDm1\",\"Af2bGE158\"];const serializationHash=\"framer-0uO5z\";const variantClassNames={Af2bGE158:\"framer-v-fzol0k\",r5XRdJDm1:\"framer-v-oruxrv\",SD26gNht2:\"framer-v-1kcgsmb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const query=prequery=>prequery({from:{alias:\"ys7mBAomk\",data:Documentation,type:\"Collection\"},select:[{collection:\"ys7mBAomk\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"ys7mBAomk\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"ys7mBAomk\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ys7mBAomk\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"bFshq9rkL\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"vUTJJ80tM\",data:Documentation,type:\"Collection\"},select:[{collection:\"vUTJJ80tM\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"vUTJJ80tM\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"vUTJJ80tM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vUTJJ80tM\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"UGa1kS5ac\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"m8loV0fv5\",data:Documentation,type:\"Collection\"},select:[{collection:\"m8loV0fv5\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"m8loV0fv5\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"m8loV0fv5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"m8loV0fv5\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"x_eCthL9V\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"whc9_kJDD\",data:Documentation,type:\"Collection\"},select:[{collection:\"whc9_kJDD\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"whc9_kJDD\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"whc9_kJDD\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"whc9_kJDD\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"zAKnxrxe0\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"c5cKVfhEs\",data:Documentation,type:\"Collection\"},select:[{collection:\"c5cKVfhEs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"c5cKVfhEs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"c5cKVfhEs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"c5cKVfhEs\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EJvXRCGX9\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"CkmUUfi6z\",data:Documentation,type:\"Collection\"},select:[{collection:\"CkmUUfi6z\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"CkmUUfi6z\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"CkmUUfi6z\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"CkmUUfi6z\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"srfRIeTPE\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"mc4yuZOYb\",data:Documentation,type:\"Collection\"},select:[{collection:\"mc4yuZOYb\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"mc4yuZOYb\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"mc4yuZOYb\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mc4yuZOYb\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rK7N_fCqE\"},type:\"BinaryOperation\"}});const query7=prequery=>prequery({from:{alias:\"wJFJChcTj\",data:Documentation,type:\"Collection\"},select:[{collection:\"wJFJChcTj\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"wJFJChcTj\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"wJFJChcTj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"wJFJChcTj\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MfZHQiCdL\"},type:\"BinaryOperation\"}});const query8=prequery=>prequery({from:{alias:\"LDH6jsAxO\",data:Documentation,type:\"Collection\"},select:[{collection:\"LDH6jsAxO\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"LDH6jsAxO\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"LDH6jsAxO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LDH6jsAxO\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"xqvOPUn5R\"},type:\"BinaryOperation\"}});const query9=prequery=>prequery({from:{alias:\"FdeSHzkFH\",data:Documentation,type:\"Collection\"},select:[{collection:\"FdeSHzkFH\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"FdeSHzkFH\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"FdeSHzkFH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FdeSHzkFH\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"n_wKKqOl3\"},type:\"BinaryOperation\"}});const query10=prequery=>prequery({from:{alias:\"iZd8li7x4\",data:Documentation,type:\"Collection\"},select:[{collection:\"iZd8li7x4\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"iZd8li7x4\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"iZd8li7x4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"iZd8li7x4\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"TMfnrw2rv\"},type:\"BinaryOperation\"}});const query11=prequery=>prequery({from:{alias:\"RXR3zKcpY\",data:Documentation,type:\"Collection\"},select:[{collection:\"RXR3zKcpY\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"RXR3zKcpY\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"RXR3zKcpY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RXR3zKcpY\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"BRblpcM9v\"},type:\"BinaryOperation\"}});const query12=prequery=>prequery({from:{alias:\"UTyParA2J\",data:Documentation,type:\"Collection\"},select:[{collection:\"UTyParA2J\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"UTyParA2J\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"UTyParA2J\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UTyParA2J\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lEXticrF_\"},type:\"BinaryOperation\"}});const query13=prequery=>prequery({from:{alias:\"CAbtUursE\",data:Documentation,type:\"Collection\"},select:[{collection:\"CAbtUursE\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"CAbtUursE\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"CAbtUursE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"CAbtUursE\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"jsawuBLaU\"},type:\"BinaryOperation\"}});const query14=prequery=>prequery({from:{alias:\"SC4JllYFr\",data:Documentation,type:\"Collection\"},select:[{collection:\"SC4JllYFr\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SC4JllYFr\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SC4JllYFr\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SC4JllYFr\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"sssUCUiRY\"},type:\"BinaryOperation\"}});const query15=prequery=>prequery({from:{alias:\"SN7WXk30p\",data:Documentation,type:\"Collection\"},select:[{collection:\"SN7WXk30p\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SN7WXk30p\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SN7WXk30p\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SN7WXk30p\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"P__DD1RCZ\"},type:\"BinaryOperation\"}});const query16=prequery=>prequery({from:{alias:\"bO8ce5_yp\",data:Documentation,type:\"Collection\"},select:[{collection:\"bO8ce5_yp\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"bO8ce5_yp\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"bO8ce5_yp\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bO8ce5_yp\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"aQc37tXWG\"},type:\"BinaryOperation\"}});const query17=prequery=>prequery({from:{alias:\"tM2CF0a8Q\",data:Documentation,type:\"Collection\"},select:[{collection:\"tM2CF0a8Q\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"tM2CF0a8Q\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"tM2CF0a8Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tM2CF0a8Q\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"iJqtdU6Na\"},type:\"BinaryOperation\"}});const query18=prequery=>prequery({from:{alias:\"x9LCnRxP3\",data:Documentation,type:\"Collection\"},select:[{collection:\"x9LCnRxP3\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"x9LCnRxP3\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"x9LCnRxP3\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"x9LCnRxP3\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"QJrznAQx1\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"x9LCnRxP3\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"QJrznAQx1\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query19=prequery=>prequery({from:{alias:\"nnKFPk440\",data:Documentation,type:\"Collection\"},select:[{collection:\"nnKFPk440\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"nnKFPk440\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"nnKFPk440\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"nnKFPk440\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lxjoxAy2J\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"nnKFPk440\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lxjoxAy2J\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query20=prequery=>prequery({from:{alias:\"UPPTtuhhv\",data:Documentation,type:\"Collection\"},select:[{collection:\"UPPTtuhhv\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"UPPTtuhhv\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"UPPTtuhhv\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UPPTtuhhv\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"AM3r8C3XS\"},type:\"BinaryOperation\"}});const query21=prequery=>prequery({from:{alias:\"THiNLmHxs\",data:Documentation,type:\"Collection\"},select:[{collection:\"THiNLmHxs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"THiNLmHxs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"THiNLmHxs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"THiNLmHxs\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"d3FJW_bar\"},type:\"BinaryOperation\"}});const query22=prequery=>prequery({from:{alias:\"SLLkc_94k\",data:Documentation,type:\"Collection\"},select:[{collection:\"SLLkc_94k\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SLLkc_94k\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SLLkc_94k\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SLLkc_94k\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mmCXu2YqT\"},type:\"BinaryOperation\"}});const query23=prequery=>prequery({from:{alias:\"SJNTYRcN4\",data:Documentation,type:\"Collection\"},select:[{collection:\"SJNTYRcN4\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SJNTYRcN4\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SJNTYRcN4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SJNTYRcN4\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hA5OrEGCd\"},type:\"BinaryOperation\"}});const query24=prequery=>prequery({from:{alias:\"PWhV0NoJs\",data:Documentation,type:\"Collection\"},select:[{collection:\"PWhV0NoJs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"PWhV0NoJs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"PWhV0NoJs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"PWhV0NoJs\",name:\"i_OQE2Hwz\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"TV3QyFaVI\"},type:\"BinaryOperation\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile - Collapsed\":\"r5XRdJDm1\",\"Mobile - Expanded\":\"Af2bGE158\",Desktop:\"SD26gNht2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SD26gNht2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ws1VD5e9Rys7mBAomk,q6owzpo4cys7mBAomk,idys7mBAomk,ws1VD5e9RvUTJJ80tM,q6owzpo4cvUTJJ80tM,idvUTJJ80tM,ws1VD5e9Rm8loV0fv5,q6owzpo4cm8loV0fv5,idm8loV0fv5,ws1VD5e9Rwhc9_kJDD,q6owzpo4cwhc9_kJDD,idwhc9_kJDD,ws1VD5e9Rc5cKVfhEs,q6owzpo4cc5cKVfhEs,idc5cKVfhEs,ws1VD5e9RCkmUUfi6z,q6owzpo4cCkmUUfi6z,idCkmUUfi6z,ws1VD5e9Rmc4yuZOYb,q6owzpo4cmc4yuZOYb,idmc4yuZOYb,ws1VD5e9RwJFJChcTj,q6owzpo4cwJFJChcTj,idwJFJChcTj,ws1VD5e9RLDH6jsAxO,q6owzpo4cLDH6jsAxO,idLDH6jsAxO,ws1VD5e9RFdeSHzkFH,q6owzpo4cFdeSHzkFH,idFdeSHzkFH,ws1VD5e9RiZd8li7x4,q6owzpo4ciZd8li7x4,idiZd8li7x4,ws1VD5e9RRXR3zKcpY,q6owzpo4cRXR3zKcpY,idRXR3zKcpY,ws1VD5e9RUTyParA2J,q6owzpo4cUTyParA2J,idUTyParA2J,ws1VD5e9RCAbtUursE,q6owzpo4cCAbtUursE,idCAbtUursE,ws1VD5e9RSC4JllYFr,q6owzpo4cSC4JllYFr,idSC4JllYFr,ws1VD5e9RSN7WXk30p,q6owzpo4cSN7WXk30p,idSN7WXk30p,ws1VD5e9RbO8ce5_yp,q6owzpo4cbO8ce5_yp,idbO8ce5_yp,ws1VD5e9RtM2CF0a8Q,q6owzpo4ctM2CF0a8Q,idtM2CF0a8Q,ws1VD5e9Rx9LCnRxP3,q6owzpo4cx9LCnRxP3,idx9LCnRxP3,ws1VD5e9RnnKFPk440,q6owzpo4cnnKFPk440,idnnKFPk440,ws1VD5e9RUPPTtuhhv,q6owzpo4cUPPTtuhhv,idUPPTtuhhv,ws1VD5e9RTHiNLmHxs,q6owzpo4cTHiNLmHxs,idTHiNLmHxs,ws1VD5e9RSLLkc_94k,q6owzpo4cSLLkc_94k,idSLLkc_94k,ws1VD5e9RSJNTYRcN4,q6owzpo4cSJNTYRcN4,idSJNTYRcN4,ws1VD5e9RPWhV0NoJs,q6owzpo4cPWhV0NoJs,idPWhV0NoJs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SD26gNht2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const cknVGaNF8h6ekjr=activeVariantCallback(async(...args)=>{setVariant(\"Af2bGE158\");});const cknVGaNF8109wv22=activeVariantCallback(async(...args)=>{setVariant(\"r5XRdJDm1\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"r5XRdJDm1\",\"Af2bGE158\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"r5XRdJDm1\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"r5XRdJDm1\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kcgsmb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"SD26gNht2\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-978ca608-7ae7-428c-8436-aa90dd14f1df, rgba(0, 17, 102, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9adecf34-f102-49b5-a8ad-47ebc29e3b60, rgb(255, 255, 255))\",...style},...addPropertyOverrides({Af2bGE158:{\"data-framer-name\":\"Mobile - Expanded\"},r5XRdJDm1:{\"data-framer-name\":\"Mobile - Collapsed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-473fop\",\"data-border\":true,\"data-framer-name\":\"Nav bar\",layoutDependency:layoutDependency,layoutId:\"IfbF5ni1C\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-978ca608-7ae7-428c-8436-aa90dd14f1df, rgba(0, 17, 102, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-86eb513f-688a-43ae-ad8a-5f23955c92d3, rgb(251, 251, 251))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpqrmo\",\"data-framer-name\":\"Logo and Name\",layoutDependency:layoutDependency,layoutId:\"puCQyDSHJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-d2x5to\",\"data-styles-preset\":\"ovqoepNI1\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dSVgZWXye\"},motionChild:true,nodeId:\"FN2nNto8u\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-taamre\",\"data-styles-preset\":\"B6oy5J0Ib\",children:\"EMS360\"})})})}),className:\"framer-1pvmehz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FN2nNto8u\",style:{\"--extracted-1eung3n\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrzgec\",\"data-styles-preset\":\"wyyFGJqhN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DAkeQXuoo\"},motionChild:true,nodeId:\"smko18GS7\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Documentation\"})})})}),className:\"framer-u8jy97\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"smko18GS7\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrzgec\",\"data-styles-preset\":\"wyyFGJqhN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ynS5EpPK7\"},motionChild:true,nodeId:\"smko18GS7\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"DOCS\"})})})})},r5XRdJDm1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wrzgec\",\"data-styles-preset\":\"wyyFGJqhN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ynS5EpPK7\"},motionChild:true,nodeId:\"smko18GS7\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"DOCS\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igu6tn\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"ZSweVeYIq\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-745yia-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DKn4YzzwL-container\",nodeId:\"DKn4YzzwL\",rendersWithMotion:true,scopeId:\"VVpZmqfl8\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",id:\"DKn4YzzwL\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"DKn4YzzwL\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Af2bGE158:{height:32,width:\"32px\",y:(componentViewport?.y||0)+0+0+14+0},r5XRdJDm1:{height:32,width:\"32px\",y:(componentViewport?.y||0)+0+0+10+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q2ydtc-container\",layoutDependency:layoutDependency,layoutId:\"KOUVzWzaQ-container\",nodeId:\"KOUVzWzaQ\",rendersWithMotion:true,scopeId:\"VVpZmqfl8\",children:/*#__PURE__*/_jsx(GraphicsHamburger,{height:\"100%\",id:\"KOUVzWzaQ\",layoutId:\"KOUVzWzaQ\",style:{height:\"100%\",width:\"100%\"},variant:\"JDxJJBFZQ\",width:\"100%\",...addPropertyOverrides({Af2bGE158:{cknVGaNF8:cknVGaNF8109wv22,variant:\"AK9cRoPCm\"},r5XRdJDm1:{cknVGaNF8:cknVGaNF8h6ekjr}},baseVariant,gestureVariant)})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uvr18p\",\"data-framer-name\":\"Content-phone\",layoutDependency:layoutDependency,layoutId:\"PpPnMv0x1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e07j2t\",\"data-framer-name\":\"Section: Getting started\",layoutDependency:layoutDependency,layoutId:\"bmzZ3rCOz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Getting started\"})}),className:\"framer-14815l5\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cXHbBxQx9\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mz7mgb\",\"data-framer-name\":\"Getting started\",layoutDependency:layoutDependency,layoutId:\"ys7mBAomk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ys7mBAomk\",data:Documentation,type:\"Collection\"},select:[{collection:\"ys7mBAomk\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"ys7mBAomk\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"ys7mBAomk\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ys7mBAomk\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"bFshq9rkL\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idys7mBAomk,q6owzpo4c:q6owzpo4cys7mBAomk,ws1VD5e9R:ws1VD5e9Rys7mBAomk},index)=>{ws1VD5e9Rys7mBAomk??=\"\";q6owzpo4cys7mBAomk??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ys7mBAomk-${idys7mBAomk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rys7mBAomk},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b7ofoa\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"BSDY1uQBg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rys7mBAomk},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"uRPuvvuYp\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Getting started\"})})})}),className:\"framer-1owdx8x\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uRPuvvuYp\",text:q6owzpo4cys7mBAomk,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idys7mBAomk);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1afy903\",\"data-framer-name\":\"Getting started\",layoutDependency:layoutDependency,layoutId:\"vUTJJ80tM\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vUTJJ80tM\",data:Documentation,type:\"Collection\"},select:[{collection:\"vUTJJ80tM\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"vUTJJ80tM\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"vUTJJ80tM\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vUTJJ80tM\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"UGa1kS5ac\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idvUTJJ80tM,q6owzpo4c:q6owzpo4cvUTJJ80tM,ws1VD5e9R:ws1VD5e9RvUTJJ80tM},index1)=>{ws1VD5e9RvUTJJ80tM??=\"\";q6owzpo4cvUTJJ80tM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vUTJJ80tM-${idvUTJJ80tM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RvUTJJ80tM},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5si4sc\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"JHKa02Wla\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RvUTJJ80tM},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"uJcH1nZxL\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"My dashboard\"})})})}),className:\"framer-ighrh6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uJcH1nZxL\",text:q6owzpo4cvUTJJ80tM,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idvUTJJ80tM);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p2fmwi\",\"data-framer-name\":\"Section: My EMS\",layoutDependency:layoutDependency,layoutId:\"O_9_BsG5C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"My EMS\"})}),className:\"framer-q0wgg9\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D0cXPSMKP\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ysvccf\",\"data-framer-name\":\"Staff\",layoutDependency:layoutDependency,layoutId:\"m8loV0fv5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"m8loV0fv5\",data:Documentation,type:\"Collection\"},select:[{collection:\"m8loV0fv5\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"m8loV0fv5\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"m8loV0fv5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"m8loV0fv5\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"x_eCthL9V\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idm8loV0fv5,q6owzpo4c:q6owzpo4cm8loV0fv5,ws1VD5e9R:ws1VD5e9Rm8loV0fv5},index2)=>{ws1VD5e9Rm8loV0fv5??=\"\";q6owzpo4cm8loV0fv5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`m8loV0fv5-${idm8loV0fv5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rm8loV0fv5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yu54fi\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"T3Fmze0Sc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rm8loV0fv5},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"PoxxInWjk\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Manage My Leave & Absence\"})})})}),className:\"framer-1l0mnho\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PoxxInWjk\",text:q6owzpo4cm8loV0fv5,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idm8loV0fv5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v3gjkn\",\"data-framer-name\":\"School processes\",layoutDependency:layoutDependency,layoutId:\"whc9_kJDD\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"whc9_kJDD\",data:Documentation,type:\"Collection\"},select:[{collection:\"whc9_kJDD\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"whc9_kJDD\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"whc9_kJDD\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"whc9_kJDD\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"zAKnxrxe0\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idwhc9_kJDD,q6owzpo4c:q6owzpo4cwhc9_kJDD,ws1VD5e9R:ws1VD5e9Rwhc9_kJDD},index3)=>{ws1VD5e9Rwhc9_kJDD??=\"\";q6owzpo4cwhc9_kJDD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`whc9_kJDD-${idwhc9_kJDD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rwhc9_kJDD},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1am99ai\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"KfQUt6ECo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rwhc9_kJDD},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"Y_l0xPy_2\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Manage  My Health & Safety Incidents\"})})})}),className:\"framer-x5r9wb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y_l0xPy_2\",text:q6owzpo4cwhc9_kJDD,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idwhc9_kJDD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rq1kak\",\"data-framer-name\":\"Communications\",layoutDependency:layoutDependency,layoutId:\"c5cKVfhEs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"c5cKVfhEs\",data:Documentation,type:\"Collection\"},select:[{collection:\"c5cKVfhEs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"c5cKVfhEs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"c5cKVfhEs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"c5cKVfhEs\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"EJvXRCGX9\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idc5cKVfhEs,q6owzpo4c:q6owzpo4cc5cKVfhEs,ws1VD5e9R:ws1VD5e9Rc5cKVfhEs},index4)=>{ws1VD5e9Rc5cKVfhEs??=\"\";q6owzpo4cc5cKVfhEs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`c5cKVfhEs-${idc5cKVfhEs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rc5cKVfhEs},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o299vp\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"q6PoJ_KU5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rc5cKVfhEs},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"QBCBKFydz\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"EMS email history\"})})})}),className:\"framer-oi46g1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QBCBKFydz\",text:q6owzpo4cc5cKVfhEs,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idc5cKVfhEs);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s6asne\",\"data-framer-name\":\"Professional learning\",layoutDependency:layoutDependency,layoutId:\"CkmUUfi6z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CkmUUfi6z\",data:Documentation,type:\"Collection\"},select:[{collection:\"CkmUUfi6z\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"CkmUUfi6z\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"CkmUUfi6z\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"CkmUUfi6z\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"srfRIeTPE\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idCkmUUfi6z,q6owzpo4c:q6owzpo4cCkmUUfi6z,ws1VD5e9R:ws1VD5e9RCkmUUfi6z},index5)=>{ws1VD5e9RCkmUUfi6z??=\"\";q6owzpo4cCkmUUfi6z??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CkmUUfi6z-${idCkmUUfi6z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RCkmUUfi6z},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dqen64\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"sLoIX83Fr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RCkmUUfi6z},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"yp0zc3Dsm\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"My accreditations\"})})})}),className:\"framer-125j2i8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yp0zc3Dsm\",text:q6owzpo4cCkmUUfi6z,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idCkmUUfi6z);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dmyhtx\",\"data-framer-name\":\"Reviews\",layoutDependency:layoutDependency,layoutId:\"mc4yuZOYb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mc4yuZOYb\",data:Documentation,type:\"Collection\"},select:[{collection:\"mc4yuZOYb\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"mc4yuZOYb\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"mc4yuZOYb\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mc4yuZOYb\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rK7N_fCqE\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idmc4yuZOYb,q6owzpo4c:q6owzpo4cmc4yuZOYb,ws1VD5e9R:ws1VD5e9Rmc4yuZOYb},index6)=>{ws1VD5e9Rmc4yuZOYb??=\"\";q6owzpo4cmc4yuZOYb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mc4yuZOYb-${idmc4yuZOYb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rmc4yuZOYb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8t7pk7\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"qrMPinOW3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rmc4yuZOYb},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"lZDv4xIEc\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"My reviews\"})})})}),className:\"framer-8cshs1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lZDv4xIEc\",text:q6owzpo4cmc4yuZOYb,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idmc4yuZOYb);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f30d88\",\"data-framer-name\":\"Section: Approvals\",layoutDependency:layoutDependency,layoutId:\"oPwcawUbA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Approvals\"})}),className:\"framer-17p3rs1\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XstDKh_gF\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dz44eh\",\"data-framer-name\":\"Staff\",layoutDependency:layoutDependency,layoutId:\"wJFJChcTj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wJFJChcTj\",data:Documentation,type:\"Collection\"},select:[{collection:\"wJFJChcTj\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"wJFJChcTj\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"wJFJChcTj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"wJFJChcTj\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"MfZHQiCdL\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idwJFJChcTj,q6owzpo4c:q6owzpo4cwJFJChcTj,ws1VD5e9R:ws1VD5e9RwJFJChcTj},index7)=>{ws1VD5e9RwJFJChcTj??=\"\";q6owzpo4cwJFJChcTj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wJFJChcTj-${idwJFJChcTj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RwJFJChcTj},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eiq7ej\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"IwYhx9ii6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RwJFJChcTj},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"AqZ9lGGoC\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Leave approvals\"})})})}),className:\"framer-gh5tyh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AqZ9lGGoC\",text:q6owzpo4cwJFJChcTj,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idwJFJChcTj);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qgsfq6\",\"data-framer-name\":\"School processes\",layoutDependency:layoutDependency,layoutId:\"LDH6jsAxO\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LDH6jsAxO\",data:Documentation,type:\"Collection\"},select:[{collection:\"LDH6jsAxO\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"LDH6jsAxO\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"LDH6jsAxO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LDH6jsAxO\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"xqvOPUn5R\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({id:idLDH6jsAxO,q6owzpo4c:q6owzpo4cLDH6jsAxO,ws1VD5e9R:ws1VD5e9RLDH6jsAxO},index8)=>{ws1VD5e9RLDH6jsAxO??=\"\";q6owzpo4cLDH6jsAxO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LDH6jsAxO-${idLDH6jsAxO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RLDH6jsAxO},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ez8qud\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"CdXIpv4z2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RLDH6jsAxO},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"FnQaH__rJ\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"ACE approvals\"})})})}),className:\"framer-12wf89v\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FnQaH__rJ\",text:q6owzpo4cLDH6jsAxO,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idLDH6jsAxO);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-seizge\",\"data-framer-name\":\"Professional learning\",layoutDependency:layoutDependency,layoutId:\"FdeSHzkFH\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FdeSHzkFH\",data:Documentation,type:\"Collection\"},select:[{collection:\"FdeSHzkFH\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"FdeSHzkFH\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"FdeSHzkFH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FdeSHzkFH\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"n_wKKqOl3\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({id:idFdeSHzkFH,q6owzpo4c:q6owzpo4cFdeSHzkFH,ws1VD5e9R:ws1VD5e9RFdeSHzkFH},index9)=>{ws1VD5e9RFdeSHzkFH??=\"\";q6owzpo4cFdeSHzkFH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FdeSHzkFH-${idFdeSHzkFH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RFdeSHzkFH},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kco0kf\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"I8Ja98JuX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RFdeSHzkFH},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"xPhdDvQdu\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Professional learning approvals\"})})})}),className:\"framer-1e7720w\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xPhdDvQdu\",text:q6owzpo4cFdeSHzkFH,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idFdeSHzkFH);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3yned4\",\"data-framer-name\":\"Section: Administration\",layoutDependency:layoutDependency,layoutId:\"PTN4hOtuK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Administration\"})}),className:\"framer-sdnvdw\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WhU_ZkKr0\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16md6b9\",\"data-framer-name\":\"Staff\",layoutDependency:layoutDependency,layoutId:\"iZd8li7x4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iZd8li7x4\",data:Documentation,type:\"Collection\"},select:[{collection:\"iZd8li7x4\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"iZd8li7x4\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"iZd8li7x4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"iZd8li7x4\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"TMfnrw2rv\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({id:idiZd8li7x4,q6owzpo4c:q6owzpo4ciZd8li7x4,ws1VD5e9R:ws1VD5e9RiZd8li7x4},index10)=>{ws1VD5e9RiZd8li7x4??=\"\";q6owzpo4ciZd8li7x4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iZd8li7x4-${idiZd8li7x4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RiZd8li7x4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kbmuw\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"XqPglRsj5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RiZd8li7x4},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"yJR7NdSba\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Staff\"})})})}),className:\"framer-1ga78um\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yJR7NdSba\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},text:q6owzpo4ciZd8li7x4,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idiZd8li7x4);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tobj9u\",\"data-framer-name\":\"School processes\",layoutDependency:layoutDependency,layoutId:\"RXR3zKcpY\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RXR3zKcpY\",data:Documentation,type:\"Collection\"},select:[{collection:\"RXR3zKcpY\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"RXR3zKcpY\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"RXR3zKcpY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RXR3zKcpY\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"BRblpcM9v\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({id:idRXR3zKcpY,q6owzpo4c:q6owzpo4cRXR3zKcpY,ws1VD5e9R:ws1VD5e9RRXR3zKcpY},index11)=>{ws1VD5e9RRXR3zKcpY??=\"\";q6owzpo4cRXR3zKcpY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RXR3zKcpY-${idRXR3zKcpY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RRXR3zKcpY},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbl6r2\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"wsakLN4_g\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RRXR3zKcpY},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"IW5dQFkJX\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Health and safety incidents\"})})})}),className:\"framer-198bg4v\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IW5dQFkJX\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},text:q6owzpo4cRXR3zKcpY,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idRXR3zKcpY);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1faj5gu\",\"data-framer-name\":\"Communications\",layoutDependency:layoutDependency,layoutId:\"UTyParA2J\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UTyParA2J\",data:Documentation,type:\"Collection\"},select:[{collection:\"UTyParA2J\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"UTyParA2J\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"UTyParA2J\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UTyParA2J\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lEXticrF_\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({id:idUTyParA2J,q6owzpo4c:q6owzpo4cUTyParA2J,ws1VD5e9R:ws1VD5e9RUTyParA2J},index12)=>{ws1VD5e9RUTyParA2J??=\"\";q6owzpo4cUTyParA2J??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UTyParA2J-${idUTyParA2J}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RUTyParA2J},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l92p8d\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"OHCMBtcSg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RUTyParA2J},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"VpBrO4fk0\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Management diary\"})})})}),className:\"framer-1pwmy55\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VpBrO4fk0\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},text:q6owzpo4cUTyParA2J,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idUTyParA2J);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n7g4jy\",\"data-framer-name\":\"Professional learning\",layoutDependency:layoutDependency,layoutId:\"CAbtUursE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CAbtUursE\",data:Documentation,type:\"Collection\"},select:[{collection:\"CAbtUursE\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"CAbtUursE\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"CAbtUursE\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"CAbtUursE\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"jsawuBLaU\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({id:idCAbtUursE,q6owzpo4c:q6owzpo4cCAbtUursE,ws1VD5e9R:ws1VD5e9RCAbtUursE},index13)=>{ws1VD5e9RCAbtUursE??=\"\";q6owzpo4cCAbtUursE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CAbtUursE-${idCAbtUursE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RCAbtUursE},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ix9kux\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"cad5Z_ABu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RCAbtUursE},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"TdrCQB2Af\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Accreditations\"})})})}),className:\"framer-muaby8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TdrCQB2Af\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},text:q6owzpo4cCAbtUursE,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idCAbtUursE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n4klwz\",\"data-framer-name\":\"Reviews\",layoutDependency:layoutDependency,layoutId:\"SC4JllYFr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SC4JllYFr\",data:Documentation,type:\"Collection\"},select:[{collection:\"SC4JllYFr\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SC4JllYFr\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SC4JllYFr\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SC4JllYFr\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"sssUCUiRY\"},type:\"BinaryOperation\"}},children:(collection14,paginationInfo14,loadMore14)=>/*#__PURE__*/_jsx(_Fragment,{children:collection14?.map(({id:idSC4JllYFr,q6owzpo4c:q6owzpo4cSC4JllYFr,ws1VD5e9R:ws1VD5e9RSC4JllYFr},index14)=>{ws1VD5e9RSC4JllYFr??=\"\";q6owzpo4cSC4JllYFr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SC4JllYFr-${idSC4JllYFr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RSC4JllYFr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as5bi7\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"SDEv8zQvX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RSC4JllYFr},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"FJGjw2TNK\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Review criteria\"})})})}),className:\"framer-14psqlc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FJGjw2TNK\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\"},text:q6owzpo4cSC4JllYFr,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idSC4JllYFr);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kzd4m1\",\"data-framer-name\":\"Section: Organiser\",layoutDependency:layoutDependency,layoutId:\"oiKEFBMwA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Organiser\"})}),className:\"framer-haapti\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RLqBPlGuz\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tidpv9\",\"data-framer-name\":\"Organiser overview\",layoutDependency:layoutDependency,layoutId:\"SN7WXk30p\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SN7WXk30p\",data:Documentation,type:\"Collection\"},select:[{collection:\"SN7WXk30p\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SN7WXk30p\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SN7WXk30p\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SN7WXk30p\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"P__DD1RCZ\"},type:\"BinaryOperation\"}},children:(collection15,paginationInfo15,loadMore15)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({id:idSN7WXk30p,q6owzpo4c:q6owzpo4cSN7WXk30p,ws1VD5e9R:ws1VD5e9RSN7WXk30p},index15)=>{ws1VD5e9RSN7WXk30p??=\"\";q6owzpo4cSN7WXk30p??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SN7WXk30p-${idSN7WXk30p}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RSN7WXk30p},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q54nu6\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Ad7JLhULD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RSN7WXk30p},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"K4ON1JaSI\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Organiser overview\"})})})}),className:\"framer-1gy9rvz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K4ON1JaSI\",text:q6owzpo4cSN7WXk30p,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idSN7WXk30p);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yt8pf\",\"data-framer-name\":\"Section: Finance\",layoutDependency:layoutDependency,layoutId:\"kmpYUmPzj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Finance\"})}),className:\"framer-ebdgzl\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XlBxxv1Tw\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w33kvk\",\"data-framer-name\":\"Finance overview\",layoutDependency:layoutDependency,layoutId:\"bO8ce5_yp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bO8ce5_yp\",data:Documentation,type:\"Collection\"},select:[{collection:\"bO8ce5_yp\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"bO8ce5_yp\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"bO8ce5_yp\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"bO8ce5_yp\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"aQc37tXWG\"},type:\"BinaryOperation\"}},children:(collection16,paginationInfo16,loadMore16)=>/*#__PURE__*/_jsx(_Fragment,{children:collection16?.map(({id:idbO8ce5_yp,q6owzpo4c:q6owzpo4cbO8ce5_yp,ws1VD5e9R:ws1VD5e9RbO8ce5_yp},index16)=>{ws1VD5e9RbO8ce5_yp??=\"\";q6owzpo4cbO8ce5_yp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bO8ce5_yp-${idbO8ce5_yp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RbO8ce5_yp},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-164cfxb\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"KtN_6EDjn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RbO8ce5_yp},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"Gk8PzqZPl\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Finance overview\"})})})}),className:\"framer-1cw74jp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gk8PzqZPl\",text:q6owzpo4cbO8ce5_yp,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idbO8ce5_yp);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aifcuf\",\"data-framer-name\":\"Section: Principal\",layoutDependency:layoutDependency,layoutId:\"LysWGrkxZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Principal\"})}),className:\"framer-n706qz\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bfXlP30wb\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nw87j\",\"data-framer-name\":\"Finance overview\",layoutDependency:layoutDependency,layoutId:\"tM2CF0a8Q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tM2CF0a8Q\",data:Documentation,type:\"Collection\"},select:[{collection:\"tM2CF0a8Q\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"tM2CF0a8Q\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"tM2CF0a8Q\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tM2CF0a8Q\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"iJqtdU6Na\"},type:\"BinaryOperation\"}},children:(collection17,paginationInfo17,loadMore17)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({id:idtM2CF0a8Q,q6owzpo4c:q6owzpo4ctM2CF0a8Q,ws1VD5e9R:ws1VD5e9RtM2CF0a8Q},index17)=>{ws1VD5e9RtM2CF0a8Q??=\"\";q6owzpo4ctM2CF0a8Q??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tM2CF0a8Q-${idtM2CF0a8Q}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RtM2CF0a8Q},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1oqya\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"VYiIFy66R\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RtM2CF0a8Q},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"I5vD5e0aX\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Finance overview\"})})})}),className:\"framer-wrdsar\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I5vD5e0aX\",text:q6owzpo4ctM2CF0a8Q,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idtM2CF0a8Q);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ce9v1\",\"data-framer-name\":\"Section: Setup\",layoutDependency:layoutDependency,layoutId:\"QbbxXTlWR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Setup\"})}),className:\"framer-w6zvs8\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7YnGhc9b\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2clwt4\",\"data-framer-name\":\"Staff\",layoutDependency:layoutDependency,layoutId:\"x9LCnRxP3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"x9LCnRxP3\",data:Documentation,type:\"Collection\"},select:[{collection:\"x9LCnRxP3\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"x9LCnRxP3\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"x9LCnRxP3\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"x9LCnRxP3\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"QJrznAQx1\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"x9LCnRxP3\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"QJrznAQx1\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection18,paginationInfo18,loadMore18)=>/*#__PURE__*/_jsx(_Fragment,{children:collection18?.map(({id:idx9LCnRxP3,q6owzpo4c:q6owzpo4cx9LCnRxP3,ws1VD5e9R:ws1VD5e9Rx9LCnRxP3},index18)=>{ws1VD5e9Rx9LCnRxP3??=\"\";q6owzpo4cx9LCnRxP3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`x9LCnRxP3-${idx9LCnRxP3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9Rx9LCnRxP3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ywwfh\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"mf8EUdDyF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9Rx9LCnRxP3},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"Sl7yRwu8J\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Staff classifications\"})})})}),className:\"framer-1t0crmd\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sl7yRwu8J\",text:q6owzpo4cx9LCnRxP3,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idx9LCnRxP3);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7pwg\",\"data-framer-name\":\"School processes\",layoutDependency:layoutDependency,layoutId:\"nnKFPk440\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"nnKFPk440\",data:Documentation,type:\"Collection\"},select:[{collection:\"nnKFPk440\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"nnKFPk440\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"nnKFPk440\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"nnKFPk440\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lxjoxAy2J\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"nnKFPk440\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"lxjoxAy2J\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection19,paginationInfo19,loadMore19)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({id:idnnKFPk440,q6owzpo4c:q6owzpo4cnnKFPk440,ws1VD5e9R:ws1VD5e9RnnKFPk440},index19)=>{ws1VD5e9RnnKFPk440??=\"\";q6owzpo4cnnKFPk440??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`nnKFPk440-${idnnKFPk440}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RnnKFPk440},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m030ka\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"MdenLVjAY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RnnKFPk440},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"Kwtih9pwu\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Student event (ACE) categories\"})})})}),className:\"framer-6jzdej\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kwtih9pwu\",text:q6owzpo4cnnKFPk440,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idnnKFPk440);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k908ap\",\"data-framer-name\":\"Communications\",layoutDependency:layoutDependency,layoutId:\"UPPTtuhhv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UPPTtuhhv\",data:Documentation,type:\"Collection\"},select:[{collection:\"UPPTtuhhv\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"UPPTtuhhv\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"UPPTtuhhv\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UPPTtuhhv\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"AM3r8C3XS\"},type:\"BinaryOperation\"}},children:(collection20,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection20?.map(({id:idUPPTtuhhv,q6owzpo4c:q6owzpo4cUPPTtuhhv,ws1VD5e9R:ws1VD5e9RUPPTtuhhv},index20)=>{ws1VD5e9RUPPTtuhhv??=\"\";q6owzpo4cUPPTtuhhv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UPPTtuhhv-${idUPPTtuhhv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RUPPTtuhhv},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i6y8u4\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"aAMaFNRZy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RUPPTtuhhv},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"zYtZupZAX\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Management diary categories\"})})})}),className:\"framer-wzwbfk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zYtZupZAX\",text:q6owzpo4cUPPTtuhhv,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idUPPTtuhhv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1difhv5\",\"data-framer-name\":\"Professional learning\",layoutDependency:layoutDependency,layoutId:\"THiNLmHxs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"THiNLmHxs\",data:Documentation,type:\"Collection\"},select:[{collection:\"THiNLmHxs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"THiNLmHxs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"THiNLmHxs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"THiNLmHxs\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"d3FJW_bar\"},type:\"BinaryOperation\"}},children:(collection21,paginationInfo21,loadMore21)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({id:idTHiNLmHxs,q6owzpo4c:q6owzpo4cTHiNLmHxs,ws1VD5e9R:ws1VD5e9RTHiNLmHxs},index21)=>{ws1VD5e9RTHiNLmHxs??=\"\";q6owzpo4cTHiNLmHxs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`THiNLmHxs-${idTHiNLmHxs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RTHiNLmHxs},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vcuoep\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Lph0ppnen\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RTHiNLmHxs},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"wsIwciqOB\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Professional learning budget groups\"})})})}),className:\"framer-u2yww5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wsIwciqOB\",text:q6owzpo4cTHiNLmHxs,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idTHiNLmHxs);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-181x208\",\"data-framer-name\":\"Reviews\",layoutDependency:layoutDependency,layoutId:\"SLLkc_94k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SLLkc_94k\",data:Documentation,type:\"Collection\"},select:[{collection:\"SLLkc_94k\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SLLkc_94k\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SLLkc_94k\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SLLkc_94k\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mmCXu2YqT\"},type:\"BinaryOperation\"}},children:(collection22,paginationInfo22,loadMore22)=>/*#__PURE__*/_jsx(_Fragment,{children:collection22?.map(({id:idSLLkc_94k,q6owzpo4c:q6owzpo4cSLLkc_94k,ws1VD5e9R:ws1VD5e9RSLLkc_94k},index22)=>{ws1VD5e9RSLLkc_94k??=\"\";q6owzpo4cSLLkc_94k??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SLLkc_94k-${idSLLkc_94k}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RSLLkc_94k},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lq3p7a\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"OF2YCdXtu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RSLLkc_94k},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"eT5mDOZfA\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Review periods\"})})})}),className:\"framer-9r2vn6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eT5mDOZfA\",text:q6owzpo4cSLLkc_94k,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idSLLkc_94k);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vyylx\",\"data-framer-name\":\"Site\",layoutDependency:layoutDependency,layoutId:\"SJNTYRcN4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SJNTYRcN4\",data:Documentation,type:\"Collection\"},select:[{collection:\"SJNTYRcN4\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"SJNTYRcN4\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"SJNTYRcN4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SJNTYRcN4\",name:\"tRgb1A92M\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hA5OrEGCd\"},type:\"BinaryOperation\"}},children:(collection23,paginationInfo23,loadMore23)=>/*#__PURE__*/_jsx(_Fragment,{children:collection23?.map(({id:idSJNTYRcN4,q6owzpo4c:q6owzpo4cSJNTYRcN4,ws1VD5e9R:ws1VD5e9RSJNTYRcN4},index23)=>{ws1VD5e9RSJNTYRcN4??=\"\";q6owzpo4cSJNTYRcN4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SJNTYRcN4-${idSJNTYRcN4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RSJNTYRcN4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4pl2ii\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"nKNbXVewr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RSJNTYRcN4},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"se21j5PX_\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Blockout dates\"})})})}),className:\"framer-etb7me\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"se21j5PX_\",text:q6owzpo4cSJNTYRcN4,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idSJNTYRcN4);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4huh7a\",\"data-framer-name\":\"Section: Checklists\",layoutDependency:layoutDependency,layoutId:\"S4nn8lHoP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)))\"},children:\"Checklists\"})}),className:\"framer-1ph06yu\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qCE1BdAUI\",style:{\"--extracted-r6o4lv\":\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kopbyy\",\"data-framer-name\":\"Checklists\",layoutDependency:layoutDependency,layoutId:\"PWhV0NoJs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"PWhV0NoJs\",data:Documentation,type:\"Collection\"},select:[{collection:\"PWhV0NoJs\",name:\"ws1VD5e9R\",type:\"Identifier\"},{collection:\"PWhV0NoJs\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"PWhV0NoJs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"PWhV0NoJs\",name:\"i_OQE2Hwz\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"TV3QyFaVI\"},type:\"BinaryOperation\"}},children:(collection24,paginationInfo24,loadMore24)=>/*#__PURE__*/_jsx(_Fragment,{children:collection24?.map(({id:idPWhV0NoJs,q6owzpo4c:q6owzpo4cPWhV0NoJs,ws1VD5e9R:ws1VD5e9RPWhV0NoJs},index24)=>{ws1VD5e9RPWhV0NoJs??=\"\";q6owzpo4cPWhV0NoJs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`PWhV0NoJs-${idPWhV0NoJs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ws1VD5e9R:ws1VD5e9RPWhV0NoJs},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hdjx61\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Vo7rwi3Ei\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ws1VD5e9R:ws1VD5e9RPWhV0NoJs},webPageId:\"Nwl61GJ9x\"},motionChild:true,nodeId:\"bwwkfTiqy\",openInNewTab:false,scopeId:\"VVpZmqfl8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15eodoj\",\"data-styles-preset\":\"hT73Nq_Kw\",children:\"Staff classifications\"})})})}),className:\"framer-4d2k32\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bwwkfTiqy\",text:q6owzpo4cPWhV0NoJs,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Af2bGE158:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})})},idPWhV0NoJs);})})})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0uO5z.framer-q27dm5, .framer-0uO5z .framer-q27dm5 { display: block; }\",\".framer-0uO5z.framer-1kcgsmb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 320px; }\",\".framer-0uO5z .framer-473fop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 60px; justify-content: flex-start; overflow: visible; padding: 16px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-0uO5z .framer-cpqrmo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0uO5z .framer-1pvmehz, .framer-0uO5z .framer-u8jy97 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0uO5z .framer-1igu6tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 55px; justify-content: center; min-width: 82px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0uO5z .framer-745yia-container { cursor: pointer; flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-0uO5z .framer-1q2ydtc-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-0uO5z .framer-1uvr18p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-0uO5z .framer-1e07j2t, .framer-0uO5z .framer-p2fmwi, .framer-0uO5z .framer-1f30d88, .framer-0uO5z .framer-3yned4, .framer-0uO5z .framer-1kzd4m1, .framer-0uO5z .framer-1yt8pf, .framer-0uO5z .framer-1aifcuf, .framer-0uO5z .framer-12ce9v1, .framer-0uO5z .framer-4huh7a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0uO5z .framer-14815l5, .framer-0uO5z .framer-1owdx8x, .framer-0uO5z .framer-ighrh6, .framer-0uO5z .framer-q0wgg9, .framer-0uO5z .framer-1l0mnho, .framer-0uO5z .framer-x5r9wb, .framer-0uO5z .framer-oi46g1, .framer-0uO5z .framer-125j2i8, .framer-0uO5z .framer-8cshs1, .framer-0uO5z .framer-17p3rs1, .framer-0uO5z .framer-gh5tyh, .framer-0uO5z .framer-12wf89v, .framer-0uO5z .framer-1e7720w, .framer-0uO5z .framer-sdnvdw, .framer-0uO5z .framer-1ga78um, .framer-0uO5z .framer-198bg4v, .framer-0uO5z .framer-1pwmy55, .framer-0uO5z .framer-muaby8, .framer-0uO5z .framer-14psqlc, .framer-0uO5z .framer-haapti, .framer-0uO5z .framer-1gy9rvz, .framer-0uO5z .framer-ebdgzl, .framer-0uO5z .framer-1cw74jp, .framer-0uO5z .framer-n706qz, .framer-0uO5z .framer-wrdsar, .framer-0uO5z .framer-w6zvs8, .framer-0uO5z .framer-1t0crmd, .framer-0uO5z .framer-6jzdej, .framer-0uO5z .framer-wzwbfk, .framer-0uO5z .framer-u2yww5, .framer-0uO5z .framer-9r2vn6, .framer-0uO5z .framer-etb7me, .framer-0uO5z .framer-1ph06yu, .framer-0uO5z .framer-4d2k32 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0uO5z .framer-1mz7mgb, .framer-0uO5z .framer-1afy903, .framer-0uO5z .framer-ysvccf, .framer-0uO5z .framer-1v3gjkn, .framer-0uO5z .framer-rq1kak, .framer-0uO5z .framer-s6asne, .framer-0uO5z .framer-dmyhtx, .framer-0uO5z .framer-dz44eh, .framer-0uO5z .framer-qgsfq6, .framer-0uO5z .framer-seizge, .framer-0uO5z .framer-16md6b9, .framer-0uO5z .framer-1tobj9u, .framer-0uO5z .framer-1faj5gu, .framer-0uO5z .framer-n7g4jy, .framer-0uO5z .framer-n4klwz, .framer-0uO5z .framer-1tidpv9, .framer-0uO5z .framer-w33kvk, .framer-0uO5z .framer-1nw87j, .framer-0uO5z .framer-2clwt4, .framer-0uO5z .framer-u7pwg, .framer-0uO5z .framer-1k908ap, .framer-0uO5z .framer-1difhv5, .framer-0uO5z .framer-181x208, .framer-0uO5z .framer-15vyylx, .framer-0uO5z .framer-kopbyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-0uO5z .framer-1b7ofoa, .framer-0uO5z .framer-5si4sc, .framer-0uO5z .framer-1yu54fi, .framer-0uO5z .framer-1am99ai, .framer-0uO5z .framer-o299vp, .framer-0uO5z .framer-1dqen64, .framer-0uO5z .framer-8t7pk7, .framer-0uO5z .framer-eiq7ej, .framer-0uO5z .framer-ez8qud, .framer-0uO5z .framer-kco0kf, .framer-0uO5z .framer-kbmuw, .framer-0uO5z .framer-vbl6r2, .framer-0uO5z .framer-l92p8d, .framer-0uO5z .framer-ix9kux, .framer-0uO5z .framer-1as5bi7, .framer-0uO5z .framer-1q54nu6, .framer-0uO5z .framer-164cfxb, .framer-0uO5z .framer-z1oqya, .framer-0uO5z .framer-3ywwfh, .framer-0uO5z .framer-m030ka, .framer-0uO5z .framer-1i6y8u4, .framer-0uO5z .framer-vcuoep, .framer-0uO5z .framer-lq3p7a, .framer-0uO5z .framer-4pl2ii, .framer-0uO5z .framer-hdjx61 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uO5z.framer-1kcgsmb, .framer-0uO5z .framer-473fop, .framer-0uO5z .framer-cpqrmo, .framer-0uO5z .framer-1igu6tn, .framer-0uO5z .framer-1uvr18p, .framer-0uO5z .framer-1e07j2t, .framer-0uO5z .framer-1mz7mgb, .framer-0uO5z .framer-1b7ofoa, .framer-0uO5z .framer-1afy903, .framer-0uO5z .framer-5si4sc, .framer-0uO5z .framer-p2fmwi, .framer-0uO5z .framer-ysvccf, .framer-0uO5z .framer-1yu54fi, .framer-0uO5z .framer-1v3gjkn, .framer-0uO5z .framer-1am99ai, .framer-0uO5z .framer-rq1kak, .framer-0uO5z .framer-o299vp, .framer-0uO5z .framer-s6asne, .framer-0uO5z .framer-1dqen64, .framer-0uO5z .framer-dmyhtx, .framer-0uO5z .framer-8t7pk7, .framer-0uO5z .framer-1f30d88, .framer-0uO5z .framer-dz44eh, .framer-0uO5z .framer-eiq7ej, .framer-0uO5z .framer-qgsfq6, .framer-0uO5z .framer-ez8qud, .framer-0uO5z .framer-seizge, .framer-0uO5z .framer-kco0kf, .framer-0uO5z .framer-3yned4, .framer-0uO5z .framer-16md6b9, .framer-0uO5z .framer-kbmuw, .framer-0uO5z .framer-1tobj9u, .framer-0uO5z .framer-vbl6r2, .framer-0uO5z .framer-1faj5gu, .framer-0uO5z .framer-l92p8d, .framer-0uO5z .framer-n7g4jy, .framer-0uO5z .framer-ix9kux, .framer-0uO5z .framer-n4klwz, .framer-0uO5z .framer-1as5bi7, .framer-0uO5z .framer-1kzd4m1, .framer-0uO5z .framer-1tidpv9, .framer-0uO5z .framer-1q54nu6, .framer-0uO5z .framer-1yt8pf, .framer-0uO5z .framer-w33kvk, .framer-0uO5z .framer-164cfxb, .framer-0uO5z .framer-1aifcuf, .framer-0uO5z .framer-1nw87j, .framer-0uO5z .framer-z1oqya, .framer-0uO5z .framer-12ce9v1, .framer-0uO5z .framer-2clwt4, .framer-0uO5z .framer-3ywwfh, .framer-0uO5z .framer-u7pwg, .framer-0uO5z .framer-m030ka, .framer-0uO5z .framer-1k908ap, .framer-0uO5z .framer-1i6y8u4, .framer-0uO5z .framer-1difhv5, .framer-0uO5z .framer-vcuoep, .framer-0uO5z .framer-181x208, .framer-0uO5z .framer-lq3p7a, .framer-0uO5z .framer-15vyylx, .framer-0uO5z .framer-4pl2ii, .framer-0uO5z .framer-4huh7a, .framer-0uO5z .framer-kopbyy, .framer-0uO5z .framer-hdjx61 { gap: 0px; } .framer-0uO5z.framer-1kcgsmb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0uO5z.framer-1kcgsmb > :first-child, .framer-0uO5z .framer-1uvr18p > :first-child, .framer-0uO5z .framer-1e07j2t > :first-child, .framer-0uO5z .framer-1mz7mgb > :first-child, .framer-0uO5z .framer-1b7ofoa > :first-child, .framer-0uO5z .framer-1afy903 > :first-child, .framer-0uO5z .framer-5si4sc > :first-child, .framer-0uO5z .framer-p2fmwi > :first-child, .framer-0uO5z .framer-ysvccf > :first-child, .framer-0uO5z .framer-1yu54fi > :first-child, .framer-0uO5z .framer-1v3gjkn > :first-child, .framer-0uO5z .framer-1am99ai > :first-child, .framer-0uO5z .framer-rq1kak > :first-child, .framer-0uO5z .framer-o299vp > :first-child, .framer-0uO5z .framer-s6asne > :first-child, .framer-0uO5z .framer-1dqen64 > :first-child, .framer-0uO5z .framer-dmyhtx > :first-child, .framer-0uO5z .framer-8t7pk7 > :first-child, .framer-0uO5z .framer-1f30d88 > :first-child, .framer-0uO5z .framer-dz44eh > :first-child, .framer-0uO5z .framer-eiq7ej > :first-child, .framer-0uO5z .framer-qgsfq6 > :first-child, .framer-0uO5z .framer-ez8qud > :first-child, .framer-0uO5z .framer-seizge > :first-child, .framer-0uO5z .framer-kco0kf > :first-child, .framer-0uO5z .framer-3yned4 > :first-child, .framer-0uO5z .framer-16md6b9 > :first-child, .framer-0uO5z .framer-kbmuw > :first-child, .framer-0uO5z .framer-1tobj9u > :first-child, .framer-0uO5z .framer-vbl6r2 > :first-child, .framer-0uO5z .framer-1faj5gu > :first-child, .framer-0uO5z .framer-l92p8d > :first-child, .framer-0uO5z .framer-n7g4jy > :first-child, .framer-0uO5z .framer-ix9kux > :first-child, .framer-0uO5z .framer-n4klwz > :first-child, .framer-0uO5z .framer-1as5bi7 > :first-child, .framer-0uO5z .framer-1kzd4m1 > :first-child, .framer-0uO5z .framer-1tidpv9 > :first-child, .framer-0uO5z .framer-1q54nu6 > :first-child, .framer-0uO5z .framer-1yt8pf > :first-child, .framer-0uO5z .framer-w33kvk > :first-child, .framer-0uO5z .framer-164cfxb > :first-child, .framer-0uO5z .framer-1aifcuf > :first-child, .framer-0uO5z .framer-1nw87j > :first-child, .framer-0uO5z .framer-z1oqya > :first-child, .framer-0uO5z .framer-12ce9v1 > :first-child, .framer-0uO5z .framer-2clwt4 > :first-child, .framer-0uO5z .framer-3ywwfh > :first-child, .framer-0uO5z .framer-u7pwg > :first-child, .framer-0uO5z .framer-m030ka > :first-child, .framer-0uO5z .framer-1k908ap > :first-child, .framer-0uO5z .framer-1i6y8u4 > :first-child, .framer-0uO5z .framer-1difhv5 > :first-child, .framer-0uO5z .framer-vcuoep > :first-child, .framer-0uO5z .framer-181x208 > :first-child, .framer-0uO5z .framer-lq3p7a > :first-child, .framer-0uO5z .framer-15vyylx > :first-child, .framer-0uO5z .framer-4pl2ii > :first-child, .framer-0uO5z .framer-4huh7a > :first-child, .framer-0uO5z .framer-kopbyy > :first-child, .framer-0uO5z .framer-hdjx61 > :first-child { margin-top: 0px; } .framer-0uO5z.framer-1kcgsmb > :last-child, .framer-0uO5z .framer-1uvr18p > :last-child, .framer-0uO5z .framer-1e07j2t > :last-child, .framer-0uO5z .framer-1mz7mgb > :last-child, .framer-0uO5z .framer-1b7ofoa > :last-child, .framer-0uO5z .framer-1afy903 > :last-child, .framer-0uO5z .framer-5si4sc > :last-child, .framer-0uO5z .framer-p2fmwi > :last-child, .framer-0uO5z .framer-ysvccf > :last-child, .framer-0uO5z .framer-1yu54fi > :last-child, .framer-0uO5z .framer-1v3gjkn > :last-child, .framer-0uO5z .framer-1am99ai > :last-child, .framer-0uO5z .framer-rq1kak > :last-child, .framer-0uO5z .framer-o299vp > :last-child, .framer-0uO5z .framer-s6asne > :last-child, .framer-0uO5z .framer-1dqen64 > :last-child, .framer-0uO5z .framer-dmyhtx > :last-child, .framer-0uO5z .framer-8t7pk7 > :last-child, .framer-0uO5z .framer-1f30d88 > :last-child, .framer-0uO5z .framer-dz44eh > :last-child, .framer-0uO5z .framer-eiq7ej > :last-child, .framer-0uO5z .framer-qgsfq6 > :last-child, .framer-0uO5z .framer-ez8qud > :last-child, .framer-0uO5z .framer-seizge > :last-child, .framer-0uO5z .framer-kco0kf > :last-child, .framer-0uO5z .framer-3yned4 > :last-child, .framer-0uO5z .framer-16md6b9 > :last-child, .framer-0uO5z .framer-kbmuw > :last-child, .framer-0uO5z .framer-1tobj9u > :last-child, .framer-0uO5z .framer-vbl6r2 > :last-child, .framer-0uO5z .framer-1faj5gu > :last-child, .framer-0uO5z .framer-l92p8d > :last-child, .framer-0uO5z .framer-n7g4jy > :last-child, .framer-0uO5z .framer-ix9kux > :last-child, .framer-0uO5z .framer-n4klwz > :last-child, .framer-0uO5z .framer-1as5bi7 > :last-child, .framer-0uO5z .framer-1kzd4m1 > :last-child, .framer-0uO5z .framer-1tidpv9 > :last-child, .framer-0uO5z .framer-1q54nu6 > :last-child, .framer-0uO5z .framer-1yt8pf > :last-child, .framer-0uO5z .framer-w33kvk > :last-child, .framer-0uO5z .framer-164cfxb > :last-child, .framer-0uO5z .framer-1aifcuf > :last-child, .framer-0uO5z .framer-1nw87j > :last-child, .framer-0uO5z .framer-z1oqya > :last-child, .framer-0uO5z .framer-12ce9v1 > :last-child, .framer-0uO5z .framer-2clwt4 > :last-child, .framer-0uO5z .framer-3ywwfh > :last-child, .framer-0uO5z .framer-u7pwg > :last-child, .framer-0uO5z .framer-m030ka > :last-child, .framer-0uO5z .framer-1k908ap > :last-child, .framer-0uO5z .framer-1i6y8u4 > :last-child, .framer-0uO5z .framer-1difhv5 > :last-child, .framer-0uO5z .framer-vcuoep > :last-child, .framer-0uO5z .framer-181x208 > :last-child, .framer-0uO5z .framer-lq3p7a > :last-child, .framer-0uO5z .framer-15vyylx > :last-child, .framer-0uO5z .framer-4pl2ii > :last-child, .framer-0uO5z .framer-4huh7a > :last-child, .framer-0uO5z .framer-kopbyy > :last-child, .framer-0uO5z .framer-hdjx61 > :last-child { margin-bottom: 0px; } .framer-0uO5z .framer-473fop > *, .framer-0uO5z .framer-1igu6tn > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0uO5z .framer-473fop > :first-child, .framer-0uO5z .framer-cpqrmo > :first-child, .framer-0uO5z .framer-1igu6tn > :first-child { margin-left: 0px; } .framer-0uO5z .framer-473fop > :last-child, .framer-0uO5z .framer-cpqrmo > :last-child, .framer-0uO5z .framer-1igu6tn > :last-child { margin-right: 0px; } .framer-0uO5z .framer-cpqrmo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0uO5z .framer-1uvr18p > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-0uO5z .framer-1e07j2t > *, .framer-0uO5z .framer-1mz7mgb > *, .framer-0uO5z .framer-1afy903 > *, .framer-0uO5z .framer-p2fmwi > *, .framer-0uO5z .framer-ysvccf > *, .framer-0uO5z .framer-1v3gjkn > *, .framer-0uO5z .framer-rq1kak > *, .framer-0uO5z .framer-s6asne > *, .framer-0uO5z .framer-dmyhtx > *, .framer-0uO5z .framer-1f30d88 > *, .framer-0uO5z .framer-dz44eh > *, .framer-0uO5z .framer-qgsfq6 > *, .framer-0uO5z .framer-seizge > *, .framer-0uO5z .framer-3yned4 > *, .framer-0uO5z .framer-16md6b9 > *, .framer-0uO5z .framer-1tobj9u > *, .framer-0uO5z .framer-1faj5gu > *, .framer-0uO5z .framer-n7g4jy > *, .framer-0uO5z .framer-n4klwz > *, .framer-0uO5z .framer-1kzd4m1 > *, .framer-0uO5z .framer-1tidpv9 > *, .framer-0uO5z .framer-1yt8pf > *, .framer-0uO5z .framer-w33kvk > *, .framer-0uO5z .framer-1aifcuf > *, .framer-0uO5z .framer-1nw87j > *, .framer-0uO5z .framer-12ce9v1 > *, .framer-0uO5z .framer-2clwt4 > *, .framer-0uO5z .framer-u7pwg > *, .framer-0uO5z .framer-1k908ap > *, .framer-0uO5z .framer-1difhv5 > *, .framer-0uO5z .framer-181x208 > *, .framer-0uO5z .framer-15vyylx > *, .framer-0uO5z .framer-4huh7a > *, .framer-0uO5z .framer-kopbyy > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-0uO5z .framer-1b7ofoa > *, .framer-0uO5z .framer-5si4sc > *, .framer-0uO5z .framer-1yu54fi > *, .framer-0uO5z .framer-1am99ai > *, .framer-0uO5z .framer-o299vp > *, .framer-0uO5z .framer-1dqen64 > *, .framer-0uO5z .framer-8t7pk7 > *, .framer-0uO5z .framer-eiq7ej > *, .framer-0uO5z .framer-ez8qud > *, .framer-0uO5z .framer-kco0kf > *, .framer-0uO5z .framer-kbmuw > *, .framer-0uO5z .framer-vbl6r2 > *, .framer-0uO5z .framer-l92p8d > *, .framer-0uO5z .framer-ix9kux > *, .framer-0uO5z .framer-1as5bi7 > *, .framer-0uO5z .framer-1q54nu6 > *, .framer-0uO5z .framer-164cfxb > *, .framer-0uO5z .framer-z1oqya > *, .framer-0uO5z .framer-3ywwfh > *, .framer-0uO5z .framer-m030ka > *, .framer-0uO5z .framer-1i6y8u4 > *, .framer-0uO5z .framer-vcuoep > *, .framer-0uO5z .framer-lq3p7a > *, .framer-0uO5z .framer-4pl2ii > *, .framer-0uO5z .framer-hdjx61 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-0uO5z.framer-v-oruxrv.framer-1kcgsmb { align-content: center; align-items: center; overflow: hidden; }\",\".framer-0uO5z.framer-v-oruxrv .framer-473fop, .framer-0uO5z.framer-v-fzol0k .framer-473fop { gap: unset; justify-content: space-between; }\",\".framer-0uO5z.framer-v-oruxrv .framer-cpqrmo { flex: none; gap: 0px; justify-content: center; width: min-content; }\",\".framer-0uO5z.framer-v-oruxrv .framer-1igu6tn { height: 40px; min-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uO5z.framer-v-oruxrv .framer-473fop, .framer-0uO5z.framer-v-oruxrv .framer-cpqrmo { gap: 0px; } .framer-0uO5z.framer-v-oruxrv .framer-473fop > *, .framer-0uO5z.framer-v-oruxrv .framer-473fop > :first-child, .framer-0uO5z.framer-v-oruxrv .framer-473fop > :last-child { margin: 0px; } .framer-0uO5z.framer-v-oruxrv .framer-cpqrmo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0uO5z.framer-v-oruxrv .framer-cpqrmo > :first-child { margin-left: 0px; } .framer-0uO5z.framer-v-oruxrv .framer-cpqrmo > :last-child { margin-right: 0px; } }\",\".framer-0uO5z.framer-v-fzol0k .framer-cpqrmo { flex: none; width: min-content; }\",\".framer-0uO5z.framer-v-fzol0k .framer-1igu6tn { height: min-content; min-width: unset; }\",\".framer-0uO5z.framer-v-fzol0k .framer-1b7ofoa, .framer-0uO5z.framer-v-fzol0k .framer-5si4sc, .framer-0uO5z.framer-v-fzol0k .framer-1yu54fi, .framer-0uO5z.framer-v-fzol0k .framer-1am99ai, .framer-0uO5z.framer-v-fzol0k .framer-o299vp, .framer-0uO5z.framer-v-fzol0k .framer-1dqen64, .framer-0uO5z.framer-v-fzol0k .framer-8t7pk7, .framer-0uO5z.framer-v-fzol0k .framer-eiq7ej, .framer-0uO5z.framer-v-fzol0k .framer-ez8qud, .framer-0uO5z.framer-v-fzol0k .framer-kco0kf, .framer-0uO5z.framer-v-fzol0k .framer-kbmuw, .framer-0uO5z.framer-v-fzol0k .framer-vbl6r2, .framer-0uO5z.framer-v-fzol0k .framer-l92p8d, .framer-0uO5z.framer-v-fzol0k .framer-ix9kux, .framer-0uO5z.framer-v-fzol0k .framer-1as5bi7, .framer-0uO5z.framer-v-fzol0k .framer-1q54nu6, .framer-0uO5z.framer-v-fzol0k .framer-164cfxb, .framer-0uO5z.framer-v-fzol0k .framer-z1oqya, .framer-0uO5z.framer-v-fzol0k .framer-3ywwfh, .framer-0uO5z.framer-v-fzol0k .framer-m030ka, .framer-0uO5z.framer-v-fzol0k .framer-1i6y8u4, .framer-0uO5z.framer-v-fzol0k .framer-vcuoep, .framer-0uO5z.framer-v-fzol0k .framer-lq3p7a, .framer-0uO5z.framer-v-fzol0k .framer-4pl2ii, .framer-0uO5z.framer-v-fzol0k .framer-hdjx61 { gap: 0px; }\",\".framer-0uO5z.framer-v-fzol0k .framer-1owdx8x, .framer-0uO5z.framer-v-fzol0k .framer-ighrh6, .framer-0uO5z.framer-v-fzol0k .framer-1l0mnho, .framer-0uO5z.framer-v-fzol0k .framer-x5r9wb, .framer-0uO5z.framer-v-fzol0k .framer-oi46g1, .framer-0uO5z.framer-v-fzol0k .framer-125j2i8, .framer-0uO5z.framer-v-fzol0k .framer-8cshs1, .framer-0uO5z.framer-v-fzol0k .framer-gh5tyh, .framer-0uO5z.framer-v-fzol0k .framer-12wf89v, .framer-0uO5z.framer-v-fzol0k .framer-1e7720w, .framer-0uO5z.framer-v-fzol0k .framer-1ga78um, .framer-0uO5z.framer-v-fzol0k .framer-198bg4v, .framer-0uO5z.framer-v-fzol0k .framer-1pwmy55, .framer-0uO5z.framer-v-fzol0k .framer-muaby8, .framer-0uO5z.framer-v-fzol0k .framer-14psqlc, .framer-0uO5z.framer-v-fzol0k .framer-1gy9rvz, .framer-0uO5z.framer-v-fzol0k .framer-1cw74jp, .framer-0uO5z.framer-v-fzol0k .framer-wrdsar, .framer-0uO5z.framer-v-fzol0k .framer-1t0crmd, .framer-0uO5z.framer-v-fzol0k .framer-6jzdej, .framer-0uO5z.framer-v-fzol0k .framer-wzwbfk, .framer-0uO5z.framer-v-fzol0k .framer-u2yww5, .framer-0uO5z.framer-v-fzol0k .framer-9r2vn6, .framer-0uO5z.framer-v-fzol0k .framer-etb7me, .framer-0uO5z.framer-v-fzol0k .framer-4d2k32 { height: 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0uO5z.framer-v-fzol0k .framer-473fop, .framer-0uO5z.framer-v-fzol0k .framer-1b7ofoa, .framer-0uO5z.framer-v-fzol0k .framer-5si4sc, .framer-0uO5z.framer-v-fzol0k .framer-1yu54fi, .framer-0uO5z.framer-v-fzol0k .framer-1am99ai, .framer-0uO5z.framer-v-fzol0k .framer-o299vp, .framer-0uO5z.framer-v-fzol0k .framer-1dqen64, .framer-0uO5z.framer-v-fzol0k .framer-8t7pk7, .framer-0uO5z.framer-v-fzol0k .framer-eiq7ej, .framer-0uO5z.framer-v-fzol0k .framer-ez8qud, .framer-0uO5z.framer-v-fzol0k .framer-kco0kf, .framer-0uO5z.framer-v-fzol0k .framer-kbmuw, .framer-0uO5z.framer-v-fzol0k .framer-vbl6r2, .framer-0uO5z.framer-v-fzol0k .framer-l92p8d, .framer-0uO5z.framer-v-fzol0k .framer-ix9kux, .framer-0uO5z.framer-v-fzol0k .framer-1as5bi7, .framer-0uO5z.framer-v-fzol0k .framer-1q54nu6, .framer-0uO5z.framer-v-fzol0k .framer-164cfxb, .framer-0uO5z.framer-v-fzol0k .framer-z1oqya, .framer-0uO5z.framer-v-fzol0k .framer-3ywwfh, .framer-0uO5z.framer-v-fzol0k .framer-m030ka, .framer-0uO5z.framer-v-fzol0k .framer-1i6y8u4, .framer-0uO5z.framer-v-fzol0k .framer-vcuoep, .framer-0uO5z.framer-v-fzol0k .framer-lq3p7a, .framer-0uO5z.framer-v-fzol0k .framer-4pl2ii, .framer-0uO5z.framer-v-fzol0k .framer-hdjx61 { gap: 0px; } .framer-0uO5z.framer-v-fzol0k .framer-473fop > *, .framer-0uO5z.framer-v-fzol0k .framer-473fop > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-473fop > :last-child { margin: 0px; } .framer-0uO5z.framer-v-fzol0k .framer-1b7ofoa > *, .framer-0uO5z.framer-v-fzol0k .framer-5si4sc > *, .framer-0uO5z.framer-v-fzol0k .framer-1yu54fi > *, .framer-0uO5z.framer-v-fzol0k .framer-1am99ai > *, .framer-0uO5z.framer-v-fzol0k .framer-o299vp > *, .framer-0uO5z.framer-v-fzol0k .framer-1dqen64 > *, .framer-0uO5z.framer-v-fzol0k .framer-8t7pk7 > *, .framer-0uO5z.framer-v-fzol0k .framer-eiq7ej > *, .framer-0uO5z.framer-v-fzol0k .framer-ez8qud > *, .framer-0uO5z.framer-v-fzol0k .framer-kco0kf > *, .framer-0uO5z.framer-v-fzol0k .framer-kbmuw > *, .framer-0uO5z.framer-v-fzol0k .framer-vbl6r2 > *, .framer-0uO5z.framer-v-fzol0k .framer-l92p8d > *, .framer-0uO5z.framer-v-fzol0k .framer-ix9kux > *, .framer-0uO5z.framer-v-fzol0k .framer-1as5bi7 > *, .framer-0uO5z.framer-v-fzol0k .framer-1q54nu6 > *, .framer-0uO5z.framer-v-fzol0k .framer-164cfxb > *, .framer-0uO5z.framer-v-fzol0k .framer-z1oqya > *, .framer-0uO5z.framer-v-fzol0k .framer-3ywwfh > *, .framer-0uO5z.framer-v-fzol0k .framer-m030ka > *, .framer-0uO5z.framer-v-fzol0k .framer-1i6y8u4 > *, .framer-0uO5z.framer-v-fzol0k .framer-vcuoep > *, .framer-0uO5z.framer-v-fzol0k .framer-lq3p7a > *, .framer-0uO5z.framer-v-fzol0k .framer-4pl2ii > *, .framer-0uO5z.framer-v-fzol0k .framer-hdjx61 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0uO5z.framer-v-fzol0k .framer-1b7ofoa > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-5si4sc > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1yu54fi > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1am99ai > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-o299vp > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1dqen64 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-8t7pk7 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-eiq7ej > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-ez8qud > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-kco0kf > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-kbmuw > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-vbl6r2 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-l92p8d > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-ix9kux > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1as5bi7 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1q54nu6 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-164cfxb > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-z1oqya > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-3ywwfh > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-m030ka > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-1i6y8u4 > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-vcuoep > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-lq3p7a > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-4pl2ii > :first-child, .framer-0uO5z.framer-v-fzol0k .framer-hdjx61 > :first-child { margin-top: 0px; } .framer-0uO5z.framer-v-fzol0k .framer-1b7ofoa > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-5si4sc > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1yu54fi > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1am99ai > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-o299vp > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1dqen64 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-8t7pk7 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-eiq7ej > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-ez8qud > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-kco0kf > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-kbmuw > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-vbl6r2 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-l92p8d > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-ix9kux > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1as5bi7 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1q54nu6 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-164cfxb > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-z1oqya > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-3ywwfh > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-m030ka > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-1i6y8u4 > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-vcuoep > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-lq3p7a > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-4pl2ii > :last-child, .framer-0uO5z.framer-v-fzol0k .framer-hdjx61 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-0uO5z[data-border=\"true\"]::after, .framer-0uO5z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2847\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r5XRdJDm1\":{\"layout\":[\"fixed\",\"auto\"]},\"Af2bGE158\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVVpZmqfl8=withCSS(Component,css,\"framer-0uO5z\");export default FramerVVpZmqfl8;FramerVVpZmqfl8.displayName=\"Navigation/Documentation\";FramerVVpZmqfl8.defaultProps={height:2847,width:320};addPropertyControls(FramerVVpZmqfl8,{variant:{options:[\"SD26gNht2\",\"r5XRdJDm1\",\"Af2bGE158\"],optionTitles:[\"Desktop\",\"Mobile - Collapsed\",\"Mobile - Expanded\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVVpZmqfl8,[{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\"}]},...SearchFonts,...GraphicsHamburgerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVVpZmqfl8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2847\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"320\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r5XRdJDm1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Af2bGE158\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-SemiBold\",\"Inter-SemiBoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-s0B72 .framer-styles-preset-ersa6f:not(.rich-text-wrapper), .framer-s0B72 .framer-styles-preset-ersa6f.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-s0B72\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Medium\",\"Inter-MediumItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-qooSU .framer-styles-preset-m3uco4:not(.rich-text-wrapper), .framer-qooSU .framer-styles-preset-m3uco4.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 500; --framer-font-weight-bold-italic: 500; --framer-font-weight-italic: 600; --framer-letter-spacing: 0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-qooSU\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-0oATb .framer-styles-preset-1l5ia2m:not(.rich-text-wrapper), .framer-0oATb .framer-styles-preset-1l5ia2m.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-0oATb\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0cf16c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-SemiBoldItalic\",\"Inter-SemiBoldItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-KvySC .framer-styles-preset-1vjyzqm:not(.rich-text-wrapper), .framer-KvySC .framer-styles-preset-1vjyzqm.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: italic; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 700; --framer-letter-spacing: 0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-400d650a-d6fa-4314-9a3d-0d4a39881b45, #4c64d9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-KvySC\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBoldItalic\",\"Inter-BoldItalic\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-5VrtX .framer-styles-preset-1ylria2:not(.rich-text-wrapper), .framer-5VrtX .framer-styles-preset-1ylria2.rich-text-wrapper h5 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 15px; --framer-font-style: italic; --framer-font-style-bold: italic; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5VrtX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-SemiBold\",\"Inter-SemiBoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-y3NEr .framer-styles-preset-1yr9zh3:not(.rich-text-wrapper), .framer-y3NEr .framer-styles-preset-1yr9zh3.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.02em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-y3NEr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3969033)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\"]);export const fonts=[{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\"}]}];export const css=['.framer-nJrnB .framer-styles-preset-1kusa1o { --framer-code-font-family: \"Inter\", sans-serif; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65)) /* {\"name\":\"text/weak\"} */; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-nJrnB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FAQContainer from\"https://framerusercontent.com/modules/fxlmqVk0JRNvpLzQkccw/4NzBwC3whPou0UQ7AJ7q/FAQ.js\";import Table_of_Content from\"https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js\";import NavigationSearchBar from\"#framer/local/canvasComponent/IZoB215nU/IZoB215nU.js\";import NavigationDocumentation from\"#framer/local/canvasComponent/VVpZmqfl8/VVpZmqfl8.js\";import Documentation from\"#framer/local/collection/aWLJU80Gr/aWLJU80Gr.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle from\"#framer/local/css/AFFhgCAcn/AFFhgCAcn.js\";import*as sharedStyle7 from\"#framer/local/css/B6oy5J0Ib/B6oy5J0Ib.js\";import*as sharedStyle3 from\"#framer/local/css/HyPlxkggo/HyPlxkggo.js\";import*as sharedStyle11 from\"#framer/local/css/kN2MQ8jVD/kN2MQ8jVD.js\";import*as sharedStyle2 from\"#framer/local/css/lSzDldnge/lSzDldnge.js\";import*as sharedStyle5 from\"#framer/local/css/lWDpz8Lia/lWDpz8Lia.js\";import*as sharedStyle12 from\"#framer/local/css/nQkoxQwJR/nQkoxQwJR.js\";import*as sharedStyle6 from\"#framer/local/css/Ofh1D7p2z/Ofh1D7p2z.js\";import*as sharedStyle9 from\"#framer/local/css/sCoajXzeK/sCoajXzeK.js\";import*as sharedStyle4 from\"#framer/local/css/W5gHPqeWi/W5gHPqeWi.js\";import*as sharedStyle1 from\"#framer/local/css/XQworCkc9/XQworCkc9.js\";import*as sharedStyle10 from\"#framer/local/css/y5qUFOqCv/y5qUFOqCv.js\";import*as sharedStyle8 from\"#framer/local/css/YwNjVbCff/YwNjVbCff.js\";import metadataProvider from\"#framer/local/webPageMetadata/Nwl61GJ9x/Nwl61GJ9x.js\";const NavigationDocumentationFonts=getFonts(NavigationDocumentation);const NavigationSearchBarFonts=getFonts(NavigationSearchBar);const FAQContainerFonts=getFonts(FAQContainer);const Table_of_ContentFonts=getFonts(Table_of_Content);const breakpoints={AeCodsZKb:\"(min-width: 810px) and (max-width: 1439px)\",FoXUHQvp7:\"(min-width: 1440px)\",JNFnqEsPW:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yVbrr\";const variantClassNames={AeCodsZKb:\"framer-v-hbol3c\",FoXUHQvp7:\"framer-v-1bz0bsl\",JNFnqEsPW:\"framer-v-uh45tj\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"\";}else{return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"FoXUHQvp7\",Phone:\"JNFnqEsPW\",Tablet:\"AeCodsZKb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FoXUHQvp7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Nwl61GJ9x\",data:Documentation,type:\"Collection\"},select:[{collection:\"Nwl61GJ9x\",name:\"q6owzpo4c\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"pqGBMcJd2\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"B0Vw6DhFd\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"l70BB1Nj9\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"xy_vw0BSn\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"VtlcYMvaO\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"ssf4d2YHx\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"LfrpONqg2\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"ndPGyqD7l\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"NMPzfm7OH\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"qtoqBuY3i\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"lwDjMwRLO\",type:\"Identifier\"},{collection:\"Nwl61GJ9x\",name:\"ItAVZwoQI\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Nwl61GJ9x\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,q6owzpo4c=getFromCurrentRouteData(\"q6owzpo4c\")??\"\",l70BB1Nj9=getFromCurrentRouteData(\"l70BB1Nj9\")??\"\",xy_vw0BSn=getFromCurrentRouteData(\"xy_vw0BSn\")??\"\",VtlcYMvaO=getFromCurrentRouteData(\"VtlcYMvaO\")??\"\",ssf4d2YHx=getFromCurrentRouteData(\"ssf4d2YHx\")??\"\",LfrpONqg2=getFromCurrentRouteData(\"LfrpONqg2\")??\"\",ndPGyqD7l=getFromCurrentRouteData(\"ndPGyqD7l\")??\"\",NMPzfm7OH=getFromCurrentRouteData(\"NMPzfm7OH\")??\"\",qtoqBuY3i=getFromCurrentRouteData(\"qtoqBuY3i\")??\"\",lwDjMwRLO=getFromCurrentRouteData(\"lwDjMwRLO\")??\"\",ItAVZwoQI=getFromCurrentRouteData(\"ItAVZwoQI\")??\"\",pqGBMcJd2=getFromCurrentRouteData(\"pqGBMcJd2\")??\"\",B0Vw6DhFd=getFromCurrentRouteData(\"B0Vw6DhFd\")??\"\",nudtSOBnGEGHjevJiF,...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,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(xy_vw0BSn);const visible1=isSet(VtlcYMvaO);const visible2=isSet(ssf4d2YHx);const visible3=isSet(LfrpONqg2);const visible4=isSet(ndPGyqD7l);const visible5=isSet(NMPzfm7OH);const visible6=isSet(qtoqBuY3i);const visible7=isSet(lwDjMwRLO);const visible8=isSet(ItAVZwoQI);const visible9=isSet(pqGBMcJd2);const visible10=isSet(nudtSOBnGEGHjevJiF);const isDisplayed=()=>{if(!isBrowser())return true;if([\"AeCodsZKb\",\"JNFnqEsPW\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FoXUHQvp7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-86eb513f-688a-43ae-ad8a-5f23955c92d3, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bz0bsl\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-156idu\",\"data-framer-name\":\"Nav container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JNFnqEsPW:{height:2847,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18f9lwi-container\",nodeId:\"HdMJKqgPI\",scopeId:\"Nwl61GJ9x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JNFnqEsPW:{style:{width:\"100%\"},variant:\"r5XRdJDm1\"}},children:/*#__PURE__*/_jsx(NavigationDocumentation,{height:\"100%\",id:\"HdMJKqgPI\",layoutId:\"HdMJKqgPI\",style:{height:\"100%\"},variant:\"SD26gNht2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hgi2en\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JNFnqEsPW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2847+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-azsckt-container\",nodeId:\"bv_ot3ChJ\",scopeId:\"Nwl61GJ9x\",children:/*#__PURE__*/_jsx(NavigationSearchBar,{height:\"100%\",id:\"bv_ot3ChJ\",layoutId:\"bv_ot3ChJ\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a5h27w\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ri7e3e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkc793\",\"data-framer-name\":\"Title container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ersa6f\",\"data-styles-preset\":\"AFFhgCAcn\",children:\"Style guide\"})}),className:\"framer-1mlix\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:q6owzpo4c,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynmlnr\",\"data-framer-name\":\"Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1m5f0\",\"data-framer-name\":\"Section 1\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:l70BB1Nj9,className:\"framer-77lge6\",\"data-framer-name\":\"Section 1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ihj89k\",\"data-framer-name\":\"Section 2\",children:visible&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:xy_vw0BSn,className:\"framer-198p2pf\",\"data-framer-name\":\"Section 2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bgo8ck\",\"data-framer-name\":\"Section 3\",children:visible1&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VtlcYMvaO,className:\"framer-11jo7vr\",\"data-framer-name\":\"Section 3\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-clwjvr\",\"data-framer-name\":\"Section 4\",children:visible2&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ssf4d2YHx,className:\"framer-17chv7t\",\"data-framer-name\":\"Section 4\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jr2p5y\",\"data-framer-name\":\"Section 5\",children:visible3&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:LfrpONqg2,className:\"framer-1vc1tlg\",\"data-framer-name\":\"Section 5\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18a3e2t\",\"data-framer-name\":\"Section 6\",children:visible4&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ndPGyqD7l,className:\"framer-1yzf6c1\",\"data-framer-name\":\"Section 6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10w3f07\",\"data-framer-name\":\"Section 7\",children:visible5&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NMPzfm7OH,className:\"framer-1fwumbv\",\"data-framer-name\":\"Section 7\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpdcs\",\"data-framer-name\":\"Section 8\",children:visible6&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:qtoqBuY3i,className:\"framer-noobf7\",\"data-framer-name\":\"Section 8\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-u54led\",\"data-framer-name\":\"Section 9\",children:visible7&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lwDjMwRLO,className:\"framer-1j061o7\",\"data-framer-name\":\"Section 9\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5aod2\",\"data-framer-name\":\"Section 10\",children:visible8&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"WWSrZMeXN\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"clKN4XU0y\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ItAVZwoQI,className:\"framer-lpr154\",\"data-framer-name\":\"Section 10\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-taamre\",blockquote:\"framer-styles-preset-8t8b0h\",code:\"framer-styles-preset-1kusa1o\",h1:\"framer-styles-preset-ersa6f\",h2:\"framer-styles-preset-1yr9zh3\",h3:\"framer-styles-preset-1l5ia2m\",h4:\"framer-styles-preset-m3uco4\",h5:\"framer-styles-preset-1ylria2\",h6:\"framer-styles-preset-1vjyzqm\",img:\"framer-styles-preset-1h80fed\",p:\"framer-styles-preset-9uen2w\",table:\"framer-styles-preset-hlgjmt\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible9&&/*#__PURE__*/_jsx(Link,{href:B0Vw6DhFd,motionChild:true,nodeId:\"dlVYbfRBV\",scopeId:\"Nwl61GJ9x\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4a6ixq framer-wnfh5u\",\"data-framer-name\":\"Default\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ec7uqi\",\"data-framer-name\":\"State\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17mopcd\",\"data-styles-preset\":\"nQkoxQwJR\",style:{\"--framer-text-color\":\"var(--token-4b6ce420-2d09-4391-bc1d-e0015ed0663a, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-1i86tqu\",fonts:[\"Inter\"],text:pqGBMcJd2,verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-at8csl\",\"data-framer-name\":\"Spacer\"}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nzmqr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JLGpGIAsq\",scopeId:\"Nwl61GJ9x\",children:/*#__PURE__*/_jsx(FAQContainer,{answerFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\"},appearance:{activeBackgroundColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",answerColor:\"var(--token-aa00c859-9e35-4938-802e-5067ae674749, rgb(64, 66, 69))\",backgroundColor:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",hoverBackgroundColor:\"var(--token-a21c5608-6f6d-44b8-a4dd-3ec4d069f1f6, rgb(247, 247, 248))\",questionColor:\"var(--token-14022b6a-3d36-4010-855b-7a06980af434, rgb(19, 19, 22))\"},border:{borderColor:\"var(--token-c53d836b-5706-468a-b8e6-ae61d5338acb, rgb(235, 236, 237))\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"6px\",containerSpacing:12,height:\"100%\",icon:{color:\"var(--token-7da30547-4673-4b68-90cc-0020047cfc1f, rgb(185, 187, 193))\",size:20,type:\"plus\"},id:\"JLGpGIAsq\",layoutId:\"JLGpGIAsq\",padding:\"13px\",qaSpacing:8,questionFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},richText:nudtSOBnGEGHjevJiF,shadow:\"0px 1px 1px 0px rgba(0, 0, 0, 0.04)\",style:{width:\"100%\"},transition:{bounce:.2,delay:0,duration:.5,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kj068e hidden-hbol3c hidden-uh45tj\",\"data-framer-name\":\"Table of Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8huah0\",\"data-framer-name\":\"Sticky Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9uen2w\",\"data-styles-preset\":\"Ofh1D7p2z\",style:{\"--framer-text-color\":\"var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65))\"},children:\"On this page\"})}),className:\"framer-kdbkgp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvhe5y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hxmIbC5CB\",scopeId:\"Nwl61GJ9x\",children:/*#__PURE__*/_jsx(Table_of_Content,{activeColor:\"var(--token-400d650a-d6fa-4314-9a3d-0d4a39881b45, rgb(76, 100, 217))\",activeFontWeight:\"normal\",fontColor:\"var(--token-848049af-9f70-440d-8c22-d2491dbb4f57, rgba(0, 9, 51, 0.65))\",h1Font:{},h2Font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0.01em\",lineHeight:\"1.4em\"},h3Font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"11px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.01em\",lineHeight:\"1.4em\"},h4Font:{},h5Font:{},h6Font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0.01em\",lineHeight:\"1.4em\"},height:\"100%\",id:\"hxmIbC5CB\",indentation:0,layoutId:\"hxmIbC5CB\",onHoverColor:\"var(--token-9f657021-d92b-42e5-a878-a131ee8e588d, rgba(0, 6, 38, 0.9))\",section_id:toString(convertFromBoolean(isSet(l70BB1Nj9),activeLocale)),showH1:false,showH2:true,showH3:true,showH4:false,showH5:false,showH6:true,spacing:8,style:{width:\"100%\"},width:\"100%\",yOffset:20})})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yVbrr.framer-wnfh5u, .framer-yVbrr .framer-wnfh5u { display: block; }\",\".framer-yVbrr.framer-1bz0bsl { align-content: flex-start; align-items: flex-start; background-color: var(--token-86eb513f-688a-43ae-ad8a-5f23955c92d3, #ffffff); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-yVbrr .framer-156idu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 0px; width: min-content; z-index: 1; }\",\".framer-yVbrr .framer-18f9lwi-container { flex: none; height: 100%; position: sticky; width: auto; z-index: 1; }\",\".framer-yVbrr .framer-1hgi2en { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yVbrr .framer-azsckt-container { flex: none; height: auto; position: sticky; width: 100%; z-index: 1; }\",\".framer-yVbrr .framer-1a5h27w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1120px; padding: 80px 20px 0px 80px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-ri7e3e { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.65 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yVbrr .framer-1nkc793 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-1mlix { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yVbrr .framer-1ynmlnr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-k1m5f0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-77lge6, .framer-yVbrr .framer-198p2pf, .framer-yVbrr .framer-11jo7vr, .framer-yVbrr .framer-17chv7t, .framer-yVbrr .framer-1vc1tlg, .framer-yVbrr .framer-1yzf6c1, .framer-yVbrr .framer-1fwumbv, .framer-yVbrr .framer-noobf7, .framer-yVbrr .framer-1j061o7, .framer-yVbrr .framer-lpr154 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yVbrr .framer-ihj89k, .framer-yVbrr .framer-bgo8ck, .framer-yVbrr .framer-clwjvr, .framer-yVbrr .framer-1jr2p5y, .framer-yVbrr .framer-18a3e2t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-10w3f07 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 3538px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-1rpdcs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 5721px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-u54led { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 6045px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-1t5aod2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yVbrr .framer-4a6ixq { align-content: center; align-items: center; background-color: var(--token-400d650a-d6fa-4314-9a3d-0d4a39881b45, #4c64d9); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7226247621292714px 1.300724571832688px -0.6666666666666666px rgba(76, 100, 217, 0.07), 0px 2.7462399638921484px 4.943231935005866px -1.3333333333333333px rgba(76, 100, 217, 0.07), 0px 12px 21.599999999999994px -2px rgba(76, 100, 217, 0.1); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-yVbrr .framer-1ec7uqi { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; justify-content: center; left: 0px; overflow: visible; padding: 0px 16px 0px 16px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-yVbrr .framer-1i86tqu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-yVbrr .framer-at8csl { flex: none; height: 1000px; overflow: hidden; position: relative; width: 100%; }\",\".framer-yVbrr .framer-1nzmqr-container { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; width: 100%; }\",\".framer-yVbrr .framer-1kj068e { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.35 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yVbrr .framer-8huah0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 342px; padding: 0px; position: sticky; top: 120px; width: 100%; z-index: 1; }\",\".framer-yVbrr .framer-kdbkgp { --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-yVbrr .framer-vvhe5y-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-yVbrr.framer-1bz0bsl { width: 810px; } .framer-yVbrr .framer-1a5h27w { padding: 48px 24px 0px 24px; } .framer-yVbrr .framer-ri7e3e { flex: 1 0 0px; }}\",\"@media (max-width: 809px) { .framer-yVbrr.framer-1bz0bsl { flex-direction: column; width: 390px; } .framer-yVbrr .framer-156idu { height: min-content; width: 100%; } .framer-yVbrr .framer-18f9lwi-container { flex: 1 0 0px; height: auto; width: 1px; } .framer-yVbrr .framer-1hgi2en { flex: none; width: 100%; } .framer-yVbrr .framer-1a5h27w { padding: 24px; } .framer-yVbrr .framer-ri7e3e { flex: 1 0 0px; } .framer-yVbrr .framer-1ynmlnr { gap: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13974\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AeCodsZKb\":{\"layout\":[\"fixed\",\"auto\"]},\"JNFnqEsPW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerNwl61GJ9x=withCSS(Component,css,\"framer-yVbrr\");export default FramerNwl61GJ9x;FramerNwl61GJ9x.displayName=\"Documentation\";FramerNwl61GJ9x.defaultProps={height:13974,width:1440};addFonts(FramerNwl61GJ9x,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavigationDocumentationFonts,...NavigationSearchBarFonts,...FAQContainerFonts,...Table_of_ContentFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...componentPresets.fonts?.[\"WWSrZMeXN\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"WWSrZMeXN\"]):[],...componentPresets.fonts?.[\"clKN4XU0y\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"clKN4XU0y\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNwl61GJ9x\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AeCodsZKb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JNFnqEsPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"13974\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FAQContainer", "props", "richText", "questionFont", "answerFont", "containerSpacing", "qaSpacing", "padding", "border", "borderRadius", "shadow", "backgroundColor", "hoverBackgroundColor", "activeBackgroundColor", "questionColor", "answerColor", "iconType", "size", "color", "transition", "isCanvas", "RenderTarget", "faqs", "setFaqs", "ye", "openIndex", "setOpenIndex", "hoveredIndex", "setHoveredIndex", "didInitialize", "pe", "ue", "styleEl", "processRichText", "te", "extractQA", "element", "qaList", "currentQA", "processContent", "j", "child", "faqList", "prevFaqs", "toggleFAQ", "index", "isItemOpen", "getBackgroundColor", "renderIcon", "isOpen", "p", "motion", "AnimatePresence", "faq", "u", "addPropertyControls", "ControlType", "Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "window", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType", "PhosphorFonts", "getFonts", "Icon", "SearchFonts", "Search_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText2", "Search_default", "css", "FramerIZoB215nU", "withCSS", "IZoB215nU_default", "addFonts", "PhosphorFonts", "SearchFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cknVGaNF8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqeushf", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramermicXLmiDa", "withCSS", "micXLmiDa_default", "addPropertyControls", "ControlType", "addFonts", "SearchFonts", "getFonts", "Search_default", "GraphicsHamburgerFonts", "micXLmiDa_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ws1VD5e9Rys7mBAomk", "q6owzpo4cys7mBAomk", "idys7mBAomk", "ws1VD5e9RvUTJJ80tM", "q6owzpo4cvUTJJ80tM", "idvUTJJ80tM", "ws1VD5e9Rm8loV0fv5", "q6owzpo4cm8loV0fv5", "idm8loV0fv5", "ws1VD5e9Rwhc9_kJDD", "q6owzpo4cwhc9_kJDD", "idwhc9_kJDD", "ws1VD5e9Rc5cKVfhEs", "q6owzpo4cc5cKVfhEs", "idc5cKVfhEs", "ws1VD5e9RCkmUUfi6z", "q6owzpo4cCkmUUfi6z", "idCkmUUfi6z", "ws1VD5e9Rmc4yuZOYb", "q6owzpo4cmc4yuZOYb", "idmc4yuZOYb", "ws1VD5e9RwJFJChcTj", "q6owzpo4cwJFJChcTj", "idwJFJChcTj", "ws1VD5e9RLDH6jsAxO", "q6owzpo4cLDH6jsAxO", "idLDH6jsAxO", "ws1VD5e9RFdeSHzkFH", "q6owzpo4cFdeSHzkFH", "idFdeSHzkFH", "ws1VD5e9RiZd8li7x4", "q6owzpo4ciZd8li7x4", "idiZd8li7x4", "ws1VD5e9RRXR3zKcpY", "q6owzpo4cRXR3zKcpY", "idRXR3zKcpY", "ws1VD5e9RUTyParA2J", "q6owzpo4cUTyParA2J", "idUTyParA2J", "ws1VD5e9RCAbtUursE", "q6owzpo4cCAbtUursE", "idCAbtUursE", "ws1VD5e9RSC4JllYFr", "q6owzpo4cSC4JllYFr", "idSC4JllYFr", "ws1VD5e9RSN7WXk30p", "q6owzpo4cSN7WXk30p", "idSN7WXk30p", "ws1VD5e9RbO8ce5_yp", "q6owzpo4cbO8ce5_yp", "idbO8ce5_yp", "ws1VD5e9RtM2CF0a8Q", "q6owzpo4ctM2CF0a8Q", "idtM2CF0a8Q", "ws1VD5e9Rx9LCnRxP3", "q6owzpo4cx9LCnRxP3", "idx9LCnRxP3", "ws1VD5e9RnnKFPk440", "q6owzpo4cnnKFPk440", "idnnKFPk440", "ws1VD5e9RUPPTtuhhv", "q6owzpo4cUPPTtuhhv", "idUPPTtuhhv", "ws1VD5e9RTHiNLmHxs", "q6owzpo4cTHiNLmHxs", "idTHiNLmHxs", "ws1VD5e9RSLLkc_94k", "q6owzpo4cSLLkc_94k", "idSLLkc_94k", "ws1VD5e9RSJNTYRcN4", "q6owzpo4cSJNTYRcN4", "idSJNTYRcN4", "ws1VD5e9RPWhV0NoJs", "q6owzpo4cPWhV0NoJs", "idPWhV0NoJs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "cknVGaNF8h6ekjr", "args", "cknVGaNF8109wv22", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "RichText2", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "Search_default", "micXLmiDa_default", "ChildrenCanSuspend", "QueryData", "aWLJU80Gr_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "collection10", "paginationInfo10", "loadMore10", "index10", "collection11", "paginationInfo11", "loadMore11", "index11", "collection12", "paginationInfo12", "loadMore12", "index12", "collection13", "paginationInfo13", "loadMore13", "index13", "collection14", "paginationInfo14", "loadMore14", "index14", "collection15", "paginationInfo15", "loadMore15", "index15", "collection16", "paginationInfo16", "loadMore16", "index16", "collection17", "paginationInfo17", "loadMore17", "index17", "collection18", "paginationInfo18", "loadMore18", "index18", "collection19", "paginationInfo19", "loadMore19", "index19", "collection20", "paginationInfo20", "loadMore20", "index20", "collection21", "paginationInfo21", "loadMore21", "index21", "collection22", "paginationInfo22", "loadMore22", "index22", "collection23", "paginationInfo23", "loadMore23", "index23", "collection24", "paginationInfo24", "loadMore24", "index24", "css", "FramerVVpZmqfl8", "withCSS", "VVpZmqfl8_default", "addPropertyControls", "ControlType", "addFonts", "SearchFonts", "GraphicsHamburgerFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationDocumentationFonts", "getFonts", "VVpZmqfl8_default", "NavigationSearchBarFonts", "IZoB215nU_default", "FAQContainerFonts", "FAQContainer", "Table_of_ContentFonts", "Table_of_Content", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "isSet", "value", "convertFromBoolean", "activeLocale", "toString", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "aWLJU80Gr_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "q6owzpo4c", "l70BB1Nj9", "xy_vw0BSn", "VtlcYMvaO", "ssf4d2YHx", "LfrpONqg2", "ndPGyqD7l", "NMPzfm7OH", "qtoqBuY3i", "lwDjMwRLO", "ItAVZwoQI", "pqGBMcJd2", "B0Vw6DhFd", "nudtSOBnGEGHjevJiF", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "ComponentPresetsProvider", "Link", "css", "FramerNwl61GJ9x", "withCSS", "Nwl61GJ9x_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
