{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/t4PikNpGX7kI3J22Me2f/CYbiAXU6TKEoaUf3MOEe/ued5n5CfA.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js", "ssg:https://framerusercontent.com/modules/rjharD2Tk0FThmpi5VFH/2tutfc01vITP2AZaci6k/k3CfyFAOB.js", "ssg:https://framerusercontent.com/modules/yvmioCj4Tcs5ZQw3hFgI/MtSBUKlxntLp3DSUY7z7/uQTQNIgFm.js", "ssg:https://framerusercontent.com/modules/iYqLgqY5ogWCGTUpizm7/BBUWWdqEryniAqxsEj0R/M1VnS3SJh.js", "ssg:https://framerusercontent.com/modules/32ak6Tv8gIzImAYrbqHa/09ngrvZBLZpVjDYJ7WEI/efl0bvWU4.js", "ssg:https://framerusercontent.com/modules/2IeqISwgQn1wlo1WXJqB/yEY3QdCnRbA4hL3jRZKb/R8rkxQgC7.js"],
  "sourcesContent": ["// Generated by Framer (4240133)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Lato-regular\",\"GF;Lato-700\",\"GF;Lato-700italic\",\"GF;Lato-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPGQ3s5dwt7w.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswXiWrFCbw7A.woff2\",weight:\"400\"}]}];export const css=['.framer-vIXy3 .framer-styles-preset-xbbkxp:not(.rich-text-wrapper), .framer-vIXy3 .framer-styles-preset-xbbkxp.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: rgba(255, 255, 255, 0.5); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vIXy3\";\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{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://framer.university?utm_source=component).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={DRszy3QQQ:{hover:true},eLVy5oRzo:{hover:true},iR6mMLZ4Q:{hover:true},NEBe2fZ_z:{hover:true}};const cycleOrder=[\"DRszy3QQQ\",\"eLVy5oRzo\",\"iR6mMLZ4Q\",\"NEBe2fZ_z\"];const serializationHash=\"framer-JpGb9\";const variantClassNames={DRszy3QQQ:\"framer-v-hdpnoq\",eLVy5oRzo:\"framer-v-fq89fa\",iR6mMLZ4Q:\"framer-v-rbwi2r\",NEBe2fZ_z:\"framer-v-1sn84xl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={fb:\"DRszy3QQQ\",inst:\"eLVy5oRzo\",x:\"iR6mMLZ4Q\",youtube:\"NEBe2fZ_z\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,cbXda8bKo:link!==null&&link!==void 0?link:props.cbXda8bKo,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DRszy3QQQ\"};};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,cbXda8bKo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DRszy3QQQ\",enabledGestures,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(Link,{href:cbXda8bKo,nodeId:\"DRszy3QQQ\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-hdpnoq\",className,classNames)} framer-x71hsu`,\"data-framer-name\":\"fb\",layoutDependency:layoutDependency,layoutId:\"DRszy3QQQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"DRszy3QQQ-hover\":{\"data-framer-name\":undefined},\"eLVy5oRzo-hover\":{\"data-framer-name\":undefined},\"iR6mMLZ4Q-hover\":{\"data-framer-name\":undefined},\"NEBe2fZ_z-hover\":{\"data-framer-name\":undefined},eLVy5oRzo:{\"data-framer-name\":\"inst\"},iR6mMLZ4Q:{\"data-framer-name\":\"x\"},NEBe2fZ_z:{\"data-framer-name\":\"youtube\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jlg8kk-container\",\"data-framer-name\":\"SVG\",layoutDependency:layoutDependency,layoutId:\"kZBWmgOni-container\",name:\"SVG\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-70b0d82b-3741-4e17-abdb-abba9b880f33, rgba(255, 255, 255, 0.7))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_22749_1472)\"> <path d=\"M14 13.5H16.5L17.5 9.5H14V7.5C14 6.47 14 5.5 16 5.5H17.5V2.14C17.174 2.097 15.943 2 14.643 2C11.928 2 10 3.657 10 6.7V9.5H7V13.5H10V22H14V13.5Z\" fill=\"black\"/> </g> <defs> <clipPath id=\"clip0_22749_1472\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>',height:\"100%\",id:\"kZBWmgOni\",layoutId:\"kZBWmgOni\",lineCap:\"butt\",lineJoin:\"miter\",name:\"SVG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"DRszy3QQQ-hover\":{customColor:\"var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, rgb(255, 255, 255))\"},\"eLVy5oRzo-hover\":{customColor:\"var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, rgb(255, 255, 255))\"},\"iR6mMLZ4Q-hover\":{customColor:\"var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, rgb(255, 255, 255))\"},\"NEBe2fZ_z-hover\":{customColor:\"var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, rgb(255, 255, 255))\"},eLVy5oRzo:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_22749_1480)\"> <path d=\"M12 2C14.717 2 15.056 2.01 16.122 2.06C17.187 2.11 17.912 2.277 18.55 2.525C19.21 2.779 19.766 3.123 20.322 3.678C20.8305 4.1779 21.224 4.78259 21.475 5.45C21.722 6.087 21.89 6.813 21.94 7.878C21.987 8.944 22 9.283 22 12C22 14.717 21.99 15.056 21.94 16.122C21.89 17.187 21.722 17.912 21.475 18.55C21.2247 19.2178 20.8311 19.8226 20.322 20.322C19.822 20.8303 19.2173 21.2238 18.55 21.475C17.913 21.722 17.187 21.89 16.122 21.94C15.056 21.987 14.717 22 12 22C9.283 22 8.944 21.99 7.878 21.94C6.813 21.89 6.088 21.722 5.45 21.475C4.78233 21.2245 4.17753 20.8309 3.678 20.322C3.16941 19.8222 2.77593 19.2175 2.525 18.55C2.277 17.913 2.11 17.187 2.06 16.122C2.013 15.056 2 14.717 2 12C2 9.283 2.01 8.944 2.06 7.878C2.11 6.812 2.277 6.088 2.525 5.45C2.77524 4.78218 3.1688 4.17732 3.678 3.678C4.17767 3.16923 4.78243 2.77573 5.45 2.525C6.088 2.277 6.812 2.11 7.878 2.06C8.944 2.013 9.283 2 12 2ZM12 7C10.6739 7 9.40215 7.52678 8.46447 8.46447C7.52678 9.40215 7 10.6739 7 12C7 13.3261 7.52678 14.5979 8.46447 15.5355C9.40215 16.4732 10.6739 17 12 17C13.3261 17 14.5979 16.4732 15.5355 15.5355C16.4732 14.5979 17 13.3261 17 12C17 10.6739 16.4732 9.40215 15.5355 8.46447C14.5979 7.52678 13.3261 7 12 7ZM18.5 6.75C18.5 6.41848 18.3683 6.10054 18.1339 5.86612C17.8995 5.6317 17.5815 5.5 17.25 5.5C16.9185 5.5 16.6005 5.6317 16.3661 5.86612C16.1317 6.10054 16 6.41848 16 6.75C16 7.08152 16.1317 7.39946 16.3661 7.63388C16.6005 7.8683 16.9185 8 17.25 8C17.5815 8 17.8995 7.8683 18.1339 7.63388C18.3683 7.39946 18.5 7.08152 18.5 6.75ZM12 9C12.7956 9 13.5587 9.31607 14.1213 9.87868C14.6839 10.4413 15 11.2044 15 12C15 12.7956 14.6839 13.5587 14.1213 14.1213C13.5587 14.6839 12.7956 15 12 15C11.2044 15 10.4413 14.6839 9.87868 14.1213C9.31607 13.5587 9 12.7956 9 12C9 11.2044 9.31607 10.4413 9.87868 9.87868C10.4413 9.31607 11.2044 9 12 9Z\" fill=\"black\"/> </g> <defs> <clipPath id=\"clip0_22749_1480\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>'},iR6mMLZ4Q:{customSvgCode:'<svg fill=\"none\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><clipPath id=\"a\"><path d=\"m0 0h24v24h-24z\"/></clipPath><g clip-path=\"url(#a)\"><path d=\"m17.7512 2.83594h3.0668l-6.7001 7.65756 7.8821 10.4203h-6.1716l-4.8338-6.3198-5.53101 6.3198h-3.06865l7.16636-8.1907-7.5613-9.88716h6.32828l4.36932 5.77658zm-1.0764 16.24226h1.6994l-10.9693-14.50308h-1.82357z\" fill=\"#000\"/></g></svg>'},NEBe2fZ_z:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_22749_1497)\"> <path d=\"M21.543 6.498C22 8.28 22 12 22 12C22 12 22 15.72 21.543 17.502C21.289 18.487 20.546 19.262 19.605 19.524C17.896 20 12 20 12 20C12 20 6.107 20 4.395 19.524C3.45 19.258 2.708 18.484 2.457 17.502C2 15.72 2 12 2 12C2 12 2 8.28 2.457 6.498C2.711 5.513 3.454 4.738 4.395 4.476C6.107 4 12 4 12 4C12 4 17.896 4 19.605 4.476C20.55 4.742 21.292 5.516 21.543 6.498ZM10 15.5L16 12L10 8.5V15.5Z\" fill=\"black\"/> </g> <defs> <clipPath id=\"clip0_22749_1497\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>'}},baseVariant,gestureVariant)})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JpGb9.framer-x71hsu, .framer-JpGb9 .framer-x71hsu { display: block; }\",\".framer-JpGb9.framer-hdpnoq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 24px; }\",\".framer-JpGb9 .framer-jlg8kk-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JpGb9.framer-hdpnoq { gap: 0px; } .framer-JpGb9.framer-hdpnoq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JpGb9.framer-hdpnoq > :first-child { margin-left: 0px; } .framer-JpGb9.framer-hdpnoq > :last-child { margin-right: 0px; } }\",\".framer-JpGb9.framer-v-fq89fa.framer-hdpnoq, .framer-JpGb9.framer-v-rbwi2r.framer-hdpnoq, .framer-JpGb9.framer-v-1sn84xl.framer-hdpnoq, .framer-JpGb9.framer-v-hdpnoq.hover.framer-hdpnoq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eLVy5oRzo\":{\"layout\":[\"fixed\",\"fixed\"]},\"iR6mMLZ4Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"NEBe2fZ_z\":{\"layout\":[\"fixed\",\"fixed\"]},\"cPoJFOHsc\":{\"layout\":[\"fixed\",\"fixed\"]},\"bOqaG1EJK\":{\"layout\":[\"fixed\",\"fixed\"]},\"bI_KvWhBm\":{\"layout\":[\"fixed\",\"fixed\"]},\"OoJas03NY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cbXda8bKo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk3CfyFAOB=withCSS(Component,css,\"framer-JpGb9\");export default Framerk3CfyFAOB;Framerk3CfyFAOB.displayName=\"social icon\";Framerk3CfyFAOB.defaultProps={height:24,width:24};addPropertyControls(Framerk3CfyFAOB,{variant:{options:[\"DRszy3QQQ\",\"eLVy5oRzo\",\"iR6mMLZ4Q\",\"NEBe2fZ_z\"],optionTitles:[\"fb\",\"inst\",\"x\",\"youtube\"],title:\"Variant\",type:ControlType.Enum},cbXda8bKo:{title:\"Link\",type:ControlType.Link}});addFonts(Framerk3CfyFAOB,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk3CfyFAOB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"cbXda8bKo\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eLVy5oRzo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iR6mMLZ4Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NEBe2fZ_z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cPoJFOHsc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bOqaG1EJK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bI_KvWhBm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OoJas03NY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k3CfyFAOB.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SocialIcon from\"https://framerusercontent.com/modules/rjharD2Tk0FThmpi5VFH/2tutfc01vITP2AZaci6k/k3CfyFAOB.js\";const SocialIconFonts=getFonts(SocialIcon);const cycleOrder=[\"UXQ0P6xGE\"];const serializationHash=\"framer-LhTiq\";const variantClassNames={UXQ0P6xGE:\"framer-v-1e8b2d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UXQ0P6xGE\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1e8b2d\",className,classNames),\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"UXQ0P6xGE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-efsg2\",\"data-framer-name\":\"socilas\",layoutDependency:layoutDependency,layoutId:\"riYxf7840\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjwidp-container\",layoutDependency:layoutDependency,layoutId:\"BqGSokO4Y-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"BqGSokO4Y\",layoutId:\"BqGSokO4Y\",variant:\"DRszy3QQQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-byj8s7-container\",layoutDependency:layoutDependency,layoutId:\"BmrC1AKxQ-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"BmrC1AKxQ\",layoutId:\"BmrC1AKxQ\",variant:\"eLVy5oRzo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wnshox-container\",layoutDependency:layoutDependency,layoutId:\"XFZANMEH7-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"XFZANMEH7\",layoutId:\"XFZANMEH7\",variant:\"iR6mMLZ4Q\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kd903m-container\",layoutDependency:layoutDependency,layoutId:\"wAVm9HMpK-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"wAVm9HMpK\",layoutId:\"wAVm9HMpK\",variant:\"NEBe2fZ_z\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LhTiq.framer-ovajse, .framer-LhTiq .framer-ovajse { display: block; }\",\".framer-LhTiq.framer-1e8b2d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LhTiq .framer-efsg2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LhTiq .framer-qjwidp-container, .framer-LhTiq .framer-byj8s7-container, .framer-LhTiq .framer-wnshox-container, .framer-LhTiq .framer-kd903m-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LhTiq.framer-1e8b2d, .framer-LhTiq .framer-efsg2 { gap: 0px; } .framer-LhTiq.framer-1e8b2d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LhTiq.framer-1e8b2d > :first-child { margin-top: 0px; } .framer-LhTiq.framer-1e8b2d > :last-child { margin-bottom: 0px; } .framer-LhTiq .framer-efsg2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-LhTiq .framer-efsg2 > :first-child { margin-left: 0px; } .framer-LhTiq .framer-efsg2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruQTQNIgFm=withCSS(Component,css,\"framer-LhTiq\");export default FrameruQTQNIgFm;FrameruQTQNIgFm.displayName=\"social links\";FrameruQTQNIgFm.defaultProps={height:24,width:144};addFonts(FrameruQTQNIgFm,[{explicitInter:true,fonts:[]},...SocialIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruQTQNIgFm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"144\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2tFtiLENVqWULfPPzRxF/KtoYnjU9WJX1SLHQ9xih/SY5SXQe69.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t4PikNpGX7kI3J22Me2f/CYbiAXU6TKEoaUf3MOEe/ued5n5CfA.js\";import Logo from\"https://framerusercontent.com/modules/veGLkwNG6uo6CReGrn63/QdunCxPxUhNv5pjKxjHr/g6mG0Ybxq.js\";import SocialLinks from\"https://framerusercontent.com/modules/yvmioCj4Tcs5ZQw3hFgI/MtSBUKlxntLp3DSUY7z7/uQTQNIgFm.js\";const LogoFonts=getFonts(Logo);const SocialLinksFonts=getFonts(SocialLinks);const cycleOrder=[\"kGSRIreTH\",\"vRgPoc60D\",\"XOl6sRtTE\",\"i63Y0rFYl\",\"jDmNvNnia\"];const serializationHash=\"framer-YIbHr\";const variantClassNames={i63Y0rFYl:\"framer-v-tubvtl\",jDmNvNnia:\"framer-v-1wq5fal\",kGSRIreTH:\"framer-v-13tpi51\",vRgPoc60D:\"framer-v-1o5iyu3\",XOl6sRtTE:\"framer-v-119ukwm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"desktop / 1200\":\"vRgPoc60D\",\"desktop / 1680\":\"kGSRIreTH\",\"mobile / 390\":\"i63Y0rFYl\",\"tablet / 810\":\"XOl6sRtTE\",\"Variant 5\":\"jDmNvNnia\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"kGSRIreTH\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kGSRIreTH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"jDmNvNnia\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"jDmNvNnia\")return true;return false;};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__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13tpi51\",className,classNames),\"data-framer-name\":\"desktop / 1680\",layoutDependency:layoutDependency,layoutId:\"kGSRIreTH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-fe56fe01-60b0-4457-bba5-94864f8304b0, rgb(1, 2, 5))\",...style},...addPropertyOverrides({i63Y0rFYl:{\"data-framer-name\":\"mobile / 390\"},jDmNvNnia:{\"data-framer-name\":\"Variant 5\"},vRgPoc60D:{\"data-framer-name\":\"desktop / 1200\"},XOl6sRtTE:{\"data-framer-name\":\"tablet / 810\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ys5e7\",layoutDependency:layoutDependency,layoutId:\"IWlyYjPqM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||262)-120-141.6)/2+0+0)+0,...addPropertyOverrides({i63Y0rFYl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||548)-120-428)/2+0+0)+0+0},jDmNvNnia:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||297)-120-177.2)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-65cu41-container\",layoutDependency:layoutDependency,layoutId:\"NL1XSEJ_a-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"NL1XSEJ_a\",layoutId:\"NL1XSEJ_a\",style:{height:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1khawbg\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"Uck_7DrpE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Company\"})}),className:\"framer-1ru27rb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OrBMHspKb\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Features\"})}),className:\"framer-94eerc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nUlTKU2uf\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Pricing\"})}),className:\"framer-h82pjv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s6p40Ixuz\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Blog\"})}),className:\"framer-125veat\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xEqZRcTW5\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vgl7zx\",\"data-framer-name\":\"Vector 551\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1226,layoutDependency:layoutDependency,layoutId:\"CBzJdG4iA\",svg:'<svg width=\"1226\" height=\"4\" viewBox=\"-1 -1 1226 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1L1224 1.00011\" stroke=\"white\" stroke-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tr3krf\",layoutDependency:layoutDependency,layoutId:\"UQRis_ync\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p4ztx5\",layoutDependency:layoutDependency,layoutId:\"Io01oXrHy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5)))\"},children:\"\\xa9 2024 Synthesise AI. All rights reserved.\"})}),className:\"framer-7mu50c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yg2wZtwWd\",style:{\"--extracted-r6o4lv\":\"var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jDmNvNnia:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LmNGwdLJa\"},nodeId:\"yg2wZtwWd\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7l855n\",\"data-styles-preset\":\"SY5SXQe69\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QwQ85Bf8e\"},nodeId:\"gCcxi4vQu\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7l855n\",\"data-styles-preset\":\"SY5SXQe69\",children:\"Terms & Conditions\"})})})}),className:\"framer-61a1x7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gCcxi4vQu\",style:{\"--extracted-r6o4lv\":\"var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||262)-120-141.6)/2+36+80)+.8000000000000007,...addPropertyOverrides({i63Y0rFYl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||548)-120-428)/2+274.4+80)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gprrr6-container\",layoutDependency:layoutDependency,layoutId:\"mmVfHlIAY-container\",children:/*#__PURE__*/_jsx(SocialLinks,{height:\"100%\",id:\"mmVfHlIAY\",layoutId:\"mmVfHlIAY\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xbbkxp\",\"data-styles-preset\":\"ued5n5CfA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5)))\"},children:\"\\xa9 2025 Synthesise AI. All rights reserved.\"})}),className:\"framer-18r2wgl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wEQ5I06bo\",style:{\"--extracted-r6o4lv\":\"var(--token-c6c15a45-6804-44ea-b289-cde51e8dcf7d, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YIbHr.framer-1ddawz2, .framer-YIbHr .framer-1ddawz2 { display: block; }\",\".framer-YIbHr.framer-13tpi51 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 228px 40px 228px; position: relative; width: 1680px; }\",\".framer-YIbHr .framer-9ys5e7, .framer-YIbHr .framer-tr3krf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1224px; padding: 0px; position: relative; width: 100%; }\",\".framer-YIbHr .framer-65cu41-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-YIbHr .framer-1khawbg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YIbHr .framer-1ru27rb, .framer-YIbHr .framer-94eerc, .framer-YIbHr .framer-h82pjv, .framer-YIbHr .framer-125veat, .framer-YIbHr .framer-7mu50c, .framer-YIbHr .framer-61a1x7, .framer-YIbHr .framer-18r2wgl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YIbHr .framer-vgl7zx { flex: none; height: 4px; max-width: 1224px; position: relative; width: 100%; }\",\".framer-YIbHr .framer-p4ztx5 { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-YIbHr .framer-1gprrr6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YIbHr.framer-13tpi51, .framer-YIbHr .framer-1khawbg, .framer-YIbHr .framer-p4ztx5 { gap: 0px; } .framer-YIbHr.framer-13tpi51 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-YIbHr.framer-13tpi51 > :first-child { margin-top: 0px; } .framer-YIbHr.framer-13tpi51 > :last-child { margin-bottom: 0px; } .framer-YIbHr .framer-1khawbg > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-YIbHr .framer-1khawbg > :first-child, .framer-YIbHr .framer-p4ztx5 > :first-child { margin-left: 0px; } .framer-YIbHr .framer-1khawbg > :last-child, .framer-YIbHr .framer-p4ztx5 > :last-child { margin-right: 0px; } .framer-YIbHr .framer-p4ztx5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-YIbHr.framer-v-1o5iyu3.framer-13tpi51 { padding: 80px 64px 40px 64px; width: 1200px; }\",\".framer-YIbHr.framer-v-119ukwm.framer-13tpi51 { padding: 80px 64px 40px 64px; width: 810px; }\",\".framer-YIbHr.framer-v-tubvtl.framer-13tpi51 { padding: 80px 24px 40px 24px; width: 390px; }\",\".framer-YIbHr.framer-v-tubvtl .framer-9ys5e7 { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-YIbHr.framer-v-tubvtl .framer-1khawbg { flex-direction: column; gap: 32px; }\",\".framer-YIbHr.framer-v-tubvtl .framer-tr3krf { flex-direction: column; gap: 24px; justify-content: center; }\",\".framer-YIbHr.framer-v-tubvtl .framer-p4ztx5 { flex: none; order: 2; width: 100%; }\",\".framer-YIbHr.framer-v-tubvtl .framer-1gprrr6-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YIbHr.framer-v-tubvtl .framer-9ys5e7, .framer-YIbHr.framer-v-tubvtl .framer-1khawbg, .framer-YIbHr.framer-v-tubvtl .framer-tr3krf { gap: 0px; } .framer-YIbHr.framer-v-tubvtl .framer-9ys5e7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-YIbHr.framer-v-tubvtl .framer-9ys5e7 > :first-child, .framer-YIbHr.framer-v-tubvtl .framer-1khawbg > :first-child, .framer-YIbHr.framer-v-tubvtl .framer-tr3krf > :first-child { margin-top: 0px; } .framer-YIbHr.framer-v-tubvtl .framer-9ys5e7 > :last-child, .framer-YIbHr.framer-v-tubvtl .framer-1khawbg > :last-child, .framer-YIbHr.framer-v-tubvtl .framer-tr3krf > :last-child { margin-bottom: 0px; } .framer-YIbHr.framer-v-tubvtl .framer-1khawbg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YIbHr.framer-v-tubvtl .framer-tr3krf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-YIbHr.framer-v-1wq5fal.framer-13tpi51 { padding: 80px 0px 40px 0px; }\",\".framer-YIbHr.framer-v-1wq5fal .framer-9ys5e7 { gap: 24px; justify-content: center; }\",\".framer-YIbHr.framer-v-1wq5fal .framer-tr3krf { flex-direction: column; gap: 10px; justify-content: center; }\",\".framer-YIbHr.framer-v-1wq5fal .framer-p4ztx5 { flex: none; gap: 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YIbHr.framer-v-1wq5fal .framer-9ys5e7, .framer-YIbHr.framer-v-1wq5fal .framer-tr3krf, .framer-YIbHr.framer-v-1wq5fal .framer-p4ztx5 { gap: 0px; } .framer-YIbHr.framer-v-1wq5fal .framer-9ys5e7 > *, .framer-YIbHr.framer-v-1wq5fal .framer-p4ztx5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-YIbHr.framer-v-1wq5fal .framer-9ys5e7 > :first-child, .framer-YIbHr.framer-v-1wq5fal .framer-p4ztx5 > :first-child { margin-left: 0px; } .framer-YIbHr.framer-v-1wq5fal .framer-9ys5e7 > :last-child, .framer-YIbHr.framer-v-1wq5fal .framer-p4ztx5 > :last-child { margin-right: 0px; } .framer-YIbHr.framer-v-1wq5fal .framer-tr3krf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YIbHr.framer-v-1wq5fal .framer-tr3krf > :first-child { margin-top: 0px; } .framer-YIbHr.framer-v-1wq5fal .framer-tr3krf > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 262\n * @framerIntrinsicWidth 1680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vRgPoc60D\":{\"layout\":[\"fixed\",\"auto\"]},\"XOl6sRtTE\":{\"layout\":[\"fixed\",\"auto\"]},\"i63Y0rFYl\":{\"layout\":[\"fixed\",\"auto\"]},\"jDmNvNnia\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM1VnS3SJh=withCSS(Component,css,\"framer-YIbHr\");export default FramerM1VnS3SJh;FramerM1VnS3SJh.displayName=\"footer\";FramerM1VnS3SJh.defaultProps={height:262,width:1680};addPropertyControls(FramerM1VnS3SJh,{variant:{options:[\"kGSRIreTH\",\"vRgPoc60D\",\"XOl6sRtTE\",\"i63Y0rFYl\",\"jDmNvNnia\"],optionTitles:[\"desktop / 1680\",\"desktop / 1200\",\"tablet / 810\",\"mobile / 390\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerM1VnS3SJh,[{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\"}]},...LogoFonts,...SocialLinksFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM1VnS3SJh\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"262\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1680\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vRgPoc60D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOl6sRtTE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i63Y0rFYl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jDmNvNnia\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M1VnS3SJh.map", "// Generated by Framer (4240133)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Schibsted Grotesk-500\",\"GF;Schibsted Grotesk-700\",\"GF;Schibsted Grotesk-700italic\",\"GF;Schibsted Grotesk-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEASsJuXFGVOQ.woff2\",weight:\"500\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hvflSFOTXs.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhvflSFOTXs.woff2\",weight:\"500\"}]}];export const css=['.framer-0SIO7 .framer-styles-preset-1hggjd1:not(.rich-text-wrapper), .framer-0SIO7 .framer-styles-preset-1hggjd1.rich-text-wrapper h1 { --framer-font-family: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1679px) and (min-width: 0px) { .framer-0SIO7 .framer-styles-preset-1hggjd1:not(.rich-text-wrapper), .framer-0SIO7 .framer-styles-preset-1hggjd1.rich-text-wrapper h1 { --framer-font-family: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 58px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-c9e74ad9-7d5f-478a-b587-6d52b139e3df, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-0SIO7\";\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 (4240133)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Schibsted Grotesk-500\",\"GF;Schibsted Grotesk-700\",\"GF;Schibsted Grotesk-700italic\",\"GF;Schibsted Grotesk-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNEMEASsJuXFGVOQ.woff2\",weight:\"500\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzK5SSPQuCQF3t8uOwiUL-taUTtarVKQ9vZ6pJJWlMNxcYASsJuXFGVOQ.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oIPC8hvflSFOTXs.woff2\",weight:\"700\"},{family:\"Schibsted Grotesk\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/schibstedgrotesk/v3/JqzI5SSPQuCQF3t8uOwiUL-taUTtap9DcSQBg_nT9FQY6oLaDMhvflSFOTXs.woff2\",weight:\"500\"}]}];export const css=['.framer-Y9KGx .framer-styles-preset-mptb2l:not(.rich-text-wrapper), .framer-Y9KGx .framer-styles-preset-mptb2l.rich-text-wrapper h2 { --framer-font-family: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1679px) and (min-width: 0px) { .framer-Y9KGx .framer-styles-preset-mptb2l:not(.rich-text-wrapper), .framer-Y9KGx .framer-styles-preset-mptb2l.rich-text-wrapper h2 { --framer-font-family: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-family-italic: \"Schibsted Grotesk\", \"Schibsted Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Y9KGx\";\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\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cbXda8bKo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "Framerk3CfyFAOB", "withCSS", "k3CfyFAOB_default", "addPropertyControls", "ControlType", "addFonts", "SocialIconFonts", "getFonts", "k3CfyFAOB_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "k3CfyFAOB_default", "css", "FrameruQTQNIgFm", "withCSS", "uQTQNIgFm_default", "addFonts", "SocialIconFonts", "LogoFonts", "getFonts", "g6mG0Ybxq_default", "SocialLinksFonts", "uQTQNIgFm_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "Link", "css", "FramerM1VnS3SJh", "withCSS", "M1VnS3SJh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
