{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/dVgj8QE9T9flcebfSYJa/h49YpwHv8FJV0ankGWLI/gji_2eo99.js", "ssg:https://framerusercontent.com/modules/6DMqNW4qOvSx0rTf8col/01dRgx2QCcW16FCLj5ee/RXT5Z_JAQ.js", "ssg:https://framerusercontent.com/modules/2lpXrb8dxRKcn6lWFtgt/JUgVHhbdBz257lydvCu9/g7gH7Sx8v.js", "ssg:https://framerusercontent.com/modules/gIxq8lUwYaiPKx3FwLrT/LpNejcqhL3zZLN7hkVE8/PDqbg9VtW.js", "ssg:https://framerusercontent.com/modules/gnyihsHHQkkB9o3qCeUi/h7sNsDSOaZBugnMsWqqy/Vh9yEjl9Y.js", "ssg:https://framerusercontent.com/modules/2X1oMRS5m6yOprWcShXh/Qi08BSNCqFsKrF1RshL4/GFdw8DoMs.js", "ssg:https://framerusercontent.com/modules/upf1V1hr2DYqfhI6n3cd/HYRQFklIFEk4IvHGkKHZ/BKcvyDe1j.js", "ssg:https://framerusercontent.com/modules/TribC0aOBUgXTcYzhwWH/gVFsmfvJhlxapKuLKtLA/Transition_SVG.js", "ssg:https://framerusercontent.com/modules/pgMHV4weeR6Qb0eoTiEE/SAiQ1eCK57WXOlY4RG4q/fbqrq96N7.js", "ssg:https://framerusercontent.com/modules/nkLqwUFloWuAvjJtQbj4/0s7Rlt5JZb3vvJ0rCyWi/YSnFm1b3B.js", "ssg:https://framerusercontent.com/modules/8vYuhE1xa3QHJI5Wrl5M/XCt9YHQsXsuvB4Bh7Wgq/jDXo0qBSn.js", "ssg:https://framerusercontent.com/modules/qoa5pxZDgcwKFMdjDtXK/FnKn5juGV6y2z0AIGen2/JRREWa4Z6.js", "ssg:https://framerusercontent.com/modules/cSAWnzEvgCVqbD62jenl/ucxrRA5GD9fXeSRuqVaF/TZveDCkxo.js", "ssg:https://framerusercontent.com/modules/aaKNXGUcvliWe8WMP8Ss/SBJyXfrP471Rc6T0usyT/fXvSXNS41.js", "ssg:https://framerusercontent.com/modules/dOXlVx5kMg7wkrbwmonn/vh0dcEFasc6JKg49EGg6/DUZJCcWcT.js", "ssg:https://framerusercontent.com/modules/8s95ez86U3VohF3t8JWd/cDIiH54AqghNz6VqpvTm/oPxKj5Z1s.js", "ssg:https://framerusercontent.com/modules/x3AZq1DmvIeIrTqTnlmq/P7800UslUkRnGCndecI2/Vm_6GFCy2.js", "ssg:https://framerusercontent.com/modules/11XLU3NERxQzBPZJwXbn/hWixEbrfdFzILiFfOeMw/g7gH7Sx8v.js", "ssg:https://framerusercontent.com/modules/78w09rTDfEWRdrdd4RVP/7hjtPrwSVtJQxs8yuVRz/NRjR96zrc.js", "ssg:https://framerusercontent.com/modules/uaByuJGmYheCUJQBzUXW/hlUXm4SL57WIRXhtaMTT/FhGgf_07z.js", "ssg:https://framerusercontent.com/modules/iGzQFCNUXeH1ulxsIl6j/Dfant1FAJOrXE734UwJ5/Q_9iORRnh.js", "ssg:https://framerusercontent.com/modules/kaZEcNILafVUM6vtnmj2/xVDi9237EEkzKQhn21Kd/o0y7Ravy4.js", "ssg:https://framerusercontent.com/modules/1Z6g6OYHbi5hTW6t2krm/ltAa7bfZlobXnrTSWJRM/smMXMpaqg.js", "ssg:https://framerusercontent.com/modules/5bm6lyU7aS1sEoZnM2ri/hXmMpTvUKWWAPDuY2JqS/rAaFCwORL.js"],
  "sourcesContent": ["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\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.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\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";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\",title:\"\",description:\"\"};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},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=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (9045c1a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-PgT5L .framer-styles-preset-1gyw27d:not(.rich-text-wrapper), .framer-PgT5L .framer-styles-preset-1gyw27d.rich-text-wrapper a { --framer-link-current-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607) /* {\"name\":\"Black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-link-text-decoration: none; }'];export const className=\"framer-PgT5L\";\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 (8ea6382)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-8k4qi .framer-styles-preset-gixrc5:not(.rich-text-wrapper), .framer-8k4qi .framer-styles-preset-gixrc5.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans 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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 155%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-8k4qi\";\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 (8ea6382)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-5cctP .framer-styles-preset-1exzyzq:not(.rich-text-wrapper), .framer-5cctP .framer-styles-preset-1exzyzq.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5cctP\";\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 (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-quU0k .framer-styles-preset-4es825:not(.rich-text-wrapper), .framer-quU0k .framer-styles-preset-4es825.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans 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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-quU0k\";\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 (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-566EV .framer-styles-preset-1kcf8lo:not(.rich-text-wrapper), .framer-566EV .framer-styles-preset-1kcf8lo.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --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: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, #f7f6f3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-566EV\";\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 (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/2lpXrb8dxRKcn6lWFtgt/JUgVHhbdBz257lydvCu9/g7gH7Sx8v.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gIxq8lUwYaiPKx3FwLrT/LpNejcqhL3zZLN7hkVE8/PDqbg9VtW.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gnyihsHHQkkB9o3qCeUi/h7sNsDSOaZBugnMsWqqy/Vh9yEjl9Y.js\";const enabledGestures={bOsKXoLIA:{hover:true},igE5HVvaJ:{hover:true},n_Nc6Kl2J:{hover:true},p_WTl3gwd:{hover:true},Ps8Mr1NQA:{hover:true},RywqlbXQu:{hover:true}};const cycleOrder=[\"p_WTl3gwd\",\"RywqlbXQu\",\"Ps8Mr1NQA\",\"bOsKXoLIA\",\"igE5HVvaJ\",\"n_Nc6Kl2J\"];const serializationHash=\"framer-as37f\";const variantClassNames={bOsKXoLIA:\"framer-v-17myk8b\",igE5HVvaJ:\"framer-v-1carpr4\",n_Nc6Kl2J:\"framer-v-1h6qvyg\",p_WTl3gwd:\"framer-v-nvxlta\",Ps8Mr1NQA:\"framer-v-11v8qhv\",RywqlbXQu:\"framer-v-1a5ifuq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"L Full Width\":\"bOsKXoLIA\",\"M Full Width\":\"n_Nc6Kl2J\",\"XL Full Width\":\"Ps8Mr1NQA\",L:\"RywqlbXQu\",M:\"igE5HVvaJ\",XL:\"p_WTl3gwd\"};const getProps=({height,id,link,newTab,title,width,...props})=>{return{...props,diYKX0g21:link??props.diYKX0g21,fcHV8IqZl:title??props.fcHV8IqZl??\"Call to action\",NbvqaLwNg:newTab??props.NbvqaLwNg,variant:humanReadableVariantMap[props.variant]??props.variant??\"p_WTl3gwd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,fcHV8IqZl,diYKX0g21,NbvqaLwNg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p_WTl3gwd\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-nvxlta\",className,classNames),\"data-framer-name\":\"XL\",layoutDependency:layoutDependency,layoutId:\"p_WTl3gwd\",ref:refBinding,style:{...style},...addPropertyOverrides({\"bOsKXoLIA-hover\":{\"data-framer-name\":undefined},\"igE5HVvaJ-hover\":{\"data-framer-name\":undefined},\"n_Nc6Kl2J-hover\":{\"data-framer-name\":undefined},\"p_WTl3gwd-hover\":{\"data-framer-name\":undefined},\"Ps8Mr1NQA-hover\":{\"data-framer-name\":undefined},\"RywqlbXQu-hover\":{\"data-framer-name\":undefined},bOsKXoLIA:{\"data-framer-name\":\"L Full Width\"},igE5HVvaJ:{\"data-framer-name\":\"M\"},n_Nc6Kl2J:{\"data-framer-name\":\"M Full Width\"},Ps8Mr1NQA:{\"data-framer-name\":\"XL Full Width\"},RywqlbXQu:{\"data-framer-name\":\"L\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:diYKX0g21,motionChild:true,nodeId:\"tMKFjFIeJ\",openInNewTab:NbvqaLwNg,scopeId:\"GFdw8DoMs\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p4ze53 framer-40vnh4\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"tMKFjFIeJ\",style:{backgroundColor:\"var(--token-101dcf42-b4f3-47cc-b31d-27606727a1ba, rgb(123, 75, 254))\",borderBottomLeftRadius:800,borderBottomRightRadius:800,borderTopLeftRadius:800,borderTopRightRadius:800},variants:{\"bOsKXoLIA-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(204, 65, 0))\"},\"igE5HVvaJ-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(204, 65, 0))\"},\"n_Nc6Kl2J-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(204, 65, 0))\"},\"p_WTl3gwd-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(235, 74, 0))\"},\"Ps8Mr1NQA-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(204, 65, 0))\"},\"RywqlbXQu-hover\":{backgroundColor:\"var(--token-758ba99e-d6c6-4acf-9b86-6b8732b731f9, rgb(204, 65, 0))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kcf8lo\",\"data-styles-preset\":\"Vh9yEjl9Y\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 246, 242))\"},children:\"Call to action\"})}),className:\"framer-1cli03l\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"afBMI0pKE\",style:{\"--extracted-r6o4lv\":\"rgb(247, 246, 242)\",\"--framer-paragraph-spacing\":\"0px\"},text:fcHV8IqZl,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bOsKXoLIA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-4es825\",\"data-styles-preset\":\"PDqbg9VtW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 246, 242))\"},children:\"Call to action\"})})},igE5HVvaJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1exzyzq\",\"data-styles-preset\":\"g7gH7Sx8v\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 246, 242))\"},children:\"Call to action\"})})},n_Nc6Kl2J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1exzyzq\",\"data-styles-preset\":\"g7gH7Sx8v\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 246, 242))\"},children:\"Call to action\"})})},RywqlbXQu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-4es825\",\"data-styles-preset\":\"PDqbg9VtW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 246, 242))\"},children:\"Call to action\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-as37f.framer-40vnh4, .framer-as37f .framer-40vnh4 { display: block; }\",\".framer-as37f.framer-nvxlta { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-as37f .framer-1p4ze53 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; text-decoration: none; user-select: none; width: min-content; }\",\".framer-as37f .framer-1cli03l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-as37f.framer-nvxlta, .framer-as37f .framer-1p4ze53 { gap: 0px; } .framer-as37f.framer-nvxlta > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-as37f.framer-nvxlta > :first-child, .framer-as37f .framer-1p4ze53 > :first-child { margin-left: 0px; } .framer-as37f.framer-nvxlta > :last-child, .framer-as37f .framer-1p4ze53 > :last-child { margin-right: 0px; } .framer-as37f .framer-1p4ze53 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-as37f.framer-v-1a5ifuq.framer-nvxlta { height: 48px; }\",\".framer-as37f.framer-v-1a5ifuq .framer-1p4ze53 { padding: 12px 24px 12px 24px; }\",\".framer-as37f.framer-v-11v8qhv.framer-nvxlta { width: 384px; }\",\".framer-as37f.framer-v-11v8qhv .framer-1p4ze53 { flex: 1 0 0px; width: 1px; }\",\".framer-as37f.framer-v-17myk8b.framer-nvxlta { height: 48px; width: 351px; }\",\".framer-as37f.framer-v-17myk8b .framer-1p4ze53 { flex: 1 0 0px; padding: 12px 24px 12px 24px; width: 1px; }\",\".framer-as37f.framer-v-1carpr4.framer-nvxlta { height: 40px; }\",\".framer-as37f.framer-v-1carpr4 .framer-1p4ze53 { padding: 8px 20px 8px 20px; }\",\".framer-as37f.framer-v-1h6qvyg.framer-nvxlta { height: 40px; width: 325px; }\",\".framer-as37f.framer-v-1h6qvyg .framer-1p4ze53 { flex: 1 0 0px; padding: 8px 20px 8px 20px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 176\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"RywqlbXQu\":{\"layout\":[\"auto\",\"fixed\"]},\"Ps8Mr1NQA\":{\"layout\":[\"fixed\",\"fixed\"]},\"bOsKXoLIA\":{\"layout\":[\"fixed\",\"fixed\"]},\"igE5HVvaJ\":{\"layout\":[\"auto\",\"fixed\"]},\"n_Nc6Kl2J\":{\"layout\":[\"fixed\",\"fixed\"]},\"w5qcI9rDe\":{\"layout\":[\"auto\",\"fixed\"]},\"QxJe1JGTK\":{\"layout\":[\"auto\",\"fixed\"]},\"DfHxP9n6o\":{\"layout\":[\"fixed\",\"fixed\"]},\"D7CposXw3\":{\"layout\":[\"fixed\",\"fixed\"]},\"v9oEXAaDc\":{\"layout\":[\"auto\",\"fixed\"]},\"ew2ctERbb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fcHV8IqZl\":\"title\",\"diYKX0g21\":\"link\",\"NbvqaLwNg\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGFdw8DoMs=withCSS(Component,css,\"framer-as37f\");export default FramerGFdw8DoMs;FramerGFdw8DoMs.displayName=\"Buttons/Button CTA\";FramerGFdw8DoMs.defaultProps={height:56,width:176};addPropertyControls(FramerGFdw8DoMs,{variant:{options:[\"p_WTl3gwd\",\"RywqlbXQu\",\"Ps8Mr1NQA\",\"bOsKXoLIA\",\"igE5HVvaJ\",\"n_Nc6Kl2J\"],optionTitles:[\"XL\",\"L\",\"XL Full Width\",\"L Full Width\",\"M\",\"M Full Width\"],title:\"Variant\",type:ControlType.Enum},fcHV8IqZl:{defaultValue:\"Call to action\",displayTextArea:false,title:\"Title\",type:ControlType.String},diYKX0g21:{title:\"Link\",type:ControlType.Link},NbvqaLwNg:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerGFdw8DoMs,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGFdw8DoMs\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\",\"framerIntrinsicWidth\":\"176\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RywqlbXQu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Ps8Mr1NQA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bOsKXoLIA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"igE5HVvaJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"n_Nc6Kl2J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w5qcI9rDe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QxJe1JGTK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"DfHxP9n6o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D7CposXw3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v9oEXAaDc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ew2ctERbb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"fcHV8IqZl\\\":\\\"title\\\",\\\"diYKX0g21\\\":\\\"link\\\",\\\"NbvqaLwNg\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GFdw8DoMs.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={uLa3wRCRi:{hover:true}};const serializationHash=\"framer-y3nWD\";const variantClassNames={uLa3wRCRi:\"framer-v-tol7tb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,newTab,width,...props})=>{return{...props,cWgGYtf3R:newTab??props.cWgGYtf3R??true,ytfne8bDj:link??props.ytfne8bDj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ytfne8bDj,cWgGYtf3R,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uLa3wRCRi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ytfne8bDj,motionChild:true,nodeId:\"uLa3wRCRi\",openInNewTab:cWgGYtf3R,scopeId:\"BKcvyDe1j\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-tol7tb\",className,classNames)} framer-chlg6v`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uLa3wRCRi\",ref:refBinding,style:{...style},...addPropertyOverrides({\"uLa3wRCRi-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lz01og-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SmwQkbbIs-container\",nodeId:\"SmwQkbbIs\",rendersWithMotion:true,scopeId:\"BKcvyDe1j\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(0, 0, 0))\",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_28850_498)\"> <path d=\"M17.7364 2.96484H20.803L14.0697 10.6315L21.9364 21.0315H15.763L10.9297 14.7115L5.39635 21.0315H2.32969L9.46302 12.8315L1.92969 2.96484H8.25635L12.623 8.73818L17.7364 2.96484ZM16.663 19.2315H18.363L7.36302 4.69818H5.53635L16.663 19.2315Z\" fill=\"black\"/> </g> <defs> <clipPath id=\"clip0_28850_498\"> <rect width=\"20\" height=\"18.0667\" fill=\"white\" transform=\"translate(2 2.96484)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"SmwQkbbIs\",layoutId:\"SmwQkbbIs\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"uLa3wRCRi-hover\":{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-141sd91-container\",\"data-framer-name\":\"hover\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HhcDqdBll-container\",name:\"hover\",nodeId:\"HhcDqdBll\",rendersWithMotion:true,scopeId:\"BKcvyDe1j\",style:{opacity:0},variants:{\"uLa3wRCRi-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\",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_28850_498)\"> <path d=\"M17.7364 2.96484H20.803L14.0697 10.6315L21.9364 21.0315H15.763L10.9297 14.7115L5.39635 21.0315H2.32969L9.46302 12.8315L1.92969 2.96484H8.25635L12.623 8.73818L17.7364 2.96484ZM16.663 19.2315H18.363L7.36302 4.69818H5.53635L16.663 19.2315Z\" fill=\"black\"/> </g> <defs> <clipPath id=\"clip0_28850_498\"> <rect width=\"20\" height=\"18.0667\" fill=\"white\" transform=\"translate(2 2.96484)\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"HhcDqdBll\",layoutId:\"HhcDqdBll\",lineCap:\"butt\",lineJoin:\"miter\",name:\"hover\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y3nWD.framer-chlg6v, .framer-y3nWD .framer-chlg6v { display: block; }\",\".framer-y3nWD.framer-tol7tb { 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-y3nWD .framer-lz01og-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-y3nWD .framer-141sd91-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y3nWD.framer-tol7tb { gap: 0px; } .framer-y3nWD.framer-tol7tb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-y3nWD.framer-tol7tb > :first-child { margin-left: 0px; } .framer-y3nWD.framer-tol7tb > :last-child { margin-right: 0px; } }\",\".framer-y3nWD.framer-v-tol7tb.hover.framer-tol7tb { 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\"]},\"q1o0nKnAr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ytfne8bDj\":\"link\",\"cWgGYtf3R\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBKcvyDe1j=withCSS(Component,css,\"framer-y3nWD\");export default FramerBKcvyDe1j;FramerBKcvyDe1j.displayName=\"Social Links/Twitter\";FramerBKcvyDe1j.defaultProps={height:24,width:24};addPropertyControls(FramerBKcvyDe1j,{ytfne8bDj:{title:\"Link\",type:ControlType.Link},cWgGYtf3R:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerBKcvyDe1j,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBKcvyDe1j\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q1o0nKnAr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"ytfne8bDj\\\":\\\"link\\\",\\\"cWgGYtf3R\\\":\\\"newTab\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BKcvyDe1j.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";const styles=`\n\n.svg_transition svg,\n.svg_transition path,\n.svg_transition rect,\n.svg_transition circle {\n  transition: all .2s;\n}\n        \n  \n`;export function withClass(Component){return props=>{props.className+=\" svg_transition\"// Remember to add a space\n;return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:styles}),/*#__PURE__*/_jsx(Component,{...props})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClass\":{\"type\":\"reactHoc\",\"name\":\"withClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Transition_SVG.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import{withClass}from\"https://framerusercontent.com/modules/TribC0aOBUgXTcYzhwWH/gVFsmfvJhlxapKuLKtLA/Transition_SVG.js\";const SVGFonts=getFonts(SVG);const MotionAWithClass14b83pg=withCodeBoundaryForOverrides(motion.a,{nodeId:\"FnshwM8Hm\",override:withClass,scopeId:\"fbqrq96N7\"});const enabledGestures={FnshwM8Hm:{hover:true}};const serializationHash=\"framer-nK050\";const variantClassNames={FnshwM8Hm:\"framer-v-14b83pg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,newTab,width,...props})=>{return{...props,AXkTlwUfw:newTab??props.AXkTlwUfw??true,l5eOTwdbj:link??props.l5eOTwdbj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l5eOTwdbj,AXkTlwUfw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"FnshwM8Hm\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:l5eOTwdbj,motionChild:true,nodeId:\"FnshwM8Hm\",openInNewTab:AXkTlwUfw,scopeId:\"fbqrq96N7\",children:/*#__PURE__*/_jsxs(MotionAWithClass14b83pg,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-14b83pg\",className,classNames)} framer-46ddur`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FnshwM8Hm\",ref:refBinding,style:{...style},...addPropertyOverrides({\"FnshwM8Hm-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2zfi0m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WkaxHhfyd-container\",nodeId:\"WkaxHhfyd\",rendersWithMotion:true,scopeId:\"fbqrq96N7\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(0, 0, 0))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19.6361 5.15422C18.1907 4.49247 16.6648 4.02301 15.0973 3.75781C14.8828 4.14124 14.6888 4.53574 14.5159 4.93966C12.8463 4.68806 11.1484 4.68806 9.47881 4.93966C9.30587 4.53578 9.1118 4.14129 8.8974 3.75781C7.32897 4.02525 5.80205 4.49583 4.35518 5.15768C1.48276 9.40748 0.70409 13.5517 1.09342 17.6371C2.77558 18.88 4.6584 19.8252 6.66003 20.4317C7.11074 19.8255 7.50956 19.1824 7.85226 18.5092C7.20135 18.2661 6.57311 17.9662 5.9748 17.6129C6.13227 17.4987 6.28627 17.381 6.43508 17.2668C8.17601 18.0855 10.0761 18.51 12 18.51C13.9238 18.51 15.8239 18.0855 17.5648 17.2668C17.7154 17.3897 17.8694 17.5074 18.0251 17.6129C17.4257 17.9668 16.7963 18.2673 16.1442 18.511C16.4865 19.1838 16.8853 19.8264 17.3364 20.4317C19.3398 19.8276 21.224 18.8829 22.9065 17.6389C23.3633 12.9011 22.1261 8.79493 19.6361 5.15422ZM8.34541 15.1246C7.26047 15.1246 6.36414 14.14 6.36414 12.9288C6.36414 11.7175 7.22932 10.7243 8.34195 10.7243C9.45458 10.7243 10.344 11.7175 10.325 12.9288C10.3059 14.14 9.45112 15.1246 8.34541 15.1246ZM15.6545 15.1246C14.5678 15.1246 13.675 14.14 13.675 12.9288C13.675 11.7175 14.5401 10.7243 15.6545 10.7243C16.7689 10.7243 17.6514 11.7175 17.6323 12.9288C17.6133 14.14 16.7602 15.1246 15.6545 15.1246Z\" fill=\"#070607\"/> </svg>',description:\"\",height:\"100%\",id:\"WkaxHhfyd\",layoutId:\"WkaxHhfyd\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"FnshwM8Hm-hover\":{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15odmii-container\",\"data-framer-name\":\"hover\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GvJICYeYp-container\",name:\"hover\",nodeId:\"GvJICYeYp\",rendersWithMotion:true,scopeId:\"fbqrq96N7\",style:{opacity:0},variants:{\"FnshwM8Hm-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19.6361 5.15422C18.1907 4.49247 16.6648 4.02301 15.0973 3.75781C14.8828 4.14124 14.6888 4.53574 14.5159 4.93966C12.8463 4.68806 11.1484 4.68806 9.47881 4.93966C9.30587 4.53578 9.1118 4.14129 8.8974 3.75781C7.32897 4.02525 5.80205 4.49583 4.35518 5.15768C1.48276 9.40748 0.70409 13.5517 1.09342 17.6371C2.77558 18.88 4.6584 19.8252 6.66003 20.4317C7.11074 19.8255 7.50956 19.1824 7.85226 18.5092C7.20135 18.2661 6.57311 17.9662 5.9748 17.6129C6.13227 17.4987 6.28627 17.381 6.43508 17.2668C8.17601 18.0855 10.0761 18.51 12 18.51C13.9238 18.51 15.8239 18.0855 17.5648 17.2668C17.7154 17.3897 17.8694 17.5074 18.0251 17.6129C17.4257 17.9668 16.7963 18.2673 16.1442 18.511C16.4865 19.1838 16.8853 19.8264 17.3364 20.4317C19.3398 19.8276 21.224 18.8829 22.9065 17.6389C23.3633 12.9011 22.1261 8.79493 19.6361 5.15422ZM8.34541 15.1246C7.26047 15.1246 6.36414 14.14 6.36414 12.9288C6.36414 11.7175 7.22932 10.7243 8.34195 10.7243C9.45458 10.7243 10.344 11.7175 10.325 12.9288C10.3059 14.14 9.45112 15.1246 8.34541 15.1246ZM15.6545 15.1246C14.5678 15.1246 13.675 14.14 13.675 12.9288C13.675 11.7175 14.5401 10.7243 15.6545 10.7243C16.7689 10.7243 17.6514 11.7175 17.6323 12.9288C17.6133 14.14 16.7602 15.1246 15.6545 15.1246Z\" fill=\"#070607\"/> </svg>',description:\"\",height:\"100%\",id:\"GvJICYeYp\",layoutId:\"GvJICYeYp\",lineCap:\"butt\",lineJoin:\"miter\",name:\"hover\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nK050.framer-46ddur, .framer-nK050 .framer-46ddur { display: block; }\",\".framer-nK050.framer-14b83pg { 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-nK050 .framer-2zfi0m-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-nK050 .framer-15odmii-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nK050.framer-14b83pg { gap: 0px; } .framer-nK050.framer-14b83pg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nK050.framer-14b83pg > :first-child { margin-left: 0px; } .framer-nK050.framer-14b83pg > :last-child { margin-right: 0px; } }\",\".framer-nK050.framer-v-14b83pg.hover.framer-14b83pg { 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\"]},\"u6CiAyDHV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"l5eOTwdbj\":\"link\",\"AXkTlwUfw\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfbqrq96N7=withCSS(Component,css,\"framer-nK050\");export default Framerfbqrq96N7;Framerfbqrq96N7.displayName=\"Discord\";Framerfbqrq96N7.defaultProps={height:24,width:24};addPropertyControls(Framerfbqrq96N7,{l5eOTwdbj:{title:\"Link\",type:ControlType.Link},AXkTlwUfw:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(Framerfbqrq96N7,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfbqrq96N7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"l5eOTwdbj\\\":\\\"link\\\",\\\"AXkTlwUfw\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u6CiAyDHV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fbqrq96N7.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import{withClass}from\"https://framerusercontent.com/modules/TribC0aOBUgXTcYzhwWH/gVFsmfvJhlxapKuLKtLA/Transition_SVG.js\";const SVGFonts=getFonts(SVG);const MotionAWithClassn39l1e=withCodeBoundaryForOverrides(motion.a,{nodeId:\"WkBT4AmNP\",override:withClass,scopeId:\"YSnFm1b3B\"});const enabledGestures={WkBT4AmNP:{hover:true}};const serializationHash=\"framer-bNEoL\";const variantClassNames={WkBT4AmNP:\"framer-v-n39l1e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,newTab,width,...props})=>{return{...props,cbXda8bKo:link??props.cbXda8bKo,lkxU_A3LU:newTab??props.lkxU_A3LU??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cbXda8bKo,lkxU_A3LU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WkBT4AmNP\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:cbXda8bKo,motionChild:true,nodeId:\"WkBT4AmNP\",openInNewTab:lkxU_A3LU,scopeId:\"YSnFm1b3B\",children:/*#__PURE__*/_jsxs(MotionAWithClassn39l1e,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-n39l1e\",className,classNames)} framer-1xfusd`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WkBT4AmNP\",ref:refBinding,style:{...style},...addPropertyOverrides({\"WkBT4AmNP-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m0lms6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZeJKvQ5Vu-container\",nodeId:\"ZeJKvQ5Vu\",rendersWithMotion:true,scopeId:\"YSnFm1b3B\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(0, 0, 0))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM12.4803 8.8938C11.3059 9.38564 8.96719 10.3994 5.45407 11.9251C4.89197 12.156 4.59085 12.3768 4.56074 12.5976C4.51629 12.971 4.98366 13.1161 5.61414 13.3117C5.6955 13.337 5.77957 13.3631 5.86561 13.3906C6.48793 13.5913 7.31101 13.8222 7.74262 13.8322C8.13408 13.8423 8.56569 13.6817 9.04749 13.3504C12.3298 11.1322 14.016 10.008 14.1265 9.98789C14.2068 9.96782 14.3071 9.94774 14.3774 10.008C14.4477 10.0682 14.4477 10.1886 14.4376 10.2188C14.3897 10.4183 12.4316 12.2362 11.5405 13.0634C11.311 13.2765 11.1522 13.4239 11.1152 13.4609C11.0211 13.5578 10.9252 13.6495 10.833 13.7378C10.2569 14.2892 9.82452 14.7031 10.8542 15.378C11.3224 15.6871 11.6999 15.9447 12.0718 16.1984C12.5211 16.5049 12.9621 16.8058 13.5443 17.1848C13.6815 17.2748 13.8128 17.3683 13.9409 17.4594C14.4409 17.8151 14.8921 18.1361 15.4514 18.0881C15.7726 18.058 16.1038 17.7569 16.2745 16.8535C16.676 14.7256 17.4589 10.0983 17.6396 8.19118C17.6597 8.03058 17.6396 7.81979 17.6195 7.71942C17.5994 7.61904 17.5693 7.48856 17.4489 7.38818C17.2983 7.26773 17.0775 7.24766 16.9771 7.24766C16.5254 7.25769 15.8228 7.49859 12.4803 8.8938Z\" fill=\"#070607\"/> </svg>',description:\"\",height:\"100%\",id:\"ZeJKvQ5Vu\",layoutId:\"ZeJKvQ5Vu\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({\"WkBT4AmNP-hover\":{customColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s4j3t7-container\",\"data-framer-name\":\"hover\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FjmbKi58n-container\",name:\"hover\",nodeId:\"FjmbKi58n\",rendersWithMotion:true,scopeId:\"YSnFm1b3B\",style:{opacity:0},variants:{\"WkBT4AmNP-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM12.4803 8.8938C11.3059 9.38564 8.96719 10.3994 5.45407 11.9251C4.89197 12.156 4.59085 12.3768 4.56074 12.5976C4.51629 12.971 4.98366 13.1161 5.61414 13.3117C5.6955 13.337 5.77957 13.3631 5.86561 13.3906C6.48793 13.5913 7.31101 13.8222 7.74262 13.8322C8.13408 13.8423 8.56569 13.6817 9.04749 13.3504C12.3298 11.1322 14.016 10.008 14.1265 9.98789C14.2068 9.96782 14.3071 9.94774 14.3774 10.008C14.4477 10.0682 14.4477 10.1886 14.4376 10.2188C14.3897 10.4183 12.4316 12.2362 11.5405 13.0634C11.311 13.2765 11.1522 13.4239 11.1152 13.4609C11.0211 13.5578 10.9252 13.6495 10.833 13.7378C10.2569 14.2892 9.82452 14.7031 10.8542 15.378C11.3224 15.6871 11.6999 15.9447 12.0718 16.1984C12.5211 16.5049 12.9621 16.8058 13.5443 17.1848C13.6815 17.2748 13.8128 17.3683 13.9409 17.4594C14.4409 17.8151 14.8921 18.1361 15.4514 18.0881C15.7726 18.058 16.1038 17.7569 16.2745 16.8535C16.676 14.7256 17.4589 10.0983 17.6396 8.19118C17.6597 8.03058 17.6396 7.81979 17.6195 7.71942C17.5994 7.61904 17.5693 7.48856 17.4489 7.38818C17.2983 7.26773 17.0775 7.24766 16.9771 7.24766C16.5254 7.25769 15.8228 7.49859 12.4803 8.8938Z\" fill=\"#070607\"/> </svg>',description:\"\",height:\"100%\",id:\"FjmbKi58n\",layoutId:\"FjmbKi58n\",lineCap:\"butt\",lineJoin:\"miter\",name:\"hover\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bNEoL.framer-1xfusd, .framer-bNEoL .framer-1xfusd { display: block; }\",\".framer-bNEoL.framer-n39l1e { 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-bNEoL .framer-m0lms6-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-bNEoL .framer-1s4j3t7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bNEoL.framer-n39l1e { gap: 0px; } .framer-bNEoL.framer-n39l1e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bNEoL.framer-n39l1e > :first-child { margin-left: 0px; } .framer-bNEoL.framer-n39l1e > :last-child { margin-right: 0px; } }\",\".framer-bNEoL.framer-v-n39l1e.hover.framer-n39l1e { 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\"]},\"ecCJJmPkt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cbXda8bKo\":\"link\",\"lkxU_A3LU\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYSnFm1b3B=withCSS(Component,css,\"framer-bNEoL\");export default FramerYSnFm1b3B;FramerYSnFm1b3B.displayName=\"Telegram\";FramerYSnFm1b3B.defaultProps={height:24,width:24};addPropertyControls(FramerYSnFm1b3B,{cbXda8bKo:{title:\"Link\",type:ControlType.Link},lkxU_A3LU:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerYSnFm1b3B,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYSnFm1b3B\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerVariables\":\"{\\\"cbXda8bKo\\\":\\\"link\\\",\\\"lkxU_A3LU\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ecCJJmPkt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YSnFm1b3B.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialLinksTwitter from\"https://framerusercontent.com/modules/upf1V1hr2DYqfhI6n3cd/HYRQFklIFEk4IvHGkKHZ/BKcvyDe1j.js\";import Discord from\"https://framerusercontent.com/modules/pgMHV4weeR6Qb0eoTiEE/SAiQ1eCK57WXOlY4RG4q/fbqrq96N7.js\";import Telegram from\"https://framerusercontent.com/modules/nkLqwUFloWuAvjJtQbj4/0s7Rlt5JZb3vvJ0rCyWi/YSnFm1b3B.js\";const DiscordFonts=getFonts(Discord);const SocialLinksTwitterFonts=getFonts(SocialLinksTwitter);const TelegramFonts=getFonts(Telegram);const serializationHash=\"framer-fDhMX\";const variantClassNames={VZ0qQ7hbN:\"framer-v-1n9d0v8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VZ0qQ7hbN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-1n9d0v8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VZ0qQ7hbN\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ob9k1g\",\"data-framer-name\":\"socilas\",layoutDependency:layoutDependency,layoutId:\"l9viFJxIo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||24)-0-24)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ynxvoi-container\",layoutDependency:layoutDependency,layoutId:\"H0dgHBLkk-container\",nodeId:\"H0dgHBLkk\",rendersWithMotion:true,scopeId:\"jDXo0qBSn\",children:/*#__PURE__*/_jsx(Discord,{AXkTlwUfw:true,height:\"100%\",id:\"H0dgHBLkk\",l5eOTwdbj:\"https://discord.gg/caldera\",layoutId:\"H0dgHBLkk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||24)-0-24)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hq7f9m-container\",layoutDependency:layoutDependency,layoutId:\"tj6OenSJq-container\",nodeId:\"tj6OenSJq\",rendersWithMotion:true,scopeId:\"jDXo0qBSn\",children:/*#__PURE__*/_jsx(SocialLinksTwitter,{cWgGYtf3R:true,height:\"100%\",id:\"tj6OenSJq\",layoutId:\"tj6OenSJq\",width:\"100%\",ytfne8bDj:\"https://twitter.com/Calderaxyz\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||24)-0-24)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10slbwm-container\",layoutDependency:layoutDependency,layoutId:\"Xwk5Fi1jM-container\",nodeId:\"Xwk5Fi1jM\",rendersWithMotion:true,scopeId:\"jDXo0qBSn\",children:/*#__PURE__*/_jsx(Telegram,{cbXda8bKo:\"https://t.me/s/calderaofficial\",height:\"100%\",id:\"Xwk5Fi1jM\",layoutId:\"Xwk5Fi1jM\",lkxU_A3LU:true,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fDhMX.framer-zod197, .framer-fDhMX .framer-zod197 { display: block; }\",\".framer-fDhMX.framer-1n9d0v8 { 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-fDhMX .framer-ob9k1g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fDhMX .framer-ynxvoi-container, .framer-fDhMX .framer-hq7f9m-container, .framer-fDhMX .framer-10slbwm-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fDhMX.framer-1n9d0v8, .framer-fDhMX .framer-ob9k1g { gap: 0px; } .framer-fDhMX.framer-1n9d0v8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fDhMX.framer-1n9d0v8 > :first-child { margin-top: 0px; } .framer-fDhMX.framer-1n9d0v8 > :last-child { margin-bottom: 0px; } .framer-fDhMX .framer-ob9k1g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-fDhMX .framer-ob9k1g > :first-child { margin-left: 0px; } .framer-fDhMX .framer-ob9k1g > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjDXo0qBSn=withCSS(Component,css,\"framer-fDhMX\");export default FramerjDXo0qBSn;FramerjDXo0qBSn.displayName=\"Social Links/Social Links\";FramerjDXo0qBSn.defaultProps={height:24,width:120};addFonts(FramerjDXo0qBSn,[{explicitInter:true,fonts:[]},...DiscordFonts,...SocialLinksTwitterFonts,...TelegramFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjDXo0qBSn\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"120\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jDXo0qBSn.map", "// Generated by Framer (4e800ba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dVgj8QE9T9flcebfSYJa/h49YpwHv8FJV0ankGWLI/gji_2eo99.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6DMqNW4qOvSx0rTf8col/01dRgx2QCcW16FCLj5ee/RXT5Z_JAQ.js\";const enabledGestures={ndeUbrbi8:{hover:true}};const cycleOrder=[\"ndeUbrbi8\",\"KcrOm4KQp\",\"fh_ePxQNa\",\"MsAUGpFk1\"];const serializationHash=\"framer-hI3Uu\";const variantClassNames={fh_ePxQNa:\"framer-v-1onvdqj\",KcrOm4KQp:\"framer-v-wbu1k4\",MsAUGpFk1:\"framer-v-4p9idn\",ndeUbrbi8:\"framer-v-1lols91\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Current Page\":\"MsAUGpFk1\",\"Mobile Menu without border\":\"fh_ePxQNa\",\"Mobile Menu\":\"KcrOm4KQp\",Desktop:\"ndeUbrbi8\"};const getProps=({height,id,link,newTab,text,width,...props})=>{return{...props,ayRxwCMLa:newTab??props.ayRxwCMLa,exGxkw6NR:text??props.exGxkw6NR??\"Link\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ndeUbrbi8\",wkMIuoQKk:link??props.wkMIuoQKk};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,exGxkw6NR,wkMIuoQKk,ayRxwCMLa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ndeUbrbi8\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"KcrOm4KQp\",\"fh_ePxQNa\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-1lols91\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ndeUbrbi8\",ref:refBinding,style:{...style},...addPropertyOverrides({\"ndeUbrbi8-hover\":{\"data-framer-name\":undefined},fh_ePxQNa:{\"data-framer-name\":\"Mobile Menu without border\"},KcrOm4KQp:{\"data-framer-name\":\"Mobile Menu\"},MsAUGpFk1:{\"data-framer-name\":\"Desktop Current Page\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-myg47q\",\"data-framer-name\":\"Menu Link\",layoutDependency:layoutDependency,layoutId:\"Nix0L5CSc\",children:/*#__PURE__*/_jsx(Link,{href:wkMIuoQKk,motionChild:true,nodeId:\"f45i8YuYf\",openInNewTab:ayRxwCMLa,scopeId:\"JRREWa4Z6\",smoothScroll:true,...addPropertyOverrides({fh_ePxQNa:{href:undefined},KcrOm4KQp:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vjmxtq framer-fklrqy\",\"data-framer-name\":\"Link Wrapper\",layoutDependency:layoutDependency,layoutId:\"f45i8YuYf\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{\"ndeUbrbi8-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},fh_ePxQNa:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},KcrOm4KQp:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(0, 0, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"1px\"},MsAUGpFk1:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({KcrOm4KQp:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7)))\"},children:\"Link\"})}),className:\"framer-bhhfvm\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DG1uJ9mKd\",style:{\"--extracted-r6o4lv\":\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",\"--variable-reference-ayRxwCMLa-JRREWa4Z6\":ayRxwCMLa},text:exGxkw6NR,variants:{\"ndeUbrbi8-hover\":{\"--extracted-r6o4lv\":\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\"},fh_ePxQNa:{\"--variable-reference-ayRxwCMLa-JRREWa4Z6\":ayRxwCMLa},KcrOm4KQp:{\"--variable-reference-ayRxwCMLa-JRREWa4Z6\":ayRxwCMLa}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"ndeUbrbi8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0)))\"},children:\"Link\"})})},fh_ePxQNa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:wkMIuoQKk,motionChild:true,nodeId:\"DG1uJ9mKd\",openInNewTab:ayRxwCMLa,scopeId:\"JRREWa4Z6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gyw27d\",\"data-styles-preset\":\"gji_2eo99\",children:\"Link\"})})})})},KcrOm4KQp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:wkMIuoQKk,motionChild:true,nodeId:\"DG1uJ9mKd\",openInNewTab:ayRxwCMLa,scopeId:\"JRREWa4Z6\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gyw27d\",\"data-styles-preset\":\"gji_2eo99\",children:\"Link\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n4k3ha\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"qaxn9RAfn\",style:{backgroundColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(46, 46, 46))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:0},variants:{\"ndeUbrbi8-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},MsAUGpFk1:{backgroundColor:\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1}}})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hI3Uu.framer-fklrqy, .framer-hI3Uu .framer-fklrqy { display: block; }\",\".framer-hI3Uu.framer-1lols91 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hI3Uu .framer-myg47q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hI3Uu .framer-1vjmxtq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hI3Uu .framer-bhhfvm { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-hI3Uu .framer-n4k3ha { bottom: 3px; flex: none; height: 1px; left: -120px; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hI3Uu.framer-1lols91, .framer-hI3Uu .framer-myg47q, .framer-hI3Uu .framer-1vjmxtq { gap: 0px; } .framer-hI3Uu.framer-1lols91 > *, .framer-hI3Uu .framer-myg47q > *, .framer-hI3Uu .framer-1vjmxtq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hI3Uu.framer-1lols91 > :first-child, .framer-hI3Uu .framer-myg47q > :first-child, .framer-hI3Uu .framer-1vjmxtq > :first-child { margin-top: 0px; } .framer-hI3Uu.framer-1lols91 > :last-child, .framer-hI3Uu .framer-myg47q > :last-child, .framer-hI3Uu .framer-1vjmxtq > :last-child { margin-bottom: 0px; } }\",\".framer-hI3Uu.framer-v-wbu1k4.framer-1lols91, .framer-hI3Uu.framer-v-1onvdqj.framer-1lols91 { cursor: unset; width: 250px; }\",\".framer-hI3Uu.framer-v-wbu1k4 .framer-myg47q, .framer-hI3Uu.framer-v-1onvdqj .framer-myg47q { width: 100%; }\",\".framer-hI3Uu.framer-v-wbu1k4 .framer-1vjmxtq, .framer-hI3Uu.framer-v-1onvdqj .framer-1vjmxtq { padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-hI3Uu.framer-v-wbu1k4 .framer-bhhfvm, .framer-hI3Uu.framer-v-1onvdqj .framer-bhhfvm { height: 56px; overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hI3Uu.framer-v-4p9idn.framer-1lols91 { cursor: unset; }\",\".framer-hI3Uu.framer-v-4p9idn .framer-n4k3ha { bottom: 0px; height: 2px; left: 0px; pointer-events: none; }\",\".framer-hI3Uu.framer-v-1lols91.hover .framer-n4k3ha { left: 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-hI3Uu[data-border=\"true\"]::after, .framer-hI3Uu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 30.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KcrOm4KQp\":{\"layout\":[\"fixed\",\"auto\"]},\"fh_ePxQNa\":{\"layout\":[\"fixed\",\"auto\"]},\"MsAUGpFk1\":{\"layout\":[\"auto\",\"auto\"]},\"wiPWF4D6_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"exGxkw6NR\":\"text\",\"wkMIuoQKk\":\"link\",\"ayRxwCMLa\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJRREWa4Z6=withCSS(Component,css,\"framer-hI3Uu\");export default FramerJRREWa4Z6;FramerJRREWa4Z6.displayName=\"Header Link\";FramerJRREWa4Z6.defaultProps={height:25,width:30.5};addPropertyControls(FramerJRREWa4Z6,{variant:{options:[\"ndeUbrbi8\",\"KcrOm4KQp\",\"fh_ePxQNa\",\"MsAUGpFk1\"],optionTitles:[\"Desktop\",\"Mobile Menu\",\"Mobile Menu without border\",\"Desktop Current Page\"],title:\"Variant\",type:ControlType.Enum},exGxkw6NR:{defaultValue:\"Link\",displayTextArea:false,title:\"Text\",type:ControlType.String},wkMIuoQKk:{title:\"Link\",type:ControlType.Link},ayRxwCMLa:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerJRREWa4Z6,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJRREWa4Z6\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"exGxkw6NR\\\":\\\"text\\\",\\\"wkMIuoQKk\\\":\\\"link\\\",\\\"ayRxwCMLa\\\":\\\"newTab\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"30.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KcrOm4KQp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fh_ePxQNa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MsAUGpFk1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wiPWF4D6_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"25\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JRREWa4Z6.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"r2vnNjmZ1\",\"yVjUS6m_j\"];const serializationHash=\"framer-ZvbQR\";const variantClassNames={r2vnNjmZ1:\"framer-v-h3iwuc\",yVjUS6m_j:\"framer-v-1rx4s4k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"r2vnNjmZ1\",Opened:\"yVjUS6m_j\"};const getProps=({click,height,id,width,...props})=>{return{...props,hzGtSPmrT:click??props.hzGtSPmrT,variant:humanReadableVariantMap[props.variant]??props.variant??\"r2vnNjmZ1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,hzGtSPmrT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r2vnNjmZ1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapa9xxo=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"yVjUS6m_j\");});const onTap18jd8r9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"r2vnNjmZ1\");});const onTap1mz4l6y=activeVariantCallback(async(...args)=>{if(hzGtSPmrT){const res=await hzGtSPmrT(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-h3iwuc\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"r2vnNjmZ1\",onTap:onTapa9xxo,ref:refBinding,style:{...style},...addPropertyOverrides({yVjUS6m_j:{\"data-framer-name\":\"Opened\",onTap:onTap18jd8r9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lfkuo6\",\"data-framer-name\":\"wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"c_RzbWBMa\",onTap:onTap1mz4l6y,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oc6rss\",\"data-framer-name\":\"bottom\",layoutDependency:layoutDependency,layoutId:\"RwahAy9pZ\",style:{backgroundColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,rotate:0},variants:{yVjUS6m_j:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n6w3hc\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"zrmYPe40g\",style:{backgroundColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,rotate:0},variants:{yVjUS6m_j:{rotate:45}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZvbQR.framer-14h0c8n, .framer-ZvbQR .framer-14h0c8n { display: block; }\",\".framer-ZvbQR.framer-h3iwuc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZvbQR .framer-lfkuo6 { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 32px; }\",\".framer-ZvbQR .framer-oc6rss { bottom: 9px; flex: none; height: 4px; overflow: hidden; position: absolute; right: 4px; width: 13px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZvbQR .framer-1n6w3hc { flex: none; height: 4px; left: 4px; overflow: hidden; position: absolute; top: 9px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZvbQR.framer-h3iwuc { gap: 0px; } .framer-ZvbQR.framer-h3iwuc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZvbQR.framer-h3iwuc > :first-child { margin-left: 0px; } .framer-ZvbQR.framer-h3iwuc > :last-child { margin-right: 0px; } }\",\".framer-ZvbQR.framer-v-1rx4s4k .framer-oc6rss { bottom: unset; top: calc(50.00000000000002% - 4px / 2); width: 24px; }\",\".framer-ZvbQR.framer-v-1rx4s4k .framer-1n6w3hc { top: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yVjUS6m_j\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hzGtSPmrT\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTZveDCkxo=withCSS(Component,css,\"framer-ZvbQR\");export default FramerTZveDCkxo;FramerTZveDCkxo.displayName=\"Header/Burger\";FramerTZveDCkxo.defaultProps={height:32,width:32};addPropertyControls(FramerTZveDCkxo,{variant:{options:[\"r2vnNjmZ1\",\"yVjUS6m_j\"],optionTitles:[\"Closed\",\"Opened\"],title:\"Variant\",type:ControlType.Enum},hzGtSPmrT:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTZveDCkxo,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTZveDCkxo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yVjUS6m_j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"hzGtSPmrT\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TZveDCkxo.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonsButtonCTA from\"https://framerusercontent.com/modules/2X1oMRS5m6yOprWcShXh/Qi08BSNCqFsKrF1RshL4/GFdw8DoMs.js\";import SocialLinksSocialLinks from\"https://framerusercontent.com/modules/8vYuhE1xa3QHJI5Wrl5M/XCt9YHQsXsuvB4Bh7Wgq/jDXo0qBSn.js\";import HeaderLink from\"https://framerusercontent.com/modules/qoa5pxZDgcwKFMdjDtXK/FnKn5juGV6y2z0AIGen2/JRREWa4Z6.js\";import HeaderBurger from\"https://framerusercontent.com/modules/cSAWnzEvgCVqbD62jenl/ucxrRA5GD9fXeSRuqVaF/TZveDCkxo.js\";const HeaderBurgerFonts=getFonts(HeaderBurger);const HeaderLinkFonts=getFonts(HeaderLink);const SocialLinksSocialLinksFonts=getFonts(SocialLinksSocialLinks);const ButtonsButtonCTAFonts=getFonts(ButtonsButtonCTA);const HeaderLinkControls=getPropertyControls(HeaderLink);const cycleOrder=[\"afgx_dEhM\",\"rFlo3eHCV\",\"pJWN3lGlL\",\"wMtNdMhSh\",\"YjJO1R7Tt\",\"vdw2Dkkze\",\"zaQh0pYWB\"];const serializationHash=\"framer-qdcdI\";const variantClassNames={afgx_dEhM:\"framer-v-x5m9h7\",pJWN3lGlL:\"framer-v-1my5dar\",rFlo3eHCV:\"framer-v-27z90j\",vdw2Dkkze:\"framer-v-1ukzz3z\",wMtNdMhSh:\"framer-v-1imipeq\",YjJO1R7Tt:\"framer-v-jc7uzt\",zaQh0pYWB:\"framer-v-9zaszu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.33,1.06,.64,1.14],type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.34,.9,.56,1],type:\"tween\"};const transition3={delay:0,duration:.3,ease:[.35,.81,.56,1],type:\"tween\"};const transition4={damping:100,delay:0,mass:1,stiffness:1e3,type:\"spring\"};const transition5={damping:22,delay:0,mass:.1,stiffness:1e3,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition6={delay:0,duration:.3,ease:[.4,.88,.56,1],type:\"tween\"};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Desktop Current Page\":\"MsAUGpFk1\",\"Mobile Menu without border\":\"fh_ePxQNa\",\"Mobile Menu\":\"KcrOm4KQp\",Desktop:\"ndeUbrbi8\"};const humanReadableVariantMap={\"Desktop Scrolled\":\"YjJO1R7Tt\",\"Desktop Wide\":\"afgx_dEhM\",\"Phone Open Scrolled\":\"zaQh0pYWB\",\"Phone Open\":\"pJWN3lGlL\",\"Phone Scrolled\":\"wMtNdMhSh\",Laptop:\"vdw2Dkkze\",Phone:\"rFlo3eHCV\"};const getProps=({height,id,link1Variant,link2Variant,link3Variant,width,...props})=>{return{...props,qwB3p9fSy:humanReadableEnumMap[link2Variant]??link2Variant??props.qwB3p9fSy??\"ndeUbrbi8\",Srj2jmWlr:humanReadableEnumMap[link3Variant]??link3Variant??props.Srj2jmWlr??\"ndeUbrbi8\",variant:humanReadableVariantMap[props.variant]??props.variant??\"afgx_dEhM\",Z9fjG0k0k:humanReadableEnumMap[link1Variant]??link1Variant??props.Z9fjG0k0k??\"ndeUbrbi8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Z9fjG0k0k,qwB3p9fSy,Srj2jmWlr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"afgx_dEhM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const hzGtSPmrTsoyw3l=activeVariantCallback(async(...args)=>{setVariant(\"pJWN3lGlL\");});const hzGtSPmrT1dto9t9=activeVariantCallback(async(...args)=>{setVariant(\"rFlo3eHCV\");});const hzGtSPmrTwbeuxn=activeVariantCallback(async(...args)=>{setVariant(\"zaQh0pYWB\");});const hzGtSPmrT107z1zn=activeVariantCallback(async(...args)=>{setVariant(\"wMtNdMhSh\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"rFlo3eHCV\",\"pJWN3lGlL\",\"wMtNdMhSh\",\"zaQh0pYWB\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"rFlo3eHCV\",\"pJWN3lGlL\",\"wMtNdMhSh\",\"zaQh0pYWB\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"rFlo3eHCV\",\"wMtNdMhSh\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed3=()=>{if(baseVariant===\"YjJO1R7Tt\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({pJWN3lGlL:{value:transition3},rFlo3eHCV:{value:transition2},wMtNdMhSh:{value:transition3},zaQh0pYWB:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-x5m9h7\",className,classNames),\"data-framer-name\":\"Desktop Wide\",layoutDependency:layoutDependency,layoutId:\"afgx_dEhM\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{pJWN3lGlL:{backgroundColor:\"rgba(247, 246, 242, 0)\"},rFlo3eHCV:{backgroundColor:\"rgba(247, 246, 242, 0)\"},vdw2Dkkze:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wMtNdMhSh:{backgroundColor:\"rgba(247, 246, 242, 0)\"},YjJO1R7Tt:{backgroundColor:\"rgba(0, 0, 0, 0)\"},zaQh0pYWB:{backgroundColor:\"rgba(247, 246, 242, 0)\"}},...addPropertyOverrides({pJWN3lGlL:{\"data-framer-name\":\"Phone Open\"},rFlo3eHCV:{\"data-framer-name\":\"Phone\"},vdw2Dkkze:{\"data-framer-name\":\"Laptop\"},wMtNdMhSh:{\"data-framer-name\":\"Phone Scrolled\"},YjJO1R7Tt:{\"data-framer-name\":\"Desktop Scrolled\"},zaQh0pYWB:{\"data-framer-name\":\"Phone Open Scrolled\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u7pil7\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"fQRmJL_LJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(247, 246, 243, 0)\",borderBottomLeftRadius:800,borderBottomRightRadius:800,borderTopLeftRadius:800,borderTopRightRadius:800},variants:{pJWN3lGlL:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},rFlo3eHCV:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},wMtNdMhSh:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},YjJO1R7Tt:{\"--border-color\":\"rgba(0, 0, 0, 0.1)\",backgroundColor:\"rgb(247, 246, 242)\"},zaQh0pYWB:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ry0gfk\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"NvhRrGMvu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eu2poo\",\"data-framer-name\":\"Logo and Burger\",layoutDependency:layoutDependency,layoutId:\"AZKhIip3w\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ebaj4x\",layoutDependency:layoutDependency,layoutId:\"mZBGDGo9T\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({pJWN3lGlL:{height:25,width:\"25px\",y:(componentViewport?.y||0)+18+0+0+0+0+0+0+3.5},rFlo3eHCV:{height:25,width:\"25px\",y:(componentViewport?.y||0)+(18+((componentViewport?.height||68)-36-32)/2)+0+0+0+3.5},wMtNdMhSh:{height:25,width:\"25px\",y:(componentViewport?.y||0)+(18+((componentViewport?.height||68)-36-32)/2)+0+0+0+3.5},zaQh0pYWB:{height:25,width:\"25px\",y:(componentViewport?.y||0)+18+0+0+0+0+0+0+3.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f5pni6-container\",layoutDependency:layoutDependency,layoutId:\"mPu8_Ux2E-container\",nodeId:\"mPu8_Ux2E\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(HeaderBurger,{height:\"100%\",hzGtSPmrT:hzGtSPmrTsoyw3l,id:\"mPu8_Ux2E\",layoutId:\"mPu8_Ux2E\",style:{height:\"100%\",width:\"100%\"},variant:\"r2vnNjmZ1\",width:\"100%\",...addPropertyOverrides({pJWN3lGlL:{hzGtSPmrT:hzGtSPmrT1dto9t9},wMtNdMhSh:{hzGtSPmrT:hzGtSPmrTwbeuxn},zaQh0pYWB:{hzGtSPmrT:hzGtSPmrT107z1zn}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b6fhzk\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"zin55NRh9\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Sqi4GQwpn\",scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+18+2+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"},className:\"framer-17pcunk framer-1ql2ofo\",layoutDependency:layoutDependency,layoutId:\"Sqi4GQwpn\",...addPropertyOverrides({pJWN3lGlL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+18+0+0+0+0+0+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}},rFlo3eHCV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(18+((componentViewport?.height||68)-36-32)/2)+0+0+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}},vdw2Dkkze:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+18+2+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}},wMtNdMhSh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(18+((componentViewport?.height||68)-36-32)/2)+0+0+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}},YjJO1R7Tt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+18+2+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}},zaQh0pYWB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+18+0+0+0+0+0+0+0+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ip0hra\",\"data-framer-name\":\"divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"LZzn6lcwx\",svg:'<svg width=\"4\" height=\"36\" viewBox=\"-1 -1 4 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.828125 1L0.828126 33\" stroke=\"#070607\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"0.05 4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mjcth\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"MHR5E1jI1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FAUkdgRPu\"},implicitPathVariables:undefined},{href:{webPageId:\"FAUkdgRPu\"},implicitPathVariables:undefined},{href:{webPageId:\"FAUkdgRPu\"},implicitPathVariables:undefined},{href:{webPageId:\"FAUkdgRPu\"},implicitPathVariables:undefined},{href:{webPageId:\"FAUkdgRPu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+18+5.5+0,...addPropertyOverrides({pJWN3lGlL:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+0},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+18+5.5+0},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+18+5.5+0},zaQh0pYWB:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w8u8g7-container\",layoutDependency:layoutDependency,layoutId:\"Afj1a7gdE-container\",nodeId:\"Afj1a7gdE\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(HeaderLink,{ayRxwCMLa:false,exGxkw6NR:\"Rollups\",height:\"100%\",id:\"Afj1a7gdE\",layoutId:\"Afj1a7gdE\",variant:Z9fjG0k0k,width:\"100%\",wkMIuoQKk:resolvedLinks[0],...addPropertyOverrides({pJWN3lGlL:{style:{width:\"100%\"},variant:\"fh_ePxQNa\",wkMIuoQKk:resolvedLinks[1]},vdw2Dkkze:{wkMIuoQKk:resolvedLinks[3]},YjJO1R7Tt:{wkMIuoQKk:resolvedLinks[2]},zaQh0pYWB:{style:{width:\"100%\"},variant:\"fh_ePxQNa\",wkMIuoQKk:resolvedLinks[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LCOAxqk_1\"},implicitPathVariables:undefined},{href:{webPageId:\"LCOAxqk_1\"},implicitPathVariables:undefined},{href:{webPageId:\"LCOAxqk_1\"},implicitPathVariables:undefined},{href:{webPageId:\"LCOAxqk_1\"},implicitPathVariables:undefined},{href:{webPageId:\"LCOAxqk_1\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+18+5.5+0,...addPropertyOverrides({pJWN3lGlL:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+25},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+18+5.5+0},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+18+5.5+0},zaQh0pYWB:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+25}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1afh0qd-container\",layoutDependency:layoutDependency,layoutId:\"xVx4WuWgY-container\",nodeId:\"xVx4WuWgY\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(HeaderLink,{ayRxwCMLa:false,exGxkw6NR:\"Metalayer\",height:\"100%\",id:\"xVx4WuWgY\",layoutId:\"xVx4WuWgY\",variant:qwB3p9fSy,width:\"100%\",wkMIuoQKk:resolvedLinks1[0],...addPropertyOverrides({pJWN3lGlL:{style:{width:\"100%\"},variant:\"KcrOm4KQp\",wkMIuoQKk:resolvedLinks1[1]},vdw2Dkkze:{wkMIuoQKk:resolvedLinks1[3]},YjJO1R7Tt:{wkMIuoQKk:resolvedLinks1[2]},zaQh0pYWB:{style:{width:\"100%\"},variant:\"KcrOm4KQp\",wkMIuoQKk:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FPfxj74V4\"},implicitPathVariables:undefined},{href:{webPageId:\"FPfxj74V4\"},implicitPathVariables:undefined},{href:{webPageId:\"FPfxj74V4\"},implicitPathVariables:undefined},{href:{webPageId:\"FPfxj74V4\"},implicitPathVariables:undefined},{href:{webPageId:\"FPfxj74V4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+18+5.5+0,...addPropertyOverrides({pJWN3lGlL:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+50},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+18+5.5+0},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+18+5.5+0},zaQh0pYWB:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+50}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l23q60-container\",layoutDependency:layoutDependency,layoutId:\"XzPLawf9T-container\",nodeId:\"XzPLawf9T\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(HeaderLink,{ayRxwCMLa:false,exGxkw6NR:\"Blog\",height:\"100%\",id:\"XzPLawf9T\",layoutId:\"XzPLawf9T\",variant:Srj2jmWlr,width:\"100%\",wkMIuoQKk:resolvedLinks2[0],...addPropertyOverrides({pJWN3lGlL:{style:{width:\"100%\"},variant:\"KcrOm4KQp\",wkMIuoQKk:resolvedLinks2[1]},vdw2Dkkze:{wkMIuoQKk:resolvedLinks2[3]},YjJO1R7Tt:{wkMIuoQKk:resolvedLinks2[2]},zaQh0pYWB:{style:{width:\"100%\"},variant:\"KcrOm4KQp\",wkMIuoQKk:resolvedLinks2[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+18+5.5+0,...addPropertyOverrides({pJWN3lGlL:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+75},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+18+5.5+0},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+18+5.5+0},zaQh0pYWB:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1916px)`,y:(componentViewport?.y||0)+18+0+0+0+0+64+0+75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-95s0r8-container\",layoutDependency:layoutDependency,layoutId:\"UOii0cSVF-container\",nodeId:\"UOii0cSVF\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(HeaderLink,{ayRxwCMLa:true,exGxkw6NR:\"Docs\",height:\"100%\",id:\"UOii0cSVF\",layoutId:\"UOii0cSVF\",variant:\"ndeUbrbi8\",width:\"100%\",wkMIuoQKk:\"https://docs.caldera.xyz/\",...addPropertyOverrides({pJWN3lGlL:{style:{width:\"100%\"},variant:\"KcrOm4KQp\"},zaQh0pYWB:{style:{width:\"100%\"},variant:\"KcrOm4KQp\"}},baseVariant,gestureVariant)})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-w4q3ui\",\"data-framer-name\":\"divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"p7uAZAA3L\",svg:'<svg width=\"4\" height=\"36\" viewBox=\"-1 -1 4 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.828125 1L0.828126 33\" stroke=\"#070607\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"0.05 4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qpbtb3\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"V2Z_sEqiw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+8+16,...addPropertyOverrides({pJWN3lGlL:{y:(componentViewport?.y||0)+18+0+0+212+16},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+8+16},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+8+16},zaQh0pYWB:{y:(componentViewport?.y||0)+18+0+0+212+16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cip0h2-container\",layoutDependency:layoutDependency,layoutId:\"N9YSurQoN-container\",nodeId:\"N9YSurQoN\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(SocialLinksSocialLinks,{height:\"100%\",id:\"N9YSurQoN\",layoutId:\"N9YSurQoN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-156irku\",\"data-framer-name\":\"divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:4,layoutDependency:layoutDependency,layoutId:\"u7bzS7Kk7\",svg:'<svg width=\"4\" height=\"36\" viewBox=\"-1 -1 4 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.828125 1L0.828126 33\" stroke=\"#070607\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"0.05 4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-72)/2)+8+0,...addPropertyOverrides({pJWN3lGlL:{y:(componentViewport?.y||0)+18+0+0+212+0},vdw2Dkkze:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||96)-32-72)/2)+8+0},YjJO1R7Tt:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||80)-16-72)/2)+8+0},zaQh0pYWB:{y:(componentViewport?.y||0)+18+0+0+212+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qfz87a-container\",layoutDependency:layoutDependency,layoutId:\"XcR01GTgH-container\",nodeId:\"XcR01GTgH\",rendersWithMotion:true,scopeId:\"fXvSXNS41\",children:/*#__PURE__*/_jsx(ButtonsButtonCTA,{diYKX0g21:\"https://dashboard.caldera.xyz/deploy\",fcHV8IqZl:\"Get started\",height:\"100%\",id:\"XcR01GTgH\",layoutId:\"XcR01GTgH\",NbvqaLwNg:true,variant:\"RywqlbXQu\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({pJWN3lGlL:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v79xq1\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"Tv5eexA_U\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:800,borderBottomRightRadius:800,borderTopLeftRadius:800,borderTopRightRadius:800,opacity:1},variants:{pJWN3lGlL:{backgroundColor:\"rgb(247, 246, 242)\",opacity:0},rFlo3eHCV:{backgroundColor:\"rgb(247, 246, 242)\",opacity:0},wMtNdMhSh:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(247, 246, 242)\",opacity:1},zaQh0pYWB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(247, 246, 242)\",opacity:1}},...addPropertyOverrides({wMtNdMhSh:{\"data-border\":true}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({rFlo3eHCV:{value:transition5},wMtNdMhSh:{value:transition5},zaQh0pYWB:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14qzosq\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"BeJvH89op\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},variants:{pJWN3lGlL:{backgroundColor:\"rgb(247, 246, 242)\",opacity:1},rFlo3eHCV:{backgroundColor:\"rgb(247, 246, 242)\"},wMtNdMhSh:{backgroundColor:\"rgb(247, 246, 242)\"},zaQh0pYWB:{backgroundColor:\"rgb(247, 246, 242)\",opacity:1}}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qdcdI.framer-1ql2ofo, .framer-qdcdI .framer-1ql2ofo { display: block; }\",\".framer-qdcdI.framer-x5m9h7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 24px 40px 24px 40px; position: relative; width: 1600px; }\",\".framer-qdcdI .framer-u7pil7 { 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; max-width: 1916px; overflow: visible; padding: 8px 8px 8px 24px; position: relative; width: 1px; }\",\".framer-qdcdI .framer-1ry0gfk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qdcdI .framer-1eu2poo, .framer-qdcdI .framer-ebaj4x, .framer-qdcdI .framer-1b6fhzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qdcdI .framer-f5pni6-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-qdcdI .framer-17pcunk { -webkit-user-select: none; aspect-ratio: 4.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; text-decoration: none; user-select: none; width: 152px; }\",\".framer-qdcdI .framer-ip0hra, .framer-qdcdI .framer-w4q3ui, .framer-qdcdI .framer-156irku { flex: none; height: 36px; position: relative; width: 4px; }\",\".framer-qdcdI .framer-mjcth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-qdcdI .framer-w8u8g7-container, .framer-qdcdI .framer-1afh0qd-container, .framer-qdcdI .framer-1l23q60-container, .framer-qdcdI .framer-95s0r8-container, .framer-qdcdI .framer-1cip0h2-container, .framer-qdcdI .framer-qfz87a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qdcdI .framer-qpbtb3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qdcdI .framer-v79xq1 { flex: none; height: 46px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-qdcdI .framer-14qzosq { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-x5m9h7, .framer-qdcdI .framer-u7pil7, .framer-qdcdI .framer-1ry0gfk, .framer-qdcdI .framer-1eu2poo, .framer-qdcdI .framer-ebaj4x, .framer-qdcdI .framer-1b6fhzk, .framer-qdcdI .framer-mjcth, .framer-qdcdI .framer-qpbtb3 { gap: 0px; } .framer-qdcdI.framer-x5m9h7 > *, .framer-qdcdI .framer-mjcth > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qdcdI.framer-x5m9h7 > :first-child, .framer-qdcdI .framer-u7pil7 > :first-child, .framer-qdcdI .framer-1ry0gfk > :first-child, .framer-qdcdI .framer-1eu2poo > :first-child, .framer-qdcdI .framer-ebaj4x > :first-child, .framer-qdcdI .framer-1b6fhzk > :first-child, .framer-qdcdI .framer-mjcth > :first-child, .framer-qdcdI .framer-qpbtb3 > :first-child { margin-left: 0px; } .framer-qdcdI.framer-x5m9h7 > :last-child, .framer-qdcdI .framer-u7pil7 > :last-child, .framer-qdcdI .framer-1ry0gfk > :last-child, .framer-qdcdI .framer-1eu2poo > :last-child, .framer-qdcdI .framer-ebaj4x > :last-child, .framer-qdcdI .framer-1b6fhzk > :last-child, .framer-qdcdI .framer-mjcth > :last-child, .framer-qdcdI .framer-qpbtb3 > :last-child { margin-right: 0px; } .framer-qdcdI .framer-u7pil7 > *, .framer-qdcdI .framer-1eu2poo > *, .framer-qdcdI .framer-ebaj4x > *, .framer-qdcdI .framer-1b6fhzk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qdcdI .framer-1ry0gfk > *, .framer-qdcdI .framer-qpbtb3 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-qdcdI.framer-v-27z90j.framer-x5m9h7, .framer-qdcdI.framer-v-1imipeq.framer-x5m9h7 { padding: 18px 24px 18px 24px; width: 390px; }\",\".framer-qdcdI.framer-v-27z90j .framer-u7pil7, .framer-qdcdI.framer-v-1imipeq .framer-u7pil7 { padding: 0px; z-index: 3; }\",\".framer-qdcdI.framer-v-27z90j .framer-1ry0gfk { gap: unset; justify-content: space-between; z-index: 2; }\",\".framer-qdcdI.framer-v-27z90j .framer-1eu2poo, .framer-qdcdI.framer-v-1imipeq .framer-1eu2poo { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-qdcdI.framer-v-27z90j .framer-ebaj4x, .framer-qdcdI.framer-v-1my5dar .framer-ebaj4x, .framer-qdcdI.framer-v-1imipeq .framer-ebaj4x, .framer-qdcdI.framer-v-9zaszu .framer-ebaj4x { flex: 1 0 0px; gap: unset; justify-content: space-between; order: 0; width: 1px; }\",\".framer-qdcdI.framer-v-27z90j .framer-f5pni6-container, .framer-qdcdI.framer-v-1my5dar .framer-f5pni6-container, .framer-qdcdI.framer-v-1imipeq .framer-f5pni6-container, .framer-qdcdI.framer-v-9zaszu .framer-f5pni6-container { order: 1; }\",\".framer-qdcdI.framer-v-27z90j .framer-1b6fhzk, .framer-qdcdI.framer-v-1my5dar .framer-1b6fhzk, .framer-qdcdI.framer-v-9zaszu .framer-1b6fhzk { order: 0; }\",\".framer-qdcdI.framer-v-27z90j .framer-v79xq1 { bottom: -10px; height: unset; left: -16px; right: -16px; top: -10px; width: unset; }\",\".framer-qdcdI.framer-v-27z90j .framer-14qzosq { pointer-events: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-27z90j .framer-1ry0gfk, .framer-qdcdI.framer-v-27z90j .framer-1eu2poo, .framer-qdcdI.framer-v-27z90j .framer-ebaj4x { gap: 0px; } .framer-qdcdI.framer-v-27z90j .framer-1ry0gfk > *, .framer-qdcdI.framer-v-27z90j .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-27z90j .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-27z90j .framer-1eu2poo > *, .framer-qdcdI.framer-v-27z90j .framer-1eu2poo > :first-child, .framer-qdcdI.framer-v-27z90j .framer-1eu2poo > :last-child, .framer-qdcdI.framer-v-27z90j .framer-ebaj4x > *, .framer-qdcdI.framer-v-27z90j .framer-ebaj4x > :first-child, .framer-qdcdI.framer-v-27z90j .framer-ebaj4x > :last-child { margin: 0px; } }\",\".framer-qdcdI.framer-v-1my5dar.framer-x5m9h7, .framer-qdcdI.framer-v-9zaszu.framer-x5m9h7 { flex-direction: column; gap: 48px; height: 774px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; padding: 18px 24px 18px 24px; width: 390px; }\",\".framer-qdcdI.framer-v-1my5dar .framer-u7pil7, .framer-qdcdI.framer-v-9zaszu .framer-u7pil7 { flex: none; flex-direction: column; gap: 48px; order: 0; padding: 0px; width: 100%; z-index: 3; }\",\".framer-qdcdI.framer-v-1my5dar .framer-1ry0gfk, .framer-qdcdI.framer-v-9zaszu .framer-1ry0gfk { flex: none; flex-direction: column; order: 0; width: 100%; z-index: 2; }\",\".framer-qdcdI.framer-v-1my5dar .framer-1eu2poo, .framer-qdcdI.framer-v-9zaszu .framer-1eu2poo { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-mjcth, .framer-qdcdI.framer-v-9zaszu .framer-mjcth { flex-direction: column; gap: 0px; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-w8u8g7-container, .framer-qdcdI.framer-v-9zaszu .framer-w8u8g7-container { order: 0; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-1afh0qd-container, .framer-qdcdI.framer-v-9zaszu .framer-1afh0qd-container { order: 1; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-1l23q60-container, .framer-qdcdI.framer-v-9zaszu .framer-1l23q60-container { order: 2; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-95s0r8-container, .framer-qdcdI.framer-v-9zaszu .framer-95s0r8-container { order: 3; width: 100%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-qpbtb3, .framer-qdcdI.framer-v-9zaszu .framer-qpbtb3 { order: 1; z-index: 3; }\",\".framer-qdcdI.framer-v-1my5dar .framer-v79xq1 { height: 52px; left: -15px; order: 3; top: -10px; width: 109%; }\",\".framer-qdcdI.framer-v-1my5dar .framer-14qzosq, .framer-qdcdI.framer-v-9zaszu .framer-14qzosq { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-1my5dar.framer-x5m9h7, .framer-qdcdI.framer-v-1my5dar .framer-u7pil7, .framer-qdcdI.framer-v-1my5dar .framer-1ry0gfk, .framer-qdcdI.framer-v-1my5dar .framer-1eu2poo, .framer-qdcdI.framer-v-1my5dar .framer-ebaj4x, .framer-qdcdI.framer-v-1my5dar .framer-mjcth { gap: 0px; } .framer-qdcdI.framer-v-1my5dar.framer-x5m9h7 > *, .framer-qdcdI.framer-v-1my5dar .framer-u7pil7 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-qdcdI.framer-v-1my5dar.framer-x5m9h7 > :first-child, .framer-qdcdI.framer-v-1my5dar .framer-u7pil7 > :first-child, .framer-qdcdI.framer-v-1my5dar .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-1my5dar .framer-mjcth > :first-child { margin-top: 0px; } .framer-qdcdI.framer-v-1my5dar.framer-x5m9h7 > :last-child, .framer-qdcdI.framer-v-1my5dar .framer-u7pil7 > :last-child, .framer-qdcdI.framer-v-1my5dar .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-1my5dar .framer-mjcth > :last-child { margin-bottom: 0px; } .framer-qdcdI.framer-v-1my5dar .framer-1ry0gfk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-qdcdI.framer-v-1my5dar .framer-1eu2poo > *, .framer-qdcdI.framer-v-1my5dar .framer-1eu2poo > :first-child, .framer-qdcdI.framer-v-1my5dar .framer-1eu2poo > :last-child, .framer-qdcdI.framer-v-1my5dar .framer-ebaj4x > *, .framer-qdcdI.framer-v-1my5dar .framer-ebaj4x > :first-child, .framer-qdcdI.framer-v-1my5dar .framer-ebaj4x > :last-child { margin: 0px; } .framer-qdcdI.framer-v-1my5dar .framer-mjcth > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-qdcdI.framer-v-1imipeq .framer-1ry0gfk { gap: unset; justify-content: space-between; order: 1; z-index: 2; }\",\".framer-qdcdI.framer-v-1imipeq .framer-1b6fhzk { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 0; overflow: hidden; }\",\".framer-qdcdI.framer-v-1imipeq .framer-v79xq1 { bottom: -10px; height: unset; left: -16px; order: 0; right: -16px; top: -10px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-1imipeq .framer-1ry0gfk, .framer-qdcdI.framer-v-1imipeq .framer-1eu2poo, .framer-qdcdI.framer-v-1imipeq .framer-ebaj4x { gap: 0px; } .framer-qdcdI.framer-v-1imipeq .framer-1ry0gfk > *, .framer-qdcdI.framer-v-1imipeq .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-1imipeq .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-1imipeq .framer-1eu2poo > *, .framer-qdcdI.framer-v-1imipeq .framer-1eu2poo > :first-child, .framer-qdcdI.framer-v-1imipeq .framer-1eu2poo > :last-child, .framer-qdcdI.framer-v-1imipeq .framer-ebaj4x > *, .framer-qdcdI.framer-v-1imipeq .framer-ebaj4x > :first-child, .framer-qdcdI.framer-v-1imipeq .framer-ebaj4x > :last-child { margin: 0px; } }\",\".framer-qdcdI.framer-v-jc7uzt.framer-x5m9h7 { padding: 16px 0px 0px 0px; width: min-content; }\",\".framer-qdcdI.framer-v-jc7uzt .framer-u7pil7, .framer-qdcdI.framer-v-jc7uzt .framer-1ry0gfk { flex: none; gap: 24px; width: min-content; }\",\".framer-qdcdI.framer-v-jc7uzt .framer-ebaj4x { align-content: flex-start; align-items: flex-start; justify-content: flex-start; overflow: hidden; width: 34px; }\",\".framer-qdcdI.framer-v-jc7uzt .framer-qpbtb3, .framer-qdcdI.framer-v-1ukzz3z .framer-1ry0gfk, .framer-qdcdI.framer-v-1ukzz3z .framer-qpbtb3 { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-jc7uzt .framer-u7pil7, .framer-qdcdI.framer-v-jc7uzt .framer-1ry0gfk, .framer-qdcdI.framer-v-jc7uzt .framer-qpbtb3 { gap: 0px; } .framer-qdcdI.framer-v-jc7uzt .framer-u7pil7 > *, .framer-qdcdI.framer-v-jc7uzt .framer-1ry0gfk > *, .framer-qdcdI.framer-v-jc7uzt .framer-qpbtb3 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qdcdI.framer-v-jc7uzt .framer-u7pil7 > :first-child, .framer-qdcdI.framer-v-jc7uzt .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-jc7uzt .framer-qpbtb3 > :first-child { margin-left: 0px; } .framer-qdcdI.framer-v-jc7uzt .framer-u7pil7 > :last-child, .framer-qdcdI.framer-v-jc7uzt .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-jc7uzt .framer-qpbtb3 > :last-child { margin-right: 0px; } }\",\".framer-qdcdI.framer-v-1ukzz3z.framer-x5m9h7 { padding: 16px 32px 16px 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-1ukzz3z .framer-1ry0gfk, .framer-qdcdI.framer-v-1ukzz3z .framer-qpbtb3 { gap: 0px; } .framer-qdcdI.framer-v-1ukzz3z .framer-1ry0gfk > *, .framer-qdcdI.framer-v-1ukzz3z .framer-qpbtb3 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qdcdI.framer-v-1ukzz3z .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-1ukzz3z .framer-qpbtb3 > :first-child { margin-left: 0px; } .framer-qdcdI.framer-v-1ukzz3z .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-1ukzz3z .framer-qpbtb3 > :last-child { margin-right: 0px; } }\",\".framer-qdcdI.framer-v-9zaszu .framer-v79xq1 { height: 52px; left: -16px; order: 3; top: -10px; width: 109%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qdcdI.framer-v-9zaszu.framer-x5m9h7, .framer-qdcdI.framer-v-9zaszu .framer-u7pil7, .framer-qdcdI.framer-v-9zaszu .framer-1ry0gfk, .framer-qdcdI.framer-v-9zaszu .framer-1eu2poo, .framer-qdcdI.framer-v-9zaszu .framer-ebaj4x, .framer-qdcdI.framer-v-9zaszu .framer-mjcth { gap: 0px; } .framer-qdcdI.framer-v-9zaszu.framer-x5m9h7 > *, .framer-qdcdI.framer-v-9zaszu .framer-u7pil7 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-qdcdI.framer-v-9zaszu.framer-x5m9h7 > :first-child, .framer-qdcdI.framer-v-9zaszu .framer-u7pil7 > :first-child, .framer-qdcdI.framer-v-9zaszu .framer-1ry0gfk > :first-child, .framer-qdcdI.framer-v-9zaszu .framer-mjcth > :first-child { margin-top: 0px; } .framer-qdcdI.framer-v-9zaszu.framer-x5m9h7 > :last-child, .framer-qdcdI.framer-v-9zaszu .framer-u7pil7 > :last-child, .framer-qdcdI.framer-v-9zaszu .framer-1ry0gfk > :last-child, .framer-qdcdI.framer-v-9zaszu .framer-mjcth > :last-child { margin-bottom: 0px; } .framer-qdcdI.framer-v-9zaszu .framer-1ry0gfk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-qdcdI.framer-v-9zaszu .framer-1eu2poo > *, .framer-qdcdI.framer-v-9zaszu .framer-1eu2poo > :first-child, .framer-qdcdI.framer-v-9zaszu .framer-1eu2poo > :last-child, .framer-qdcdI.framer-v-9zaszu .framer-ebaj4x > *, .framer-qdcdI.framer-v-9zaszu .framer-ebaj4x > :first-child, .framer-qdcdI.framer-v-9zaszu .framer-ebaj4x > :last-child { margin: 0px; } .framer-qdcdI.framer-v-9zaszu .framer-mjcth > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-qdcdI[data-border=\"true\"]::after, .framer-qdcdI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rFlo3eHCV\":{\"layout\":[\"fixed\",\"auto\"]},\"pJWN3lGlL\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"wMtNdMhSh\":{\"layout\":[\"fixed\",\"auto\"]},\"YjJO1R7Tt\":{\"layout\":[\"auto\",\"auto\"]},\"vdw2Dkkze\":{\"layout\":[\"fixed\",\"auto\"]},\"zaQh0pYWB\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]}}}\n * @framerVariables {\"Z9fjG0k0k\":\"link1Variant\",\"qwB3p9fSy\":\"link2Variant\",\"Srj2jmWlr\":\"link3Variant\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfXvSXNS41=withCSS(Component,css,\"framer-qdcdI\");export default FramerfXvSXNS41;FramerfXvSXNS41.displayName=\"Header\";FramerfXvSXNS41.defaultProps={height:112,width:1600};addPropertyControls(FramerfXvSXNS41,{variant:{options:[\"afgx_dEhM\",\"rFlo3eHCV\",\"pJWN3lGlL\",\"wMtNdMhSh\",\"YjJO1R7Tt\",\"vdw2Dkkze\",\"zaQh0pYWB\"],optionTitles:[\"Desktop Wide\",\"Phone\",\"Phone Open\",\"Phone Scrolled\",\"Desktop Scrolled\",\"Laptop\",\"Phone Open Scrolled\"],title:\"Variant\",type:ControlType.Enum},Z9fjG0k0k:HeaderLinkControls?.[\"variant\"]&&{...HeaderLinkControls[\"variant\"],defaultValue:\"ndeUbrbi8\",description:undefined,hidden:undefined,title:\"Link 1 Variant\"},qwB3p9fSy:HeaderLinkControls?.[\"variant\"]&&{...HeaderLinkControls[\"variant\"],defaultValue:\"ndeUbrbi8\",description:undefined,hidden:undefined,title:\"Link 2 Variant\"},Srj2jmWlr:HeaderLinkControls?.[\"variant\"]&&{...HeaderLinkControls[\"variant\"],defaultValue:\"ndeUbrbi8\",description:undefined,hidden:undefined,title:\"Link 3 Variant\"}});addFonts(FramerfXvSXNS41,[{explicitInter:true,fonts:[]},...HeaderBurgerFonts,...HeaderLinkFonts,...SocialLinksSocialLinksFonts,...ButtonsButtonCTAFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfXvSXNS41\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rFlo3eHCV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pJWN3lGlL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"wMtNdMhSh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YjJO1R7Tt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vdw2Dkkze\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zaQh0pYWB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Z9fjG0k0k\\\":\\\"link1Variant\\\",\\\"qwB3p9fSy\\\":\\\"link2Variant\\\",\\\"Srj2jmWlr\\\":\\\"link3Variant\\\"}\",\"framerIntrinsicWidth\":\"1600\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fXvSXNS41.map", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Corp Compact Ultrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Corp Compact Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/anhv7YNRKQqdqHA0p1TSuTJHY4M.woff2\"}]}];export const css=[\".framer-wZjd5 .framer-styles-preset-h9lqe0:not(.rich-text-wrapper), .framer-wZjd5 .framer-styles-preset-h9lqe0.rich-text-wrapper h4 { --framer-font-family: \\\"PP Neue Corp Compact Ultrabold\\\", \\\"PP Neue Corp Compact Ultrabold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss10' on, 'ss06' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-wZjd5\";\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 (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Corp Compact Ultrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Corp Compact Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/anhv7YNRKQqdqHA0p1TSuTJHY4M.woff2\"}]}];export const css=[\".framer-17dre .framer-styles-preset-a41y7g:not(.rich-text-wrapper), .framer-17dre .framer-styles-preset-a41y7g.rich-text-wrapper h5 { --framer-font-family: \\\"PP Neue Corp Compact Ultrabold\\\", \\\"PP Neue Corp Compact Ultrabold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss10' on, 'ss06' on; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-17dre\";\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 (8ea6382)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-qgFu7 .framer-styles-preset-cxnxiv:not(.rich-text-wrapper), .framer-qgFu7 .framer-styles-preset-cxnxiv.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-qgFu7\";\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 (8ea6382)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-5cctP .framer-styles-preset-1exzyzq:not(.rich-text-wrapper), .framer-5cctP .framer-styles-preset-1exzyzq.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --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: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5cctP\";\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 (8ea6382)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-UdzvK .framer-styles-preset-1vhkr9a:not(.rich-text-wrapper), .framer-UdzvK .framer-styles-preset-1vhkr9a.rich-text-wrapper p { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --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: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-UdzvK\";\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 (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Corp Compact Ultrabold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Corp Compact Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/anhv7YNRKQqdqHA0p1TSuTJHY4M.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-N3vng .framer-styles-preset-jxw2fa:not(.rich-text-wrapper), .framer-N3vng .framer-styles-preset-jxw2fa.rich-text-wrapper h6 { --framer-font-family: \"PP Neue Corp Compact Ultrabold\", \"PP Neue Corp Compact Ultrabold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on, \\'ss10\\' on, \\'ss06\\' on; --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-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-N3vng\";\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 (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Neue Corp Compact Ultrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Neue Corp Compact Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/anhv7YNRKQqdqHA0p1TSuTJHY4M.woff2\"}]}];export const css=[\".framer-5u4xy .framer-styles-preset-1gke5qu:not(.rich-text-wrapper), .framer-5u4xy .framer-styles-preset-1gke5qu.rich-text-wrapper h3 { --framer-font-family: \\\"PP Neue Corp Compact Ultrabold\\\", \\\"PP Neue Corp Compact Ultrabold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss10' on, 'ss06' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #070607); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-5u4xy\";\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 (4e800ba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-7ThGP .framer-styles-preset-5oshfm:not(.rich-text-wrapper), .framer-7ThGP .framer-styles-preset-5oshfm.rich-text-wrapper a { --framer-link-current-text-color: #000000; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, #000000); --framer-link-text-decoration: none; transition: color 0.1s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-7ThGP\";\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 (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={oJ38s1Z4i:{hover:true}};const cycleOrder=[\"oJ38s1Z4i\",\"eiacYYD6N\"];const serializationHash=\"framer-D2Lec\";const variantClassNames={eiacYYD6N:\"framer-v-1iqgx31\",oJ38s1Z4i:\"framer-v-w5eizb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oJ38s1Z4i\",Phone:\"eiacYYD6N\"};const getProps=({backgroundColor,height,iconColor,id,link,newTab,sVGIconCode,width,...props})=>{return{...props,dIYUhgxtT:newTab??props.dIYUhgxtT??true,eFBFcxHnX:link??props.eFBFcxHnX,tCvfhRsud:sVGIconCode??props.tCvfhRsud??'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_28850_469)\"> <path d=\"M53.2091 8.89453H62.4091L42.2091 31.8945L65.8091 63.0945H47.2891L32.7891 44.1345L16.1891 63.0945H6.98906L28.3891 38.4945L5.78906 8.89453H24.7691L37.8691 26.2145L53.2091 8.89453ZM49.9891 57.6945H55.0891L22.0891 14.0945H16.6091L49.9891 57.6945Z\" fill=\"#F7F6F3\"/> </g> <defs> <clipPath id=\"clip0_28850_469\"> <rect width=\"60\" height=\"54.2\" fill=\"white\" transform=\"translate(6 8.89453)\"/> </clipPath> </defs> </svg>',variant:humanReadableVariantMap[props.variant]??props.variant??\"oJ38s1Z4i\",VMxY9LXRy:iconColor??props.VMxY9LXRy??\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\",XJh_JZR21:backgroundColor??props.XJh_JZR21??\"var(--token-e13cdd09-ffed-4e55-9430-565d5cdcd911, rgb(82, 74, 233))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eFBFcxHnX,dIYUhgxtT,XJh_JZR21,tCvfhRsud,VMxY9LXRy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oJ38s1Z4i\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-w5eizb\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oJ38s1Z4i\",ref:refBinding,style:{...style},...addPropertyOverrides({\"oJ38s1Z4i-hover\":{\"data-framer-name\":undefined},eiacYYD6N:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:eFBFcxHnX,motionChild:true,nodeId:\"jMeC7rwvy\",openInNewTab:dIYUhgxtT,scopeId:\"smMXMpaqg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-109v83u framer-1va8w7l\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"jMeC7rwvy\",style:{backgroundColor:XJh_JZR21,borderBottomLeftRadius:800,borderBottomRightRadius:800,borderTopLeftRadius:800,borderTopRightRadius:800,rotate:0},variants:{\"oJ38s1Z4i-hover\":{rotate:25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qpyr8c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AhAHopz5z-container\",nodeId:\"AhAHopz5z\",rendersWithMotion:true,scopeId:\"smMXMpaqg\",children:/*#__PURE__*/_jsx(SVG,{customColor:VMxY9LXRy,customPadding:0,customStrokeWidth:2,customSvgCode:tCvfhRsud,description:\"\",height:\"100%\",id:\"AhAHopz5z\",layoutId:\"AhAHopz5z\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D2Lec.framer-1va8w7l, .framer-D2Lec .framer-1va8w7l { display: block; }\",\".framer-D2Lec.framer-w5eizb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 144px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 144px; }\",\".framer-D2Lec .framer-109v83u { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: var(--framer-aspect-ratio-supported, 144px); justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-D2Lec .framer-1qpyr8c-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D2Lec.framer-w5eizb, .framer-D2Lec .framer-109v83u { gap: 0px; } .framer-D2Lec.framer-w5eizb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-D2Lec.framer-w5eizb > :first-child, .framer-D2Lec .framer-109v83u > :first-child { margin-left: 0px; } .framer-D2Lec.framer-w5eizb > :last-child, .framer-D2Lec .framer-109v83u > :last-child { margin-right: 0px; } .framer-D2Lec .framer-109v83u > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } }\",\".framer-D2Lec.framer-v-1iqgx31.framer-w5eizb { cursor: unset; }\",\".framer-D2Lec.framer-v-1iqgx31 .framer-1qpyr8c-container { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eiacYYD6N\":{\"layout\":[\"fixed\",\"fixed\"]},\"JV9Y5ZrBp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eFBFcxHnX\":\"link\",\"dIYUhgxtT\":\"newTab\",\"XJh_JZR21\":\"backgroundColor\",\"tCvfhRsud\":\"sVGIconCode\",\"VMxY9LXRy\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersmMXMpaqg=withCSS(Component,css,\"framer-D2Lec\");export default FramersmMXMpaqg;FramersmMXMpaqg.displayName=\"Social Link Big\";FramersmMXMpaqg.defaultProps={height:144,width:144};addPropertyControls(FramersmMXMpaqg,{variant:{options:[\"oJ38s1Z4i\",\"eiacYYD6N\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},eFBFcxHnX:{title:\"Link\",type:ControlType.Link},dIYUhgxtT:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},XJh_JZR21:{defaultValue:'var(--token-e13cdd09-ffed-4e55-9430-565d5cdcd911, rgb(82, 74, 233)) /* {\"name\":\"Brand 02\"} */',title:\"Background Color\",type:ControlType.Color},tCvfhRsud:{defaultValue:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_28850_469)\"> <path d=\"M53.2091 8.89453H62.4091L42.2091 31.8945L65.8091 63.0945H47.2891L32.7891 44.1345L16.1891 63.0945H6.98906L28.3891 38.4945L5.78906 8.89453H24.7691L37.8691 26.2145L53.2091 8.89453ZM49.9891 57.6945H55.0891L22.0891 14.0945H16.6091L49.9891 57.6945Z\" fill=\"#F7F6F3\"/> </g> <defs> <clipPath id=\"clip0_28850_469\"> <rect width=\"60\" height=\"54.2\" fill=\"white\" transform=\"translate(6 8.89453)\"/> </clipPath> </defs> </svg>',displayTextArea:false,title:\"SVG Icon Code\",type:ControlType.String},VMxY9LXRy:{defaultValue:'var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243)) /* {\"name\":\"White\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramersmMXMpaqg,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersmMXMpaqg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eiacYYD6N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JV9Y5ZrBp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"144\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"eFBFcxHnX\\\":\\\"link\\\",\\\"dIYUhgxtT\\\":\\\"newTab\\\",\\\"XJh_JZR21\\\":\\\"backgroundColor\\\",\\\"tCvfhRsud\\\":\\\"sVGIconCode\\\",\\\"VMxY9LXRy\\\":\\\"iconColor\\\"}\",\"framerIntrinsicWidth\":\"144\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./smMXMpaqg.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dOXlVx5kMg7wkrbwmonn/vh0dcEFasc6JKg49EGg6/DUZJCcWcT.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uaByuJGmYheCUJQBzUXW/hlUXm4SL57WIRXhtaMTT/FhGgf_07z.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/kaZEcNILafVUM6vtnmj2/xVDi9237EEkzKQhn21Kd/o0y7Ravy4.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/8s95ez86U3VohF3t8JWd/cDIiH54AqghNz6VqpvTm/oPxKj5Z1s.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iGzQFCNUXeH1ulxsIl6j/Dfant1FAJOrXE734UwJ5/Q_9iORRnh.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/6DMqNW4qOvSx0rTf8col/01dRgx2QCcW16FCLj5ee/RXT5Z_JAQ.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/x3AZq1DmvIeIrTqTnlmq/P7800UslUkRnGCndecI2/Vm_6GFCy2.js\";import ButtonsButtonCTA from\"https://framerusercontent.com/modules/2X1oMRS5m6yOprWcShXh/Qi08BSNCqFsKrF1RshL4/GFdw8DoMs.js\";import SocialLinkBig from\"https://framerusercontent.com/modules/1Z6g6OYHbi5hTW6t2krm/ltAa7bfZlobXnrTSWJRM/smMXMpaqg.js\";const ButtonsButtonCTAFonts=getFonts(ButtonsButtonCTA);const MotionDivWithFX=withFX(motion.div);const SocialLinkBigFonts=getFonts(SocialLinkBig);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const cycleOrder=[\"C30nEqWfK\",\"vywhCD1mu\",\"vjk_Ngl5m\",\"fqw3aQ7kk\",\"d1GCCyeq1\"];const serializationHash=\"framer-x6y0J\";const variantClassNames={C30nEqWfK:\"framer-v-18z84li\",d1GCCyeq1:\"framer-v-kngtx7\",fqw3aQ7kk:\"framer-v-1iiw5pz\",vjk_Ngl5m:\"framer-v-fgju99\",vywhCD1mu:\"framer-v-k91fc7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:.1,duration:.5,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:0,delay:.25,duration:.5,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:0,delay:.2,duration:.5,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:0,delay:.3,duration:.5,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:0,delay:.35,duration:.5,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition6,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Wide\":\"C30nEqWfK\",Desktop:\"vywhCD1mu\",Laptop:\"vjk_Ngl5m\",Phone:\"d1GCCyeq1\",Tablet:\"fqw3aQ7kk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"C30nEqWfK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C30nEqWfK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-18z84li\",className,classNames),\"data-framer-name\":\"Desktop Wide\",layoutDependency:layoutDependency,layoutId:\"C30nEqWfK\",ref:refBinding,style:{...style},...addPropertyOverrides({d1GCCyeq1:{\"data-framer-name\":\"Phone\"},fqw3aQ7kk:{\"data-framer-name\":\"Tablet\"},vjk_Ngl5m:{\"data-framer-name\":\"Laptop\"},vywhCD1mu:{\"data-framer-name\":\"Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q1wtgx\",\"data-framer-name\":\"footer\",layoutDependency:layoutDependency,layoutId:\"EK9riQ8iF\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jn1gg\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"Q8SIVov2o\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vqmel7\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"NqVbPjSCm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19m52m7\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"CnnNIhbMk\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1du8oth\",\"data-framer-name\":\"cta\",layoutDependency:layoutDependency,layoutId:\"HzsAQYIV5\",style:{backgroundColor:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{d1GCCyeq1:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},vjk_Ngl5m:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"b1mfxacDd\",scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"},className:\"framer-1ho6w3a framer-16p7tci\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"b1mfxacDd\",...addPropertyOverrides({d1GCCyeq1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+0+24+0),pixelHeight:32,pixelWidth:152,src:\"https://framerusercontent.com/images/Iq7vLS5gHlui5KBzGrA5lXvs.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w9wi70\",layoutDependency:layoutDependency,layoutId:\"UKD9JnxNK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1gke5qu\",\"data-styles-preset\":\"Q_9iORRnh\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243)))\"},children:\"Fastest-growing rollup ecosystem on Ethereum.\"})}),className:\"framer-148mcxy\",\"data-framer-name\":\"Fastest-growing rollup ecosystem on Ethereum\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kegis3tCW\",style:{\"--extracted-a0htzi\":\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{d1GCCyeq1:{\"--extracted-1lwpl3i\":\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\"},vjk_Ngl5m:{\"--extracted-1w1cjl5\":\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\"},vywhCD1mu:{\"--extracted-1eung3n\":\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d1GCCyeq1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-a41y7g\",\"data-styles-preset\":\"oPxKj5Z1s\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243)))\"},children:\"Fastest-growing rollup ecosystem on Ethereum.\"})})},vjk_Ngl5m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-jxw2fa\",\"data-styles-preset\":\"FhGgf_07z\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243)))\"},children:\"Fastest-growing rollup ecosystem on Ethereum.\"})})},vywhCD1mu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-h9lqe0\",\"data-styles-preset\":\"DUZJCcWcT\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243)))\"},children:\"Fastest-growing rollup ecosystem on Ethereum.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,...addPropertyOverrides({d1GCCyeq1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+0+24+88+0+56}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18hu2bm-container\",layoutDependency:layoutDependency,layoutId:\"sNAROlnI8-container\",nodeId:\"sNAROlnI8\",rendersWithMotion:true,scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(ButtonsButtonCTA,{diYKX0g21:\"https://calendly.com/james_caldera/30min?utm_source=landing\",fcHV8IqZl:\"Book a call\",height:\"100%\",id:\"sNAROlnI8\",layoutId:\"sNAROlnI8\",NbvqaLwNg:true,variant:\"RywqlbXQu\",width:\"100%\",...addPropertyOverrides({vjk_Ngl5m:{variant:\"igE5HVvaJ\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14jwamh\",\"data-framer-name\":\"inner\",layoutDependency:layoutDependency,layoutId:\"MK82z8vSS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qawjli\",\"data-framer-name\":\"social\",layoutDependency:layoutDependency,layoutId:\"FGufsIu8E\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.46 - 16px, 1px) - 48px) / 4, 1px)`,...addPropertyOverrides({d1GCCyeq1:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.96) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+264+0+0+0},fqw3aQ7kk:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.9) - 48px) / 4, 1px)`},vjk_Ngl5m:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1900px) / 2 - 16px, 1px) - 48px) / 4, 1px)`},vywhCD1mu:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.45 - 16px, 1px) - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qydb4b-container\",layoutDependency:layoutDependency,layoutId:\"FTMucA4zk-container\",nodeId:\"FTMucA4zk\",rendersWithMotion:true,scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(SocialLinkBig,{dIYUhgxtT:true,eFBFcxHnX:\"https://x.com/calderaxyz?lang=en\",height:\"100%\",id:\"FTMucA4zk\",layoutId:\"FTMucA4zk\",style:{height:\"100%\",width:\"100%\"},tCvfhRsud:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_28850_469)\"> <path d=\"M53.2091 8.89453H62.4091L42.2091 31.8945L65.8091 63.0945H47.2891L32.7891 44.1345L16.1891 63.0945H6.98906L28.3891 38.4945L5.78906 8.89453H24.7691L37.8691 26.2145L53.2091 8.89453ZM49.9891 57.6945H55.0891L22.0891 14.0945H16.6091L49.9891 57.6945Z\" fill=\"#F7F6F3\"/> </g> <defs> <clipPath id=\"clip0_28850_469\"> <rect width=\"60\" height=\"54.2\" fill=\"white\" transform=\"translate(6 8.89453)\"/> </clipPath> </defs> </svg>',variant:\"oJ38s1Z4i\",VMxY9LXRy:\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\",width:\"100%\",XJh_JZR21:\"var(--token-e13cdd09-ffed-4e55-9430-565d5cdcd911, rgb(82, 74, 233))\",...addPropertyOverrides({d1GCCyeq1:{variant:\"eiacYYD6N\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.46 - 16px, 1px) - 48px) / 4, 1px)`,...addPropertyOverrides({d1GCCyeq1:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.96) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+264+0+0+0},fqw3aQ7kk:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.9) - 48px) / 4, 1px)`},vjk_Ngl5m:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1900px) / 2 - 16px, 1px) - 48px) / 4, 1px)`},vywhCD1mu:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.45 - 16px, 1px) - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gbvrum-container\",layoutDependency:layoutDependency,layoutId:\"Xg5AsZunl-container\",nodeId:\"Xg5AsZunl\",rendersWithMotion:true,scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(SocialLinkBig,{dIYUhgxtT:true,eFBFcxHnX:\"https://discord.gg/caldera\",height:\"100%\",id:\"Xg5AsZunl\",layoutId:\"Xg5AsZunl\",style:{height:\"100%\",width:\"100%\"},tCvfhRsud:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M58.9083 15.4627C54.572 13.4774 49.9943 12.069 45.292 11.2734C44.6485 12.4237 44.0663 13.6072 43.5478 14.819C38.5389 14.0642 33.4453 14.0642 28.4364 14.819C27.9176 13.6073 27.3354 12.4239 26.6922 11.2734C21.9869 12.0757 17.4062 13.4875 13.0655 15.4731C4.44827 28.2224 2.11227 40.6552 3.28027 52.9114C8.32675 56.64 13.9752 59.4756 19.9801 61.2951C21.3322 59.4765 22.5287 57.5472 23.5568 55.5277C21.6041 54.7984 19.7193 53.8986 17.9244 52.8387C18.3968 52.4961 18.8588 52.1431 19.3053 51.8005C24.528 54.2566 30.2284 55.5301 35.9999 55.5301C41.7714 55.5301 47.4717 54.2566 52.6945 51.8005C53.1461 52.1691 53.6082 52.5221 54.0754 52.8387C52.277 53.9003 50.3888 54.8018 48.4326 55.5329C49.4594 57.5515 50.656 59.4791 52.0093 61.2951C58.0193 59.4829 63.6721 56.6486 68.7195 52.9166C70.09 38.7033 66.3783 26.3848 58.9083 15.4627ZM25.0362 45.3739C21.7814 45.3739 19.0924 42.4201 19.0924 38.7864C19.0924 35.1526 21.688 32.1729 25.0259 32.1729C28.3638 32.1729 31.032 35.1526 30.9749 38.7864C30.9178 42.4201 28.3534 45.3739 25.0362 45.3739ZM46.9635 45.3739C43.7035 45.3739 41.0249 42.4201 41.0249 38.7864C41.0249 35.1526 43.6204 32.1729 46.9635 32.1729C50.3066 32.1729 52.9541 35.1526 52.897 38.7864C52.8399 42.4201 50.2806 45.3739 46.9635 45.3739Z\" fill=\"#F7F6F3\"/> </svg>',variant:\"oJ38s1Z4i\",VMxY9LXRy:\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\",width:\"100%\",XJh_JZR21:\"var(--token-ccb730f8-4b9b-4431-8834-3995a95bc7bd, rgb(252, 80, 0))\",...addPropertyOverrides({d1GCCyeq1:{variant:\"eiacYYD6N\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.46 - 16px, 1px) - 48px) / 4, 1px)`,...addPropertyOverrides({d1GCCyeq1:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.96) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+264+0+0+0},fqw3aQ7kk:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.9) - 48px) / 4, 1px)`},vjk_Ngl5m:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1900px) / 2 - 16px, 1px) - 48px) / 4, 1px)`},vywhCD1mu:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.45 - 16px, 1px) - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1f0wxzh-container\",layoutDependency:layoutDependency,layoutId:\"dQ01zbB9d-container\",nodeId:\"dQ01zbB9d\",rendersWithMotion:true,scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(SocialLinkBig,{dIYUhgxtT:true,eFBFcxHnX:\"https://t.me/s/calderaofficial\",height:\"100%\",id:\"dQ01zbB9d\",layoutId:\"dQ01zbB9d\",style:{height:\"100%\",width:\"100%\"},tCvfhRsud:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M69 36C69 54.2254 54.2254 69 36 69C17.7746 69 3 54.2254 3 36C3 17.7746 17.7746 3 36 3C54.2254 3 69 17.7746 69 36ZM37.4316 26.6767C33.9084 28.1522 26.8922 31.1936 16.3528 35.7707C14.6665 36.4633 13.7632 37.1257 13.6728 37.7882C13.5395 38.9084 14.9416 39.3435 16.833 39.9305C17.0771 40.0062 17.3293 40.0845 17.5875 40.1671C19.4544 40.7694 21.9237 41.4619 23.2185 41.4921C24.3929 41.5222 25.6877 41.0404 27.1331 40.0467C36.9799 33.3918 42.0388 30.0192 42.37 29.959C42.6109 29.8988 42.912 29.8385 43.1228 30.0192C43.3336 30.1999 43.3336 30.5612 43.3035 30.6516C43.1598 31.2502 37.2854 36.7038 34.6122 39.1854C33.9235 39.8248 33.4473 40.2669 33.3363 40.3779C33.0539 40.6686 32.7663 40.9439 32.4898 41.2086C30.7613 42.863 29.4642 44.1045 32.5534 46.1294C33.9577 47.0565 35.0904 47.8293 36.2059 48.5904C37.554 49.5101 38.8768 50.4126 40.6235 51.5496C41.035 51.8199 41.429 52.1001 41.8133 52.3735C43.3133 53.4407 44.6669 54.4036 46.3449 54.2597C47.3085 54.1694 48.3022 53.266 48.8141 50.5559C50.0186 44.1721 52.3674 30.2902 52.9094 24.5689C52.9696 24.0871 52.9094 23.4547 52.8492 23.1536C52.7889 22.8524 52.6986 22.461 52.3372 22.1599C51.8856 21.7985 51.2231 21.7383 50.922 21.7383C49.5669 21.7684 47.459 22.4911 37.4316 26.6767Z\" fill=\"#070607\"/> </svg>',variant:\"oJ38s1Z4i\",VMxY9LXRy:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",width:\"100%\",XJh_JZR21:\"var(--token-4b71c45c-8fad-48fa-83aa-cfbf1c01c057, rgb(245, 242, 142))\",...addPropertyOverrides({d1GCCyeq1:{variant:\"eiacYYD6N\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.46 - 16px, 1px) - 48px) / 4, 1px)`,...addPropertyOverrides({d1GCCyeq1:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.96) - 48px) / 4, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-740.2)/2+0+0)+24+0+0+0+0+0+264+0+0+0},fqw3aQ7kk:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.9) - 48px) / 4, 1px)`},vjk_Ngl5m:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1900px) / 2 - 16px, 1px) - 48px) / 4, 1px)`},vywhCD1mu:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 112px, 1px), 1900px) * 0.45 - 16px, 1px) - 48px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ttwz98-container\",layoutDependency:layoutDependency,layoutId:\"T8jhYTKkC-container\",nodeId:\"T8jhYTKkC\",rendersWithMotion:true,scopeId:\"rAaFCwORL\",children:/*#__PURE__*/_jsx(SocialLinkBig,{dIYUhgxtT:true,eFBFcxHnX:\"https://www.linkedin.com/company/calderaxyz/\",height:\"100%\",id:\"T8jhYTKkC\",layoutId:\"T8jhYTKkC\",style:{height:\"100%\",width:\"100%\"},tCvfhRsud:'<svg width=\"72\" height=\"72\" viewBox=\"0 0 72 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.7778 64H14.2222C10.7858 64 8 61.2142 8 57.7778V14.2222C8 10.7858 10.7858 8 14.2222 8H57.7778C61.2142 8 64 10.7858 64 14.2222V57.7778C64 61.2142 61.2142 64 57.7778 64ZM47.9131 56.2232H56.2232V39.1519C56.2232 31.9289 52.1287 28.4365 46.4096 28.4365C40.6879 28.4365 38.2799 32.8921 38.2799 32.8921V29.2602H30.2713V56.2232H38.2799V42.0693C38.2799 38.2768 40.0257 36.0201 43.3671 36.0201C46.4386 36.0201 47.9131 38.1887 47.9131 42.0693V56.2232ZM15.7787 20.7542C15.7787 23.5018 17.9892 25.7296 20.7171 25.7296C23.445 25.7296 25.6542 23.5018 25.6542 20.7542C25.6542 18.0066 23.445 15.7787 20.7171 15.7787C17.9892 15.7787 15.7787 18.0066 15.7787 20.7542ZM24.9327 56.2232H16.5818V29.2602H24.9327V56.2232Z\" fill=\"#F7F6F3\"/> </svg>',variant:\"oJ38s1Z4i\",VMxY9LXRy:\"var(--token-6443c1b7-20fd-428b-893f-2b17c8424c0a, rgb(247, 246, 243))\",width:\"100%\",XJh_JZR21:\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",...addPropertyOverrides({d1GCCyeq1:{variant:\"eiacYYD6N\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-685f9g\",\"data-framer-name\":\"box\",layoutDependency:layoutDependency,layoutId:\"mVZcg7Str\",style:{backgroundColor:\"rgb(247, 246, 243)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{d1GCCyeq1:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},vjk_Ngl5m:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vcc57k\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"hAwmKxRu2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FAUkdgRPu\"},motionChild:true,nodeId:\"yk4BtwRc_\",openInNewTab:false,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Rollups\"})})})}),className:\"framer-1t56klu\",\"data-framer-name\":\"Rollups Ups\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yk4BtwRc_\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LCOAxqk_1\"},motionChild:true,nodeId:\"kJXu0cG5d\",openInNewTab:false,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Metalayer\"})})})}),className:\"framer-1iiy57w\",\"data-framer-name\":\"Metalayer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kJXu0cG5d\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FPfxj74V4\"},motionChild:true,nodeId:\"W8RhBUTnU\",openInNewTab:false,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Blog\"})})})}),className:\"framer-18xf3ki\",\"data-framer-name\":\"Blog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W8RhBUTnU\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://jobs.ashbyhq.com/caldera\",motionChild:true,nodeId:\"ieTKN0JRz\",openInNewTab:true,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Careers\"})})})}),className:\"framer-cr8xzq\",\"data-framer-name\":\"Careers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ieTKN0JRz\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://news.caldera.xyz/\",motionChild:true,nodeId:\"Ppd_7QG4Z\",openInNewTab:true,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Newsletter\"})})})}),className:\"framer-pcvb2v\",\"data-framer-name\":\"Newsletter\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ppd_7QG4Z\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://constellationlabs.notion.site/Caldera-Brand-Kit-1918fe88043e80a3aa6ce53b1192febc?pvs=4\",motionChild:true,nodeId:\"DMVPA0Pom\",openInNewTab:true,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Brand kit\"})})})}),className:\"framer-1bizvwb\",\"data-framer-name\":\"Brand kit\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DMVPA0Pom\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gixrc5\",\"data-styles-preset\":\"RXT5Z_JAQ\",children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.caldera.xyz\",motionChild:true,nodeId:\"pf_BUJECy\",openInNewTab:true,scopeId:\"rAaFCwORL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5oshfm\",\"data-styles-preset\":\"o0y7Ravy4\",children:\"Docs\"})})})}),className:\"framer-7dtanx\",\"data-framer-name\":\"Docs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pf_BUJECy\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gzf95n\",\"data-border\":true,\"data-framer-name\":\"copyright\",layoutDependency:layoutDependency,layoutId:\"AqLTrl0u2\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-ff9c4286-7d7d-454f-a45b-98d2e6fc8597, rgb(7, 6, 7))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"1.5px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cxnxiv\",\"data-styles-preset\":\"Vm_6GFCy2\",children:\"Caldera 2025 \\xa9 All rights reserved.\"})}),className:\"framer-1y1zwhk\",\"data-framer-name\":\"Caldera 2025 \\xa9 All rights reserved.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bv2Q_665c\",style:{\"--framer-paragraph-spacing\":\"8px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x6y0J.framer-16p7tci, .framer-x6y0J .framer-16p7tci { display: block; }\",\".framer-x6y0J.framer-18z84li { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-x6y0J .framer-1q1wtgx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-7jn1gg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1900px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-x6y0J .framer-vqmel7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-19m52m7 { 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: 100%; }\",\".framer-x6y0J .framer-1du8oth { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 48px; position: relative; width: 54%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x6y0J .framer-1ho6w3a { aspect-ratio: 4.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; text-decoration: none; width: 190px; }\",\".framer-x6y0J .framer-1w9wi70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-148mcxy { flex: none; height: auto; max-width: 686px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x6y0J .framer-18hu2bm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-x6y0J .framer-14jwamh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-x6y0J .framer-1qawjli { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-qydb4b-container, .framer-x6y0J .framer-gbvrum-container, .framer-x6y0J .framer-1f0wxzh-container, .framer-x6y0J .framer-1ttwz98-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 155px); position: relative; width: 1px; }\",\".framer-x6y0J .framer-685f9g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-vcc57k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x6y0J .framer-1t56klu, .framer-x6y0J .framer-1iiy57w, .framer-x6y0J .framer-18xf3ki, .framer-x6y0J .framer-cr8xzq, .framer-x6y0J .framer-pcvb2v, .framer-x6y0J .framer-1bizvwb, .framer-x6y0J .framer-7dtanx, .framer-x6y0J .framer-1y1zwhk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-x6y0J .framer-1gzf95n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x6y0J.framer-18z84li, .framer-x6y0J .framer-1q1wtgx, .framer-x6y0J .framer-7jn1gg, .framer-x6y0J .framer-vqmel7, .framer-x6y0J .framer-19m52m7, .framer-x6y0J .framer-1w9wi70, .framer-x6y0J .framer-14jwamh, .framer-x6y0J .framer-1qawjli, .framer-x6y0J .framer-685f9g, .framer-x6y0J .framer-vcc57k, .framer-x6y0J .framer-1gzf95n { gap: 0px; } .framer-x6y0J.framer-18z84li > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x6y0J.framer-18z84li > :first-child, .framer-x6y0J .framer-7jn1gg > :first-child, .framer-x6y0J .framer-vqmel7 > :first-child, .framer-x6y0J .framer-1w9wi70 > :first-child, .framer-x6y0J .framer-14jwamh > :first-child, .framer-x6y0J .framer-685f9g > :first-child { margin-top: 0px; } .framer-x6y0J.framer-18z84li > :last-child, .framer-x6y0J .framer-7jn1gg > :last-child, .framer-x6y0J .framer-vqmel7 > :last-child, .framer-x6y0J .framer-1w9wi70 > :last-child, .framer-x6y0J .framer-14jwamh > :last-child, .framer-x6y0J .framer-685f9g > :last-child { margin-bottom: 0px; } .framer-x6y0J .framer-1q1wtgx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x6y0J .framer-1q1wtgx > :first-child, .framer-x6y0J .framer-19m52m7 > :first-child, .framer-x6y0J .framer-1qawjli > :first-child, .framer-x6y0J .framer-vcc57k > :first-child, .framer-x6y0J .framer-1gzf95n > :first-child { margin-left: 0px; } .framer-x6y0J .framer-1q1wtgx > :last-child, .framer-x6y0J .framer-19m52m7 > :last-child, .framer-x6y0J .framer-1qawjli > :last-child, .framer-x6y0J .framer-vcc57k > :last-child, .framer-x6y0J .framer-1gzf95n > :last-child { margin-right: 0px; } .framer-x6y0J .framer-7jn1gg > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-x6y0J .framer-vqmel7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-x6y0J .framer-19m52m7 > *, .framer-x6y0J .framer-1qawjli > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-x6y0J .framer-1w9wi70 > *, .framer-x6y0J .framer-685f9g > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-x6y0J .framer-14jwamh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-x6y0J .framer-vcc57k > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-x6y0J .framer-1gzf95n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-x6y0J.framer-v-k91fc7.framer-18z84li { width: 1300px; }\",\".framer-x6y0J.framer-v-k91fc7 .framer-1du8oth { width: 55%; }\",\".framer-x6y0J.framer-v-k91fc7 .framer-qydb4b-container, .framer-x6y0J.framer-v-k91fc7 .framer-gbvrum-container, .framer-x6y0J.framer-v-k91fc7 .framer-1f0wxzh-container, .framer-x6y0J.framer-v-k91fc7 .framer-1ttwz98-container { height: var(--framer-aspect-ratio-supported, 118px); }\",\".framer-x6y0J.framer-v-k91fc7 .framer-685f9g { padding: 40px 32px 40px 32px; }\",\".framer-x6y0J.framer-v-k91fc7 .framer-vcc57k { gap: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x6y0J.framer-v-k91fc7 .framer-vcc57k { gap: 0px; } .framer-x6y0J.framer-v-k91fc7 .framer-vcc57k > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-x6y0J.framer-v-k91fc7 .framer-vcc57k > :first-child { margin-left: 0px; } .framer-x6y0J.framer-v-k91fc7 .framer-vcc57k > :last-child { margin-right: 0px; } }\",\".framer-x6y0J.framer-v-fgju99.framer-18z84li { width: 1000px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-1q1wtgx { padding: 56px 40px 40px 40px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-7jn1gg { gap: 48px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-1du8oth { padding: 32px; width: 50%; }\",\".framer-x6y0J.framer-v-fgju99 .framer-1w9wi70, .framer-x6y0J.framer-v-kngtx7 .framer-1w9wi70 { gap: 24px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-qydb4b-container, .framer-x6y0J.framer-v-fgju99 .framer-gbvrum-container, .framer-x6y0J.framer-v-fgju99 .framer-1f0wxzh-container, .framer-x6y0J.framer-v-fgju99 .framer-1ttwz98-container, .framer-x6y0J.framer-v-1iiw5pz .framer-qydb4b-container, .framer-x6y0J.framer-v-1iiw5pz .framer-gbvrum-container, .framer-x6y0J.framer-v-1iiw5pz .framer-1f0wxzh-container, .framer-x6y0J.framer-v-1iiw5pz .framer-1ttwz98-container, .framer-x6y0J.framer-v-kngtx7 .framer-qydb4b-container, .framer-x6y0J.framer-v-kngtx7 .framer-gbvrum-container, .framer-x6y0J.framer-v-kngtx7 .framer-1f0wxzh-container, .framer-x6y0J.framer-v-kngtx7 .framer-1ttwz98-container { height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-x6y0J.framer-v-fgju99 .framer-685f9g { gap: 24px; padding: 32px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-vcc57k, .framer-x6y0J.framer-v-kngtx7 .framer-vqmel7 { gap: 16px; }\",\".framer-x6y0J.framer-v-fgju99 .framer-1gzf95n, .framer-x6y0J.framer-v-kngtx7 .framer-1gzf95n { padding: 24px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x6y0J.framer-v-fgju99 .framer-7jn1gg, .framer-x6y0J.framer-v-fgju99 .framer-1w9wi70, .framer-x6y0J.framer-v-fgju99 .framer-685f9g, .framer-x6y0J.framer-v-fgju99 .framer-vcc57k { gap: 0px; } .framer-x6y0J.framer-v-fgju99 .framer-7jn1gg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-x6y0J.framer-v-fgju99 .framer-7jn1gg > :first-child, .framer-x6y0J.framer-v-fgju99 .framer-1w9wi70 > :first-child, .framer-x6y0J.framer-v-fgju99 .framer-685f9g > :first-child { margin-top: 0px; } .framer-x6y0J.framer-v-fgju99 .framer-7jn1gg > :last-child, .framer-x6y0J.framer-v-fgju99 .framer-1w9wi70 > :last-child, .framer-x6y0J.framer-v-fgju99 .framer-685f9g > :last-child { margin-bottom: 0px; } .framer-x6y0J.framer-v-fgju99 .framer-1w9wi70 > *, .framer-x6y0J.framer-v-fgju99 .framer-685f9g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x6y0J.framer-v-fgju99 .framer-vcc57k > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-x6y0J.framer-v-fgju99 .framer-vcc57k > :first-child { margin-left: 0px; } .framer-x6y0J.framer-v-fgju99 .framer-vcc57k > :last-child { margin-right: 0px; } }\",\".framer-x6y0J.framer-v-1iiw5pz.framer-18z84li { width: 768px; }\",\".framer-x6y0J.framer-v-1iiw5pz .framer-1q1wtgx { padding: 40px 0px 32px 0px; }\",\".framer-x6y0J.framer-v-1iiw5pz .framer-7jn1gg { gap: 40px; max-width: 90%; }\",\".framer-x6y0J.framer-v-1iiw5pz .framer-19m52m7 { flex-direction: column; gap: 24px; }\",\".framer-x6y0J.framer-v-1iiw5pz .framer-1du8oth { align-self: unset; gap: 80px; height: min-content; justify-content: flex-start; width: 100%; }\",\".framer-x6y0J.framer-v-1iiw5pz .framer-14jwamh { flex: none; gap: 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x6y0J.framer-v-1iiw5pz .framer-7jn1gg, .framer-x6y0J.framer-v-1iiw5pz .framer-19m52m7, .framer-x6y0J.framer-v-1iiw5pz .framer-1du8oth, .framer-x6y0J.framer-v-1iiw5pz .framer-14jwamh { gap: 0px; } .framer-x6y0J.framer-v-1iiw5pz .framer-7jn1gg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-x6y0J.framer-v-1iiw5pz .framer-7jn1gg > :first-child, .framer-x6y0J.framer-v-1iiw5pz .framer-19m52m7 > :first-child, .framer-x6y0J.framer-v-1iiw5pz .framer-1du8oth > :first-child, .framer-x6y0J.framer-v-1iiw5pz .framer-14jwamh > :first-child { margin-top: 0px; } .framer-x6y0J.framer-v-1iiw5pz .framer-7jn1gg > :last-child, .framer-x6y0J.framer-v-1iiw5pz .framer-19m52m7 > :last-child, .framer-x6y0J.framer-v-1iiw5pz .framer-1du8oth > :last-child, .framer-x6y0J.framer-v-1iiw5pz .framer-14jwamh > :last-child { margin-bottom: 0px; } .framer-x6y0J.framer-v-1iiw5pz .framer-19m52m7 > *, .framer-x6y0J.framer-v-1iiw5pz .framer-14jwamh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x6y0J.framer-v-1iiw5pz .framer-1du8oth > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",\".framer-x6y0J.framer-v-kngtx7.framer-18z84li { width: 390px; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-1q1wtgx { padding: 24px 0px 16px 0px; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-7jn1gg { gap: 24px; max-width: 96%; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-19m52m7 { flex-direction: column; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-1du8oth { align-self: unset; gap: 48px; height: min-content; justify-content: center; padding: 24px; width: 100%; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-1ho6w3a { width: 151px; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-14jwamh { flex: none; width: 100%; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-685f9g { gap: 24px; padding: 24px; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-vcc57k { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-1t56klu, .framer-x6y0J.framer-v-kngtx7 .framer-1iiy57w, .framer-x6y0J.framer-v-kngtx7 .framer-18xf3ki, .framer-x6y0J.framer-v-kngtx7 .framer-cr8xzq, .framer-x6y0J.framer-v-kngtx7 .framer-1bizvwb { align-self: start; justify-self: start; width: 100%; }\",\".framer-x6y0J.framer-v-kngtx7 .framer-pcvb2v, .framer-x6y0J.framer-v-kngtx7 .framer-7dtanx { align-self: start; justify-self: start; width: fit-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x6y0J.framer-v-kngtx7 .framer-7jn1gg, .framer-x6y0J.framer-v-kngtx7 .framer-vqmel7, .framer-x6y0J.framer-v-kngtx7 .framer-19m52m7, .framer-x6y0J.framer-v-kngtx7 .framer-1du8oth, .framer-x6y0J.framer-v-kngtx7 .framer-1w9wi70, .framer-x6y0J.framer-v-kngtx7 .framer-685f9g, .framer-x6y0J.framer-v-kngtx7 .framer-vcc57k { gap: 0px; } .framer-x6y0J.framer-v-kngtx7 .framer-7jn1gg > *, .framer-x6y0J.framer-v-kngtx7 .framer-1w9wi70 > *, .framer-x6y0J.framer-v-kngtx7 .framer-685f9g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-x6y0J.framer-v-kngtx7 .framer-7jn1gg > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-vqmel7 > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-19m52m7 > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-1du8oth > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-1w9wi70 > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-685f9g > :first-child { margin-top: 0px; } .framer-x6y0J.framer-v-kngtx7 .framer-7jn1gg > :last-child, .framer-x6y0J.framer-v-kngtx7 .framer-vqmel7 > :last-child, .framer-x6y0J.framer-v-kngtx7 .framer-19m52m7 > :last-child, .framer-x6y0J.framer-v-kngtx7 .framer-1du8oth > :last-child, .framer-x6y0J.framer-v-kngtx7 .framer-1w9wi70 > :last-child, .framer-x6y0J.framer-v-kngtx7 .framer-685f9g > :last-child { margin-bottom: 0px; } .framer-x6y0J.framer-v-kngtx7 .framer-vqmel7 > *, .framer-x6y0J.framer-v-kngtx7 .framer-19m52m7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-x6y0J.framer-v-kngtx7 .framer-1du8oth > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-x6y0J.framer-v-kngtx7 .framer-vcc57k > *, .framer-x6y0J.framer-v-kngtx7 .framer-vcc57k > :first-child, .framer-x6y0J.framer-v-kngtx7 .framer-vcc57k > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-x6y0J[data-border=\"true\"]::after, .framer-x6y0J [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 473\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vywhCD1mu\":{\"layout\":[\"fixed\",\"auto\"]},\"vjk_Ngl5m\":{\"layout\":[\"fixed\",\"auto\"]},\"fqw3aQ7kk\":{\"layout\":[\"fixed\",\"auto\"]},\"d1GCCyeq1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrAaFCwORL=withCSS(Component,css,\"framer-x6y0J\");export default FramerrAaFCwORL;FramerrAaFCwORL.displayName=\"Footer\";FramerrAaFCwORL.defaultProps={height:473,width:1600};addPropertyControls(FramerrAaFCwORL,{variant:{options:[\"C30nEqWfK\",\"vywhCD1mu\",\"vjk_Ngl5m\",\"fqw3aQ7kk\",\"d1GCCyeq1\"],optionTitles:[\"Desktop Wide\",\"Desktop\",\"Laptop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrAaFCwORL,[{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\"}]},...ButtonsButtonCTAFonts,...SocialLinkBigFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrAaFCwORL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"473\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vywhCD1mu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vjk_Ngl5m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fqw3aQ7kk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d1GCCyeq1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rAaFCwORL.map"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "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", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fcHV8IqZl", "diYKX0g21", "NbvqaLwNg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerGFdw8DoMs", "withCSS", "GFdw8DoMs_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGFonts", "getFonts", "SVG_Prod_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ytfne8bDj", "cWgGYtf3R", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerBKcvyDe1j", "withCSS", "BKcvyDe1j_default", "addPropertyControls", "ControlType", "addFonts", "styles", "withClass", "Component", "props", "u", "l", "p", "SVGFonts", "getFonts", "SVG_Prod_default", "MotionAWithClass14b83pg", "withCodeBoundaryForOverrides", "motion", "withClass", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "l5eOTwdbj", "AXkTlwUfw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerfbqrq96N7", "withCSS", "fbqrq96N7_default", "addPropertyControls", "ControlType", "addFonts", "SVGFonts", "getFonts", "SVG_Prod_default", "MotionAWithClassn39l1e", "withCodeBoundaryForOverrides", "motion", "withClass", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cbXda8bKo", "lkxU_A3LU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerYSnFm1b3B", "withCSS", "YSnFm1b3B_default", "addPropertyControls", "ControlType", "addFonts", "DiscordFonts", "getFonts", "fbqrq96N7_default", "SocialLinksTwitterFonts", "BKcvyDe1j_default", "TelegramFonts", "YSnFm1b3B_default", "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", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "fbqrq96N7_default", "BKcvyDe1j_default", "YSnFm1b3B_default", "css", "FramerjDXo0qBSn", "withCSS", "jDXo0qBSn_default", "addFonts", "DiscordFonts", "SocialLinksTwitterFonts", "TelegramFonts", "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", "newTab", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "exGxkw6NR", "wkMIuoQKk", "ayRxwCMLa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerJRREWa4Z6", "withCSS", "JRREWa4Z6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hzGtSPmrT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapa9xxo", "args", "onTap18jd8r9", "onTap1mz4l6y", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerTZveDCkxo", "withCSS", "TZveDCkxo_default", "addPropertyControls", "ControlType", "addFonts", "HeaderBurgerFonts", "getFonts", "TZveDCkxo_default", "HeaderLinkFonts", "JRREWa4Z6_default", "SocialLinksSocialLinksFonts", "jDXo0qBSn_default", "ButtonsButtonCTAFonts", "GFdw8DoMs_default", "HeaderLinkControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transition5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition6", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "link1Variant", "link2Variant", "link3Variant", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Z9fjG0k0k", "qwB3p9fSy", "Srj2jmWlr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "hzGtSPmrTsoyw3l", "args", "hzGtSPmrT1dto9t9", "hzGtSPmrTwbeuxn", "hzGtSPmrT107z1zn", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "Image2", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerfXvSXNS41", "withCSS", "fXvSXNS41_default", "addPropertyControls", "ControlType", "addFonts", "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", "SVGFonts", "getFonts", "SVG_Prod_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", "backgroundColor", "height", "iconColor", "id", "link", "newTab", "sVGIconCode", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eFBFcxHnX", "dIYUhgxtT", "XJh_JZR21", "tCvfhRsud", "VMxY9LXRy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramersmMXMpaqg", "withCSS", "smMXMpaqg_default", "addPropertyControls", "ControlType", "addFonts", "ButtonsButtonCTAFonts", "getFonts", "GFdw8DoMs_default", "MotionDivWithFX", "withFX", "motion", "SocialLinkBigFonts", "smMXMpaqg_default", "SmartComponentScopedContainerWithFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerrAaFCwORL", "withCSS", "rAaFCwORL_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
