{"version":3,"file":"JOJ8uidtcU9YpIEuLOsAC24blTh0BbcvSORuo-C_a4o.BK31YRK-.mjs","names":["IconType","SrcType","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","css","SpacingTop","IconButton","SmallLink","Footer","FormattedHeader","prefix","Legal","metadata","className","PropertyOverrides","_Fragment","fJhGBAppnOAStNsgkp","idOAStNsgkp","MAv5rlhNVOAStNsgkp","css"],"sources":["https:/framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js","https:/framerusercontent.com/modules/zVGbnNbfTiW1WTeoejD5/Zqsen6twObGuu73bkPqs/HuXaIPzxI.js","https:/framerusercontent.com/modules/8uP8gUjS6rE7gKwDwInH/GUDdtiRtONjr3XAFo0Ap/Yyrt8p0Px.js","https:/framerusercontent.com/modules/sXz1BspHuAhz04BU0Mcj/nW6inHDKT0Q7nmz5hCPp/Yyrt8p0Px.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 (d84edf2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/BpaMPUharanz6kL2bUoW/KNbzb8I1iTxZEMtJ9SgZ/fxS7uig9p.js\";const enabledGestures={GuNv2AR7n:{hover:true},rUS8l3Gj6:{hover:true}};const cycleOrder=[\"GuNv2AR7n\",\"rUS8l3Gj6\"];const serializationHash=\"framer-SWbfL\";const variantClassNames={GuNv2AR7n:\"framer-v-wbrq6x\",rUS8l3Gj6:\"framer-v-lbz1bq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"GuNv2AR7n\",Clicked:\"rUS8l3Gj6\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,p51XaJ6O5:link??props.p51XaJ6O5,variant:humanReadableVariantMap[props.variant]??props.variant??\"GuNv2AR7n\",zgek6MTYA:title??props.zgek6MTYA??\"Title\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,p51XaJ6O5,zgek6MTYA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GuNv2AR7n\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:p51XaJ6O5,motionChild:true,nodeId:\"GuNv2AR7n\",openInNewTab:false,scopeId:\"HuXaIPzxI\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-wbrq6x\",className,classNames)} framer-e85wr1`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GuNv2AR7n\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(247, 247, 250)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a7553eef-f8ab-45b7-bf45-5cdd6a65e300, rgb(245, 245, 247))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"GuNv2AR7n-hover\":{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 1px 0px 0.5px rgb(228, 229, 233), 0px 0px 0px 1px rgba(228, 229, 233, 0.6), 0px 0px 0px 3.5px rgb(247, 247, 250)\"},\"rUS8l3Gj6-hover\":{boxShadow:\"0px 1px 0px 0.5px rgb(228, 229, 233), 0px 0px 0px 1px rgba(228, 229, 233, 0.6), 0px 0px 0px 3.5px rgb(247, 247, 250)\"},rUS8l3Gj6:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 4px 12px -4px var(--token-a95166ed-f015-42bf-b56a-eb3cb7f09865, rgba(114, 115, 117, 0.08))\"}},...addPropertyOverrides({\"GuNv2AR7n-hover\":{\"data-framer-name\":undefined},\"rUS8l3Gj6-hover\":{\"data-framer-name\":undefined},rUS8l3Gj6:{\"data-framer-name\":\"Clicked\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aucfr1\",\"data-styles-preset\":\"fxS7uig9p\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5625943a-5dd0-45b2-b9bc-c7a2e00dfbcd, rgb(63, 63, 70)))\"},children:\"Title\"})}),className:\"framer-1q53qn6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TuIGYTsSx\",style:{\"--extracted-r6o4lv\":\"var(--token-5625943a-5dd0-45b2-b9bc-c7a2e00dfbcd, rgb(63, 63, 70))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zgek6MTYA,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SWbfL.framer-e85wr1, .framer-SWbfL .framer-e85wr1 { display: block; }\",\".framer-SWbfL.framer-wbrq6x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: 176px; }\",\".framer-SWbfL .framer-1q53qn6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-SWbfL[data-border=\"true\"]::after, .framer-SWbfL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 176\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rUS8l3Gj6\":{\"layout\":[\"fixed\",\"auto\"]},\"bFAHEtpwW\":{\"layout\":[\"fixed\",\"auto\"]},\"htaVGCGgQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"p51XaJ6O5\":\"link\",\"zgek6MTYA\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHuXaIPzxI=withCSS(Component,css,\"framer-SWbfL\");export default FramerHuXaIPzxI;FramerHuXaIPzxI.displayName=\"Small Link\";FramerHuXaIPzxI.defaultProps={height:40,width:176};addPropertyControls(FramerHuXaIPzxI,{variant:{options:[\"GuNv2AR7n\",\"rUS8l3Gj6\"],optionTitles:[\"Variant 1\",\"Clicked\"],title:\"Variant\",type:ControlType.Enum},p51XaJ6O5:{title:\"Link\",type:ControlType.Link},zgek6MTYA:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(FramerHuXaIPzxI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHuXaIPzxI\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rUS8l3Gj6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bFAHEtpwW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"htaVGCGgQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"176\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"p51XaJ6O5\\\":\\\"link\\\",\\\"zgek6MTYA\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HuXaIPzxI.map","// Generated by Framer (7918caa)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={ItoK4x7J0:new LazyValue(()=>import(\"./Yyrt8p0Px-0.js\")),xAGMFH5TH:new LazyValue(()=>import(\"./Yyrt8p0Px-1.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\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (7918caa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import SpacingTop from\"#framer/local/canvasComponent/ckCAPEy9N/ckCAPEy9N.js\";import Footer from\"#framer/local/canvasComponent/D72muD1lt/D72muD1lt.js\";import IconButton from\"#framer/local/canvasComponent/gbGJWcwPJ/gbGJWcwPJ.js\";import SmallLink from\"#framer/local/canvasComponent/HuXaIPzxI/HuXaIPzxI.js\";import FormattedHeader from\"#framer/local/canvasComponent/KBmIIFmeE/KBmIIFmeE.js\";import Legal from\"#framer/local/collection/EHZ6qMgAM/EHZ6qMgAM.js\";import*as sharedStyle10 from\"#framer/local/css/e7GxjYKW9/e7GxjYKW9.js\";import*as sharedStyle4 from\"#framer/local/css/H1Ce0hujb/H1Ce0hujb.js\";import*as sharedStyle7 from\"#framer/local/css/iSuYXRBI_/iSuYXRBI_.js\";import*as sharedStyle8 from\"#framer/local/css/M6gXTaNk5/M6gXTaNk5.js\";import*as sharedStyle3 from\"#framer/local/css/pkO2w8Cep/pkO2w8Cep.js\";import*as sharedStyle2 from\"#framer/local/css/u2BPzujSK/u2BPzujSK.js\";import*as sharedStyle5 from\"#framer/local/css/UNvy2kCK3/UNvy2kCK3.js\";import*as sharedStyle9 from\"#framer/local/css/vMVfpla4X/vMVfpla4X.js\";import*as sharedStyle1 from\"#framer/local/css/WJIegbo48/WJIegbo48.js\";import*as sharedStyle6 from\"#framer/local/css/WKEfhtIjl/WKEfhtIjl.js\";import*as sharedStyle from\"#framer/local/css/ziL_JID37/ziL_JID37.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Yyrt8p0Px/Yyrt8p0Px.js\";import metadataProvider from\"#framer/local/webPageMetadata/Yyrt8p0Px/Yyrt8p0Px.js\";const SpacingTopFonts=getFonts(SpacingTop);const IconButtonFonts=getFonts(IconButton);const SmallLinkFonts=getFonts(SmallLink);const DownloadFonts=getFonts(Download);const FooterFonts=getFonts(Footer);const FormattedHeaderFonts=getFonts(FormattedHeader);const FormattedHeaderWithVariantAppearEffect=withVariantAppearEffect(FormattedHeader);const ContainerWithFX=withFX(Container);const breakpoints={eFmjEnUG0:\"(max-width: 809px)\",Ike5hflww:\"(min-width: 1200px) and (max-width: 1439px)\",VBlgECIbo:\"(min-width: 1440px)\",vg5sDzBqt:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JmbS2\";const variantClassNames={eFmjEnUG0:\"framer-v-1vt6w9u\",Ike5hflww:\"framer-v-d8wt5h\",VBlgECIbo:\"framer-v-jmhk83\",vg5sDzBqt:\"framer-v-14bpzfb\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"rUS8l3Gj6\";}else{return\"GuNv2AR7n\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition1={delay:0,duration:.2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Big:\"VBlgECIbo\",Desktop:\"Ike5hflww\",Phone:\"eFmjEnUG0\",Tablet:\"vg5sDzBqt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VBlgECIbo\"};};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:\"Yyrt8p0Px\",data:Legal,type:\"Collection\"},select:[{collection:\"Yyrt8p0Px\",name:\"MAv5rlhNV\",type:\"Identifier\"},{collection:\"Yyrt8p0Px\",name:\"hChW5cOVU\",type:\"Identifier\"},{collection:\"Yyrt8p0Px\",name:\"U2XmJnyqo\",type:\"Identifier\"},{collection:\"Yyrt8p0Px\",name:\"PREx2doGL\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Yyrt8p0Px\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,MAv5rlhNV=getFromCurrentRouteData(\"MAv5rlhNV\")??\"\",MAv5rlhNVOAStNsgkp,fJhGBAppnOAStNsgkp,idOAStNsgkp,hChW5cOVU=getFromCurrentRouteData(\"hChW5cOVU\"),U2XmJnyqo=getFromCurrentRouteData(\"U2XmJnyqo\")??\"\",PREx2doGL=getFromCurrentRouteData(\"PREx2doGL\"),...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ffOgp55bY\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"JKz7UPhHo\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"LIWK7tLog\");const ref3=React.useRef(null);const router=useRouter();usePreloadLocalizedValues(activeLocale);const elementId3=useRouteElementId(\"dS4pNYlo9\");const ref4=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=prefix(toDateString(hChW5cOVU,activeLocaleCode),getLocalizedValue(\"v1\",activeLocale)??\"Updated \");const visible=isSet(PREx2doGL);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VBlgECIbo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a7553eef-f8ab-45b7-bf45-5cdd6a65e300, rgb(245, 245, 247)); } @media (max-width: 809px) { html body { background: var(--token-be23fd9d-5df7-4c48-aa48-06265f36fe39, rgb(255, 255, 255)); } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jmhk83\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-puanuf-container\",id:elementId,nodeId:\"ffOgp55bY\",ref:ref1,scopeId:\"Yyrt8p0Px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{variant:\"nkB_Jpd3F\"},vg5sDzBqt:{variant:\"mr7qQ0wrO\"}},children:/*#__PURE__*/_jsx(SpacingTop,{C_FCfOitg:false,FGcteacOb:false,fUJyRatsG:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"ffOgp55bY\",layoutId:\"ffOgp55bY\",style:{width:\"100%\"},variant:\"KPp1ZFyMi\",wDgaE9P5N:true,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12t61i\",\"data-framer-name\":\"Content\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdbfvt\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ibg7um\",\"data-framer-name\":\"Sidebar\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hovNTYT9x\"},implicitPathVariables:undefined},{href:{webPageId:\"hovNTYT9x\"},implicitPathVariables:undefined},{href:{webPageId:\"hovNTYT9x\"},implicitPathVariables:undefined},{href:{webPageId:\"hovNTYT9x\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+0},vg5sDzBqt:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1240px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"176px\",y:(componentViewport?.y||0)+0+140+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dwse5f-container\",nodeId:\"g_5pm1SQF\",scopeId:\"Yyrt8p0Px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{jMvMc9wcM:resolvedLinks[3]},Ike5hflww:{jMvMc9wcM:resolvedLinks[1]},vg5sDzBqt:{jMvMc9wcM:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(IconButton,{height:\"100%\",id:\"g_5pm1SQF\",jMvMc9wcM:resolvedLinks[0],layoutId:\"g_5pm1SQF\",lM9EOkxxs:\"var(--token-5625943a-5dd0-45b2-b9bc-c7a2e00dfbcd, rgb(63, 63, 70))\",nTC_j1E86:getLocalizedValue(\"v0\",activeLocale)??\"Legal\",Oi4ixvTh1:\"var(--token-aac3613e-08e8-48e4-a43f-145adcd736b0, rgb(0, 0, 0))\",paGkUtRps:false,rORafvBpq:\"CK\",style:{width:\"100%\"},variant:\"EmioR9c3F\",width:\"100%\",XfJxkz1d7:\"var(--token-669a2598-f86d-4c37-8e20-d92a60417052, rgb(24, 24, 27))\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcq190\",\"data-framer-name\":\"Links\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zk1qc6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OAStNsgkp\",data:Legal,type:\"Collection\"},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"OAStNsgkp\",name:\"MAv5rlhNV\",type:\"Identifier\"},{collection:\"OAStNsgkp\",name:\"fJhGBAppn\",type:\"Identifier\"},{collection:\"OAStNsgkp\",name:\"id\",type:\"Identifier\"}],where:{collection:\"OAStNsgkp\",name:\"nDbqNb927\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({fJhGBAppn:fJhGBAppnOAStNsgkp,id:idOAStNsgkp,MAv5rlhNV:MAv5rlhNVOAStNsgkp},index)=>{MAv5rlhNVOAStNsgkp??=\"\";fJhGBAppnOAStNsgkp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OAStNsgkp-${idOAStNsgkp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fJhGBAppn:fJhGBAppnOAStNsgkp},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{fJhGBAppn:fJhGBAppnOAStNsgkp},webPageId:\"Yyrt8p0Px\"},implicitPathVariables:undefined},{href:{pathVariables:{fJhGBAppn:fJhGBAppnOAStNsgkp},webPageId:\"Yyrt8p0Px\"},implicitPathVariables:undefined},{href:{pathVariables:{fJhGBAppn:fJhGBAppnOAStNsgkp},webPageId:\"Yyrt8p0Px\"},implicitPathVariables:undefined},{href:{pathVariables:{fJhGBAppn:fJhGBAppnOAStNsgkp},webPageId:\"Yyrt8p0Px\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+56+0+0+0+0},vg5sDzBqt:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1240px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+56+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"176px\",y:(componentViewport?.y||0)+0+140+0+0+0+56+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pwi6sv-container\",nodeId:\"IbNUPti88\",scopeId:\"Yyrt8p0Px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{p51XaJ6O5:resolvedLinks1[3]},Ike5hflww:{p51XaJ6O5:resolvedLinks1[1]},vg5sDzBqt:{p51XaJ6O5:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(SmallLink,{height:\"100%\",id:\"IbNUPti88\",layoutId:\"IbNUPti88\",p51XaJ6O5:resolvedLinks1[0],style:{width:\"100%\"},variant:convertFromBoolean(equals(MAv5rlhNV,MAv5rlhNVOAStNsgkp),activeLocale),width:\"100%\",zgek6MTYA:MAv5rlhNVOAStNsgkp})})})})})})})},idOAStNsgkp);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u504pp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w003za\",\"data-border\":true,\"data-framer-name\":\"content\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6qh0s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jbb4u5\",\"data-styles-preset\":\"ziL_JID37\",style:{\"--framer-text-color\":\"var(--token-2951c0cf-e08a-47ed-ace2-648087a5f341, rgb(0, 119, 237))\"},children:\"Updated \"})}),className:\"framer-1tejd06\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9ijm9l\",\"data-styles-preset\":\"WJIegbo48\",children:\"Disclaimer\"})}),className:\"framer-102yswo\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:MAv5rlhNV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:U2XmJnyqo,className:\"framer-xh6uom\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-a056fe\",blockquote:\"framer-styles-preset-9e73dh\",code:\"framer-styles-preset-qff2d2\",h2:\"framer-styles-preset-12n9ib2\",h3:\"framer-styles-preset-hj0ipr\",h6:\"framer-styles-preset-4erdfk\",img:\"framer-styles-preset-kra0aq\",p:\"framer-styles-preset-13dbejs\",table:\"framer-styles-preset-ta05wj\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5zpdg4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ALBm4X64B\",scopeId:\"Yyrt8p0Px\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"ALBm4X64B\",layoutId:\"ALBm4X64B\",srcFile:PREx2doGL,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-2951c0cf-e08a-47ed-ace2-648087a5f341, rgb(0, 119, 237))\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:10},text:getLocalizedValue(\"v2\",activeLocale)??\"Download PDF\",width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{y:(componentViewport?.y||0)+0+502.8},vg5sDzBqt:{y:(componentViewport?.y||0)+0+560.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1066,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+432.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7o4159-container\",nodeId:\"M6w0IRE1G\",scopeId:\"Yyrt8p0Px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{variant:\"vRJtTb9Pk\"},vg5sDzBqt:{variant:\"OQvCeA8fq\"}},children:/*#__PURE__*/_jsx(Footer,{AOYOkuIuP:\"pPZlStT_6\",FLTiRad9d:true,height:\"100%\",id:\"M6w0IRE1G\",K4OeVBaL_:\"cEVbnrsIV\",layoutId:\"M6w0IRE1G\",MI_ZydfR8:\"\",NhPz7c6Az:true,style:{width:\"100%\"},UVk4RcC9O:false,variant:\"rxeXmMa2n\",width:\"100%\",wSCG_QSXv:true})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gi3wsv-container\",layoutScroll:true,nodeId:\"J6B2qVNQB\",rendersWithMotion:true,scopeId:\"Yyrt8p0Px\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eFmjEnUG0:{prRRJcR3k:\"c4Itu7O8u\",variant:\"Js1NFfaUk\"},vg5sDzBqt:{prRRJcR3k:\"lCiGtdGph\"}},children:/*#__PURE__*/_jsx(FormattedHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,a8kjTMN5h:\"GqsAHabDy\",ASOCwWEaX:\"\",btM6Bfn6k:\"\",DMF0EXAeg:\"\",ED6KEXgr2:\"\",EXH3dDL3R:\"mPvqX_5HC\",G2JXHaUrh:false,GgtoIw55F:true,height:\"100%\",id:\"J6B2qVNQB\",JGcPqm8Un:\"\",KSA6gPKK6:getLocalizedValue(\"v4\",activeLocale)??\"Breadcrumbs\",layoutId:\"J6B2qVNQB\",lMjnzV9Fc:true,OZ_jHvkbu:\"Error\",pRKN40Bv3:\"\",prRRJcR3k:\"IsbOm2lH6\",rnSYiE4z2:true,S9w_rclIu:{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},style:{width:\"100%\"},tnZ2TOoMU:false,U_F44b9Qp:false,uNmCpBjVv:getLocalizedValue(\"v3\",activeLocale)??\"Custom CTA\",uuuWafm5n:false,variant:\"bUcSL0X9H\",VGZYogkN7:true,vV9WkB_kd:true,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JmbS2.framer-1w02eym, .framer-JmbS2 .framer-1w02eym { display: block; }\",\".framer-JmbS2.framer-jmhk83 { align-content: center; align-items: center; background-color: var(--token-a7553eef-f8ab-45b7-bf45-5cdd6a65e300, #f5f5f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-JmbS2 .framer-puanuf-container, .framer-JmbS2 .framer-dwse5f-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JmbS2 .framer-12t61i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 36px 6px 36px; position: relative; width: 100%; }\",\".framer-JmbS2 .framer-1xdbfvt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JmbS2 .framer-1ibg7um { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 176px; }\",\".framer-JmbS2 .framer-qcq190 { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JmbS2 .framer-zk1qc6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-JmbS2 .framer-pwi6sv-container { flex: none; height: auto; position: relative; width: 176px; }\",\".framer-JmbS2 .framer-u504pp { align-content: center; align-items: center; background-color: var(--token-893e62a7-f48c-4da7-af52-7c7e95af6a12, #f2f2f2); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JmbS2 .framer-1w003za { --border-bottom-width: 1px; --border-color: var(--token-49275b38-bc2e-418d-ad9b-aff60caa1322, #e4e4e7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-be23fd9d-5df7-4c48-aa48-06265f36fe39, #ffffff); border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 36px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JmbS2 .framer-1y6qh0s { 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%; }\",\".framer-JmbS2 .framer-1tejd06, .framer-JmbS2 .framer-102yswo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JmbS2 .framer-xh6uom { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JmbS2 .framer-5zpdg4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JmbS2 .framer-7o4159-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-JmbS2 .framer-gi3wsv-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-JmbS2[data-border=\"true\"]::after, .framer-JmbS2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-JmbS2.framer-jmhk83 { width: 1200px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-JmbS2.framer-jmhk83 { width: 810px; } .framer-JmbS2 .framer-12t61i { align-content: flex-start; align-items: flex-start; justify-content: flex-start; padding: 0px 20px 6px 20px; } .framer-JmbS2 .framer-1xdbfvt { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-JmbS2 .framer-1ibg7um { position: relative; top: unset; width: 100%; } .framer-JmbS2 .framer-pwi6sv-container { width: 100%; } .framer-JmbS2 .framer-u504pp { flex: none; width: 100%; }}\",\"@media (max-width: 809px) { .framer-JmbS2.framer-jmhk83 { background-color: var(--token-be23fd9d-5df7-4c48-aa48-06265f36fe39, #ffffff); width: 310px; } .framer-JmbS2 .framer-puanuf-container { order: 0; } .framer-JmbS2 .framer-12t61i { order: 1; padding: 0px; } .framer-JmbS2 .framer-1xdbfvt { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-JmbS2 .framer-1ibg7um { padding: 0px 20px 0px 20px; position: relative; top: unset; width: 100%; } .framer-JmbS2 .framer-zk1qc6 { gap: 4px; } .framer-JmbS2 .framer-pwi6sv-container { width: 100%; } .framer-JmbS2 .framer-u504pp { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; padding: 0px; width: 100%; will-change: unset; } .framer-JmbS2 .framer-1w003za { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; padding: 36px 20px 0px 20px; will-change: unset; } .framer-JmbS2 .framer-7o4159-container { order: 2; } .framer-JmbS2 .framer-gi3wsv-container { order: 3; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2594\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ike5hflww\":{\"layout\":[\"fixed\",\"auto\"]},\"vg5sDzBqt\":{\"layout\":[\"fixed\",\"auto\"]},\"eFmjEnUG0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ffOgp55bY\":{\"pattern\":\":ffOgp55bY\",\"name\":\"hero\"},\"JKz7UPhHo\":{\"pattern\":\":JKz7UPhHo\",\"name\":\"content\"},\"LIWK7tLog\":{\"pattern\":\":LIWK7tLog\",\"name\":\"sidebar\"},\"dS4pNYlo9\":{\"pattern\":\":dS4pNYlo9\",\"name\":\"content\"}}\n * @framerResponsiveScreen\n */const FramerYyrt8p0Px=withCSS(Component,css,\"framer-JmbS2\");export default FramerYyrt8p0Px;FramerYyrt8p0Px.displayName=\"Page\";FramerYyrt8p0Px.defaultProps={height:2594,width:1440};addFonts(FramerYyrt8p0Px,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SpacingTopFonts,...IconButtonFonts,...SmallLinkFonts,...DownloadFonts,...FooterFonts,...FormattedHeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYyrt8p0Px\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ike5hflww\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vg5sDzBqt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eFmjEnUG0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"2594\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"ffOgp55bY\\\":{\\\"pattern\\\":\\\":ffOgp55bY\\\",\\\"name\\\":\\\"hero\\\"},\\\"JKz7UPhHo\\\":{\\\"pattern\\\":\\\":JKz7UPhHo\\\",\\\"name\\\":\\\"content\\\"},\\\"LIWK7tLog\\\":{\\\"pattern\\\":\\\":LIWK7tLog\\\",\\\"name\\\":\\\"sidebar\\\"},\\\"dS4pNYlo9\\\":{\\\"pattern\\\":\\\":dS4pNYlo9\\\",\\\"name\\\":\\\"content\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}