{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/rQEfbLwn0jXQYCnyTP25/eLw7xteED0I6gLD3LUGK/aFY4nKC4h.js", "ssg:https://framerusercontent.com/modules/w0t9XvH5jitxP2HLjNAu/Lq16harbYQSVYv9Jo0FZ/F8PYhmpCG.js", "ssg:https://framerusercontent.com/modules/nWYiIfgwDjJ0WJQYsdin/ENywoxon5XnA1PIhEXu6/J7QVtrwpX.js", "ssg:https://framerusercontent.com/modules/4JZGYcrybf8826SsWZei/Uj3atdOptpdmSK29KqD0/Ls9u16eYc.js", "ssg:https://framerusercontent.com/modules/h22wOT2XeSpRqmB8164Y/YnrcVLZDB2fTT6qnoSMa/Ls9u16eYc.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (575e68f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-n2Jp9 .framer-styles-preset-1vrudan:not(.rich-text-wrapper), .framer-n2Jp9 .framer-styles-preset-1vrudan.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-n2Jp9\";\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 (d31cd55)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-IT2Cz .framer-styles-preset-1g6yhyc:not(.rich-text-wrapper), .framer-IT2Cz .framer-styles-preset-1g6yhyc.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-IT2Cz\";\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 (e39ee10)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-4Fa2k .framer-styles-preset-1kjufzg:not(.rich-text-wrapper), .framer-4Fa2k .framer-styles-preset-1kjufzg.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-4Fa2k\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d4fa65)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={RyEg833N4:new LazyValue(()=>import(\"./Ls9u16eYc-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d4fa65)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import FOOTER from\"#framer/local/canvasComponent/TBIedZpNg/TBIedZpNg.js\";import Modules from\"#framer/local/collection/kSd_6YmOH/kSd_6YmOH.js\";import*as sharedStyle2 from\"#framer/local/css/aFY4nKC4h/aFY4nKC4h.js\";import*as sharedStyle4 from\"#framer/local/css/F8PYhmpCG/F8PYhmpCG.js\";import*as sharedStyle3 from\"#framer/local/css/J7QVtrwpX/J7QVtrwpX.js\";import*as sharedStyle from\"#framer/local/css/M4cxqrbiO/M4cxqrbiO.js\";import*as sharedStyle5 from\"#framer/local/css/sldSLUxp8/sldSLUxp8.js\";import*as sharedStyle1 from\"#framer/local/css/yyn2UNwaQ/yyn2UNwaQ.js\";import*as sharedStyle6 from\"#framer/local/css/z5yYlh5I2/z5yYlh5I2.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Ls9u16eYc/Ls9u16eYc.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ls9u16eYc/Ls9u16eYc.js\";const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const DownloadFonts=getFonts(Download);const YouTubeFonts=getFonts(YouTube);const FOOTERFonts=getFonts(FOOTER);const breakpoints={AGzbgrBXh:\"(min-width: 2200px)\",NjMRy8lkA:\"(min-width: 1200px) and (max-width: 2199px)\",rlk9hpKek:\"(min-width: 760px) and (max-width: 1199px)\",uT2G3qy39:\"(max-width: 759px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dxwEW\";const variantClassNames={AGzbgrBXh:\"framer-v-50h6bb\",NjMRy8lkA:\"framer-v-gkziy1\",rlk9hpKek:\"framer-v-qj9qjz\",uT2G3qy39:\"framer-v-1h9upcg\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={delay:0,duration:60,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"NjMRy8lkA\",Desktop4K:\"AGzbgrBXh\",Phone:\"uT2G3qy39\",Tablet:\"rlk9hpKek\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NjMRy8lkA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Ls9u16eYc\",data:Modules,type:\"Collection\"},select:[{collection:\"Ls9u16eYc\",name:\"GabzDTpIK\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"rtk1LAH9D\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"epVAvIwWG\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"skpNdPOeN\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"wME1gCXAI\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"RNHA09sox\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"Aw9f2UrHJ\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"i4Ksj1qe2\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"aO4SxpAFl\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"XREXf7fVC\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"ZkZ3bRBrg\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"n_UXUDWFA\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"V9n_R3PlI\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"gN_EWX2nW\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"oW9mfZZx6\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"DOktUeb28\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"ThNBTZFDm\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"ib9cTcJif\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"XB9jNkKS7\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"gpwfZR6mI\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"jjtNpr4DH\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"evibTXL_v\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"kfzSEyThx\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"rtd9ByvSo\",type:\"Identifier\"},{collection:\"Ls9u16eYc\",name:\"MOgVlHtMP\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Ls9u16eYc\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,GabzDTpIK=getFromCurrentRouteData(\"GabzDTpIK\")??\"\",rtk1LAH9D=getFromCurrentRouteData(\"rtk1LAH9D\")??\"\",epVAvIwWG=getFromCurrentRouteData(\"epVAvIwWG\"),skpNdPOeN=getFromCurrentRouteData(\"skpNdPOeN\"),wME1gCXAI=getFromCurrentRouteData(\"wME1gCXAI\"),RNHA09sox=getFromCurrentRouteData(\"RNHA09sox\"),i4Ksj1qe2=getFromCurrentRouteData(\"i4Ksj1qe2\"),aO4SxpAFl=getFromCurrentRouteData(\"aO4SxpAFl\"),Aw9f2UrHJ=getFromCurrentRouteData(\"Aw9f2UrHJ\")??\"\",XREXf7fVC=getFromCurrentRouteData(\"XREXf7fVC\")??\"\",ZkZ3bRBrg=getFromCurrentRouteData(\"ZkZ3bRBrg\")??\"\",n_UXUDWFA=getFromCurrentRouteData(\"n_UXUDWFA\")??\"\",V9n_R3PlI=getFromCurrentRouteData(\"V9n_R3PlI\")??\"\",gN_EWX2nW=getFromCurrentRouteData(\"gN_EWX2nW\")??\"\",oW9mfZZx6=getFromCurrentRouteData(\"oW9mfZZx6\")??\"\",ThNBTZFDm=getFromCurrentRouteData(\"ThNBTZFDm\")??\"\",DOktUeb28=getFromCurrentRouteData(\"DOktUeb28\")??\"\",jjtNpr4DH=getFromCurrentRouteData(\"jjtNpr4DH\")??\"\",XB9jNkKS7=getFromCurrentRouteData(\"XB9jNkKS7\")??\"\",ib9cTcJif=getFromCurrentRouteData(\"ib9cTcJif\")??\"\",rbQSO9XT_oBKaPc4jL,gpwfZR6mI=getFromCurrentRouteData(\"gpwfZR6mI\")??\"\",kfzSEyThx=getFromCurrentRouteData(\"kfzSEyThx\")??\"\",evibTXL_v=getFromCurrentRouteData(\"evibTXL_v\")??\"\",MOgVlHtMP=getFromCurrentRouteData(\"MOgVlHtMP\")??\"\",rtd9ByvSo=getFromCurrentRouteData(\"rtd9ByvSo\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"koSNx4H0n\");const ref1=React.useRef(null);const visible=isSet(epVAvIwWG);const visible1=isSet(skpNdPOeN);const visible2=isSet(wME1gCXAI);const visible3=isSet(RNHA09sox);const elementId1=useRouteElementId(\"TDFxrxzbF\");const ref2=React.useRef(null);const visible4=isSet(i4Ksj1qe2);const visible5=isSet(aO4SxpAFl);usePreloadLocalizedValues(activeLocale);const visible6=isSet(XREXf7fVC);const visible7=isSet(ZkZ3bRBrg);const visible8=isSet(n_UXUDWFA);const visible9=isSet(V9n_R3PlI);const visible10=isSet(gN_EWX2nW);const visible11=isSet(oW9mfZZx6);const visible12=isSet(ThNBTZFDm);const visible13=isSet(jjtNpr4DH);const visible14=isSet(kfzSEyThx);const visible15=isSet(MOgVlHtMP);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NjMRy8lkA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(7, 7, 7); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-gkziy1\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13iosci\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2x6av\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"rfzocuvHe\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-y88uec framer-bv68zh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w2tsc8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mqM1jpm23\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(13, 13, 13)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"mqM1jpm23\",layoutId:\"mqM1jpm23\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbyxel\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveSBCbGFjaw==\",\"--framer-font-family\":'\"Gilroy Black\", \"Gilroy Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.78px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"BOC\"})}),className:\"framer-1tcyi4h\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Gilroy Black\"],text:GabzDTpIK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ijjgjq\",\"data-styles-preset\":\"M4cxqrbiO\",style:{\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"Analog discrete VCO/LFO with 4 SUB OSC/Wavefolder/VC-Softsync/XOR\"})}),className:\"framer-13rattk\",\"data-framer-name\":\"Sub title\",fonts:[\"Inter\"],text:rtk1LAH9D,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s8oh21\",\"data-framer-name\":\"image01\",id:\"1s8oh21\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"240px\",...toResponsiveImage(epVAvIwWG),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"560px\",...toResponsiveImage(epVAvIwWG),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-7seh85\",\"data-framer-name\":\"Banner\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-b1x4un\"),\"data-framer-portal-id\":\"1s8oh21\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"nwivObC3F\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rlk9hpKek:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"200vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},style:{rotate:-90}},uT2G3qy39:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"320vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"130vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},className:cx(scopingClassNames,\"framer-1hmo2q0\"),\"data-framer-portal-id\":\"1s8oh21\",transformTemplate:transformTemplate2})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"70vw\",...toResponsiveImage(epVAvIwWG),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(epVAvIwWG),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-1anvoq3\"),\"data-framer-name\":\"MODULE01\",\"data-framer-portal-id\":\"1s8oh21\",onTap:onTap1wnntms({overlay})})})]}),getContainer())})})]})})}),visible1&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d02r6o\",\"data-framer-name\":\"image02\",id:\"d02r6o\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"240px\",...toResponsiveImage(skpNdPOeN),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"560px\",...toResponsiveImage(skpNdPOeN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1es36j9\",\"data-framer-name\":\"Banner\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-j9vkfh\"),\"data-framer-portal-id\":\"d02r6o\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"twnxvs9G3\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rlk9hpKek:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"200vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},style:{rotate:-90}},uT2G3qy39:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"320vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"130vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},className:cx(scopingClassNames,\"framer-al06p6\"),\"data-framer-portal-id\":\"d02r6o\",transformTemplate:transformTemplate2})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(skpNdPOeN),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"100vw\",...toResponsiveImage(skpNdPOeN),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-11ktv71\"),\"data-framer-name\":\"MODULE02\",\"data-framer-portal-id\":\"d02r6o\",onTap:onTap1wnntms({overlay:overlay1})})})]}),getContainer())})})]})})}),visible2&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p9j89b\",\"data-framer-name\":\"image03\",id:\"p9j89b\",onTap:onTap3bnx0g({overlay:overlay2}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"240px\",...toResponsiveImage(wME1gCXAI),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"560px\",...toResponsiveImage(wME1gCXAI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1opfud7\",\"data-framer-name\":\"Banner\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1rmucvs\"),\"data-framer-portal-id\":\"p9j89b\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"v2Ow7rcYQ\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rlk9hpKek:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"200vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},style:{rotate:-90}},uT2G3qy39:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"320vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"130vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},className:cx(scopingClassNames,\"framer-1c4v8kg\"),\"data-framer-portal-id\":\"p9j89b\",transformTemplate:transformTemplate2})}),visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(wME1gCXAI),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-1sp2608\"),\"data-framer-name\":\"MODULE03\",\"data-framer-portal-id\":\"p9j89b\",onTap:onTap1wnntms({overlay:overlay2})})]}),getContainer())})})]})})}),visible3&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f0csnj\",\"data-framer-name\":\"image04\",id:\"1f0csnj\",onTap:onTap3bnx0g({overlay:overlay3}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{background:{alt:\"\",fit:\"fit\",sizes:\"240px\",...toResponsiveImage(RNHA09sox),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"560px\",...toResponsiveImage(RNHA09sox),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tpjjlt\",\"data-framer-name\":\"Banner\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ip0r4g\"),\"data-framer-portal-id\":\"1f0csnj\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"LX3noa_aC\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rlk9hpKek:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"200vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},style:{rotate:-90}},uT2G3qy39:{background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"320vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2216,pixelWidth:2506,sizes:\"130vw\",src:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg\",srcSet:\"https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1GHh84rLQaxIOgnRfaXK7VUpk.svg 2506w\"},className:cx(scopingClassNames,\"framer-611jum\"),\"data-framer-portal-id\":\"1f0csnj\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"90vw\",...toResponsiveImage(RNHA09sox),...{positionX:\"center\",positionY:\"center\"}},className:cx(scopingClassNames,\"framer-1h7fvxc\"),\"data-framer-name\":\"MODULE03\",\"data-framer-portal-id\":\"1f0csnj\",onTap:onTap1wnntms({overlay:overlay3})})]}),getContainer())})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9jvn1m\",\"data-framer-name\":\"MANUAL\",id:elementId1,ref:ref2,children:[visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uogj0t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JWZ8TtFdz\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{text:\"Download manual\"}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(217, 217, 217)\",color:\"rgb(0, 0, 0)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"rgb(255, 255, 255)\",image:addImageAlt({pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/zKh3L9u3w14M0hqCmsECzqGl52g.svg\"},\"\"),size:50,type:\"Custom\"},id:\"JWZ8TtFdz\",layoutId:\"JWZ8TtFdz\",srcFile:i4Ksj1qe2,srcType:\"Upload\",srcURL:\"\",style:{width:\"100%\"},styleOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:6,color:\"rgb(0, 0, 0)\",gap:8,padding:10,paddingBottom:20,paddingLeft:15,paddingPerSide:true,paddingRight:33,paddingTop:20},text:\"User manual english\",width:\"100%\"})})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g9t36a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G6MwFdP5l\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{text:\"\u7528\u6237\u624B\u518C \u4E2D\u6587\"}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(217, 217, 217)\",color:\"rgb(0, 0, 0)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"rgb(255, 255, 255)\",image:addImageAlt({pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/zKh3L9u3w14M0hqCmsECzqGl52g.svg\"},\"\"),size:50,type:\"Custom\"},id:\"G6MwFdP5l\",layoutId:\"G6MwFdP5l\",srcFile:aO4SxpAFl,srcType:\"Upload\",srcURL:\"\",style:{width:\"100%\"},styleOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:6,color:\"rgb(0, 0, 0)\",gap:8,padding:10,paddingBottom:20,paddingLeft:15,paddingPerSide:true,paddingRight:33,paddingTop:20},text:getLocalizedValue(\"v0\",activeLocale)??\"\u7528\u6237\u624B\u518C \u4E2D\u6587\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g50g2b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17tb3jo\",\"data-styles-preset\":\"yyn2UNwaQ\",style:{\"--framer-text-color\":\"rgb(13, 13, 13)\"},children:\"BOC\"})}),className:\"framer-1g79jsq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:GabzDTpIK,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Aw9f2UrHJ,className:\"framer-1l1jajg\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-qt96ce\",h1:\"framer-styles-preset-1vrudan\",h2:\"framer-styles-preset-1kjufzg\",h3:\"framer-styles-preset-ijjgjq\",h4:\"framer-styles-preset-1g6yhyc\",p:\"framer-styles-preset-xie43f\"},verticalAlignment:\"top\",withExternalLayout:true}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vplqbj\",\"data-framer-name\":\"VIDEOS\",children:[visible6&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Video tutorials and/or reviews\"})})}),className:\"framer-198bcqz\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1npjr1i\",\"data-framer-name\":\"YouTubes\",children:[visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dgjs5j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CbEAGwvTD\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"CbEAGwvTD\",isMixedBorderRadius:false,isRed:true,layoutId:\"CbEAGwvTD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:XREXf7fVC,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kjvfbj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W7t0UwY40\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"W7t0UwY40\",isMixedBorderRadius:false,isRed:true,layoutId:\"W7t0UwY40\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:ZkZ3bRBrg,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h8fyco-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MZGYuCYrA\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"MZGYuCYrA\",isMixedBorderRadius:false,isRed:true,layoutId:\"MZGYuCYrA\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:n_UXUDWFA,width:\"100%\"})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bxyvr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mI29Zn69l\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"mI29Zn69l\",isMixedBorderRadius:false,isRed:true,layoutId:\"mI29Zn69l\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:V9n_R3PlI,width:\"100%\"})})}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pr8bmt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rGVxNpFOY\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"rGVxNpFOY\",isMixedBorderRadius:false,isRed:true,layoutId:\"rGVxNpFOY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:gN_EWX2nW,width:\"100%\"})})}),visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1umkgsj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AwpjwS3C1\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,height:\"100%\",id:\"AwpjwS3C1\",isMixedBorderRadius:false,isRed:true,layoutId:\"AwpjwS3C1\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:6,topRightRadius:6,url:oW9mfZZx6,width:\"100%\"})})})]})]}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l376ji\",\"data-framer-name\":\"LINKS\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14bp6uo\",\"data-framer-name\":\"more about\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.6em\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Find more about \"})})}),className:\"framer-1i8dwll\",fonts:[\"GF;Figtree-regular\",\"GF;Figtree-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DMO\"})}),className:\"framer-3c7mg2\",fonts:[\"Inter-Bold\"],text:GabzDTpIK,verticalAlignment:\"center\",withExternalLayout:true})]}),visible12&&/*#__PURE__*/_jsx(Link,{href:ThNBTZFDm,motionChild:true,nodeId:\"FNNDlI0sU\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2ngwuz framer-bv68zh\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mjg58j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BSFfeKfRi\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"BSFfeKfRi\",layoutId:\"BSFfeKfRi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"uwzeuzvwecuv\"})}),className:\"framer-119fkwa\",fonts:[\"Inter\"],text:DOktUeb28,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible13&&/*#__PURE__*/_jsx(Link,{href:XB9jNkKS7,motionChild:true,nodeId:\"nAMRj3S9y\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1309nab framer-bv68zh\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c8mo8y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fpCElQUib\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"fpCElQUib\",layoutId:\"fpCElQUib\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"uwzeuzvwecuv\"})}),className:\"framer-j8g7ou\",fonts:[\"Inter\"],text:ib9cTcJif,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible13&&/*#__PURE__*/_jsx(Link,{href:rbQSO9XT_oBKaPc4jL,motionChild:true,nodeId:\"xuBP7D00Z\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-dom0jv framer-bv68zh\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vlbdb8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wjGVgG4X1\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"wjGVgG4X1\",layoutId:\"wjGVgG4X1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"uwzeuzvwecuv\"})}),className:\"framer-1ndmktw\",fonts:[\"Inter\"],text:gpwfZR6mI,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible14&&/*#__PURE__*/_jsx(Link,{href:kfzSEyThx,motionChild:true,nodeId:\"SRFlSqbLz\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-xv3v65 framer-bv68zh\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5armeo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cRS6gSiU1\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"cRS6gSiU1\",layoutId:\"cRS6gSiU1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"uwzeuzvwecuv\"})}),className:\"framer-xrs2db\",fonts:[\"Inter\"],text:evibTXL_v,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible15&&/*#__PURE__*/_jsx(Link,{href:MOgVlHtMP,motionChild:true,nodeId:\"Qssm1rfrL\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zfpzq6 framer-bv68zh\",\"data-framer-name\":\"link\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tc0l0y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xM0_C0ggp\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"arrow-up-right\",id:\"xM0_C0ggp\",layoutId:\"xM0_C0ggp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"uwzeuzvwecuv\"})}),className:\"framer-1m19qwx\",fonts:[\"Inter\"],text:rtd9ByvSo,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:70,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:2216,pixelWidth:2506,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dGqzPcYNEY6f5c69I5HJ5nIcA0.svg\",srcSet:\"https://framerusercontent.com/images/dGqzPcYNEY6f5c69I5HJ5nIcA0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/dGqzPcYNEY6f5c69I5HJ5nIcA0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dGqzPcYNEY6f5c69I5HJ5nIcA0.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dGqzPcYNEY6f5c69I5HJ5nIcA0.svg 2506w\"},className:\"framer-awsyq\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:70,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1),pixelHeight:2216,pixelWidth:2506,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/21Vewvw51VR4yrnghoFrO04Josk.svg\",srcSet:\"https://framerusercontent.com/images/21Vewvw51VR4yrnghoFrO04Josk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/21Vewvw51VR4yrnghoFrO04Josk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/21Vewvw51VR4yrnghoFrO04Josk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/21Vewvw51VR4yrnghoFrO04Josk.svg 2506w\"},className:\"framer-ps4gjr\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uT2G3qy39:{y:(componentViewport?.y||0)+100+2233.42}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+100+2438.42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq3ewc-container\",nodeId:\"ZD4HsPads\",scopeId:\"Ls9u16eYc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rlk9hpKek:{variant:\"l5nmEcOAN\"},uT2G3qy39:{variant:\"gYuacVkFT\"}},children:/*#__PURE__*/_jsx(FOOTER,{height:\"100%\",id:\"ZD4HsPads\",layoutId:\"ZD4HsPads\",style:{height:\"100%\",width:\"100%\"},variant:\"FO4ZAn4I_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dxwEW.framer-bv68zh, .framer-dxwEW .framer-bv68zh { display: block; }\",\".framer-dxwEW.framer-gkziy1 { align-content: center; align-items: center; background-color: #070707; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-dxwEW .framer-13iosci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 20px 0px 20px; position: relative; width: 600px; z-index: 2; }\",\".framer-dxwEW .framer-1w2x6av { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dxwEW .framer-y88uec { flex: none; height: 49px; overflow: hidden; position: relative; text-decoration: none; width: 60px; }\",\".framer-dxwEW .framer-1w2tsc8-container { flex: none; height: 60px; left: 0px; position: absolute; right: 0px; top: calc(49.18032786885248% - 60px / 2); }\",\".framer-dxwEW .framer-xbyxel { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dxwEW .framer-1tcyi4h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dxwEW .framer-13rattk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-dxwEW .framer-1s8oh21, .framer-dxwEW .framer-d02r6o, .framer-dxwEW .framer-p9j89b, .framer-dxwEW .framer-1f0csnj { cursor: pointer; flex: none; height: 488px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dxwEW .framer-7seh85 { aspect-ratio: 1.15 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 487px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-dxwEW.framer-b1x4un { background-color: #0d0d0d; inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-dxwEW.framer-1hmo2q0, .framer-dxwEW.framer-al06p6, .framer-dxwEW.framer-1c4v8kg, .framer-dxwEW.framer-611jum { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, -380px); flex: none; gap: 10px; left: 50%; position: fixed; top: -380px; transform: translateX(-50%); width: 130%; z-index: 2; }\",\".framer-dxwEW.framer-1anvoq3 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; flex: none; height: 80%; left: calc(50.00000000000002% - 90% / 2); position: fixed; top: calc(49.87500000000003% - 80% / 2); width: 90%; z-index: 2; }\",\".framer-dxwEW .framer-1es36j9, .framer-dxwEW .framer-1opfud7, .framer-dxwEW .framer-tpjjlt { aspect-ratio: 1.15 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 487px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 560px; }\",\".framer-dxwEW.framer-j9vkfh, .framer-dxwEW.framer-1rmucvs, .framer-dxwEW.framer-1ip0r4g { background-color: #171919; inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-dxwEW.framer-11ktv71 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; flex: none; height: 80%; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 80% / 2); width: 100%; z-index: 2; }\",\".framer-dxwEW.framer-1sp2608, .framer-dxwEW.framer-1h7fvxc { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; flex: none; height: 80%; left: calc(50.00000000000002% - 90% / 2); position: fixed; top: calc(50.00000000000002% - 80% / 2); width: 90%; z-index: 2; }\",\".framer-dxwEW .framer-9jvn1m { 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: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-dxwEW .framer-1uogj0t-container, .framer-dxwEW .framer-g9t36a-container { flex: none; height: auto; position: relative; width: 250px; }\",\".framer-dxwEW .framer-1g50g2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-dxwEW .framer-1g79jsq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-dxwEW .framer-1l1jajg { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dxwEW .framer-1vplqbj { 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: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-dxwEW .framer-198bcqz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-dxwEW .framer-1npjr1i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 163px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dxwEW .framer-dgjs5j-container, .framer-dxwEW .framer-1kjvfbj-container { aspect-ratio: 1.773747841105354 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 48%; }\",\".framer-dxwEW .framer-1h8fyco-container, .framer-dxwEW .framer-15bxyvr-container, .framer-dxwEW .framer-pr8bmt-container, .framer-dxwEW .framer-1umkgsj-container { aspect-ratio: 1.7712177121771218 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 48%; }\",\".framer-dxwEW .framer-1l376ji { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-dxwEW .framer-14bp6uo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dxwEW .framer-1i8dwll, .framer-dxwEW .framer-3c7mg2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 32px; position: relative; white-space: pre; width: auto; }\",\".framer-dxwEW .framer-2ngwuz, .framer-dxwEW .framer-1309nab, .framer-dxwEW .framer-dom0jv, .framer-dxwEW .framer-xv3v65, .framer-dxwEW .framer-zfpzq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-dxwEW .framer-1mjg58j-container, .framer-dxwEW .framer-c8mo8y-container, .framer-dxwEW .framer-1vlbdb8-container, .framer-dxwEW .framer-5armeo-container, .framer-dxwEW .framer-tc0l0y-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 21px; }\",\".framer-dxwEW .framer-119fkwa, .framer-dxwEW .framer-j8g7ou, .framer-dxwEW .framer-1ndmktw, .framer-dxwEW .framer-xrs2db, .framer-dxwEW .framer-1m19qwx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dxwEW .framer-awsyq { flex: none; height: 98%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-dxwEW .framer-ps4gjr { flex: none; height: 98%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 1px; width: 100%; z-index: 0; }\",\".framer-dxwEW .framer-lq3ewc-container { flex: none; height: 800px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 760px) and (max-width: 1199px) { .framer-dxwEW.framer-gkziy1 { width: 760px; } .framer-dxwEW.framer-1hmo2q0, .framer-dxwEW.framer-al06p6, .framer-dxwEW.framer-1c4v8kg, .framer-dxwEW.framer-611jum { bottom: var(--framer-aspect-ratio-supported, -220px); top: -220px; width: 200%; }}\",\"@media (max-width: 759px) { .framer-dxwEW.framer-gkziy1 { width: 360px; } .framer-dxwEW .framer-13iosci { width: 280px; } .framer-dxwEW .framer-1w2x6av { flex-direction: column; } .framer-dxwEW .framer-xbyxel { flex: none; width: 100%; } .framer-dxwEW .framer-13rattk, .framer-dxwEW .framer-1uogj0t-container, .framer-dxwEW .framer-g9t36a-container, .framer-dxwEW .framer-dgjs5j-container, .framer-dxwEW .framer-1kjvfbj-container, .framer-dxwEW .framer-1h8fyco-container, .framer-dxwEW .framer-15bxyvr-container, .framer-dxwEW .framer-pr8bmt-container, .framer-dxwEW .framer-1umkgsj-container { width: 100%; } .framer-dxwEW .framer-1s8oh21, .framer-dxwEW .framer-d02r6o, .framer-dxwEW .framer-p9j89b, .framer-dxwEW .framer-1f0csnj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-dxwEW .framer-7seh85 { aspect-ratio: unset; height: 400px; left: unset; position: relative; top: unset; transform: unset; } .framer-dxwEW.framer-1hmo2q0, .framer-dxwEW.framer-al06p6, .framer-dxwEW.framer-1c4v8kg, .framer-dxwEW.framer-611jum { bottom: unset; height: var(--framer-aspect-ratio-supported, 200px); top: 50%; transform: translate(-50%, -50%); width: 320%; } .framer-dxwEW.framer-1anvoq3 { left: calc(50.00000000000002% - 70% / 2); width: 70%; } .framer-dxwEW .framer-1es36j9, .framer-dxwEW .framer-1opfud7, .framer-dxwEW .framer-tpjjlt { aspect-ratio: unset; height: 400px; left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-dxwEW.framer-11ktv71 { left: calc(50.00000000000002% - 90% / 2); width: 90%; }}\",\"@media (min-width: 2200px) { .framer-dxwEW.framer-gkziy1 { width: 2200px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3637.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rlk9hpKek\":{\"layout\":[\"fixed\",\"auto\"]},\"uT2G3qy39\":{\"layout\":[\"fixed\",\"auto\"]},\"AGzbgrBXh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"koSNx4H0n\":{\"pattern\":\":koSNx4H0n\",\"name\":\"detail\"},\"TDFxrxzbF\":{\"pattern\":\":TDFxrxzbF\",\"name\":\"manual\"}}\n * @framerResponsiveScreen\n */const FramerLs9u16eYc=withCSS(Component,css,\"framer-dxwEW\");export default FramerLs9u16eYc;FramerLs9u16eYc.displayName=\"Modules\";FramerLs9u16eYc.defaultProps={height:3637.5,width:1200};addFonts(FramerLs9u16eYc,[{explicitInter:true,fonts:[{family:\"Gilroy Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/bLMq4gp3pWLY2kP9EfcQG4x21KQ.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"}]},...FeatherFonts,...DownloadFonts,...YouTubeFonts,...FOOTERFonts,...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\":\"FramerLs9u16eYc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3637.5\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"koSNx4H0n\\\":{\\\"pattern\\\":\\\":koSNx4H0n\\\",\\\"name\\\":\\\"detail\\\"},\\\"TDFxrxzbF\\\":{\\\"pattern\\\":\\\":TDFxrxzbF\\\",\\\"name\\\":\\\"manual\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rlk9hpKek\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uT2G3qy39\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AGzbgrBXh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "FeatherFonts", "getFonts", "Icon", "ImageWithFX", "withFX", "Image2", "DownloadFonts", "Download", "YouTubeFonts", "Youtube", "FOOTERFonts", "TBIedZpNg_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "transformTemplate1", "_", "t", "transition1", "animation", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "kSd_6YmOH_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "GabzDTpIK", "rtk1LAH9D", "epVAvIwWG", "skpNdPOeN", "wME1gCXAI", "RNHA09sox", "i4Ksj1qe2", "aO4SxpAFl", "Aw9f2UrHJ", "XREXf7fVC", "ZkZ3bRBrg", "n_UXUDWFA", "V9n_R3PlI", "gN_EWX2nW", "oW9mfZZx6", "ThNBTZFDm", "DOktUeb28", "jjtNpr4DH", "XB9jNkKS7", "ib9cTcJif", "rbQSO9XT_oBKaPc4jL", "gpwfZR6mI", "kfzSEyThx", "evibTXL_v", "MOgVlHtMP", "rtd9ByvSo", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "visible1", "visible2", "visible3", "elementId1", "ref2", "visible4", "visible5", "usePreloadLocalizedValues", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Link", "ComponentViewportProvider", "Container", "Icon", "RichText2", "x", "l", "PropertyOverrides2", "Image2", "AnimatePresence", "Ga", "ImageWithFX", "overlay1", "overlay2", "overlay3", "Download", "getLocalizedValue", "Youtube", "getLoadingLazyAtYPosition", "TBIedZpNg_default", "css", "FramerLs9u16eYc", "withCSS", "Ls9u16eYc_default", "addFonts", "FeatherFonts", "DownloadFonts", "YouTubeFonts", "FOOTERFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
