{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/Utils-WIyM.js", "ssg:https://framerusercontent.com/modules/C7nMybxiEoeS03fqxztN/miI0MwSuNDlAt0Bhq1CO/TableOfContentRTL.js", "ssg:https://framerusercontent.com/modules/FU5HUb5WIAt3qzvPPLnK/vKX2ljKla83MjovVbmCO/nmXq0Xo_2.js", "ssg:https://framerusercontent.com/modules/T4s0LNmOrJLMxM8FbQCc/960piflmlNzOYkcbd4uN/CGNxDmy_4.js"],
  "sourcesContent": ["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", "export const HEADINGS=[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"];const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{var _item_props;if(typeof item===\"string\")return item.trim();if(typeof((_item_props=item.props)===null||_item_props===void 0?void 0:_item_props.children)===\"string\")return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}else{formattedHeading=children.type;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.toLowerCase().replace(/[^a-z0-9]+/g,\"-\").replace(/^-+|-+$/g,\"\").trim();return{formattedId,formattedHeading};};export const formatTableOfContent=children=>{const result=[];children.length>0&&children.filter(({type})=>HEADINGS.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;};export const formatHeadings=props=>{const newChildren=[];props.children.props.children.forEach((item,index)=>{const children=item.props.children;if(HEADINGS.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}}};};\nexport const __FramerMetadata__ = {\"exports\":{\"formatTableOfContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HEADINGS\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"formatHeadings\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.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,useRef}from\"react\";import{HEADINGS,formatTableOfContent}from\"https://framer.com/m/Utils-WIyM.js\";// Made with love by Cl\u00E9ment: https://lionneclement.com/\n// Full tutorial: https://framermart.com/tutorial/how-to-create-table-of-contents-cms-collections-framer\n// const HEADING_TO_DISPLAY = [\"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\"]\nconst HEADING_TO_DISPLAY=[\"h2\"];const SCROLL_MARGIN_TOP=92;const useStore=createStore({headings:[]});//////////////////////// desktop RTL\n///////////////\nexport function withTableOfContentRTL(Component){return props=>{const[store]=useStore();const[activeId,setActiveId]=useState(null);const[visibleElements,setVisibleElements]=useState([]);const[showAll,setShowAll]=useState(false);const lastScrollPosition=useRef(0);useEffect(()=>{const sections=store.headings.map(({heading})=>{const id=slugify(heading)// Generate slugified ID\n;return document.getElementById(id);});const handleScroll=()=>{const currentScrollPosition=window.scrollY;const isScrollingDown=currentScrollPosition>lastScrollPosition.current;const updatedVisibleElements=[...visibleElements];let hasChanges=false;sections.forEach(section=>{if(!section)return;const{top,bottom}=section.getBoundingClientRect();if(top>=0&&bottom<=window.innerHeight){const index=updatedVisibleElements.findIndex(el=>el.id===section.id);// Add to list if not already present\nif(index===-1){if(isScrollingDown){// Add to bottom of list\nupdatedVisibleElements.push({id:section.id,top});}else{// Add to top of list\nupdatedVisibleElements.unshift({id:section.id,top});}hasChanges=true;}}else{// Remove from list if it's no longer visible\nconst index=updatedVisibleElements.findIndex(el=>el.id===section.id);if(index>-1){updatedVisibleElements.splice(index,1);hasChanges=true;}}});if(hasChanges){setVisibleElements(updatedVisibleElements);// Always highlight the top item\nif(updatedVisibleElements.length>0){setActiveId(updatedVisibleElements[0].id);}}lastScrollPosition.current=currentScrollPosition;};window.addEventListener(\"scroll\",handleScroll);// Initial state handling\nhandleScroll();return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[store.headings,visibleElements]);const sortedHeadings=store.headings.map(({heading,type,originalIndex})=>({id:slugify(heading),heading,type,originalIndex})).sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type));const displayedHeadings=showAll?sortedHeadings:sortedHeadings.slice(0,10);return /*#__PURE__*/_jsxs(_Fragment,{children:[store.headings.length>0&&typeof window!==\"undefined\"?/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"table-of-contents\",children:displayedHeadings.map(({id,heading,type})=>/*#__PURE__*/_jsx(\"a\",{href:`${window.location.pathname}#${id}`,className:id===activeId?\"active-link\":\"no-link\",children:heading}))}),sortedHeadings.length>10&&/*#__PURE__*/_jsx(\"button\",{onClick:()=>setShowAll(!showAll),className:\"view-more-btn\",children:showAll?\"View Less\":\"View More\"})]}):/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Component,{...props})}),/*#__PURE__*/_jsx(\"style\",{children:`\n\n            \n                    .active-link {\n                        font-weight: bold;\n                        color: rgb(0, 46, 93);\n                    }\n\n                    .no-link {\n                        color: rgb(82, 82, 91);\n                        font-weight: normal;\n                    }\n\n                    .active-link, .no-link {\n                        font-size:14px;\n                        margin-top:4px;\n                        margin-bottom:5px;\n                        text-decoration:none;\n                        transition: color 0.3s ease, font-weight 0.3s ease;\n                        font-family:\"Avenir LT Std 45 Book\", \"Avenir LT Std 45 Book Placeholder\", sans-serif;\n                        font-weight: 500;\n                         }\n                        .view-more-btn {\n                        background: none;\n                        border: none;\n                        color: rgb(0, 46, 93);\n                        font-weight: bold;\n                        cursor: pointer;\n                        margin-top: 10px;\n                        font-size: 16px;\n                        padding-left:0;\n                        marging-left:0;\n                        font-family:\"Avenir LT Std 45 Book\", \"Avenir LT Std 45 Book Placeholder\", sans-serif;\n                        font-weight: 500;\n                    }\n\n                    .table-of-contents {\n                        list-style: none;\n                        padding: 0;\n                        margin: 0;\n                        display: flex;\n                        flex-direction: column;\n                        text-align: end;\n                    }\n\n                    .toc-item {\n                        margin-bottom: 8px; /* Adjust spacing */\n                    }\n\n                    .toc-item a {\n                        text-decoration: none;\n                        color: black;\n                        font-size: 14px;\n                    }\n\n                    .active-link {\n                        font-weight: bold;\n                        color: rgb(0, 46, 93);\n                        }\n\n                        #tocparent{\n                        width:fit-content\n                    }\n\n                `})]});};}///////////////Mobile table of contents\nexport function withTableOfContentMobile(Component){return props=>{const[store]=useStore();const[activeId,setActiveId]=useState(null);const[visibleElements,setVisibleElements]=useState([]);const[showAll,setShowAll]=useState(false);const lastScrollPosition=useRef(0);useEffect(()=>{const sections=store.headings.map(({id})=>document.getElementById(id));const handleScroll=()=>{const currentScrollPosition=window.scrollY;const isScrollingDown=currentScrollPosition>lastScrollPosition.current;const updatedVisibleElements=[...visibleElements];let hasChanges=false;sections.forEach(section=>{if(!section)return;const{top,bottom}=section.getBoundingClientRect();if(top>=0&&bottom<=window.innerHeight){const index=updatedVisibleElements.findIndex(el=>el.id===section.id);// Add to list if not already present\nif(index===-1){if(isScrollingDown){// Add to bottom of list\nupdatedVisibleElements.push({id:section.id,top});}else{// Add to top of list\nupdatedVisibleElements.unshift({id:section.id,top});}hasChanges=true;}}else{// Remove from list if it's no longer visible\nconst index=updatedVisibleElements.findIndex(el=>el.id===section.id);if(index>-1){updatedVisibleElements.splice(index,1);hasChanges=true;}}});if(hasChanges){setVisibleElements(updatedVisibleElements);// Always highlight the top item\nif(updatedVisibleElements.length>0){setActiveId(updatedVisibleElements[0].id);}}lastScrollPosition.current=currentScrollPosition;};window.addEventListener(\"scroll\",handleScroll);// Initial state handling\nhandleScroll();return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[store.headings,visibleElements]);const sortedHeadings=store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type));const displayedHeadings=showAll?sortedHeadings:sortedHeadings;return /*#__PURE__*/_jsxs(_Fragment,{children:[store.headings.length>0&&typeof window!==\"undefined\"?/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"select\",{className:\"toc-dropdown\",onChange:e=>{if(e.target.value){window.location.href=e.target.value;}},children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",disabled:true,selected:true,children:\"\u0627\u0646\u062A\u0642\u0644 \u0625\u0644\u0649 \u0627\u0644\u0642\u0633\u0645\"}),displayedHeadings.map(({id,heading})=>/*#__PURE__*/_jsx(\"option\",{value:`${window.location.pathname}#${id}`,children:heading},id))]})}):/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Component,{...props})}),/*#__PURE__*/_jsx(\"style\",{children:`\n\n//                select{\n//                 border-top:none;\n//                 border-left:none;\n//                 border-right:none;\n//                 font-size:14px;\n//                 border-bottom: 1px solid rgb(0 46 93); \n//                 color:rgb(0 46 93);\n//                 background-color:#fff;\n//                 width: 100%;\n//                 padding: 10px 10px 10px 0;\n//                }\n\n//                option{\n//                   font-size:13px;\n//                }\n\n//                .toc-dropdown-wrapper {\n//     width: 100%;\n//     position: relative;\n// }\n\n                        .toc-dropdown {\n                        width: 100%;\n                        border-top: none;\n                        border-left: none;\n                        border-right: none;\n                        font-size: 14px;\n                        border-bottom: 1px solid rgb(0 46 93);\n                        color: rgb(0 46 93);\n                        background-color: #fff;\n                        padding: 10px 10px 10px 0;\n                        border-radius:0 0 !important;\n                        -webkit-border-radius: 0 !important;\n                        // appearance: none;  /* Removes default iOS dropdown styling */\n                        // -webkit-appearance: none;\n                        // -moz-appearance: none;\n                        display: block;\n                        font-family:\"Avenir LT Std 45 Book\", \"Avenir LT Std 45 Book Placeholder\", sans-serif;\n                        font-weight: 500;\n                        direction:rtl\n                    }\n\n                        /* Add a down arrow to the dropdown */\n                        .toc-dropdown-wrapper::after {\n                            content: \"\u25BC\";  /* Unicode down arrow */\n                            font-size: 12px;\n                            color: rgb(0 46 93);\n                            position: absolute;\n                            right: 10px;\n                            top: 50%;\n                            transform: translateY(-50%);\n                            pointer-events: none;\n                        }\n\n                        /* Fix for iPhone option text */\n                        option {\n                            font-size: 13px;\n                            background-color: white;\n                            color: rgb(0 46 93);\n                           font-family:\"Avenir LT Std 45 Book\", \"Avenir LT Std 45 Book Placeholder\", sans-serif;\n                           font-weight: 500;\n                        }\n                                            .active-link {\n                                                font-weight: bold;\n                                                color: rgb(0, 46, 93);\n                                            }\n\n                                            .no-link {\n                                                color: rgb(82, 82, 91);\n                                                font-weight: normal;\n                                            }\n\n                                            .active-link, .no-link {\n                                                font-size:14px;\n                                                margin-top:4px;\n                                                margin-bottom:5px;\n                                                text-decoration:none;\n                                                transition: color 0.3s ease, font-weight 0.3s ease;\n                                                }\n                                                .view-more-btn {\n                                                background: none;\n                                                border: none;\n                                                color: rgb(0, 46, 93);\n                                                font-weight: bold;\n                                                cursor: pointer;\n                                                margin-top: 10px;\n                                                font-size: 16px;\n                                                padding-left:0;\n                                                marging-left:0\n                                            }\n\n                        .table-of-contents {\n                            list-style: none;\n                            padding: 0;\n                            margin: 0;\n                                display: flex\n                        ;\n                            flex-direction: column;\n                        }\n\n                        .toc-item {\n                            margin-bottom: 8px; /* Adjust spacing */\n                        }\n\n                        .toc-item a {\n                            text-decoration: none;\n                            color: black;\n                            font-size: 14px;\n                        }\n\n                        .active-link {\n                            font-weight: bold;\n                            color: rgb(0, 46, 93);\n                        }\n\n                        #tocparent{\n                            width:fit-content\n                        }\n\n                `})]});};}// /////catch content use in Content RTL\nexport function withContentRTL(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children).map(heading=>({...heading,id:slugify(heading.heading)}))});},[newProps]);useEffect(()=>{setNewProps(customFormatHeadings(props))// Apply custom formatting with slugify\n;},[props]);const rtlStyle={direction:\"rtl\",textAlign:\"right\",justifyItems:\"end\"};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text {\n                    scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                }\n\n                ul.framer-text > li.framer-text::before,\n                ol.framer-text > li.framer-text::before {\n                    right: 0px;\n                }\n\n                ul.framer-text,\n                ol.framer-text {\n                    padding-right: 3ch;\n                }`}),/*#__PURE__*/_jsx(Component,{...newProps,style:rtlStyle})]});};}const customFormatHeadings=props=>{if(!props.children||!props.children.props||!props.children.props.children){return props// Return unchanged props if structure is not as expected\n;}const newChildren=props.children.props.children.map((item,index)=>{if(HEADINGS.includes(item.type)){const headingText=item.props.children||`heading-${index}`;const formattedId=slugify(headingText);return{...item,props:{...item.props,id:formattedId}};}return item;});return{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};function slugify(text){return text.toString().toLowerCase().replace(/\\s+/g,\"-\").replace(/[^\\w\\u0621-\\u064A0-9-]+/g,\"\").replace(/\\-\\-+/g,\"-\").replace(/^-+/,\"\").replace(/-+$/,\"\");}\nexport const __FramerMetadata__ = {\"exports\":{\"withContentRTL\":{\"type\":\"reactHoc\",\"name\":\"withContentRTL\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContentRTL\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContentRTL\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContentMobile\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContentMobile\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContentRTL.map", "// Generated by Framer (100f99d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Wix Madefor Display Regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Wix Madefor Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/q07YpPUBtyCeRkR9wOxWyLTtpCw.woff2\"},{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-INJfU .framer-styles-preset-gm7tda:not(.rich-text-wrapper), .framer-INJfU .framer-styles-preset-gm7tda.rich-text-wrapper p { --framer-font-family: \"Wix Madefor Display Regular\", \"Wix Madefor Display Regular 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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: right; --framer-text-color: var(--token-f1cd0f71-bfc4-4f69-9d47-782569a30db6, #1d1d1d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-INJfU\";\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 (7e0329e)\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,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavBarTemporaryAr from\"#framer/local/canvasComponent/honfcAKz9/honfcAKz9.js\";import BackButton from\"#framer/local/canvasComponent/lOC5bCI0U/lOC5bCI0U.js\";import FooterAR from\"#framer/local/canvasComponent/o3nYO0L9R/o3nYO0L9R.js\";import{withContentRTL}from\"#framer/local/codeFile/hLPoIx5/TableOfContentRTL.js\";import ArBlog from\"#framer/local/collection/JWyKxOisp/JWyKxOisp.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/ciKKOCo9Y/ciKKOCo9Y.js\";import*as sharedStyle from\"#framer/local/css/cq_Oal_SM/cq_Oal_SM.js\";import*as sharedStyle10 from\"#framer/local/css/FrrSM7BGY/FrrSM7BGY.js\";import*as sharedStyle6 from\"#framer/local/css/HcEBYX0tu/HcEBYX0tu.js\";import*as sharedStyle2 from\"#framer/local/css/J7YKNPpUE/J7YKNPpUE.js\";import*as sharedStyle7 from\"#framer/local/css/nmXq0Xo_2/nmXq0Xo_2.js\";import*as sharedStyle12 from\"#framer/local/css/NzTcRqb8n/NzTcRqb8n.js\";import*as sharedStyle9 from\"#framer/local/css/Tp4pEuMJd/Tp4pEuMJd.js\";import*as sharedStyle3 from\"#framer/local/css/v07WMk_co/v07WMk_co.js\";import*as sharedStyle8 from\"#framer/local/css/Vk5kPh4Hk/Vk5kPh4Hk.js\";import*as sharedStyle11 from\"#framer/local/css/vxBn8WV3R/vxBn8WV3R.js\";import*as sharedStyle1 from\"#framer/local/css/W2GB_n_U6/W2GB_n_U6.js\";import*as sharedStyle5 from\"#framer/local/css/zBakK_NR7/zBakK_NR7.js\";import metadataProvider from\"#framer/local/webPageMetadata/CGNxDmy_4/CGNxDmy_4.js\";const FooterARFonts=getFonts(FooterAR);const BackButtonFonts=getFonts(BackButton);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const RichTextWithContentRTL1hpitz5WithFX=withFX(withCodeBoundaryForOverrides(RichText,{nodeId:\"C6nTzGER9\",override:withContentRTL,scopeId:\"CGNxDmy_4\"}));const NavBarTemporaryArFonts=getFonts(NavBarTemporaryAr);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={FRGQatEC8:\"(min-width: 1200px) and (max-width: 1199px)\",k2tOScIH8:\"(min-width: 1200px)\",KI6Cj7PJT:\"(min-width: 810px) and (max-width: 1199px)\",YAiqiCC1G:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TGoDe\";const variantClassNames={FRGQatEC8:\"framer-v-1y3vu0g\",k2tOScIH8:\"framer-v-b51sb\",KI6Cj7PJT:\"framer-v-251re4\",YAiqiCC1G:\"framer-v-7v0k58\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition3={damping:60,delay:.1,mass:1,stiffness:300,type:\"spring\"};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"full\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,\"ar\");};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition4={damping:60,delay:.3,mass:1,stiffness:300,type:\"spring\"};const transition5={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition6={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-120};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\":\"FRGQatEC8\",Desktop:\"k2tOScIH8\",Mobile:\"YAiqiCC1G\",Tablet:\"KI6Cj7PJT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"k2tOScIH8\"};};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:\"CGNxDmy_4\",data:ArBlog,type:\"Collection\"},select:[{collection:\"CGNxDmy_4\",name:\"LToqQU58x\",type:\"Identifier\"},{collection:\"CGNxDmy_4\",name:\"tOFs_Oi9m\",type:\"Identifier\"},{collection:\"CGNxDmy_4\",name:\"GODV4zRI3\",type:\"Identifier\"},{collection:\"CGNxDmy_4\",name:\"Z1pbMuQBY\",type:\"Identifier\"},{collection:\"CGNxDmy_4\",name:\"ULJrTRt6o\",type:\"Identifier\"},{collection:\"CGNxDmy_4\",name:\"ftocbdtrD\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"CGNxDmy_4\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,LToqQU58x=getFromCurrentRouteData(\"LToqQU58x\")??\"\",tOFs_Oi9m=getFromCurrentRouteData(\"tOFs_Oi9m\"),ULJrTRt6o=getFromCurrentRouteData(\"ULJrTRt6o\"),ftocbdtrD=getFromCurrentRouteData(\"ftocbdtrD\")??\"\",previousItemIdizuVexSCn,previousItemId_lHIZbbcaDizuVexSCn,previousItemId_idFhA66s3izuVexSCn,nextItemIdizuVexSCn,nextItemId_lHIZbbcaDizuVexSCn,nextItemId_idFhA66s3izuVexSCn,...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 router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(tOFs_Oi9m,activeLocaleCode);const visible=isSet(previousItemIdizuVexSCn);const textContent1=prefix(previousItemId_idFhA66s3izuVexSCn,\"\u2039 \");const visible1=isSet(nextItemIdizuVexSCn);const textContent2=suffix(nextItemId_idFhA66s3izuVexSCn,\" \u203A\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"k2tOScIH8\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-b51sb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:\"100vw\",y:204,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozm6h5-container\",layoutScroll:true,nodeId:\"DociJCXyt\",scopeId:\"CGNxDmy_4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KI6Cj7PJT:{variant:\"sWn8pT_fx\"},YAiqiCC1G:{variant:\"mDaAkPuMT\"}},children:/*#__PURE__*/_jsx(FooterAR,{height:\"100%\",id:\"DociJCXyt\",layoutId:\"DociJCXyt\",style:{height:\"100%\",width:\"100%\"},variant:\"SCTu_tWEJ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dp4s6o\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uuqbZz4TS\"},implicitPathVariables:undefined},{href:{webPageId:\"uuqbZz4TS\"},implicitPathVariables:undefined},{href:{webPageId:\"uuqbZz4TS\"},implicitPathVariables:undefined},{href:{webPageId:\"uuqbZz4TS\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KI6Cj7PJT:{y:(componentViewport?.y||0)+0+0+110+0},YAiqiCC1G:{y:(componentViewport?.y||0)+0+0+110+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+130+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fz1nsq-container\",nodeId:\"cC0k4D5OL\",scopeId:\"CGNxDmy_4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FRGQatEC8:{Yzg8Qj_i4:resolvedLinks[1]},KI6Cj7PJT:{Yzg8Qj_i4:resolvedLinks[2]},YAiqiCC1G:{Yzg8Qj_i4:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(BackButton,{height:\"100%\",id:\"cC0k4D5OL\",layoutId:\"cC0k4D5OL\",USmzB8LId:\"\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u062F\u0648\u0646\u0629\",width:\"100%\",Yzg8Qj_i4:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-147d7d6\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0J1dGxlciBNZWRpdW0=\",\"--framer-font-family\":'\"Butler Medium\", \"Butler Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-bf10e5b9-dbc2-49d9-a7b1-b37356525443, rgb(0, 0, 0))\",\"--framer-text-transform\":\"capitalize\",direction:\"rtl\"},children:\"\u0646\u064A\u0634\u0646 \u062A\u0627\u0648\u0631\u0632 \u0645\u0648\u0644: \u062F\u0644\u064A\u0644\u0643 \u0627\u0644\u0634\u0627\u0645\u0644 \u0625\u0644\u0649 \u0645\u0631\u0643\u0632 \u0627\u0644\u0641\u062E\u0627\u0645\u0629 \u0641\u064A \u0623\u0628\u0648\u0638\u0628\u064A\"})}),className:\"framer-7s1v3x\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Butler Medium\"],text:LToqQU58x,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5xa88d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xjrk09\",\"data-styles-preset\":\"cq_Oal_SM\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-f1cd0f71-bfc4-4f69-9d47-782569a30db6, rgb(29, 29, 29))\"},children:\"Apr 15, 2025\"})}),className:\"framer-o32i3m\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KI6Cj7PJT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+295),sizes:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,...toResponsiveImage(ULJrTRt6o)}},YAiqiCC1G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+110+295),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ULJrTRt6o)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+295),sizes:`calc(${componentViewport?.width||\"100vw\"} - 560px)`,...toResponsiveImage(ULJrTRt6o)},className:\"framer-1xe84ba\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"w4tWVnMmD\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"RrTPmaI1Y\"]},children:/*#__PURE__*/_jsx(RichTextWithContentRTL1hpitz5WithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:ftocbdtrD,className:\"framer-1hpitz5\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-g7l9jz\",code:\"framer-styles-preset-1inaou6\",h1:\"framer-styles-preset-xrf5iq\",h2:\"framer-styles-preset-2f1t5g\",h3:\"framer-styles-preset-5miiam\",h4:\"framer-styles-preset-1mx7v5g\",h5:\"framer-styles-preset-od7t4i\",h6:\"framer-styles-preset-k51knv\",img:\"framer-styles-preset-t9k07x\",p:\"framer-styles-preset-gm7tda\",table:\"framer-styles-preset-pl1gyx\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18r8dle\",\"data-border\":true,children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xjrk09\",\"data-styles-preset\":\"cq_Oal_SM\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{lHIZbbcaD:previousItemId_lHIZbbcaDizuVexSCn},webPageId:\"izuVexSCn\"},motionChild:true,nodeId:\"B1j8UHw3y\",openInNewTab:false,scopeId:\"CGNxDmy_4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ybzk59\",\"data-styles-preset\":\"NzTcRqb8n\",children:\"\u2039 \"})})})}),className:\"framer-ou3mil\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d5cn2x\",\"data-framer-name\":\"Spacer\"}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xjrk09\",\"data-styles-preset\":\"cq_Oal_SM\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{lHIZbbcaD:nextItemId_lHIZbbcaDizuVexSCn},webPageId:\"izuVexSCn\"},motionChild:true,nodeId:\"mwi6UczZ2\",openInNewTab:false,scopeId:\"CGNxDmy_4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ybzk59\",\"data-styles-preset\":\"NzTcRqb8n\",children:\" \u203A\"})})})}),className:\"framer-1c9610z\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9k1kxw\",\"data-framer-name\":\"Footer Frame\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1f5x74m-container\",\"data-framer-appear-id\":\"1f5x74m\",initial:animation4,layoutScroll:true,nodeId:\"lmMcj44g3\",optimized:true,rendersWithMotion:true,scopeId:\"CGNxDmy_4\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KI6Cj7PJT:{variant:\"XIHatZaMR\"},YAiqiCC1G:{variant:\"XIHatZaMR\"}},children:/*#__PURE__*/_jsx(NavBarTemporaryAr,{height:\"100%\",id:\"lmMcj44g3\",layoutId:\"lmMcj44g3\",style:{width:\"100%\"},variant:\"Z6rcVpTAJ\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TGoDe.framer-rcb00h, .framer-TGoDe .framer-rcb00h { display: block; }\",\".framer-TGoDe.framer-b51sb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TGoDe .framer-1ozm6h5-container { bottom: -4px; flex: none; height: 800px; left: calc(50.00000000000002% - 100% / 2); position: fixed; width: 100%; z-index: 0; }\",\".framer-TGoDe .framer-1dp4s6o { align-content: flex-start; align-items: flex-start; background-color: var(--token-2d47582a-eefb-4646-be58-9b855f3e2de7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; padding: 130px 280px 110px 280px; position: relative; width: 100%; z-index: 2; }\",\".framer-TGoDe .framer-1fz1nsq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TGoDe .framer-147d7d6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-TGoDe .framer-7s1v3x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TGoDe .framer-5xa88d { align-content: center; align-items: center; background-color: var(--token-cc1348af-c580-403d-86b9-ac5ea98f0a52, #faf9f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 10px 20px 10px 20px; position: relative; width: 100%; }\",\".framer-TGoDe .framer-o32i3m, .framer-TGoDe .framer-ou3mil { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TGoDe .framer-1xe84ba { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-TGoDe .framer-1hpitz5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TGoDe .framer-18r8dle { --border-bottom-width: 0px; --border-color: rgba(29, 29, 29, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TGoDe .framer-d5cn2x { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TGoDe .framer-1c9610z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 309px; word-break: break-word; word-wrap: break-word; }\",\".framer-TGoDe .framer-9k1kxw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 800px; justify-content: flex-start; opacity: 0; overflow: hidden; padding: 200px 100px 40px 100px; pointer-events: none; position: relative; width: 100%; z-index: 3; }\",\".framer-TGoDe .framer-1f5x74m-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",...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,'.framer-TGoDe[data-border=\"true\"]::after, .framer-TGoDe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-TGoDe.framer-b51sb { width: 810px; } .framer-TGoDe .framer-1dp4s6o { padding: 110px 60px 80px 60px; }}\",\"@media (max-width: 809px) { .framer-TGoDe.framer-b51sb { width: 390px; } .framer-TGoDe .framer-1dp4s6o { padding: 110px 20px 60px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4230\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FRGQatEC8\":{\"layout\":[\"fixed\",\"auto\"]},\"KI6Cj7PJT\":{\"layout\":[\"fixed\",\"auto\"]},\"YAiqiCC1G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerCGNxDmy_4=withCSS(Component,css,\"framer-TGoDe\");export default FramerCGNxDmy_4;FramerCGNxDmy_4.displayName=\"Blogs AR\";FramerCGNxDmy_4.defaultProps={height:4230,width:1200};addFonts(FramerCGNxDmy_4,[{explicitInter:true,fonts:[{family:\"Butler Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/NazyFq6g81FuC2f5Vx1lZ9Z1nb0.woff2\"},{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\"}]},...FooterARFonts,...BackButtonFonts,...NavBarTemporaryArFonts,...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?.[\"w4tWVnMmD\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"w4tWVnMmD\"]):[],...componentPresets.fonts?.[\"RrTPmaI1Y\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"RrTPmaI1Y\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCGNxDmy_4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4230\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FRGQatEC8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KI6Cj7PJT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YAiqiCC1G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "HEADINGS", "formatHeading", "children", "index", "formattedHeading", "formattedId", "item", "_item_props", "formatTableOfContent", "result", "type", "SCROLL_MARGIN_TOP", "useStore", "createStore", "withContentRTL", "Component", "props", "store", "setStore", "useStore", "newProps", "setNewProps", "ye", "ue", "formatTableOfContent", "heading", "slugify", "customFormatHeadings", "rtlStyle", "u", "l", "p", "SCROLL_MARGIN_TOP", "newChildren", "item", "index", "HEADINGS", "headingText", "formattedId", "text", "fontStore", "fonts", "css", "className", "FooterARFonts", "getFonts", "o3nYO0L9R_default", "BackButtonFonts", "lOC5bCI0U_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "RichTextWithContentRTL1hpitz5WithFX", "withCodeBoundaryForOverrides", "withContentRTL", "NavBarTemporaryArFonts", "honfcAKz9_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "transition3", "sharedDateFormatter", "value", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "toResponsiveImage", "transition4", "transition5", "isSet", "prefix", "suffix", "transformTemplate1", "_", "t", "transition6", "animation3", "animation4", "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", "JWyKxOisp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "LToqQU58x", "tOFs_Oi9m", "ULJrTRt6o", "ftocbdtrD", "previousItemIdizuVexSCn", "previousItemId_lHIZbbcaDizuVexSCn", "previousItemId_idFhA66s3izuVexSCn", "nextItemIdizuVexSCn", "nextItemId_lHIZbbcaDizuVexSCn", "nextItemId_idFhA66s3izuVexSCn", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "textContent1", "visible1", "textContent2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "o3nYO0L9R_default", "ResolveLinks", "resolvedLinks", "lOC5bCI0U_default", "MotionDivWithFX", "RichTextWithFX", "x", "RichText", "getLoadingLazyAtYPosition", "ImageWithFX", "ComponentPresetsProvider", "RichTextWithContentRTL1hpitz5WithFX", "Link", "ContainerWithOptimizedAppearEffect", "honfcAKz9_default", "css", "FramerCGNxDmy_4", "withCSS", "CGNxDmy_4_default", "addFonts", "FooterARFonts", "BackButtonFonts", "NavBarTemporaryArFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
