{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/D8jB7MULf1msm8h3QSP4/y3ddJg74tO5DojWmOEFY/TableOfContentsOld.js", "ssg:https://framerusercontent.com/modules/hwkPSKAhgLO6CyshiZlX/EAH0JwU1ZCLtZUIulD25/slnDM6xkV.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/HpS2rjqE6KzRmAs9aRtS/kCswzoQBbwGbb0LL4xV8/Table_of_contents.js", "ssg:https://framerusercontent.com/modules/uoh6AGBD4DxKhv8HWrA5/QhUjQ80PjKcVqr7iCy6r/gp8HyKYis.js", "ssg:https://framerusercontent.com/modules/zmjCJJKLCnvro3nfr8uO/E58nz7hGrp7Gack3akIe/sUCS9lNN7.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{motion,LayoutGroup}from\"framer-motion\";const LETTERS=\"abcdefghijklmnopqurstuvwxyz\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function TableOfContents(props){const{content,headingIdPrefix,topItem,includedHeadings,linking,fontColor,textMode,gap,labels,highlight}=props;// if (!content) {\n//     return <div style={props.style} /> // Get empty state from CMS Slideshow\n//     // Connect a formatted text field to the Content variable to create a table of contents.\n// }\nconst pt=highlight?highlight.paddingIsMixed?highlight.paddingTop:highlight.padding:0;const pl=highlight?highlight.paddingIsMixed?highlight.paddingLeft:highlight.padding:0;const pb=highlight?highlight.paddingIsMixed?highlight.paddingBottom:highlight.padding:0;const pr=highlight?highlight.paddingIsMixed?highlight.paddingRight:highlight.padding:0;const uniqueLayoutId=Math.random().toString();const highlightBorder=highlight===null||highlight===void 0?void 0:highlight.border;const highlightShadow=highlight===null||highlight===void 0?void 0:highlight.shadow;const highlightRadius=highlight?highlight.radiusIsMixed?`${highlight.radiusTopLeft}px ${highlight.radiusTopRight}px ${highlight.radiusBottomRight}px ${highlight.radiusBottomLeft}px`:`${highlight.radius}px`:\"\";const itemsBeforeHeadings=useRef(0);const totalItems=useRef(0);const[activeIndex,setActiveIndex]=useState(0);const activeIndexRef=useRef(activeIndex);let documentHeightElement=null;if(typeof document!==\"undefined\"){// In the preview, body does not have the correct height.\n// This finds the first element with the actual height of the page.\nconst bodyChildren=document.body.children;for(let i=0;i<bodyChildren.length;i++){if(bodyChildren[i].tagName.toLowerCase()===\"main\"){documentHeightElement=bodyChildren[i].firstChild;break;}}// On the published site, body has the correct height.\nif(!documentHeightElement){documentHeightElement=document.body;}}useEffect(()=>{const headings=headingIds.map(id=>document.querySelector(`[id=\"${id}\"]`));const onScroll=()=>{let index=headings.findIndex(header=>(header===null||header===void 0?void 0:header.getBoundingClientRect().top)>100||0);if(window.scrollY<=0){// Top of page\nindex=0;}else if(Math.round(window.innerHeight+window.scrollY)>=documentHeightElement.offsetHeight){// Bottom of page\nindex=totalItems.current-1;}else if(index===-1){index=totalItems.current-1;}else if(index>0){index=index-1+itemsBeforeHeadings.current;}if(index!==activeIndexRef.current){const newIndex=index;setActiveIndex(newIndex);activeIndexRef.current=newIndex;}};window.addEventListener(\"scroll\",onScroll);return()=>{window.removeEventListener(\"scroll\",onScroll);};},[]);const headingTitles=[];const headingIds=[];const children=content.props&&(Array.isArray(content.props.children)?content.props.children:[content.props.children]);if(children&&children.length){for(const child of children){if(includedHeadings[child.type]==true){const text=getTextFromReactElement(child);let id=headingIdPrefix+text.toLowerCase().trim().replace(/[^a-z0-9\\s]/g,\"\").replace(/\\s+/g,\"-\").replace(/-+/g,\"-\");if(headingIds.includes(id)){for(let i=2;i<100;i++){if(!headingIds.includes(`${id}-${i}`)){id=`${id}-${i}`;break;}}}headingTitles.push(text);headingIds.push(id);}}}function onTopItemButtonPress(){if(linking){window.scrollTo({top:0,behavior:linking.scrollMode==\"smooth\"?\"smooth\":undefined});}}function onHeadingButtonPress(index){if(linking){const element=document.getElementById(headingIds[index]);if(element){element.scrollIntoView(linking.scrollMode==\"smooth\"?{behavior:\"smooth\"}:undefined);}else{window.location.hash=headingIds[index];}}}function onItemButtonPress(item){if(linking){window.location.href=item.link;}}const buttons=[];let index=0;// Top item\nif(topItem.length>0){buttons.push({text:topItem,onButtonPress:onTopItemButtonPress});// buttons.push(\n//     <ListItem\n//         {...props}\n//         key={index}\n//         index={index}\n//         buttonText={topItem}\n//         activeIndex={activeIndex}\n//         onButtonPress={onTopItemButtonPress}\n//     />\n// )\nindex++;itemsBeforeHeadings.current=1;}// for (const item of startItems) {\n//     buttons.push(\n//         <ListItem\n//             {...props}\n//             key={index}\n//             index={index}\n//             buttonText={item.name}\n//             activeIndex={activeIndex}\n//             onButtonPress={() => onItemButtonPress(item)}\n//         />\n//     )\n//     index++\n// }\nfor(let i=0;i<headingTitles.length;i++){buttons.push({text:headingTitles[i],onButtonPress:()=>onHeadingButtonPress(i)});// buttons.push(\n//     <ListItem\n//         {...props}\n//         key={index}\n//         index={index}\n//         buttonText={headingTitles[i]}\n//         activeIndex={activeIndex}\n//         onButtonPress={() => onHeadingButtonPress(i)}\n//     />\n// )\nindex++;}// for (const item of endItems) {\n//     buttons.push(\n//         <ListItem\n//             {...props}\n//             key={index}\n//             index={index}\n//             buttonText={item.name}\n//             activeIndex={activeIndex}\n//             onButtonPress={() => onItemButtonPress(item)}\n//         />\n//     )\n//     index++\n// }\ntotalItems.current=index;return /*#__PURE__*/_jsxs(\"div\",{style:{// display: \"flex\",\n// flexDirection: \"column\",\ndisplay:\"grid\",gridTemplateColumns:labels?labels.position==\"left\"?\"max-content auto\":\"auto max-content\":\"100%\",rowGap:0,columnGap:labels===null||labels===void 0?void 0:labels.gap,userSelect:props.textSelect?\"auto\":\"none\",...props.font,...props.style},children:[/*#__PURE__*/_jsx(\"style\",{children:`html { scroll-padding-top: ${linking.scrollOffset}px; }`}),/*#__PURE__*/_jsx(LayoutGroup,{id:uniqueLayoutId,children:buttons.map((value,index)=>/*#__PURE__*/_jsxs(motion.div,{onClick:value.onButtonPress,animate:{color:index==activeIndex?fontColor.current:fontColor.default},whileHover:{color:index==activeIndex?fontColor.currentHover:fontColor.defaultHover},style:{position:\"relative\",display:\"grid\",gridTemplateColumns:\"subgrid\",alignItems:\"top\",gridColumn:labels?\"span 2\":undefined,// display: \"flex\",\n    // flexDirection:\n    //     labels?.position == \"right\"\n    //         ? \"row-reverse\"\n    //         : \"row\",\n    // gap: labels?.gap,\n    padding:`${index==0?pt:gap/2}px ${pr}px ${index==totalItems.current-1?pb:gap/2}px ${pl}px`,cursor:linking?\"pointer\":undefined},initial:false,transition:props.transition,children:[index==activeIndex&&highlight&&/*#__PURE__*/_jsxs(motion.div,{layoutId:\"highlight\",style:{position:\"absolute\",inset:0,top:index==0?0:-pt+gap/2,bottom:index==totalItems.current-1?0:-pb+gap/2},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundColor:highlight.fill,opacity:highlight.opacity,borderRadius:highlightRadius,boxShadow:highlightShadow&&`${highlightShadow.x}px ${highlightShadow.y}px ${highlightShadow.blur}px ${highlightShadow.spread}px ${highlightShadow.color}`,backdropFilter:highlight.bgBlur>0?`blur(${highlight.bgBlur}px)`:undefined,pointerEvents:\"none\"}}),highlightBorder&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderColor:highlightBorder.color,borderWidth:highlightBorder.widthIsMixed?`${highlightBorder.widthTop}px ${highlightBorder.widthRight}px ${highlightBorder.widthBottom}px ${highlightBorder.widthLeft}px`:`${highlightBorder.width}px`,borderStyle:highlightBorder.style,borderRadius:highlightRadius,pointerEvents:\"none\"}})]}),labels&&/*#__PURE__*/_jsx(ButtonLabel,{...labels,index:index}),/*#__PURE__*/_jsx(\"span\",{style:{position:\"relative\",flex:1,overflow:textMode==\"wrap\"?\"visible\":\"hidden\",overflowWrap:textMode==\"wrap\"?\"break-word\":\"none\",textOverflow:textMode==\"truncate\"?\"ellipsis\":\"none\",whiteSpace:textMode==\"truncate\"?\"nowrap\":\"none\"},children:value.text})]}))})]});}TableOfContents.displayName=\"Table of Contents\";function headingControl(title){return{type:ControlType.Boolean,defaultValue:true,title:title};}addPropertyControls(TableOfContents,{content:{type:\"richtext\"},headingIdPrefix:{type:ControlType.String,defaultValue:\"\",title:\"Heading ID Prefix\"},topItem:{type:ControlType.String,defaultValue:\"\"},includedHeadings:{type:ControlType.Object,buttonTitle:\"H1 - H6\",controls:{h1:headingControl(\"H1\"),h2:headingControl(\"H2\"),h3:headingControl(\"H3\"),h4:headingControl(\"H4\"),h5:headingControl(\"H5\"),h6:headingControl(\"H6\")},title:\"Headings\"},linking:{type:ControlType.Object,optional:true,defaultValue:{scrollMode:\"smooth\"},controls:{scrollMode:{type:ControlType.Enum,defaultValue:\"smooth\",options:[\"smooth\",\"instant\"],optionTitles:[\"Smooth\",\"Instant\"],displaySegmentedControl:true,title:\"Scroll\"},scrollOffset:{type:ControlType.Number,defaultValue:32,step:1,description:\"Distance from heading to top of screen to scroll to.\"}}},fontColor:{type:ControlType.Object,buttonTitle:\"Options\",controls:{current:{type:ControlType.Color,defaultValue:\"#0075FF\"},currentHover:{type:ControlType.Color,defaultValue:\"#0099FF\"},default:{type:ControlType.Color,defaultValue:\"#000000\"},defaultHover:{type:ControlType.Color,defaultValue:\"#000000\"},transition:{type:ControlType.Transition}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1}},textMode:{type:ControlType.Enum,defaultValue:\"wrap\",options:[\"wrap\",\"truncate\",\"clip\"],optionTitles:[\"Wrap\",\"Truncate\",\"Clip\"]},labels:{type:ControlType.Object,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"numbers\",options:[\"numbers\",\"letters\",\"romanNumerals\",\"character\"],optionTitles:[\"Numbers\",\"Letters\",\"Roman Numerals\",\"Character\"]},capitalized:{type:ControlType.Boolean,defaultValue:false,hidden:props=>props.type!=\"letters\"},prefix:{type:ControlType.String,defaultValue:\"\",hidden:props=>props.type==\"character\"},suffix:{type:ControlType.String,defaultValue:\".\",hidden:props=>props.type==\"character\"},character:{type:ControlType.String,defaultValue:\"\u2022\",hidden:props=>props.type!=\"character\"},gap:{type:ControlType.Number,defaultValue:4,min:0,step:1},position:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},alignment:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true}}},highlight:{type:ControlType.Object,defaultValue:{fill:\"rgba(0, 117, 255, 0.2)\",padding:10,radius:8},optional:true,buttonTitle:\"Styles\",controls:{fill:{type:ControlType.Color,optional:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01},padding:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadow:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.25)\"},x:{type:ControlType.Number,defaultValue:0,displayStepper:true},y:{type:ControlType.Number,defaultValue:2,displayStepper:true},blur:{type:ControlType.Number,defaultValue:4,displayStepper:true},spread:{type:ControlType.Number,defaultValue:0,displayStepper:true}}},bgBlur:{type:ControlType.Number,defaultValue:0,min:0,step:1,title:\"BG Blur\"},transition:{type:ControlType.Transition}}},gap:{type:ControlType.Number,defaultValue:20,min:0,step:1},textSelect:{type:ControlType.Boolean,defaultValue:false}});function ButtonLabel(props){const{type,index}=props;let prefixAndSuffix=true;let text=\"\";switch(type){case\"numbers\":text=String(index+1);break;case\"letters\":if(index<LETTERS.length){text=LETTERS[index];}else{text=LETTERS[Math.floor(index/LETTERS.length)]+LETTERS[index%LETTERS.length];}if(props.capitalized){text=text.toUpperCase();}break;case\"romanNumerals\":text=numberToRomanNumeral(index+1);break;case\"character\":text=props.character;prefixAndSuffix=false;break;}return /*#__PURE__*/_jsxs(\"span\",{style:{textAlign:props.alignment,order:props.position==\"right\"?1:0},children:[prefixAndSuffix&&props.prefix,text,prefixAndSuffix&&props.suffix]});}function getTextFromReactElement(element){if(typeof element==\"string\"){return element;}if(!element||!element.props){return\"\";}const{children}=element.props;if(typeof children===\"string\"){return children;}if(Array.isArray(children)){return children.map(getTextFromReactElement).join(\"\");}return\"\";}function numberToRomanNumeral(num){if(num<=0||num>=4e3){return\"Invalid input. Enter a number between 1 and 3999\";}const numValues=[1e3,900,500,400,100,90,50,40,10,9,5,4,1];const romanNumerals=[\"M\",\"CM\",\"D\",\"CD\",\"C\",\"XC\",\"L\",\"XL\",\"X\",\"IX\",\"V\",\"IV\",\"I\"];let romanStr=\"\";for(let i=0;i<numValues.length;i++){while(num>=numValues[i]){romanStr+=romanNumerals[i];num-=numValues[i];}}return romanStr;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContentsOld.map", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TableOfContents from\"https://framerusercontent.com/modules/D8jB7MULf1msm8h3QSP4/y3ddJg74tO5DojWmOEFY/TableOfContentsOld.js\";const TableOfContentsFonts=getFonts(TableOfContents);const serializationHash=\"framer-TQqoN\";const variantClassNames={y27Tx_tuN:\"framer-v-b6q3yu\"};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.create(React.Fragment);const getProps=({content,height,id,topItem,width,...props})=>{var _ref,_ref1;return{...props,ES3sp1NEO:(_ref=topItem!==null&&topItem!==void 0?topItem:props.ES3sp1NEO)!==null&&_ref!==void 0?_ref:\"Overview\",PVnDC2dIM:(_ref1=content!==null&&content!==void 0?content:props.PVnDC2dIM)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Content\"})})};};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,PVnDC2dIM,ES3sp1NEO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"y27Tx_tuN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-b6q3yu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"y27Tx_tuN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yy0nqb\",\"data-framer-name\":\"Left Border\",layoutDependency:layoutDependency,layoutId:\"l3mOrmIMX\",style:{backgroundColor:\"var(--token-97f68157-472a-4796-8531-2f5a443afb79, rgba(0, 0, 0, 0.08))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-577iv6-container\",layoutDependency:layoutDependency,layoutId:\"ylZi45e_Z-container\",children:/*#__PURE__*/_jsx(TableOfContents,{content:PVnDC2dIM,font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.2em\"},fontColor:{current:\"var(--token-5bac7344-ad25-4c41-8536-b4ad6ec1b7cc, rgb(214, 90, 1))\",currentHover:\"rgb(150, 71, 14)\",default:\"rgba(255, 255, 255, 0.6)\",defaultHover:\"rgb(227, 227, 227)\",transition:{damping:60,delay:0,mass:1,stiffness:700,type:\"spring\"}},gap:20,headingIdPrefix:\"\",height:\"100%\",highlight:{bgBlur:0,border:{color:\"var(--token-5bac7344-ad25-4c41-8536-b4ad6ec1b7cc, rgb(214, 90, 1))\",style:\"solid\",width:2,widthBottom:0,widthIsMixed:true,widthLeft:2,widthRight:0,widthTop:0},fill:\"rgba(214, 90, 1, 0.08)\",opacity:1,padding:16,paddingBottom:10,paddingIsMixed:true,paddingLeft:16,paddingRight:10,paddingTop:10,radius:0,radiusBottomLeft:0,radiusBottomRight:6,radiusIsMixed:true,radiusTopLeft:0,radiusTopRight:6,transition:{damping:60,delay:0,mass:1,stiffness:700,type:\"spring\"}},id:\"ylZi45e_Z\",includedHeadings:{h1:true,h2:true,h3:true,h4:true,h5:true,h6:true},layoutId:\"ylZi45e_Z\",linking:{scrollMode:\"smooth\",scrollOffset:80},style:{width:\"100%\"},textMode:\"clip\",textSelect:true,topItem:ES3sp1NEO,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TQqoN.framer-1ylm54v, .framer-TQqoN .framer-1ylm54v { display: block; }\",\".framer-TQqoN.framer-b6q3yu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 275px; }\",\".framer-TQqoN .framer-yy0nqb { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 1px; }\",\".framer-TQqoN .framer-577iv6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TQqoN.framer-b6q3yu { gap: 0px; } .framer-TQqoN.framer-b6q3yu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TQqoN.framer-b6q3yu > :first-child { margin-top: 0px; } .framer-TQqoN.framer-b6q3yu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PVnDC2dIM\":\"content\",\"ES3sp1NEO\":\"topItem\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerslnDM6xkV=withCSS(Component,css,\"framer-TQqoN\");export default FramerslnDM6xkV;FramerslnDM6xkV.displayName=\"Table of Contents\";FramerslnDM6xkV.defaultProps={height:39,width:275};addPropertyControls(FramerslnDM6xkV,{PVnDC2dIM:{defaultValue:\"<p>Content</p>\",title:\"Content\",type:ControlType.RichText},ES3sp1NEO:{defaultValue:\"Overview\",title:\"Top Item\",type:ControlType.String}});addFonts(FramerslnDM6xkV,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...TableOfContentsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerslnDM6xkV\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"PVnDC2dIM\\\":\\\"content\\\",\\\"ES3sp1NEO\\\":\\\"topItem\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"39\",\"framerIntrinsicWidth\":\"275\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./slnDM6xkV.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";// Made with love by Cl\u00E9ment. https://lionneclement.com/\n// Full tutorial: https://lionneclement.com/tutorial/how-to-create-table-of-contents-cms-collections-framer\n//UPDATE:\n//This is a modified version in collaboration with Tay Rush. https://twitter.com/taylorrushmore\n// https://www.youtube.com/@taylorrushmore/\nconst HEADING_TO_DISPLAY=[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"];const SCROLL_MARGIN_TOP=80;const useStore=createStore({headings:[]});export function withTableOfContent(Component){return props=>{const[store]=useStore();const[activeSection,setActiveSection]=useState(\"\");const scrollToId=id=>{const element=document.getElementById(id);if(element){element.scrollIntoView({behavior:\"smooth\"});}};useEffect(()=>{const handleScroll=()=>{const sections=store.headings.map(heading=>document.getElementById(heading.id));const scrollPosition=window.scrollY-160;for(let i=sections.length-1;i>=0;i--){if(sections[i].offsetTop<=scrollPosition){setActiveSection(store.headings[i].id);break;}}};window.addEventListener(\"scroll\",handleScroll);return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[store.headings]);return /*#__PURE__*/_jsx(_Fragment,{children:store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>/*#__PURE__*/_jsx(Component,{...props,variant:activeSection===id?`${type}-active`:type,title:heading,onClick:()=>scrollToId(id)})):/*#__PURE__*/_jsx(Component,{...props})});};}export function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children)});},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];props.children.props.children.length>0&&props.children.props.children.forEach((item,index)=>{const children=item.props.children;if([\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(item.type)){const{formattedId}=formatHeading(children,index);// Create a new object for the modified item\nconst newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});// Return a new props object with the modified children\nreturn{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text {\n                    scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}const formatTableOfContent=children=>{const result=[];children.length>0&&children.filter(({type})=>[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(type)).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);result.push({id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index});});return result;};const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{console.log(\"item\",item);if(typeof item===\"string\")return item.trim();if(item.type===\"br\")return\"\";return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.trim().toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\");return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_of_contents.map", "// Generated by Framer (e1a43d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"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/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/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-G2eoM .framer-styles-preset-12l0r7y:not(.rich-text-wrapper), .framer-G2eoM .framer-styles-preset-12l0r7y.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: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-G2eoM\";\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 (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Footer from\"#framer/local/canvasComponent/irGplZuPY/irGplZuPY.js\";import FloatingNavigation from\"#framer/local/canvasComponent/m8gFcLG5H/m8gFcLG5H.js\";import Navigation from\"#framer/local/canvasComponent/MT4QzMZP8/MT4QzMZP8.js\";import TableOfContents from\"#framer/local/canvasComponent/slnDM6xkV/slnDM6xkV.js\";import{withContent}from\"#framer/local/codeFile/lSUui58/Table_of_contents.js\";import Blogs from\"#framer/local/collection/o4ydB6s5F/o4ydB6s5F.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/AfxDUV_KZ/AfxDUV_KZ.js\";import*as sharedStyle9 from\"#framer/local/css/CVtdRv3Xo/CVtdRv3Xo.js\";import*as sharedStyle2 from\"#framer/local/css/DNha1yA0O/DNha1yA0O.js\";import*as sharedStyle7 from\"#framer/local/css/DoJOa4uJt/DoJOa4uJt.js\";import*as sharedStyle5 from\"#framer/local/css/f10hs48aR/f10hs48aR.js\";import*as sharedStyle8 from\"#framer/local/css/gp8HyKYis/gp8HyKYis.js\";import*as sharedStyle1 from\"#framer/local/css/jXAOpuJLp/jXAOpuJLp.js\";import*as sharedStyle11 from\"#framer/local/css/LajgaTsKk/LajgaTsKk.js\";import*as sharedStyle12 from\"#framer/local/css/Mf4HgKCcT/Mf4HgKCcT.js\";import*as sharedStyle3 from\"#framer/local/css/p70SIMjwy/p70SIMjwy.js\";import*as sharedStyle10 from\"#framer/local/css/T0AVbl1tr/T0AVbl1tr.js\";import*as sharedStyle from\"#framer/local/css/x1ZK3xvwW/x1ZK3xvwW.js\";import*as sharedStyle4 from\"#framer/local/css/YBXXfPwg7/YBXXfPwg7.js\";import metadataProvider from\"#framer/local/webPageMetadata/sUCS9lNN7/sUCS9lNN7.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithContentr3swb=withCodeBoundaryForOverrides(RichText,{nodeId:\"kv_OYEvjN\",override:withContent,scopeId:\"sUCS9lNN7\"});const TableOfContentsFonts=getFonts(TableOfContents);const FooterFonts=getFonts(Footer);const FloatingNavigationFonts=getFonts(FloatingNavigation);const breakpoints={C617QrBeJ:\"(max-width: 809px)\",cyPOIiI1V:\"(min-width: 1440px) and (max-width: 1919px)\",djeT36lqi:\"(min-width: 1920px)\",Inn997RRp:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sncEv\";const variantClassNames={C617QrBeJ:\"framer-v-jz07kn\",cyPOIiI1V:\"framer-v-ymh8ib\",djeT36lqi:\"framer-v-17gtjvb\",Inn997RRp:\"framer-v-1obl9c9\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"cyPOIiI1V\",Desktop:\"djeT36lqi\",Phone:\"C617QrBeJ\",Tablet:\"Inn997RRp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"djeT36lqi\"};};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:\"sUCS9lNN7\",data:Blogs,type:\"Collection\"},select:[{collection:\"sUCS9lNN7\",name:\"c8p_XENcd\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"mXFN34EyE\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"mUUy_ymsJ\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"woeqM76u1\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"Q5rQgb4qm\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"iZB9cnjpi\",type:\"Identifier\"},{collection:\"sUCS9lNN7\",name:\"yIVTppvyW\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"sUCS9lNN7\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,c8p_XENcd=getFromCurrentRouteData(\"c8p_XENcd\")??\"\",woeqM76u1=getFromCurrentRouteData(\"woeqM76u1\")??\"\",mUUy_ymsJ=getFromCurrentRouteData(\"mUUy_ymsJ\")??\"\",Q5rQgb4qm=getFromCurrentRouteData(\"Q5rQgb4qm\"),yIVTppvyW=getFromCurrentRouteData(\"yIVTppvyW\")??\"\",...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 isDisplayed=()=>{if(!isBrowser())return true;if([\"Inn997RRp\",\"C617QrBeJ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Inn997RRp\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"C617QrBeJ\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"djeT36lqi\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-17gtjvb\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e452tj-container hidden-1obl9c9 hidden-jz07kn\",layoutScroll:true,nodeId:\"HggHTCLFO\",scopeId:\"sUCS9lNN7\",children:/*#__PURE__*/_jsx(Navigation,{adk_mSXb5:\"GK4XKWjrY\",FbKKn1sVa:\"GK4XKWjrY\",height:\"100%\",id:\"HggHTCLFO\",layoutId:\"HggHTCLFO\",p4ktk1PB1:\"GK4XKWjrY\",style:{width:\"100%\"},variant:\"Yvc_88Mr1\",width:\"100%\",wtvf5_KQx:\"GK4XKWjrY\",y3B6C9iP3:\"GK4XKWjrY\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyzvpk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7155he\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30guez\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1237qm5\",\"data-styles-preset\":\"x1ZK3xvwW\",children:\"Rolls Royce Rental Miami: Ultimate 2025 Guide to Ghost & Phantom Rentals\"})}),className:\"framer-jhfn7o\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:c8p_XENcd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yii9vz\",\"data-styles-preset\":\"jXAOpuJLp\",style:{\"--framer-text-alignment\":\"center\"},children:\"  admin . November 22, 2023\"})}),className:\"framer-hqrfun\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:woeqM76u1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yii9vz\",\"data-styles-preset\":\"jXAOpuJLp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sound\"})}),className:\"framer-yeu9me\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],text:mUUy_ymsJ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C617QrBeJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+415.5),sizes:`min(967.68px, min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) * 0.99)`,...toResponsiveImage(Q5rQgb4qm)}},Inn997RRp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+415.5),sizes:`min(967.68px, min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) * 0.99)`,...toResponsiveImage(Q5rQgb4qm)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+0+415.5),...toResponsiveImage(Q5rQgb4qm)},className:\"framer-1qv2ccy\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\":componentPresets.props[\"b2zYp86mW\"]},children:/*#__PURE__*/_jsx(RichTextWithContentr3swb,{__fromCanvasComponent:true,children:yIVTppvyW,className:\"framer-r3swb\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1v6dsa2\",blockquote:\"framer-styles-preset-2ovn8y\",h1:\"framer-styles-preset-1xwikk\",h2:\"framer-styles-preset-1r4ikcf\",h3:\"framer-styles-preset-1hsuhcz\",h4:\"framer-styles-preset-fmp0e9\",h5:\"framer-styles-preset-erua1l\",h6:\"framer-styles-preset-wtwmng\",img:\"framer-styles-preset-1yqpjo8\",p:\"framer-styles-preset-12l0r7y\",table:\"framer-styles-preset-19xfb6l\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uugtb1 hidden-1obl9c9 hidden-jz07kn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Table of Conrtents\"})}),className:\"framer-1jov9mm\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:\"300px\",y:(componentViewport?.y||0)+0+0+150+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a8sp2q-container\",nodeId:\"jgGXDG9jN\",scopeId:\"sUCS9lNN7\",children:/*#__PURE__*/_jsx(TableOfContents,{ES3sp1NEO:c8p_XENcd,height:\"100%\",id:\"jgGXDG9jN\",layoutId:\"jgGXDG9jN\",PVnDC2dIM:yIVTppvyW,style:{width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C617QrBeJ:{y:(componentViewport?.y||0)+0+1351.5},Inn997RRp:{y:(componentViewport?.y||0)+0+1351.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:506,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1381.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oozgh9-container\",nodeId:\"nBwKb43AG\",scopeId:\"sUCS9lNN7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C617QrBeJ:{variant:\"CN9Ea3f9e\"},cyPOIiI1V:{variant:\"nbgU5fwB7\"},Inn997RRp:{variant:\"EdXDNMhnf\"}},children:/*#__PURE__*/_jsx(Footer,{HbSU7gEmE:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Copyright 2024, All Rights Reserved \",/*#__PURE__*/_jsx(Link,{href:\"http://gta6spot.com/\",motionChild:true,nodeId:\"nBwKb43AG\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"GTA 6 PC\"})})]})}),height:\"100%\",id:\"nBwKb43AG\",layoutId:\"nBwKb43AG\",style:{width:\"100%\"},variant:\"MEet4pxe0\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Inn997RRp:{height:61,y:931}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j6gixi-container hidden-17gtjvb hidden-ymh8ib hidden-jz07kn\",layoutScroll:true,nodeId:\"YQEywpRks\",scopeId:\"sUCS9lNN7\",children:/*#__PURE__*/_jsx(FloatingNavigation,{height:\"100%\",id:\"YQEywpRks\",layoutId:\"YQEywpRks\",style:{height:\"100%\"},variant:\"wdrgJLHYt\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C617QrBeJ:{height:61,y:931}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cdjuy4-container hidden-17gtjvb hidden-ymh8ib hidden-1obl9c9\",layoutScroll:true,nodeId:\"uXpWPNh5c\",scopeId:\"sUCS9lNN7\",children:/*#__PURE__*/_jsx(FloatingNavigation,{height:\"100%\",id:\"uXpWPNh5c\",layoutId:\"uXpWPNh5c\",style:{height:\"100%\"},variant:\"wdrgJLHYt\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g686ft hidden-17gtjvb hidden-ymh8ib hidden-jz07kn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16imjjj\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Inn997RRp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(10),pixelHeight:1115,pixelWidth:1890,positionX:\"center\",positionY:\"center\",sizes:\"72px\",src:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png\",srcSet:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png 1890w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1115,pixelWidth:1890,positionX:\"center\",positionY:\"center\",sizes:\"72px\",src:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png\",srcSet:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png 1890w\"},className:\"framer-1k7mejo\",\"data-framer-name\":\"Image\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11svzhq hidden-17gtjvb hidden-ymh8ib hidden-1obl9c9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1dqaz\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C617QrBeJ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(10),pixelHeight:1115,pixelWidth:1890,positionX:\"center\",positionY:\"center\",sizes:\"72px\",src:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png\",srcSet:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png 1890w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1115,pixelWidth:1890,positionX:\"center\",positionY:\"center\",sizes:\"72px\",src:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png\",srcSet:\"https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fWnCQVxATFh3VZRgs7rh1RxddQ.png 1890w\"},className:\"framer-197b8sm\",\"data-framer-name\":\"Image\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sncEv.framer-1iqg5ir, .framer-sncEv .framer-1iqg5ir { display: block; }\",\".framer-sncEv.framer-17gtjvb { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-sncEv .framer-e452tj-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-sncEv .framer-qyzvpk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sncEv .framer-7155he { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-sncEv .framer-30guez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sncEv .framer-jhfn7o, .framer-sncEv .framer-hqrfun, .framer-sncEv .framer-yeu9me { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sncEv .framer-1qv2ccy { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 60vh; max-width: 99%; position: relative; width: 968px; }\",\".framer-sncEv .framer-r3swb { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sncEv .framer-uugtb1 { 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: sticky; top: 150px; width: min-content; z-index: 1; }\",\".framer-sncEv .framer-1jov9mm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-sncEv .framer-a8sp2q-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-sncEv .framer-oozgh9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sncEv .framer-j6gixi-container, .framer-sncEv .framer-1cdjuy4-container { bottom: 8px; flex: none; height: 61px; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 4; }\",\".framer-sncEv .framer-1g686ft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-sncEv .framer-16imjjj, .framer-sncEv .framer-1p1dqaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 10px; position: relative; width: min-content; }\",\".framer-sncEv .framer-1k7mejo, .framer-sncEv .framer-197b8sm { aspect-ratio: 1.0285714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 72px; }\",\".framer-sncEv .framer-11svzhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 390px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sncEv.framer-17gtjvb, .framer-sncEv .framer-qyzvpk, .framer-sncEv .framer-7155he, .framer-sncEv .framer-30guez, .framer-sncEv .framer-uugtb1, .framer-sncEv .framer-1g686ft, .framer-sncEv .framer-16imjjj, .framer-sncEv .framer-11svzhq, .framer-sncEv .framer-1p1dqaz { gap: 0px; } .framer-sncEv.framer-17gtjvb > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sncEv.framer-17gtjvb > :first-child, .framer-sncEv .framer-7155he > :first-child, .framer-sncEv .framer-30guez > :first-child, .framer-sncEv .framer-uugtb1 > :first-child { margin-top: 0px; } .framer-sncEv.framer-17gtjvb > :last-child, .framer-sncEv .framer-7155he > :last-child, .framer-sncEv .framer-30guez > :last-child, .framer-sncEv .framer-uugtb1 > :last-child { margin-bottom: 0px; } .framer-sncEv .framer-qyzvpk > *, .framer-sncEv .framer-1g686ft > *, .framer-sncEv .framer-11svzhq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sncEv .framer-qyzvpk > :first-child, .framer-sncEv .framer-1g686ft > :first-child, .framer-sncEv .framer-16imjjj > :first-child, .framer-sncEv .framer-11svzhq > :first-child, .framer-sncEv .framer-1p1dqaz > :first-child { margin-left: 0px; } .framer-sncEv .framer-qyzvpk > :last-child, .framer-sncEv .framer-1g686ft > :last-child, .framer-sncEv .framer-16imjjj > :last-child, .framer-sncEv .framer-11svzhq > :last-child, .framer-sncEv .framer-1p1dqaz > :last-child { margin-right: 0px; } .framer-sncEv .framer-7155he > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sncEv .framer-30guez > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sncEv .framer-uugtb1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sncEv .framer-16imjjj > *, .framer-sncEv .framer-1p1dqaz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...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: 1440px) and (max-width: 1919px) { .framer-sncEv.framer-17gtjvb { width: 1440px; } .framer-sncEv .framer-7155he { max-width: 900px; }}\",\"@media (min-width: 810px) and (max-width: 1439px) { .framer-sncEv.framer-17gtjvb { width: 810px; } .framer-sncEv .framer-qyzvpk { padding: 120px 0px 0px 0px; }}\",\"@media (max-width: 809px) { .framer-sncEv.framer-17gtjvb { width: 390px; } .framer-sncEv .framer-qyzvpk { padding: 120px 0px 0px 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7677\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cyPOIiI1V\":{\"layout\":[\"fixed\",\"auto\"]},\"Inn997RRp\":{\"layout\":[\"fixed\",\"auto\"]},\"C617QrBeJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramersUCS9lNN7=withCSS(Component,css,\"framer-sncEv\");export default FramersUCS9lNN7;FramersUCS9lNN7.displayName=\"Cars Blog\";FramersUCS9lNN7.defaultProps={height:7677,width:1920};addFonts(FramersUCS9lNN7,[{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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]},...NavigationFonts,...TableOfContentsFonts,...FooterFonts,...FloatingNavigationFonts,...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?.[\"b2zYp86mW\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"b2zYp86mW\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersUCS9lNN7\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7677\",\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cyPOIiI1V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Inn997RRp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C617QrBeJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["LETTERS", "TableOfContents", "props", "content", "headingIdPrefix", "topItem", "includedHeadings", "linking", "fontColor", "textMode", "gap", "labels", "highlight", "pt", "pl", "pb", "pr", "uniqueLayoutId", "highlightBorder", "highlightShadow", "highlightRadius", "itemsBeforeHeadings", "pe", "totalItems", "activeIndex", "setActiveIndex", "ye", "activeIndexRef", "documentHeightElement", "bodyChildren", "i", "ue", "headings", "headingIds", "id", "onScroll", "index", "header", "window", "newIndex", "headingTitles", "children", "child", "text", "getTextFromReactElement", "onTopItemButtonPress", "onHeadingButtonPress", "element", "onItemButtonPress", "item", "buttons", "u", "p", "LayoutGroup", "value", "motion", "ButtonLabel", "headingControl", "title", "ControlType", "addPropertyControls", "type", "prefixAndSuffix", "numberToRomanNumeral", "num", "numValues", "romanNumerals", "romanStr", "TableOfContentsFonts", "getFonts", "TableOfContents", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "height", "id", "topItem", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PVnDC2dIM", "ES3sp1NEO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "TableOfContents", "css", "FramerslnDM6xkV", "withCSS", "slnDM6xkV_default", "addPropertyControls", "ControlType", "addFonts", "TableOfContentsFonts", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "SCROLL_MARGIN_TOP", "useStore", "createStore", "withContent", "Component", "props", "store", "setStore", "useStore", "newProps", "setNewProps", "ye", "ue", "formatTableOfContent", "newChildren", "item", "index", "children", "formattedId", "formatHeading", "newItem", "u", "l", "p", "SCROLL_MARGIN_TOP", "result", "type", "formattedHeading", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "MT4QzMZP8_default", "RichTextWithContentr3swb", "withCodeBoundaryForOverrides", "RichText2", "withContent", "TableOfContentsFonts", "slnDM6xkV_default", "FooterFonts", "irGplZuPY_default", "FloatingNavigationFonts", "m8gFcLG5H_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "o4ydB6s5F_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "c8p_XENcd", "woeqM76u1", "mUUy_ymsJ", "Q5rQgb4qm", "yIVTppvyW", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "Link", "css", "FramersUCS9lNN7", "withCSS", "sUCS9lNN7_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
