{"version":3,"file":"01LKPyfiw3PmKhFOKsaDS3QNmkDP2xHvIva3-V1rXGs.B42gGQf8.mjs","names":["props","useState","props","useState","startTransition","Phosphor","serializationHash","variantClassNames","React.useContext","React.useMemo","React.Fragment","getProps","props","Component","React.useRef","React.useId","sharedStyle.className","className","css","sharedStyle.css","sharedStyle.fonts","fonts","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","css","AccordionAccordion02","ButtonMore","PostCard","props","useRef","React.useId","Blog","Kategoriler","Yazar","metadata","React.useMemo","metadataProvider","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","className","React.Fragment","PropertyOverrides","Image","\"pSS_eIfPk\"","_Fragment","uhCYLxYXz_scdevS1V1oKwJgI_D4","v1Muuh_2V_fbmfbd9wwoKwJgI_D4","gwZo_ESNAoKwJgI_D4","idoKwJgI_D4","nl07aLyoaoKwJgI_D4","QWu5R4jMBoKwJgI_D4","tgDRAoXrQoKwJgI_D4","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","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts","sharedStyle4.fonts","sharedStyle5.fonts","sharedStyle6.fonts","sharedStyle7.fonts","sharedStyle8.fonts","sharedStyle9.fonts","sharedStyle10.fonts","sharedStyle11.fonts","sharedStyle12.fonts"],"sources":["https:/framerusercontent.com/modules/29lSvfonsrZYxK1aFt93/oEO0uwzji2U1IrcLbU1e/ScrollProgressBar.js","https:/framerusercontent.com/modules/BbhGFBRAgFjDwwP3cUal/RHqePQIE86Bx4zCQ5H9p/TableOfContents.js","https:/framerusercontent.com/modules/qTDV4Mbqj6Rjdy5H6Aai/hBhHuqFZaN5VDk0y12jf/xQyOOtLY8.js","https:/framerusercontent.com/modules/mn5r0WVaOmIprddZvitX/Z8hafnB25n36aSL9XHaz/componentPresets.js","https:/framerusercontent.com/modules/avYuXc9FWr9i6ssjAA0L/feES1iyTOqW4Oul0NsUN/chAlv8ilq.js","https:/framerusercontent.com/modules/xNks6BqUN3mKjh9LOEdw/M77XCkmav8JGgiHgriDK/NiSuejlQ2.js","https:/framerusercontent.com/modules/8WFZTtzE9QwTnzshjwb8/mPYkquvNwTwhvaPNTHLI/RqJD0axJa.js","https:/framerusercontent.com/modules/BCtRYu1EOAZPasIfFXmn/ywyKtHNTt1ovT3ySnOY0/RvJLuDX0l.js","https:/framerusercontent.com/modules/6rgO9n2Ia4xp1f714TOc/XwKuA3GsrR15KsvOpuvL/xClmsOaso.js","https:/framerusercontent.com/modules/snMU9OCPE1o7eLoz0NUv/cOU1IGQyfWQ6MaMhARp7/yYoxLgAwM.js","https:/framerusercontent.com/modules/5LrHMHVX1Ba1oGfmO4Ut/KNXouTLl8xDgaXSF3ij9/BNLrQk3_P.js"],"sourcesContent":["// Simple progress bar that fills as the user scrolls down the page\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,startTransition}from\"react\";import{addPropertyControls,ControlType,useIsStaticRenderer}from\"framer\";/**\n * Scroll Progress Bar\n *\n * @framerIntrinsicWidth 800\n * @framerIntrinsicHeight 8\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight fixed\n */export default function ScrollProgressBar(props){const{backgroundColor,progressColor,height,borderRadius}=props;const[scrollProgress,setScrollProgress]=useState(0);const isStatic=useIsStaticRenderer();useEffect(()=>{if(isStatic)return;const handleScroll=()=>{const windowHeight=window.innerHeight;const documentHeight=document.documentElement.scrollHeight;const scrollTop=window.scrollY;const totalScrollableHeight=documentHeight-windowHeight;const progress=totalScrollableHeight>0?scrollTop/totalScrollableHeight*100:0;startTransition(()=>{setScrollProgress(Math.min(100,Math.max(0,progress)));});};handleScroll();window.addEventListener(\"scroll\",handleScroll,{passive:true});return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[isStatic]);const displayProgress=isStatic?50:scrollProgress;// Check if height is controlled by Framer (fixed height)\nconst isFixedHeight=props?.style?.height===\"100%\";return /*#__PURE__*/_jsx(\"div\",{style:{...props.style,position:\"relative\",width:\"100%\",height:isFixedHeight?\"100%\":`${height}px`,backgroundColor,borderRadius:`${borderRadius}px`,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,height:\"100%\",width:`${displayProgress}%`,backgroundColor:progressColor,borderRadius:`${borderRadius}px`,transition:\"width 0.1s ease-out\"}})});}addPropertyControls(ScrollProgressBar,{backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"#EEEEEE\"},progressColor:{type:ControlType.Color,title:\"Progress Color\",defaultValue:\"#000000\"},height:{type:ControlType.Number,title:\"Height\",defaultValue:8,min:2,max:50,step:1,unit:\"px\"},borderRadius:{type:ControlType.Number,title:\"Radius\",defaultValue:4,min:0,max:25,step:1,unit:\"px\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollProgressBar\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"8\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollProgressBar.map","// Table of Contents component for blog CMS with automatic heading detection and smooth scrolling\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,startTransition}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * Table of Contents\n * \n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 400\n * \n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function TableOfContents(props){const{title,showNumbers,stickyPosition,backgroundColor,textColor,activeColor,hoverColor,titleFont,itemFont,borderRadius,padding,headingOffset,style}=props;const[tocItems,setTocItems]=useState([]);const[activeId,setActiveId]=useState(\"\");const[hoveredId,setHoveredId]=useState(\"\");const[isMobile,setIsMobile]=useState(false);useEffect(()=>{if(typeof window===\"undefined\")return;const checkMobile=()=>{startTransition(()=>setIsMobile(window.innerWidth<768));};checkMobile();window.addEventListener(\"resize\",checkMobile);return()=>window.removeEventListener(\"resize\",checkMobile);},[]);useEffect(()=>{if(typeof window===\"undefined\")return;const headings=document.querySelectorAll(\"h2\");const items=[];headings.forEach(heading=>{let id=heading.id;if(!id){id=heading.textContent?.toLowerCase().replace(/\\s+/g,\"-\")||\"\";heading.id=id;}items.push({id,text:heading.textContent||\"\",level:2});});startTransition(()=>setTocItems(items));const observer=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){startTransition(()=>setActiveId(entry.target.id));}});},{rootMargin:\"-20% 0px -80% 0px\"});headings.forEach(heading=>observer.observe(heading));return()=>observer.disconnect();},[]);const handleClick=id=>{if(typeof window===\"undefined\")return;const element=document.getElementById(id);if(element){const elementPosition=element.getBoundingClientRect().top+window.pageYOffset;const offsetPosition=elementPosition-headingOffset;window.scrollTo({top:offsetPosition,behavior:\"smooth\"});}};const getIndent=level=>{return 0;};const responsivePadding=isMobile?Math.max(padding*.7,12):padding;const responsiveMarginBottom=isMobile?12:16;const responsiveItemMargin=isMobile?6:8;return /*#__PURE__*/_jsxs(\"div\",{style:{...style,position:stickyPosition?\"sticky\":\"relative\",top:stickyPosition?isMobile?10:20:0,backgroundColor,borderRadius:isMobile?Math.max(borderRadius*.75,4):borderRadius,padding:responsivePadding,overflow:\"auto\",maxWidth:\"100%\",boxSizing:\"border-box\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{...titleFont,fontSize:isMobile&&titleFont.fontSize?`calc(${titleFont.fontSize} * 0.85)`:titleFont.fontSize,color:textColor,marginBottom:responsiveMarginBottom,wordWrap:\"break-word\",overflowWrap:\"break-word\"},children:title}),/*#__PURE__*/_jsx(\"nav\",{children:tocItems.length===0?/*#__PURE__*/_jsx(\"div\",{style:{...itemFont,fontSize:isMobile&&itemFont.fontSize?`calc(${itemFont.fontSize} * 0.9)`:itemFont.fontSize,color:textColor,opacity:.6,textAlign:\"center\",padding:isMobile?\"16px 0\":\"20px 0\",wordWrap:\"break-word\",overflowWrap:\"break-word\"},children:\"No headings found. Add H2 elements to your page to generate a table of contents.\"}):/*#__PURE__*/_jsx(\"ul\",{style:{listStyle:\"none\",margin:0,padding:0},children:tocItems.map((item,index)=>{const isActive=activeId===item.id;const isHovered=hoveredId===item.id;const itemNumber=showNumbers?`${index+1}. `:\"\";return /*#__PURE__*/_jsx(\"li\",{style:{marginBottom:responsiveItemMargin,paddingLeft:getIndent(item.level)},children:/*#__PURE__*/_jsxs(\"button\",{onClick:()=>handleClick(item.id),onMouseEnter:()=>startTransition(()=>setHoveredId(item.id)),onMouseLeave:()=>startTransition(()=>setHoveredId(\"\")),style:{...itemFont,fontSize:isMobile&&itemFont.fontSize?`calc(${itemFont.fontSize} * 0.9)`:itemFont.fontSize,background:\"none\",border:\"none\",padding:isMobile?\"6px 0\":\"4px 0\",cursor:\"pointer\",textAlign:\"left\",width:\"100%\",color:isActive?activeColor:isHovered?hoverColor:textColor,transition:\"color 0.2s ease\",fontWeight:isActive?600:400,wordWrap:\"break-word\",overflowWrap:\"break-word\",whiteSpace:\"normal\",display:\"block\"},children:[itemNumber,item.text]})},item.id);})})})]});}addPropertyControls(TableOfContents,{title:{type:ControlType.String,title:\"Title\",defaultValue:\"Table of Contents\"},showNumbers:{type:ControlType.Boolean,title:\"Show Numbers\",defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\"},stickyPosition:{type:ControlType.Boolean,title:\"Sticky\",defaultValue:true,enabledTitle:\"On\",disabledTitle:\"Off\"},headingOffset:{type:ControlType.Number,title:\"Heading Offset\",defaultValue:0,min:0,max:200,step:10,unit:\"px\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"#F5F5F5\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},activeColor:{type:ControlType.Color,title:\"Active Color\",defaultValue:\"#0099FF\"},hoverColor:{type:ControlType.Color,title:\"Hover Color\",defaultValue:\"#0066FF\"},titleFont:{type:ControlType.Font,title:\"Title Font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:\"22px\",variant:\"Semibold\",letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"}},itemFont:{type:ControlType.Font,title:\"Item Font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:\"15px\",variant:\"Medium\",letterSpacing:\"-0.01em\",lineHeight:\"1.3em\"}},borderRadius:{type:ControlType.Number,title:\"Radius\",defaultValue:8,min:0,max:32,step:1},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:20,min:0,max:40,step:4}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContents.map","// Generated by Framer (7f988a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kEraFRe5llIa8Ql1rbgx/usp6eDK0EvNU3Gow0g7f/ji3SewOMJ.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={CgbvHKL6w:{hover:true}};const cycleOrder=[\"CgbvHKL6w\"];const serializationHash=\"framer-HxQJE\";const variantClassNames={CgbvHKL6w:\"framer-v-vzyjtj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({buttonText,height,id,link,textVisible,width,...props})=>{return{...props,HOsUypgSz:buttonText??props.HOsUypgSz??\"Button\",SHCNCVAbO:link??props.SHCNCVAbO,zJIpqr68e:textVisible??props.zJIpqr68e??true};};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,HOsUypgSz,zJIpqr68e,SHCNCVAbO,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CgbvHKL6w\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:SHCNCVAbO,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-vzyjtj\",className,classNames)} framer-1fc3yrj`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"CgbvHKL6w\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"CgbvHKL6w-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pf3etm\",\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"fXUdpG5jh\",children:[zJIpqr68e&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-w6dgoz\",\"data-styles-preset\":\"ji3SewOMJ\",children:\"Button\"})}),className:\"framer-187adyp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BVPEQKcwG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HOsUypgSz,variants:{\"CgbvHKL6w-hover\":{\"--extracted-r6o4lv\":\"var(--token-8dea2b5e-99f3-457a-929e-3579f1d0a7bc, rgb(244, 121, 108))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CgbvHKL6w-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-w6dgoz\",\"data-styles-preset\":\"ji3SewOMJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8dea2b5e-99f3-457a-929e-3579f1d0a7bc, rgb(244, 121, 108)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gg86el-container\",layoutDependency:layoutDependency,layoutId:\"wKQsv2MVB-container\",style:{rotate:0},variants:{\"CgbvHKL6w-hover\":{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9b9aef8c-7602-4b62-920a-7eca51bbc557, rgb(24, 33, 45))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"wKQsv2MVB\",layoutId:\"wKQsv2MVB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"CgbvHKL6w-hover\":{color:\"var(--token-8dea2b5e-99f3-457a-929e-3579f1d0a7bc, rgb(244, 121, 108))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12n7gum\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"RbA4dAEiJ\",style:{backgroundColor:\"var(--token-9b9aef8c-7602-4b62-920a-7eca51bbc557, rgb(24, 33, 45))\"},variants:{\"CgbvHKL6w-hover\":{backgroundColor:\"var(--token-8dea2b5e-99f3-457a-929e-3579f1d0a7bc, rgb(244, 121, 108))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HxQJE.framer-1fc3yrj, .framer-HxQJE .framer-1fc3yrj { display: block; }\",\".framer-HxQJE.framer-vzyjtj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 2px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HxQJE .framer-1pf3etm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HxQJE .framer-187adyp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HxQJE .framer-1gg86el-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-HxQJE .framer-12n7gum { bottom: 0px; flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; width: 0%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HxQJE.framer-vzyjtj, .framer-HxQJE .framer-1pf3etm { gap: 0px; } .framer-HxQJE.framer-vzyjtj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HxQJE.framer-vzyjtj > :first-child { margin-top: 0px; } .framer-HxQJE.framer-vzyjtj > :last-child { margin-bottom: 0px; } .framer-HxQJE .framer-1pf3etm > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-HxQJE .framer-1pf3etm > :first-child { margin-left: 0px; } .framer-HxQJE .framer-1pf3etm > :last-child { margin-right: 0px; } }\",\".framer-HxQJE.framer-v-vzyjtj.hover .framer-12n7gum { width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 71\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pGf2LeSYz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"HOsUypgSz\":\"buttonText\",\"zJIpqr68e\":\"textVisible\",\"SHCNCVAbO\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxQyOOtLY8=withCSS(Component,css,\"framer-HxQJE\");export default FramerxQyOOtLY8;FramerxQyOOtLY8.displayName=\"Button/More\";FramerxQyOOtLY8.defaultProps={height:18,width:71};addPropertyControls(FramerxQyOOtLY8,{HOsUypgSz:{defaultValue:\"Button\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},zJIpqr68e:{defaultValue:true,title:\"Text Visible\",type:ControlType.Boolean},SHCNCVAbO:{title:\"Link\",type:ControlType.Link}});addFonts(FramerxQyOOtLY8,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxQyOOtLY8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"18\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"HOsUypgSz\\\":\\\"buttonText\\\",\\\"zJIpqr68e\\\":\\\"textVisible\\\",\\\"SHCNCVAbO\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"71\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pGf2LeSYz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (0c4579a)\nexport const props={pSS_eIfPk:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={pSS_eIfPk:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v6/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f7ce5cf)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-DvjpW .framer-styles-preset-14q6qre:not(.rich-text-wrapper), .framer-DvjpW .framer-styles-preset-14q6qre.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-416ce91a-9626-4669-b91c-788d9a2456cb, #1c2522); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-DvjpW .framer-styles-preset-14q6qre:not(.rich-text-wrapper), .framer-DvjpW .framer-styles-preset-14q6qre.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-416ce91a-9626-4669-b91c-788d9a2456cb, #1c2522); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-DvjpW .framer-styles-preset-14q6qre:not(.rich-text-wrapper), .framer-DvjpW .framer-styles-preset-14q6qre.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-416ce91a-9626-4669-b91c-788d9a2456cb, #1c2522); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-DvjpW\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (259a342)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-dMlKy .framer-styles-preset-pgnx9h { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; }\"];export const className=\"framer-dMlKy\";\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 (ce6e1ae)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{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\"}]}];export const css=['.framer-Y8Vrl .framer-styles-preset-1ulh18x:not(.rich-text-wrapper), .framer-Y8Vrl .framer-styles-preset-1ulh18x.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 16px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 1.8em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #999999; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 22px; position: relative; }','.framer-Y8Vrl .framer-styles-preset-1ulh18x:not(.rich-text-wrapper)::before, .framer-Y8Vrl .framer-styles-preset-1ulh18x.rich-text-wrapper blockquote::before { background-color: #ddd; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-Y8Vrl\";\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 (24e7187)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-QxunJ .framer-styles-preset-c6euvq:not(.rich-text-wrapper), .framer-QxunJ .framer-styles-preset-c6euvq.rich-text-wrapper a { --framer-link-text-color: var(--token-499f3d58-0854-43a6-bb65-923f40bf50e8, #00a5cf); --framer-link-text-decoration: underline; --framer-link-text-decoration-skip-ink: all; --framer-link-text-decoration-thickness: 1px; }\"];export const className=\"framer-QxunJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (c85c929)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v5/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-Qktqc .framer-styles-preset-1pzbukm:not(.rich-text-wrapper), .framer-Qktqc .framer-styles-preset-1pzbukm.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-Qktqc\";\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 (31ca47b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper), .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-color: var(--token-0cd01d2d-0f7a-41ab-b4d3-a7358cfc24ef, #000000); border-style: solid; border-top-left-radius: 8px; border-top-right-radius: 8px; border-width: 1px; overflow: hidden; }\",\".framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) th, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table th, .framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) td, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table td { background-color: var(--token-1dfa1457-fe59-4e73-b943-6d85c64d8992, #ffffff); padding: 8px; }\",\".framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) th, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table th { background-color: var(--token-624e8380-50b2-4d39-b180-341311d67e5b, #fafafa); }\",\".framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) tr + tr td, .framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) tr + tr th, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table tr + tr td, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table tr + tr th { border-top-color: var(--token-0cd01d2d-0f7a-41ab-b4d3-a7358cfc24ef, #000000); border-top-style: solid; border-top-width: 1px; }\",\".framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) td + td, .framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) th + th, .framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) td + th, .framer-QjPxm .framer-styles-preset-1vnhn70:not(.rich-text-wrapper) th + td, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table td + td, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table th + th, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table td + th, .framer-QjPxm .framer-styles-preset-1vnhn70.rich-text-wrapper table th + td { border-left-color: var(--token-0cd01d2d-0f7a-41ab-b4d3-a7358cfc24ef, #000000); border-left-style: solid; border-left-width: 1px; }\"];export const className=\"framer-QjPxm\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (98b71dc)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrollProgressBar from\"https://framerusercontent.com/modules/29lSvfonsrZYxK1aFt93/oEO0uwzji2U1IrcLbU1e/ScrollProgressBar.js\";import TableOfContents from\"https://framerusercontent.com/modules/BbhGFBRAgFjDwwP3cUal/RHqePQIE86Bx4zCQ5H9p/TableOfContents.js\";import ButtonMore from\"https://framerusercontent.com/modules/qTDV4Mbqj6Rjdy5H6Aai/hBhHuqFZaN5VDk0y12jf/xQyOOtLY8.js\";import PostCard from\"#framer/local/canvasComponent/cE7rv9743/cE7rv9743.js\";import AccordionAccordion02 from\"#framer/local/canvasComponent/pO2_wfWlr/pO2_wfWlr.js\";import{withBorderGradient}from\"#framer/local/codeFile/IKIUCsN/H2_Title.js\";import Blog from\"#framer/local/collection/Jbhrjq8PG/Jbhrjq8PG.js\";import Kategoriler from\"#framer/local/collection/oMWPjI4R0/oMWPjI4R0.js\";import Yazar from\"#framer/local/collection/WBT4c2pOM/WBT4c2pOM.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle7 from\"#framer/local/css/aeBhGjmkD/aeBhGjmkD.js\";import*as sharedStyle4 from\"#framer/local/css/chAlv8ilq/chAlv8ilq.js\";import*as sharedStyle2 from\"#framer/local/css/CmO1kx7Pk/CmO1kx7Pk.js\";import*as sharedStyle6 from\"#framer/local/css/Cr4zx49aZ/Cr4zx49aZ.js\";import*as sharedStyle1 from\"#framer/local/css/ESLzKWjon/ESLzKWjon.js\";import*as sharedStyle3 from\"#framer/local/css/f0DdXO_1t/f0DdXO_1t.js\";import*as sharedStyle12 from\"#framer/local/css/NiSuejlQ2/NiSuejlQ2.js\";import*as sharedStyle5 from\"#framer/local/css/PmjWM0Mjk/PmjWM0Mjk.js\";import*as sharedStyle9 from\"#framer/local/css/RqJD0axJa/RqJD0axJa.js\";import*as sharedStyle8 from\"#framer/local/css/RvJLuDX0l/RvJLuDX0l.js\";import*as sharedStyle11 from\"#framer/local/css/xClmsOaso/xClmsOaso.js\";import*as sharedStyle10 from\"#framer/local/css/yYoxLgAwM/yYoxLgAwM.js\";import*as sharedStyle from\"#framer/local/css/Z9ZXBjZrl/Z9ZXBjZrl.js\";import metadataProvider from\"#framer/local/webPageMetadata/BNLrQk3_P/BNLrQk3_P.js\";const ScrollProgressBarFonts=getFonts(ScrollProgressBar);const TableOfContentsFonts=getFonts(TableOfContents);const RichTextWithBorderGradientf8jlrv=withCodeBoundaryForOverrides(RichText,{nodeId:\"rNOHqRhPp\",override:withBorderGradient,scopeId:\"BNLrQk3_P\"});const AccordionAccordion02Fonts=getFonts(AccordionAccordion02);const ButtonMoreFonts=getFonts(ButtonMore);const PostCardFonts=getFonts(PostCard);const breakpoints={g9f7LCZox:\"(min-width: 810px) and (max-width: 1199.98px)\",KD2JPVwUY:\"(max-width: 809.98px)\",Qz1qc8Poo:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LDT3y\";const variantClassNames={g9f7LCZox:\"framer-v-lze3ow\",KD2JPVwUY:\"framer-v-x6j1od\",Qz1qc8Poo:\"framer-v-m9jpfe\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Qz1qc8Poo\",Phone:\"KD2JPVwUY\",Tablet:\"g9f7LCZox\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Qz1qc8Poo\"};};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:{constraint:{left:{collection:\"BNLrQk3_P\",name:\"uhCYLxYXz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uhCYLxYXz\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"BNLrQk3_P\",name:\"v1Muuh_2V\",type:\"Identifier\"},operator:\"==\",right:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"BNLrQk3_P\",data:Blog,type:\"Collection\"},right:{alias:\"v1Muuh_2V\",data:Kategoriler,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"uhCYLxYXz\",data:Yazar,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"BNLrQk3_P\",name:\"QIX1P84T6\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"gwZo_ESNA\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"IwqLBWvif\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"EXt0gaCK8\",type:\"Identifier\"},{alias:\"v1Muuh_2V.yBKsUhig_\",collection:\"v1Muuh_2V\",name:\"yBKsUhig_\",type:\"Identifier\"},{alias:\"v1Muuh_2V.V8DZaD87c\",collection:\"v1Muuh_2V\",name:\"V8DZaD87c\",type:\"Identifier\"},{alias:\"v1Muuh_2V\",collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},{alias:\"uhCYLxYXz.scdevS1V1\",collection:\"uhCYLxYXz\",name:\"scdevS1V1\",type:\"Identifier\"},{alias:\"uhCYLxYXz.wwpCI3S5K\",collection:\"uhCYLxYXz\",name:\"wwpCI3S5K\",type:\"Identifier\"},{alias:\"uhCYLxYXz.j4PE4FrVh\",collection:\"uhCYLxYXz\",name:\"j4PE4FrVh\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"cdLHyJ4Ge\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"QWu5R4jMB\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"zBoyMgX0f\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"QMrK7Q3Je\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"EguwE3up7\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"DXVUVJTAg\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"eIqX5Vnbz\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"IiNwZ1iMW\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"NWIe4FzfV\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"ZELXcBfZw\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"JypmveQOX\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"skWe7tKMb\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"UrAqqSJDO\",type:\"Identifier\"},{collection:\"BNLrQk3_P\",name:\"lPs1SdU6O\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"BNLrQk3_P\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,v1Muuh_2V_V8DZaD87c=getFromCurrentRouteData(\"v1Muuh_2V.V8DZaD87c\")??\"\",v1Muuh_2V_yBKsUhig_=getFromCurrentRouteData(\"v1Muuh_2V.yBKsUhig_\")??\"\",gwZo_ESNA=getFromCurrentRouteData(\"gwZo_ESNA\")??\"\",QWu5R4jMB=getFromCurrentRouteData(\"QWu5R4jMB\"),EXt0gaCK8=getFromCurrentRouteData(\"EXt0gaCK8\")??\"\",uhCYLxYXz_wwpCI3S5K=getFromCurrentRouteData(\"uhCYLxYXz.wwpCI3S5K\")??\"\",uhCYLxYXz_j4PE4FrVh=getFromCurrentRouteData(\"uhCYLxYXz.j4PE4FrVh\"),uhCYLxYXz_scdevS1V1=getFromCurrentRouteData(\"uhCYLxYXz.scdevS1V1\")??\"\",cdLHyJ4Ge=getFromCurrentRouteData(\"cdLHyJ4Ge\"),u_YVcWX3Tgmj4jk_om,zBoyMgX0f=getFromCurrentRouteData(\"zBoyMgX0f\")??\"\",QMrK7Q3Je=getFromCurrentRouteData(\"QMrK7Q3Je\")??\"\",EguwE3up7=getFromCurrentRouteData(\"EguwE3up7\")??\"\",DXVUVJTAg=getFromCurrentRouteData(\"DXVUVJTAg\")??\"\",eIqX5Vnbz=getFromCurrentRouteData(\"eIqX5Vnbz\")??\"\",IiNwZ1iMW=getFromCurrentRouteData(\"IiNwZ1iMW\")??\"\",NWIe4FzfV=getFromCurrentRouteData(\"NWIe4FzfV\")??\"\",ZELXcBfZw=getFromCurrentRouteData(\"ZELXcBfZw\")??\"\",JypmveQOX=getFromCurrentRouteData(\"JypmveQOX\")??\"\",skWe7tKMb=getFromCurrentRouteData(\"skWe7tKMb\")??\"\",UrAqqSJDO=getFromCurrentRouteData(\"UrAqqSJDO\")??\"\",lPs1SdU6O=getFromCurrentRouteData(\"lPs1SdU6O\")??\"\",QWu5R4jMBoKwJgI_D4,v1Muuh_2V_fbmfbd9wwoKwJgI_D4,tgDRAoXrQoKwJgI_D4,gwZo_ESNAoKwJgI_D4,uhCYLxYXz_scdevS1V1oKwJgI_D4,nl07aLyoaoKwJgI_D4,idoKwJgI_D4,v1Muuh_2V=getFromCurrentRouteData(\"v1Muuh_2V\"),IwqLBWvif=getFromCurrentRouteData(\"IwqLBWvif\")??\"\",QIX1P84T6=getFromCurrentRouteData(\"QIX1P84T6\")??\"\",...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({EXt0gaCK8,IwqLBWvif,QIX1P84T6,QWu5R4jMB},activeLocale),[IwqLBWvif,QWu5R4jMB,EXt0gaCK8,QIX1P84T6,activeLocale]);useMetadata(metadata);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 activeLocaleCode=useLocaleCode();const textContent=toDateString(cdLHyJ4Ge,activeLocaleCode);const visible=isSet(EguwE3up7);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Qz1qc8Poo\",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-m9jpfe\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mp6x8x\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t02xn5-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iHEOkJcT4\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(ScrollProgressBar,{backgroundColor:\"rgba(0, 165, 207, 0.1)\",borderRadius:0,height:\"100%\",id:\"iHEOkJcT4\",layoutId:\"iHEOkJcT4\",progressColor:\"var(--token-499f3d58-0854-43a6-bb65-923f40bf50e8, rgb(0, 165, 207))\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"nav\",{className:\"framer-1sc7zjk\",\"data-framer-name\":\"<nav> element\",children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-40ueyw\",\"data-framer-name\":\"<ul>\",children:[/*#__PURE__*/_jsxs(\"li\",{className:\"framer-1evejc5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(106, 113, 128)\"},children:\"Anasayfa\"})}),className:\"framer-11nv0e1\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(106, 113, 128)\"},children:\">\"})}),className:\"framer-1tboeyj\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdNekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 300',\"--framer-text-color\":\"rgb(106, 113, 128)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},motionChild:true,nodeId:\"yEzFpbPmj\",openInNewTab:false,relValues:[],scopeId:\"BNLrQk3_P\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xn6d6k\",\"data-styles-preset\":\"Z9ZXBjZrl\",children:\"ELEKTRONİK\"})})})}),className:\"framer-140zjc7\",\"data-framer-name\":\"Blog\",fonts:[\"Inter-Variable\"],text:v1Muuh_2V_yBKsUhig_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(106, 113, 128)\"},children:\">\"})}),className:\"framer-btqo19\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"li\",{className:\"framer-vkh7o1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(0, 81, 255)\"},children:\"Mersenne Minds\"})}),className:\"framer-1w1jym5\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter-Light\"],text:gwZo_ESNA,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uyt7th\",\"data-framer-name\":\"<main> element\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4ofas\",\"data-framer-name\":\"<article>\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvgqb\",\"data-framer-name\":\"<div>\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqll0p\",\"data-framer-name\":\"<section>\",children:[/*#__PURE__*/_jsx(\"figure\",{className:\"framer-15gw65s\",\"data-framer-name\":\"<figure>\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{background:{alt:\"En İyi \\xc7atal Bı\\xe7ak Kaşık Setleri\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+0+0+30.1+112),pixelHeight:1117,pixelWidth:1500,sizes:\"237px\",...toResponsiveImage(QWu5R4jMB),...{positionX:\"center\",positionY:\"center\"}}},KD2JPVwUY:{background:{alt:\"En İyi \\xc7atal Bı\\xe7ak Kaşık Setleri\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+109.2+0+0+0+0+0+12+0+63.5),pixelHeight:1117,pixelWidth:1500,sizes:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 24px, 1px)`,...toResponsiveImage(QWu5R4jMB),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"En İyi \\xc7atal Bı\\xe7ak Kaşık Setleri\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+122+0+0+0+0+0+46.1+61),pixelHeight:1117,pixelWidth:1500,sizes:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 3, 1px)`,...toResponsiveImage(QWu5R4jMB),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-f1t24z\",fitImageDimension:\"height\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155v544\",\"data-framer-name\":\"<div>\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-9nqk5n\",\"data-framer-name\":\"<header>\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"#000\"},children:\"En İyi Tablet Markaları\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"#000\"},children:\"En İyi Tablet Markaları\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\"},children:\"En İyi Tablet Markaları\"})}),className:\"framer-97wzjr\",\"data-framer-name\":\"<h1>\",fonts:[\"Inter-Medium\"],text:gwZo_ESNA,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(95, 99, 104)\"},children:\"En iyi tabletleri ekran, işlemci, RAM, depolama ve pil gibi temel \\xf6zellikleriyle karşılaştırarak ihtiya\\xe7lara en uygun se\\xe7imi yapın.\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(95, 99, 104)\"},children:\"En iyi tabletleri ekran, işlemci, RAM, depolama ve pil gibi temel \\xf6zellikleriyle karşılaştırarak ihtiya\\xe7lara en uygun se\\xe7imi yapın.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(95, 99, 104)\"},children:\"En iyi tabletleri ekran, işlemci, RAM, depolama ve pil gibi temel \\xf6zellikleriyle karşılaştırarak ihtiya\\xe7lara en uygun se\\xe7imi yapın.\"})}),className:\"framer-w4zgyh\",\"data-framer-name\":\"<p>\",fonts:[\"Inter\"],text:EXt0gaCK8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-so2kb5\",\"data-framer-name\":\"<meta>\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njtpm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{href:{pathVariables:{wwpCI3S5K:uhCYLxYXz_wwpCI3S5K},webPageId:\"tl_T1qrS9\"},openInNewTab:false}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"OLugalzB0\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-n4plat framer-1gyx6su\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+0+0+20+40+0+205.2+0+0+0+0),pixelHeight:168,pixelWidth:290,sizes:\"50px\",...toResponsiveImage(uhCYLxYXz_j4PE4FrVh),...{positionX:\"center\",positionY:\"center\"}}},KD2JPVwUY:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+109.2+0+0+0+0+0+12+420+0+0+188.6+0+0+0+0),pixelHeight:168,pixelWidth:290,sizes:\"50px\",...toResponsiveImage(uhCYLxYXz_j4PE4FrVh),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+122+0+0+0+0+0+20+40+0+234+0+0+0+0),pixelHeight:168,pixelWidth:290,sizes:\"50px\",...toResponsiveImage(uhCYLxYXz_j4PE4FrVh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1i2bzxo\",fitImageDimension:\"height\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\"},children:\"Alper Aydın\"})}),className:\"framer-wdoe3w\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter-Medium\"],text:uhCYLxYXz_scdevS1V1,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"|\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"|\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"|\"})}),className:\"framer-wm8cbl\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"İ\\xe7erik Ekibi\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"İ\\xe7erik Ekibi\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"İ\\xe7erik Ekibi\"})}),className:\"framer-142mhdz\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fd3fxy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\"},children:\"Son G\\xfcncelleme: \"})}),className:\"framer-183utyi\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"Content\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Content\"})}),className:\"framer-1pv7p55\",\"data-framer-name\":\"<time>\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivr17d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\"},children:\"Okuma S\\xfcresi: \"})}),className:\"framer-17vg27u\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"8 dk\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"#666\"},children:\"8 dk\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"8 dk\"})}),className:\"framer-ekv5uv\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter\"],text:u_YVcWX3Tgmj4jk_om,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5vzijm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgz2dp\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},motionChild:true,nodeId:\"HTO_UU2lo\",openInNewTab:false,relValues:[],scopeId:\"BNLrQk3_P\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xn6d6k\",\"data-styles-preset\":\"Z9ZXBjZrl\",children:\"G\\xdcNCEL BİLGİLER\"})})})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},motionChild:true,nodeId:\"HTO_UU2lo\",openInNewTab:false,relValues:[],scopeId:\"BNLrQk3_P\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xn6d6k\",\"data-styles-preset\":\"Z9ZXBjZrl\",children:\"G\\xdcNCEL BİLGİLER\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-open-type-features\":\"'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},motionChild:true,nodeId:\"HTO_UU2lo\",openInNewTab:false,relValues:[],scopeId:\"BNLrQk3_P\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xn6d6k\",\"data-styles-preset\":\"Z9ZXBjZrl\",children:\"G\\xdcNCEL BİLGİLER\"})})})}),className:\"framer-1csqzlz\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter-Light\"],text:v1Muuh_2V_yBKsUhig_,verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7xijy\",\"data-framer-name\":\"<div>\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frbhn6\",\"data-framer-name\":\"<div>\",children:[/*#__PURE__*/_jsx(\"aside\",{className:\"framer-9e59lb\",\"data-framer-name\":\"<aside>\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ytnq1\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ag7mht-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"v_PC1PyHf\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(TableOfContents,{activeColor:\"var(--token-499f3d58-0854-43a6-bb65-923f40bf50e8, rgb(0, 165, 207))\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,headingOffset:80,height:\"100%\",hoverColor:\"rgb(0, 102, 255)\",id:\"v_PC1PyHf\",itemFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},layoutId:\"v_PC1PyHf\",padding:0,showNumbers:false,stickyPosition:true,style:{height:\"100%\",width:\"100%\"},textColor:\"rgb(95, 99, 104)\",title:\"İ\\xe7indekiler\",titleFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.01em\",lineHeight:\"1.2em\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-f2idc4\",\"data-framer-name\":\"<section>\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x6ncgs\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"pSS_eIfPk\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{fonts:[\"Inter\",\"Inter-Bold\"]},KD2JPVwUY:{fonts:[\"Inter\",\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zBoyMgX0f,className:\"framer-y0dev\",\"data-framer-name\":\"Mersenne Minds\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-c6euvq\",blockquote:\"framer-styles-preset-1ulh18x\",code:\"framer-styles-preset-1pzbukm\",h1:\"framer-styles-preset-pvyx2p\",h2:\"framer-styles-preset-x6lq9x\",h3:\"framer-styles-preset-11lq0l2\",h4:\"framer-styles-preset-14q6qre\",h5:\"framer-styles-preset-1ijbkcg\",h6:\"framer-styles-preset-18j5w3h\",img:\"framer-styles-preset-pgnx9h\",p:\"framer-styles-preset-k3jjm3\",table:\"framer-styles-preset-1vnhn70\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-x6lq9x\",\"data-styles-preset\":\"CmO1kx7Pk\",children:\"Steam İndirimleri Hakkında Sık\\xe7a Sorulan Sorular (SSS)\"})})},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-x6lq9x\",\"data-styles-preset\":\"CmO1kx7Pk\",children:\"Steam İndirimleri Hakkında Sık\\xe7a Sorulan Sorular (SSS)\"})})}},children:/*#__PURE__*/_jsx(RichTextWithBorderGradientf8jlrv,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-x6lq9x\",\"data-styles-preset\":\"CmO1kx7Pk\",children:\"Steam İndirimleri Hakkında Sık\\xe7a Sorulan Sorular (SSS)\"})}),className:\"framer-f8jlrv\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],text:QMrK7Q3Je,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+108+0+0+0+470.2+0+40+0+0+602.7},KD2JPVwUY:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 20px, 1px)`,y:(componentViewport?.y||0)+0+109.2+0+0+0+777.6+0+0+500+0+0+602.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+122+0+0+0+502.2+0+40+0+0+602.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ixhis1-container\",nodeId:\"CHbKdujFm\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(AccordionAccordion02,{height:\"100%\",id:\"CHbKdujFm\",layoutId:\"CHbKdujFm\",style:{width:\"100%\"},T8rQFvSBR:DXVUVJTAg,variant:\"wxbxtQo6B\",W88zB8mIG:EguwE3up7,width:\"100%\",zhd8CrpW9:true})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+108+0+0+0+470.2+0+40+0+0+602.7},KD2JPVwUY:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 20px, 1px)`,y:(componentViewport?.y||0)+0+109.2+0+0+0+777.6+0+0+500+0+0+602.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+122+0+0+0+502.2+0+40+0+0+602.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1of0ue0-container\",nodeId:\"tuJ3d9sOY\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(AccordionAccordion02,{height:\"100%\",id:\"tuJ3d9sOY\",layoutId:\"tuJ3d9sOY\",style:{width:\"100%\"},T8rQFvSBR:IiNwZ1iMW,variant:\"Hvgeo3rtd\",W88zB8mIG:eIqX5Vnbz,width:\"100%\",zhd8CrpW9:true})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+108+0+0+0+470.2+0+40+0+0+602.7},KD2JPVwUY:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 20px, 1px)`,y:(componentViewport?.y||0)+0+109.2+0+0+0+777.6+0+0+500+0+0+602.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+122+0+0+0+502.2+0+40+0+0+602.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s6fapb-container\",nodeId:\"q8wvaWwEI\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(AccordionAccordion02,{height:\"100%\",id:\"q8wvaWwEI\",layoutId:\"q8wvaWwEI\",style:{width:\"100%\"},T8rQFvSBR:ZELXcBfZw,variant:\"Hvgeo3rtd\",W88zB8mIG:NWIe4FzfV,width:\"100%\",zhd8CrpW9:true})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+108+0+0+0+470.2+0+40+0+0+602.7},KD2JPVwUY:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 20px, 1px)`,y:(componentViewport?.y||0)+0+109.2+0+0+0+777.6+0+0+500+0+0+602.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+122+0+0+0+502.2+0+40+0+0+602.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-150dyq9-container\",nodeId:\"nnHHu2OgC\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(AccordionAccordion02,{height:\"100%\",id:\"nnHHu2OgC\",layoutId:\"nnHHu2OgC\",style:{width:\"100%\"},T8rQFvSBR:skWe7tKMb,variant:\"Hvgeo3rtd\",W88zB8mIG:JypmveQOX,width:\"100%\",zhd8CrpW9:true})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+108+0+0+0+470.2+0+40+0+0+602.7},KD2JPVwUY:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 20px, 1px)`,y:(componentViewport?.y||0)+0+109.2+0+0+0+777.6+0+0+500+0+0+602.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(max(min(${componentViewport?.width||\"100vw\"}, 1200px), 1px), 1200px) - 80px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+122+0+0+0+502.2+0+40+0+0+602.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mlzgb9-container\",nodeId:\"K7JnztxNE\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(AccordionAccordion02,{height:\"100%\",id:\"K7JnztxNE\",layoutId:\"K7JnztxNE\",style:{width:\"100%\"},T8rQFvSBR:lPs1SdU6O,variant:\"Hvgeo3rtd\",W88zB8mIG:UrAqqSJDO,width:\"100%\",zhd8CrpW9:true})})})})]})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vb7zj4\",\"data-framer-name\":\"Related Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l78k9d\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ml1hrr\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2n3wu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13scqk2\",\"data-styles-preset\":\"fhF0_xRqo\",children:\"Benzer Diğer Bloglar\"})}),fonts:[\"Inter\"]},KD2JPVwUY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13scqk2\",\"data-styles-preset\":\"fhF0_xRqo\",children:\"Benzer Diğer Bloglar\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"var(--token-0e827220-ed11-4594-8900-f3f9c6c1f9fb, rgb(24, 33, 45))\"},children:\"Benzer Diğer Bloglar\"})}),className:\"framer-1isg04a\",fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tpbghi\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},implicitPathVariables:undefined},{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},implicitPathVariables:undefined},{href:{pathVariables:{V8DZaD87c:v1Muuh_2V_V8DZaD87c},webPageId:\"f5i698ODT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{y:(componentViewport?.y||0)+0+1658.4+40+0+0+3.6},KD2JPVwUY:{y:(componentViewport?.y||0)+0+2427+30+0+0+3.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+1704.4+50+0+0+12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16z06su-container\",isModuleExternal:true,nodeId:\"qeGzuc8P2\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{SHCNCVAbO:resolvedLinks[1]},KD2JPVwUY:{SHCNCVAbO:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonMore,{height:\"100%\",HOsUypgSz:\"Hepsini G\\xf6r\",id:\"qeGzuc8P2\",layoutId:\"qeGzuc8P2\",SHCNCVAbO:resolvedLinks[0],width:\"100%\",zJIpqr68e:true})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pd3560\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{query:{from:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"uhCYLxYXz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uhCYLxYXz\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"v1Muuh_2V\",type:\"Identifier\"},operator:\"==\",right:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"oKwJgI_D4\",data:Blog,type:\"Collection\"},right:{alias:\"v1Muuh_2V\",data:Kategoriler,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"uhCYLxYXz\",data:Yazar,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"oKwJgI_D4\",name:\"QWu5R4jMB\",type:\"Identifier\"},{alias:\"v1Muuh_2V.fbmfbd9ww\",collection:\"v1Muuh_2V\",name:\"fbmfbd9ww\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"tgDRAoXrQ\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},{alias:\"uhCYLxYXz.scdevS1V1\",collection:\"uhCYLxYXz\",name:\"scdevS1V1\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"nl07aLyoa\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v1Muuh_2V},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gwZo_ESNA},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}}},KD2JPVwUY:{query:{from:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"uhCYLxYXz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uhCYLxYXz\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"v1Muuh_2V\",type:\"Identifier\"},operator:\"==\",right:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"oKwJgI_D4\",data:Blog,type:\"Collection\"},right:{alias:\"v1Muuh_2V\",data:Kategoriler,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"uhCYLxYXz\",data:Yazar,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"oKwJgI_D4\",name:\"QWu5R4jMB\",type:\"Identifier\"},{alias:\"v1Muuh_2V.fbmfbd9ww\",collection:\"v1Muuh_2V\",name:\"fbmfbd9ww\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"tgDRAoXrQ\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},{alias:\"uhCYLxYXz.scdevS1V1\",collection:\"uhCYLxYXz\",name:\"scdevS1V1\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"nl07aLyoa\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v1Muuh_2V},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gwZo_ESNA},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"uhCYLxYXz\",type:\"Identifier\"},operator:\"==\",right:{collection:\"uhCYLxYXz\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"oKwJgI_D4\",name:\"v1Muuh_2V\",type:\"Identifier\"},operator:\"==\",right:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"oKwJgI_D4\",data:Blog,type:\"Collection\"},right:{alias:\"v1Muuh_2V\",data:Kategoriler,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"uhCYLxYXz\",data:Yazar,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"oKwJgI_D4\",name:\"QWu5R4jMB\",type:\"Identifier\"},{alias:\"v1Muuh_2V.fbmfbd9ww\",collection:\"v1Muuh_2V\",name:\"fbmfbd9ww\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"tgDRAoXrQ\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},{alias:\"uhCYLxYXz.scdevS1V1\",collection:\"uhCYLxYXz\",name:\"scdevS1V1\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"nl07aLyoa\",type:\"Identifier\"},{collection:\"oKwJgI_D4\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"v1Muuh_2V\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:v1Muuh_2V},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"oKwJgI_D4\",name:\"gwZo_ESNA\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gwZo_ESNA},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({\"uhCYLxYXz.scdevS1V1\":uhCYLxYXz_scdevS1V1oKwJgI_D4,\"v1Muuh_2V.fbmfbd9ww\":v1Muuh_2V_fbmfbd9wwoKwJgI_D4,gwZo_ESNA:gwZo_ESNAoKwJgI_D4,id:idoKwJgI_D4,nl07aLyoa:nl07aLyoaoKwJgI_D4,QWu5R4jMB:QWu5R4jMBoKwJgI_D4,tgDRAoXrQ:tgDRAoXrQoKwJgI_D4},index)=>{v1Muuh_2V_fbmfbd9wwoKwJgI_D4??=\"\";tgDRAoXrQoKwJgI_D4??=\"\";gwZo_ESNAoKwJgI_D4??=\"\";uhCYLxYXz_scdevS1V1oKwJgI_D4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oKwJgI_D4-${idoKwJgI_D4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tgDRAoXrQ:tgDRAoXrQoKwJgI_D4},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tgDRAoXrQ:tgDRAoXrQoKwJgI_D4},webPageId:\"BNLrQk3_P\"},implicitPathVariables:undefined},{href:{pathVariables:{tgDRAoXrQ:tgDRAoXrQoKwJgI_D4},webPageId:\"BNLrQk3_P\"},implicitPathVariables:undefined},{href:{pathVariables:{tgDRAoXrQ:tgDRAoXrQoKwJgI_D4},webPageId:\"BNLrQk3_P\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 30px) / 2, 100px)`,y:(componentViewport?.y||0)+0+1658.4+40+0+55.2+0+0},KD2JPVwUY:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px), 100px)`,y:(componentViewport?.y||0)+0+2427+30+0+55.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 60px) / 3, 100px)`,y:(componentViewport?.y||0)+0+1704.4+50+0+72+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qlx23m-container\",nodeId:\"uSDpcANGB\",scopeId:\"BNLrQk3_P\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g9f7LCZox:{wdUpgt62X:resolvedLinks1[1]},KD2JPVwUY:{wdUpgt62X:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(PostCard,{CvyckQB7i:v1Muuh_2V_fbmfbd9wwoKwJgI_D4,height:\"100%\",id:\"uSDpcANGB\",layoutId:\"uSDpcANGB\",QYxMVJBqW:toResponsiveImage(QWu5R4jMBoKwJgI_D4),style:{width:\"100%\"},VLHZr6XIj:nl07aLyoaoKwJgI_D4,vwa9to5_g:uhCYLxYXz_scdevS1V1oKwJgI_D4,wdUpgt62X:resolvedLinks1[0],width:\"100%\",XPWLfGMo7:gwZo_ESNAoKwJgI_D4})})})})})})})},idoKwJgI_D4);})})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LDT3y.framer-1gyx6su, .framer-LDT3y .framer-1gyx6su { display: block; }\",\".framer-LDT3y.framer-m9jpfe { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-LDT3y .framer-mp6x8x { background-color: #ffffff; flex: none; height: 66px; overflow: hidden; position: relative; width: 100%; }\",\".framer-LDT3y .framer-t02xn5-container { aspect-ratio: 150 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); max-width: 1200px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-LDT3y .framer-1sc7zjk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-start; max-width: 1200px; overflow: var(--overflow-clip-fallback, clip); padding: 0px 0px 0px 20px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-40ueyw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; list-style: none; margin: 0px; padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-1evejc5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: min-content; }\",\".framer-LDT3y .framer-11nv0e1, .framer-LDT3y .framer-1tboeyj, .framer-LDT3y .framer-btqo19, .framer-LDT3y .framer-1w1jym5, .framer-LDT3y .framer-wdoe3w, .framer-LDT3y .framer-wm8cbl, .framer-LDT3y .framer-142mhdz, .framer-LDT3y .framer-183utyi, .framer-LDT3y .framer-1pv7p55, .framer-LDT3y .framer-17vg27u, .framer-LDT3y .framer-ekv5uv, .framer-LDT3y .framer-1isg04a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LDT3y .framer-140zjc7, .framer-LDT3y .framer-1csqzlz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LDT3y .framer-vkh7o1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-1uyt7th { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-o4ofas { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-kvgqb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-lqll0p { align-content: center; align-items: center; background-color: rgba(0, 165, 207, 0.1); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: var(--overflow-clip-fallback, clip); padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LDT3y .framer-15gw65s { align-content: center; align-items: center; aspect-ratio: 2.247191011235955 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 278px); justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-f1t24z { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-LDT3y .framer-155v544 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-9nqk5n, .framer-LDT3y .framer-1x6ncgs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-97wzjr, .framer-LDT3y .framer-w4zgyh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LDT3y .framer-so2kb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-njtpm, .framer-LDT3y .framer-5vzijm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-n4plat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 114px; }\",\".framer-LDT3y .framer-1i2bzxo { flex: none; height: auto; position: relative; width: 50px; }\",\".framer-LDT3y .framer-fd3fxy, .framer-LDT3y .framer-ivr17d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-1jgz2dp { --border-bottom-width: 1px; --border-color: var(--token-499f3d58-0854-43a6-bb65-923f40bf50e8, #00a5cf); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LDT3y .framer-1a7xijy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-frbhn6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 40px 20px 20px 20px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-9e59lb { align-content: center; align-items: center; aspect-ratio: 2.247191011235955 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 340px); justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 80px; width: 1px; z-index: 1; }\",\".framer-LDT3y .framer-12ytnq1 { --border-bottom-width: 1px; --border-color: rgba(0, 165, 207, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 12px 20px 12px; position: relative; width: 100%; z-index: 1; }\",\".framer-LDT3y .framer-1ag7mht-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-f2idc4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-y0dev { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LDT3y .framer-f8jlrv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LDT3y .framer-1ixhis1-container, .framer-LDT3y .framer-1of0ue0-container, .framer-LDT3y .framer-s6fapb-container, .framer-LDT3y .framer-150dyq9-container, .framer-LDT3y .framer-mlzgb9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-LDT3y .framer-vb7zj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-1l78k9d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LDT3y .framer-1ml1hrr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-d2n3wu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LDT3y .framer-1tpbghi { align-self: stretch; background-color: var(--token-8dea2b5e-99f3-457a-929e-3579f1d0a7bc, #f4796c); flex: none; height: 3px; overflow: hidden; position: relative; width: auto; }\",\".framer-LDT3y .framer-16z06su-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LDT3y .framer-pd3560 { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-LDT3y .framer-qlx23m-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,'.framer-LDT3y[data-border=\"true\"]::after, .framer-LDT3y [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: 1199.98px) { .framer-LDT3y.framer-m9jpfe { width: 810px; } .framer-LDT3y .framer-mp6x8x { height: 52px; } .framer-LDT3y .framer-t02xn5-container { height: var(--framer-aspect-ratio-supported, 5px); } .framer-LDT3y .framer-15gw65s { height: var(--framer-aspect-ratio-supported, 177px); } .framer-LDT3y .framer-f1t24z { flex: none; width: 237px; } .framer-LDT3y .framer-9nqk5n { gap: 20px; } .framer-LDT3y .framer-n4plat { text-decoration: none; } .framer-LDT3y .framer-vb7zj4 { padding: 40px 30px 40px 30px; } .framer-LDT3y .framer-pd3560 { grid-template-columns: repeat(2, minmax(100px, 1fr)); }}\",\"@media (max-width: 809.98px) { .framer-LDT3y.framer-m9jpfe { width: 390px; } .framer-LDT3y .framer-mp6x8x { height: 52px; } .framer-LDT3y .framer-t02xn5-container { height: var(--framer-aspect-ratio-supported, 3px); } .framer-LDT3y .framer-1sc7zjk { height: min-content; padding: 10px 0px 10px 10px; } .framer-LDT3y .framer-40ueyw { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; height: min-content; overflow: visible; } .framer-LDT3y .framer-1evejc5 { justify-content: flex-start; width: 100%; } .framer-LDT3y .framer-vkh7o1 { flex: none; justify-content: center; width: 100%; } .framer-LDT3y .framer-1w1jym5 { align-self: stretch; flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-LDT3y .framer-lqll0p { flex-direction: column; gap: 20px; padding: 12px; } .framer-LDT3y .framer-15gw65s { flex: none; height: var(--framer-aspect-ratio-supported, 250px); width: 100%; } .framer-LDT3y .framer-155v544 { flex: none; padding: 0px; width: 100%; } .framer-LDT3y .framer-9nqk5n { gap: 15px; } .framer-LDT3y .framer-frbhn6 { flex-direction: column; padding: 0px 10px 20px 10px; } .framer-LDT3y .framer-9e59lb { flex: none; position: relative; top: unset; width: 100%; } .framer-LDT3y .framer-f2idc4 { flex: none; width: 100%; } .framer-LDT3y .framer-vb7zj4 { padding: 30px 20px 30px 20px; } .framer-LDT3y .framer-pd3560 { grid-template-columns: repeat(1, minmax(100px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7101\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"g9f7LCZox\":{\"layout\":[\"fixed\",\"auto\"]},\"KD2JPVwUY\":{\"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 FramerBNLrQk3_P=withCSS(Component,css,\"framer-LDT3y\");export default FramerBNLrQk3_P;FramerBNLrQk3_P.displayName=\"Blog Detail\";FramerBNLrQk3_P.defaultProps={height:7101,width:1200};const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramerBNLrQk3_P,[{explicitInter:true,fonts:[{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/aqiiD4LUKkKzXdjGL5UzHq8bo5w.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Manrope\",source:\"fontshare\",style:\"normal\",uiFamilyName:\"Manrope\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]},...ScrollProgressBarFonts,...TableOfContentsFonts,...AccordionAccordion02Fonts,...ButtonMoreFonts,...PostCardFonts,...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?.[\"pSS_eIfPk\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"pSS_eIfPk\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBNLrQk3_P\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g9f7LCZox\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KD2JPVwUY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7101\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}