{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6hw0RV7NcvdSbwpIhcLI/2LAtdGza943nPglcjbGI/Table_of_contents.js", "ssg:https://framerusercontent.com/modules/jdTsVUfnIMVOffzZZo1u/sjxji8wwQzZjJaYEV5rm/Scroll_Progress.js", "ssg:https://framerusercontent.com/modules/iwSNPVVqE8Qyx66OKzZG/W2iuUz7w1UhP2kctxdmJ/aVycRQwEN.js", "ssg:https://framerusercontent.com/modules/hCag1li9QyUS6wgk7CG1/EOJxd5pxF5vR18Cd65nL/hytIfEKt8.js", "ssg:https://framerusercontent.com/modules/hzIeJNcocIYbKdOrPLC3/9NJgvZcu2PK9v7ZRNY62/rI9JFVEXC.js", "ssg:https://framerusercontent.com/modules/gwqxrBKkVxhvLzqEdXdw/yUc0VRwqW0d2AMNSodXn/VbxNT6elc.js", "ssg:https://framerusercontent.com/modules/seu9SdoorVchdrtC2e1P/IRNLrNNR8v2m7gbzdtn5/componentPresets.js", "ssg:https://framerusercontent.com/modules/a982HjP0GiyxagySQiHm/pQfDb9n3GdTdj0We2Tg2/AH_bDpftL.js", "ssg:https://framerusercontent.com/modules/w1AouIy65jPJXghq8Rmd/ylVyFAiSAdTS5sRMRWUq/aH9DNr6Ra.js", "ssg:https://framerusercontent.com/modules/ceqLd0b8JPxltT4PFR7w/GcB6bLvOVQtGLdd2Jrep/cHKGNpBdp.js", "ssg:https://framerusercontent.com/modules/6P0ZfR3mLsWTJ5TdPc3k/tySQAvfB0ZZaDxhK9lYN/DdbNh79LR.js", "ssg:https://framerusercontent.com/modules/vXPCUMmo6ZYSkN8gnrJT/XQKg0CiXpSL3g8hTFcQB/guljqJ5U1.js", "ssg:https://framerusercontent.com/modules/oNUqTv0VHnHvZTY0nkBX/s69FHW2J8PO3EgZJzFV9/Ho71dDAeX.js", "ssg:https://framerusercontent.com/modules/lbvdGyZlFvbT6gHOGAP2/3c31HaiWQwvvjTAqRuAF/hR3W1aqUq.js", "ssg:https://framerusercontent.com/modules/neOtRUxsMdEDazVfUrsq/62q4ixjeIp88OmtUTOJb/HuArX1Or_.js", "ssg:https://framerusercontent.com/modules/iqoYdt08txSPb6KWoBiZ/BrSkOsBqidQYb0b2WAEp/JPsKM9rC1.js", "ssg:https://framerusercontent.com/modules/wLEC4wR92dVWf8v13yxU/pDSYhsuqdHBfTCLt3pTy/lWHLFdXDf.js", "ssg:https://framerusercontent.com/modules/fX2S5Rxo05HbFJp2gz2q/xcmZwdxgeMguy2VIY3zH/PI7HLS8uK.js", "ssg:https://framerusercontent.com/modules/lBEf2UWUlz4sp41noLI1/7eM38RucyeGuBIFpbnr4/pvYYYfjZD.js", "ssg:https://framerusercontent.com/modules/bMXZ1vGuUiMqBdKa9MCk/9m9V8q4x1MKKDyj40V7P/Q1v7LJqcC.js", "ssg:https://framerusercontent.com/modules/gskMAgmu2fZfaKolX4V2/hLzdm5OIsc2wOE3eCL7d/sp4j5emHL.js", "ssg:https://framerusercontent.com/modules/sdT4FO2C9fom9T70LTbX/iGDftB6hrFf8gOzIjP7u/Tq0lDlrtw.js", "ssg:https://framerusercontent.com/modules/kGt2X3LnglyO93oQqjlY/vYC5MymXsMF6XmAAO0w7/TUNZycc2c.js", "ssg:https://framerusercontent.com/modules/p9CJZ0jm2AKBq2oqSCPO/YGUBaXswMgRjlgWKTIVv/UnYGTLlJD.js", "ssg:https://framerusercontent.com/modules/fbDmDtcvfbdf98MJbBtl/sdO6rGkVUnkk95MawRSc/XdO8KO2Bl.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,motion}from\"framer\";const scrollToElement=(title,level,behavior,yOffset)=>{const elements=document.querySelectorAll(`${level}.framer-text`);const element=Array.from(elements).find(el=>{var _el_textContent;return((_el_textContent=el.textContent)===null||_el_textContent===void 0?void 0:_el_textContent.trim())===title;});if(element){const y=element.getBoundingClientRect().top+window.pageYOffset+yOffset;window.scrollTo({top:y,behavior});}};const useScrollSpy=(headings,yOffset)=>{const[activeTitle,setActiveTitle]=useState(null);useEffect(()=>{const handleScroll=()=>{let current=null;for(const heading of headings){const elements=document.querySelectorAll(`${heading.level}.framer-text`);const element=Array.from(elements).find(el=>{var _el_textContent;return((_el_textContent=el.textContent)===null||_el_textContent===void 0?void 0:_el_textContent.trim())===heading.title;});if(element){const top=element.getBoundingClientRect().top+window.pageYOffset+yOffset;if(window.scrollY>=top){current=heading.title;}else{break;}}}setActiveTitle(current);};window.addEventListener(\"scroll\",handleScroll);handleScroll();return()=>window.removeEventListener(\"scroll\",handleScroll);},[headings,yOffset]);return activeTitle;};// @framerDisableUnlink\nexport default function TableOfContents({items,font,color,autoFetchHeadings,containerStyle,smoothScroll,yOffset,highlightColor,showHighlight,padding}){const[headings,setHeadings]=useState([]);useEffect(()=>{if(autoFetchHeadings){const headingElements=document.querySelectorAll(\"h1.framer-text, h2.framer-text, h3.framer-text, h4.framer-text, h5.framer-text, h6.framer-text\");const fetchedHeadings=Array.from(headingElements).map(el=>{var _el_textContent;return{title:((_el_textContent=el.textContent)===null||_el_textContent===void 0?void 0:_el_textContent.trim())||\"\",level:el.tagName.toLowerCase()};});setHeadings(fetchedHeadings);}else{setHeadings(items);}},[autoFetchHeadings,items]);const activeTitle=useScrollSpy(headings,yOffset);const containerStyles=containerStyle[0]||{};const borderRadiusStyle=typeof containerStyles.borderRadius===\"number\"?`${containerStyles.borderRadius}px`:`${containerStyles.borderRadius.topLeft}px ${containerStyles.borderRadius.topRight}px ${containerStyles.bottomRight}px ${containerStyles.bottomLeft}px`;return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",backgroundColor:containerStyles.backgroundColor,border:`${containerStyles.border}px solid ${containerStyles.borderColor}`,borderRadius:borderRadiusStyle,padding:`${padding}px`},children:headings.map((item,index)=>/*#__PURE__*/_jsx(motion.div,{onClick:()=>{scrollToElement(item.title,item.level,smoothScroll?\"smooth\":\"auto\",yOffset);},initial:{backgroundColor:\"transparent\"},animate:{backgroundColor:showHighlight&&item.title===activeTitle?highlightColor:\"transparent\"},transition:{duration:.3},style:{cursor:\"pointer\",margin:\"5px 0\",padding:\"2px 5px\",fontFamily:font.fontFamily,fontSize:font.fontSize,fontWeight:font.fontWeight,lineHeight:font.lineHeight,letterSpacing:font.letterSpacing,color},children:item.title},index))});}TableOfContents.defaultProps={items:[{title:\"Section 1\",level:\"h3\"},{title:\"Section 2\",level:\"h3\"},{title:\"Section 3\",level:\"h3\"}],font:{fontFamily:\"Inter\",fontSize:16,fontWeight:400,lineHeight:\"1.5em\",letterSpacing:\"normal\"},color:\"#000\",autoFetchHeadings:false,containerStyle:[{backgroundColor:\"#fff\",border:1,borderRadius:8,borderColor:\"#ccc\"}],smoothScroll:true,yOffset:0,highlightColor:\"#f0f0f0\",showHighlight:true,padding:10};addPropertyControls(TableOfContents,{autoFetchHeadings:{type:ControlType.Boolean,title:\"Auto Fetch Headings\",defaultValue:true},items:{type:ControlType.Array,control:{type:ControlType.Object,controls:{title:{type:ControlType.String,title:\"Title\"},level:{type:ControlType.Enum,title:\"Heading Level\",options:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"H4\",\"H5\",\"H6\"]}}},title:\"Items\",defaultValue:[{title:\"Section 1\",level:\"h3\"},{title:\"Section 2\",level:\"h3\"},{title:\"Section 3\",level:\"h3\"}],hidden(props){return props.autoFetchHeadings===true;},description:\"For this to work correctly, you need to do the following: \\n\\n 1) Match the text up-to the heading within your content. \\n\\n 2) Match the heading style, with the heading in your content. \\n\\n We highly recommend using the auto setting.\"},font:{// @ts-ignore\ntype:ControlType.Font,controls:\"extended\",displayFontSize:true,displayTextAlignment:false,defaultFontType:\"monospace\",defaultValue:{fontFamily:\"Inter\",fontSize:16,fontWeight:400,lineHeight:\"1.5em\",letterSpacing:\"normal\"}},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000\"},containerStyle:{type:ControlType.Array,control:{type:ControlType.Object,controls:{backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#fff\"},border:{type:ControlType.Number,title:\"Border Width\",defaultValue:1,min:0,max:10},borderRadius:{type:ControlType.FusedNumber,title:\"Border Radius\",defaultValue:8,min:0,max:100,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"NW\",\"NE\",\"SE\",\"SW\"]},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#ccc\"}}},title:\"Container Style\",defaultValue:[{backgroundColor:\"#fff\",border:1,borderRadius:8,borderColor:\"#ccc\"}],maxCount:1},smoothScroll:{type:ControlType.Boolean,title:\"Smooth Scroll\",defaultValue:true},yOffset:{type:ControlType.Number,title:\"Y Offset\",defaultValue:0,min:-1e3,max:1e3,unit:\"px\"},showHighlight:{type:ControlType.Boolean,title:\"Show Highlight\",defaultValue:true},highlightColor:{type:ControlType.Color,title:\"Highlight Color\",defaultValue:\"#f0f0f0\",hidden(props){return props.showHighlight===false;}},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:10,min:0,max:50,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"top\",\"right\",\"bottom\",\"left\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Table_of_contents.map", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as n,useRef as o}from\"react\";export function withProgress(r){return s=>{let[d,l]=t(0),[i,c]=t(!1),m=o(0);return n(()=>{let e=()=>{let e=document.getElementById(\"start\"),t=document.getElementById(\"end\");if(e&&t){let n=t.offsetTop-e.offsetTop,o=window.pageYOffset||document.documentElement.scrollTop,r=o-e.offsetTop;l(r/n*100);}},t=()=>{let t=window.pageYOffset||document.documentElement.scrollTop;t!==m.current&&(m.current=t,e(),c(!0));},n=()=>{c(!1);};return e(),window.addEventListener(\"scroll\",t),window.addEventListener(\"scrollend\",n),()=>{window.removeEventListener(\"scroll\",t),window.removeEventListener(\"scrollend\",n);};},[]),/*#__PURE__*/e(r,{...s,style:{width:`${d}%`,transition:i?\"none\":\"width 0.5s ease-in-out\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withProgress\":{\"type\":\"reactHoc\",\"name\":\"withProgress\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scroll_Progress.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{family:\"Copyright Klim Type Foundry Buch\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}];export const css=['.framer-jrhZ6 .framer-styles-preset-m8cdf6:not(.rich-text-wrapper), .framer-jrhZ6 .framer-styles-preset-m8cdf6.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 2559px) and (min-width: 1680px) { .framer-jrhZ6 .framer-styles-preset-m8cdf6:not(.rich-text-wrapper), .framer-jrhZ6 .framer-styles-preset-m8cdf6.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1679px) and (min-width: 1440px) { .framer-jrhZ6 .framer-styles-preset-m8cdf6:not(.rich-text-wrapper), .framer-jrhZ6 .framer-styles-preset-m8cdf6.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-jrhZ6 .framer-styles-preset-m8cdf6:not(.rich-text-wrapper), .framer-jrhZ6 .framer-styles-preset-m8cdf6.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 0px) { .framer-jrhZ6 .framer-styles-preset-m8cdf6:not(.rich-text-wrapper), .framer-jrhZ6 .framer-styles-preset-m8cdf6.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.32px; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-jrhZ6\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/jANEAJ0nHo1tx79t51nl5qBvgyo.otf\"}];export const css=['.framer-hPkwA .framer-styles-preset-tr7684:not(.rich-text-wrapper), .framer-hPkwA .framer-styles-preset-tr7684.rich-text-wrapper p { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.48px; --framer-line-height: 28px; --framer-paragraph-spacing: 16px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-hPkwA\";\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 (cbb0119)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-lRsDJ\";const variantClassNames={PqqHgN6pE:\"framer-v-wd0pew\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,s4qtbZi49:image!==null&&image!==void 0?image:props.s4qtbZi49};};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,s4qtbZi49,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"PqqHgN6pE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(s4qtbZi49),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-wd0pew\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PqqHgN6pE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1356,intrinsicWidth:1849,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||300)-9.5),pixelHeight:1356,pixelWidth:1849,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/qHUagWREUII3fO0kgiFQLrms.png\",srcSet:\"https://framerusercontent.com/images/qHUagWREUII3fO0kgiFQLrms.png?scale-down-to=512 512w,https://framerusercontent.com/images/qHUagWREUII3fO0kgiFQLrms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qHUagWREUII3fO0kgiFQLrms.png 1849w\"},className:\"framer-1lxbel\",layoutDependency:layoutDependency,layoutId:\"rhwGxmsoX\",style:{rotate:-180}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lRsDJ.framer-1ojosct, .framer-lRsDJ .framer-1ojosct { display: block; }\",\".framer-lRsDJ.framer-wd0pew { height: 300px; position: relative; width: 399px; }\",\".framer-lRsDJ .framer-1lxbel { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 10px; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 16px 40px 0px 20px; position: absolute; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lRsDJ .framer-1lxbel { gap: 0px; } .framer-lRsDJ .framer-1lxbel > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lRsDJ .framer-1lxbel > :first-child { margin-left: 0px; } .framer-lRsDJ .framer-1lxbel > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 399\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"s4qtbZi49\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrI9JFVEXC=withCSS(Component,css,\"framer-lRsDJ\");export default FramerrI9JFVEXC;FramerrI9JFVEXC.displayName=\"blogImage Copy\";FramerrI9JFVEXC.defaultProps={height:300,width:399};addPropertyControls(FramerrI9JFVEXC,{s4qtbZi49:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerrI9JFVEXC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrI9JFVEXC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"s4qtbZi49\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"300\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"399\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rI9JFVEXC.map", "// Generated by Framer (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/iwSNPVVqE8Qyx66OKzZG/W2iuUz7w1UhP2kctxdmJ/aVycRQwEN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hCag1li9QyUS6wgk7CG1/EOJxd5pxF5vR18Cd65nL/hytIfEKt8.js\";import BlogImageCopy from\"https://framerusercontent.com/modules/hzIeJNcocIYbKdOrPLC3/9NJgvZcu2PK9v7ZRNY62/rI9JFVEXC.js\";const BlogImageCopyFonts=getFonts(BlogImageCopy);const cycleOrder=[\"QTMXgW7JQ\",\"kFfixhuiI\"];const serializationHash=\"framer-9cg2y\";const variantClassNames={kFfixhuiI:\"framer-v-13xz85p\",QTMXgW7JQ:\"framer-v-11abaph\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"kFfixhuiI\",\"XL/Right Border\":\"QTMXgW7JQ\"};const getProps=({date,height,id,image,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,fAkr8tdQG:link!==null&&link!==void 0?link:props.fAkr8tdQG,nlRAcDUII:(_ref=date!==null&&date!==void 0?date:props.nlRAcDUII)!==null&&_ref!==void 0?_ref:\"1970-01-01T00:00:00.000Z\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"QTMXgW7JQ\",XZn6MF1Tr:image!==null&&image!==void 0?image:props.XZn6MF1Tr,ZuRjrVn2f:(_ref2=title!==null&&title!==void 0?title:props.ZuRjrVn2f)!==null&&_ref2!==void 0?_ref2:\"How To Design An Effective User Onboarding Flow\"};};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,XZn6MF1Tr,ZuRjrVn2f,nlRAcDUII,fAkr8tdQG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QTMXgW7JQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(nlRAcDUII,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:fAkr8tdQG,nodeId:\"QTMXgW7JQ\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11abaph\",className,classNames)} framer-50u25j`,\"data-framer-name\":\"XL/Right Border\",layoutDependency:layoutDependency,layoutId:\"QTMXgW7JQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({kFfixhuiI:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h97v2v\",layoutDependency:layoutDependency,layoutId:\"dIhWZWeh4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211,width:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px) * 0.9968)`,...addPropertyOverrides({kFfixhuiI:{height:151}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-agpw5a-container\",layoutDependency:layoutDependency,layoutId:\"Mx7I0YmqC-container\",children:/*#__PURE__*/_jsx(BlogImageCopy,{height:\"100%\",id:\"Mx7I0YmqC\",layoutId:\"Mx7I0YmqC\",s4qtbZi49:toResponsiveImage(XZn6MF1Tr),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xejrtp\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"aIEjXBl7u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-m8cdf6\",\"data-styles-preset\":\"aVycRQwEN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Content\"})}),className:\"framer-1j326vm\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VkSAREkgr\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tr7684\",\"data-styles-preset\":\"hytIfEKt8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"How To Design An Effective User Onboarding Flow\"})}),className:\"framer-1xgwr5e\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"noLS4ENbu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:ZuRjrVn2f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pwpg5v\",layoutDependency:layoutDependency,layoutId:\"swfOGeZWO\",style:{backgroundColor:\"var(--token-caecc3d9-8a4f-4083-a28a-99d6db5071de, rgba(255, 255, 255, 0))\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wwvat1\",\"data-framer-name\":\"Vector 505\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ypPr8zi6P\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 1 7.892 L 1 9.935 L 12.948 9.935 L 7.568 15.58 L 8.965 17 L 17 8.792 L 8.965 1 L 7.568 2.593 L 12.948 7.892 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10073370308,withExternalLayout:true})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9cg2y.framer-50u25j, .framer-9cg2y .framer-50u25j { display: block; }\",\".framer-9cg2y.framer-11abaph { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 500px; justify-content: space-between; overflow: hidden; padding: 20px 24px 20px 24px; position: relative; text-decoration: none; width: 364px; }\",\".framer-9cg2y .framer-h97v2v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 294px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-9cg2y .framer-agpw5a-container { flex: none; height: 211px; position: relative; width: 100%; }\",\".framer-9cg2y .framer-xejrtp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-9cg2y .framer-1j326vm, .framer-9cg2y .framer-1xgwr5e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9cg2y .framer-pwpg5v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-9cg2y .framer-1wwvat1 { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9cg2y .framer-h97v2v, .framer-9cg2y .framer-xejrtp, .framer-9cg2y .framer-pwpg5v { gap: 0px; } .framer-9cg2y .framer-h97v2v > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-9cg2y .framer-h97v2v > :first-child, .framer-9cg2y .framer-pwpg5v > :first-child { margin-left: 0px; } .framer-9cg2y .framer-h97v2v > :last-child, .framer-9cg2y .framer-pwpg5v > :last-child { margin-right: 0px; } .framer-9cg2y .framer-xejrtp > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-9cg2y .framer-xejrtp > :first-child { margin-top: 0px; } .framer-9cg2y .framer-xejrtp > :last-child { margin-bottom: 0px; } .framer-9cg2y .framer-pwpg5v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-9cg2y.framer-v-13xz85p.framer-11abaph { height: 402px; }\",\".framer-9cg2y.framer-v-13xz85p .framer-agpw5a-container { height: 151px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 364\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kFfixhuiI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XZn6MF1Tr\":\"image\",\"ZuRjrVn2f\":\"title\",\"nlRAcDUII\":\"date\",\"fAkr8tdQG\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVbxNT6elc=withCSS(Component,css,\"framer-9cg2y\");export default FramerVbxNT6elc;FramerVbxNT6elc.displayName=\"Cards/News\";FramerVbxNT6elc.defaultProps={height:500,width:364};addPropertyControls(FramerVbxNT6elc,{variant:{options:[\"QTMXgW7JQ\",\"kFfixhuiI\"],optionTitles:[\"XL/Right Border\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},XZn6MF1Tr:{title:\"Image\",type:ControlType.ResponsiveImage},ZuRjrVn2f:{defaultValue:\"How To Design An Effective User Onboarding Flow\",displayTextArea:false,title:\"Title\",type:ControlType.String},nlRAcDUII:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},fAkr8tdQG:{title:\"Link\",type:ControlType.Link}});addFonts(FramerVbxNT6elc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BlogImageCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVbxNT6elc\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"364\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kFfixhuiI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"XZn6MF1Tr\\\":\\\"image\\\",\\\"ZuRjrVn2f\\\":\\\"title\\\",\\\"nlRAcDUII\\\":\\\"date\\\",\\\"fAkr8tdQG\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"500\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VbxNT6elc.map", "// Generated by Framer (5ec741e)\nexport const props={gQUyUjB_B:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},MQROK3eUW:{background:\"rgb(59, 56, 255)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,darkTheme:\"sandpackDark\",font:{fontFamily:'\"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif',fontSize:\"21px\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"githubDark\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:30,theme:\"cyberpunk\",themeMode:\"Dynamic\",topLeftRadius:8,topRightRadius:8}};export const fonts={MQROK3eUW:[{explicitInter:true,fonts:[{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5ec741e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}]}];export const css=['.framer-TamNb .framer-styles-preset-1dgch90:not(.rich-text-wrapper), .framer-TamNb .framer-styles-preset-1dgch90.rich-text-wrapper h4 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 30px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-TamNb\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/jANEAJ0nHo1tx79t51nl5qBvgyo.otf\"}];export const css=['.framer-HuvCd .framer-styles-preset-d8wuzu:not(.rich-text-wrapper), .framer-HuvCd .framer-styles-preset-d8wuzu.rich-text-wrapper h6 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7f824753-0063-42a3-bb01-95ed66b45be2, #7675cf); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-HuvCd\";\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 (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}]}];export const css=['.framer-wmxXx .framer-styles-preset-jjnpsn:not(.rich-text-wrapper), .framer-wmxXx .framer-styles-preset-jjnpsn.rich-text-wrapper h3 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 28px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-wmxXx\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}];export const css=['.framer-DkZCy .framer-styles-preset-1ewfk6d:not(.rich-text-wrapper), .framer-DkZCy .framer-styles-preset-1ewfk6d.rich-text-wrapper h6 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 26px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-DkZCy\";\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 (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;Copyright Klim Type Foundry Buch\",\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"},{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}];export const css=['.framer-B6VoX .framer-styles-preset-4xjqxv:not(.rich-text-wrapper), .framer-B6VoX .framer-styles-preset-4xjqxv.rich-text-wrapper h1 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-family-italic: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.36px; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-B6VoX\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/jANEAJ0nHo1tx79t51nl5qBvgyo.otf\"}];export const css=['.framer-DEHBR .framer-styles-preset-tg5ja0:not(.rich-text-wrapper), .framer-DEHBR .framer-styles-preset-tg5ja0.rich-text-wrapper h3 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-DEHBR\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Dreiviertelfett\",\"CUSTOM;S\\xf6hne Buch Kursiv\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}];export const css=['.framer-4SCpD .framer-styles-preset-mstx0h:not(.rich-text-wrapper), .framer-4SCpD .framer-styles-preset-mstx0h.rich-text-wrapper h2 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Dreiviertelfett\", \"S\\xf6hne Dreiviertelfett Placeholder\", sans-serif; --framer-font-family-italic: \"S\\xf6hne Buch Kursiv\", \"S\\xf6hne Buch Kursiv Placeholder\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.96px; --framer-line-height: 60px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 2559px) and (min-width: 1680px) { .framer-4SCpD .framer-styles-preset-mstx0h:not(.rich-text-wrapper), .framer-4SCpD .framer-styles-preset-mstx0h.rich-text-wrapper h2 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Dreiviertelfett\", \"S\\xf6hne Dreiviertelfett Placeholder\", sans-serif; --framer-font-family-italic: \"S\\xf6hne Buch Kursiv\", \"S\\xf6hne Buch Kursiv Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.96px; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1679px) and (min-width: 1440px) { .framer-4SCpD .framer-styles-preset-mstx0h:not(.rich-text-wrapper), .framer-4SCpD .framer-styles-preset-mstx0h.rich-text-wrapper h2 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Dreiviertelfett\", \"S\\xf6hne Dreiviertelfett Placeholder\", sans-serif; --framer-font-family-italic: \"S\\xf6hne Buch Kursiv\", \"S\\xf6hne Buch Kursiv Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.96px; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 0px) { .framer-4SCpD .framer-styles-preset-mstx0h:not(.rich-text-wrapper), .framer-4SCpD .framer-styles-preset-mstx0h.rich-text-wrapper h2 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Dreiviertelfett\", \"S\\xf6hne Dreiviertelfett Placeholder\", sans-serif; --framer-font-family-italic: \"S\\xf6hne Buch Kursiv\", \"S\\xf6hne Buch Kursiv Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.96px; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-d236be82-db75-4ee8-89f4-503d8a98f920, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-4SCpD\";\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 (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}]}];export const css=['.framer-BTRSn .framer-styles-preset-muwprr:not(.rich-text-wrapper), .framer-BTRSn .framer-styles-preset-muwprr.rich-text-wrapper p { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.48px; --framer-line-height: 28px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-BTRSn\";\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 (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}];export const css=['.framer-7n3Qw .framer-styles-preset-orqqvd { --framer-blockquote-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: normal; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 26px; --framer-blockquote-paragraph-spacing: 16px; --framer-blockquote-text-color: #000000; --framer-blockquote-text-decoration: none; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; background: linear-gradient(180deg, #f8f6fe 42.606278153153156%, rgba(0, 0, 0, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 20px; }','.framer-7n3Qw .framer-styles-preset-orqqvd::before { background-color: rgba(255, 255, 255, 0); border-radius: 2px; content: \" \"; display: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 4px; }'];export const className=\"framer-7n3Qw\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}];export const css=['.framer-4t09D .framer-styles-preset-135qdu0 { --framer-code-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #9b98ed; --framer-font-size-scale: 1.2; background-color: rgba(0, 0, 0, 0.1); padding-bottom: 0em; padding-left: 0em; padding-right: 0em; padding-top: 0em; }'];export const className=\"framer-4t09D\";\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 (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}];export const css=['.framer-vO0Iu .framer-styles-preset-hgrd9u:not(.rich-text-wrapper), .framer-vO0Iu .framer-styles-preset-hgrd9u.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 26px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: rgba(15, 15, 15, 0.9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vO0Iu\";\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 (5ec741e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}]}];export const css=['.framer-cuhwe .framer-styles-preset-1vzav8b:not(.rich-text-wrapper), .framer-cuhwe .framer-styles-preset-1vzav8b.rich-text-wrapper h5 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-cuhwe\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"}];export const css=['.framer-XDkiT .framer-styles-preset-cpt8lu { --framer-code-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #9b98ed; --framer-font-size-scale: 1.2; padding-bottom: 0em; padding-left: 0em; padding-right: 0em; padding-top: 0em; }'];export const className=\"framer-XDkiT\";\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 (63f9d4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}];export const css=['.framer-PSvFk .framer-styles-preset-bzon3p { --framer-blockquote-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 26px; --framer-blockquote-paragraph-spacing: 16px; --framer-blockquote-text-color: var(--token-7f824753-0063-42a3-bb01-95ed66b45be2, #7675cf); --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 0px 20px 0px 24px; position: relative; }','.framer-PSvFk .framer-styles-preset-bzon3p::before { background-color: var(--token-7f824753-0063-42a3-bb01-95ed66b45be2, #7675cf) /* {\"name\":\"SAVR Dark\"} */; border-radius: 2px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 4px; }'];export const className=\"framer-PSvFk\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5ec741e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"CUSTOM;S\\xf6hne Buch\",\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"S\\xf6hne Kr\\xe4ftig\",source:\"custom\",url:\"https://framerusercontent.com/assets/AeHlZ4p4F2z0fZORolmtlp7Adg.woff2\"},{family:\"Copyright Klim Type Foundry Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}]}];export const css=['.framer-kPMzG .framer-styles-preset-efcdnb:not(.rich-text-wrapper), .framer-kPMzG .framer-styles-preset-efcdnb.rich-text-wrapper h2 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold-italic: \"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif; --framer-font-family-italic: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 38px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-kPMzG\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;S\\xf6hne Kr\\xe4ftig\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"S\\xf6hne Kr\\xe4ftig\",url:\"https://framerusercontent.com/assets/jANEAJ0nHo1tx79t51nl5qBvgyo.otf\"}];export const css=['.framer-Dr6AF .framer-styles-preset-1hgnmz9:not(.rich-text-wrapper), .framer-Dr6AF .framer-styles-preset-1hgnmz9.rich-text-wrapper h1 { --framer-font-family: \"S\\xf6hne Kr\\xe4ftig\", \"S\\xf6hne Kr\\xe4ftig Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.96px; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Dr6AF\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Acxpk .framer-styles-preset-6lsefc {  }\"];export const className=\"framer-Acxpk\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Copyright Klim Type Foundry Buch\"]);export const fonts=[{family:\"Copyright Klim Type Foundry Buch\",url:\"https://framerusercontent.com/assets/SYEdzgpPmEQNSP4ImIAvO6lRSg.woff2\"}];export const css=['.framer-rD2Nw .framer-styles-preset-31j87h:not(.rich-text-wrapper), .framer-rD2Nw .framer-styles-preset-31j87h.rich-text-wrapper p { --framer-font-family: \"Copyright Klim Type Foundry Buch\", \"Copyright Klim Type Foundry Buch Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-rD2Nw\";\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\"}}}"],
  "mappings": "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",
  "names": ["scrollToElement", "title", "level", "behavior", "yOffset", "elements", "element", "el", "_el_textContent", "y", "window", "useScrollSpy", "headings", "activeTitle", "setActiveTitle", "ye", "ue", "handleScroll", "current", "heading", "top", "TableOfContents", "items", "font", "color", "autoFetchHeadings", "containerStyle", "smoothScroll", "highlightColor", "showHighlight", "padding", "setHeadings", "headingElements", "fetchedHeadings", "containerStyles", "borderRadiusStyle", "p", "item", "index", "motion", "addPropertyControls", "ControlType", "props", "withProgress", "r", "s", "d", "l", "ye", "c", "m", "pe", "ue", "e", "t", "n", "o", "window", "p", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "s4qtbZi49", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "css", "FramerrI9JFVEXC", "withCSS", "rI9JFVEXC_default", "addPropertyControls", "ControlType", "addFonts", "BlogImageCopyFonts", "getFonts", "rI9JFVEXC_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XZn6MF1Tr", "ZuRjrVn2f", "nlRAcDUII", "fAkr8tdQG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramerVbxNT6elc", "withCSS", "VbxNT6elc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
