{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/CvR35MeeJnSdIYAAt4ht/FramerIcon.js", "ssg:https://framerusercontent.com/modules/SOyQyzGgz1rTEb6NFAIi/yyGiMgV3hG8W6W6TPOGC/cLIOZpuSD.js", "ssg:https://framerusercontent.com/modules/0E8YDMG6ZaltC5Wi8bLk/oF4DnHCspXdROamAUm0O/YfU52qU9C.js", "ssg:https://framerusercontent.com/modules/TzUN20R3VKmd1i2ZRn2n/KHGUuOdn6WQoYSG5T584/YfU52qU9C.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", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const DEFAULT_COLOR=\"#1570EF\";const DEFAULT_SVG=`<svg viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m13.076 12.21 3.098 3.098a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.424-3.424a1.25 1.25 0 0 0-1.768 0L13.076 9.79l4.902.903c.341.063.341.552 0 .614l-4.902.903Zm-3.206.786-3.178 3.178a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.424-3.424a1.25 1.25 0 0 0 0-1.768l-3.043-3.043-.878 4.768c-.063.34-.552.34-.615 0l-.902-4.903ZM6.692 4.058a1.25 1.25 0 0 0 0 1.768l3.177 3.178.903-4.903c.063-.34.552-.34.615 0l.878 4.768 3.043-3.043a1.25 1.25 0 0 0 0-1.768L11.884.634a1.25 1.25 0 0 0-1.768 0L6.692 4.058ZM.634 10.116a1.25 1.25 0 0 0 0 1.768l3.424 3.424a1.25 1.25 0 0 0 1.768 0l3.123-3.122-4.768-.879c-.341-.063-.341-.552 0-.614l4.768-.879-3.123-3.122a1.25 1.25 0 0 0-1.768 0L.634 10.116Z\" fill=\"#1570EF\"/></svg>`;const DEFAULT_STROKE_WIDTH=1.5;/*\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n */export default function FramerIcons(props){const customizedSvg=getCustomizedSVG(props.svg,props.color,props.strokeWidth);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",maxWidth:\"100%\",maxHeight:\"100%\",alignItems:\"center\",justifyContent:\"center\",...props.style},dangerouslySetInnerHTML:{__html:customizedSvg}});}addPropertyControls(FramerIcons,{svg:{title:\"SVG\",type:ControlType.String,defaultValue:DEFAULT_SVG},strokeWidth:{type:ControlType.Number,step:.25,min:.5,max:2,defaultValue:DEFAULT_STROKE_WIDTH,hidden:props=>hideStrokeWidth(props.svg)},color:{type:ControlType.Color,defaultValue:DEFAULT_COLOR,description:\"By [FramerIcons](https://www.framericons.com?utm=FramerIconComponent)\"}});// hide if no stroke-width or all stroke-widths are 0\nfunction hideStrokeWidth(svg){const strokeWidthMatch=svg.match(/stroke-width=\"([^\"]+)\"/g);return!strokeWidthMatch||strokeWidthMatch.every(match=>match===\"0\");}function getCustomizedSVG(svg,color=DEFAULT_COLOR,strokeWidth=DEFAULT_STROKE_WIDTH){let svgAttributes=svg.match(/<svg[^>]*>/)?.[0];if(!svgAttributes){svg=DEFAULT_SVG;svgAttributes=svg.match(/<svg[^>]*>/)?.[0];}const width=svgAttributes.match(/width=\"([^\"]*)\"/)?.[1];const height=svgAttributes.match(/height=\"([^\"]*)\"/)?.[1];const viewBox=svgAttributes.match(/viewBox=\"([^\"]*)\"/)?.[1]?.split(\" \");const viewBoxWidth=viewBox?.[2];const viewBoxHeight=viewBox?.[3];if(width&&height){svg=svg.replace(/width=\"([^\"]*)\"/,`width=\"100%\"`);svg=svg.replace(/height=\"([^\"]*)\"/,`height=\"100%\"`);}else{svg=svg.replace(/<svg/,`<svg width=\"100%\" height=\"100%\"`);}let hasElementsWithValidColors=false;if(svg.includes('fill=\"')||svg.includes('stroke=\"')){svg=svg.replace(/(fill|stroke)=\"([^\"]+)\"/g,(match,attr,value)=>{if(value===\"none\"||value===\"transparent\"){return match;}// For iconsax -> Crypto -> Bulk\nif(value===\"white\"){return\"\";}hasElementsWithValidColors=true;return`${attr}=\"${color}\"`;});}if(!hasElementsWithValidColors){svg=svg.replace(/<(path|circle|rect|line|polygon|polyline) /g,match=>`<${match.slice(1)} fill=\"${color}\" `);}svg=svg.replace(/stroke-width=\"([^\"]+)\"/g,(match,value)=>{if(value===\"0\"){return match;}return`stroke-width=\"${strokeWidth}\"`;});return svg;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIcons\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerIcon.map", "// Generated by Framer (2ca17d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FramerIcons from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/CvR35MeeJnSdIYAAt4ht/FramerIcon.js\";const FramerIconsFonts=getFonts(FramerIcons);const enabledGestures={CuUsSvVzK:{hover:true}};const serializationHash=\"framer-5e0mQ\";const variantClassNames={CuUsSvVzK:\"framer-v-43ev9n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,JtYProOds:click??props.JtYProOds};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JtYProOds,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"CuUsSvVzK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap64gjvw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JtYProOds){const res=await JtYProOds(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-43ev9n\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CuUsSvVzK\",onTap:onTap64gjvw,ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},variants:{\"CuUsSvVzK-hover\":{backgroundColor:\"var(--token-104b4e0d-795a-4d32-9884-a670de1dd0bc, rgb(37, 37, 38))\"}},...addPropertyOverrides({\"CuUsSvVzK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1purb2b-container\",\"data-framer-name\":\"close-fill\",layoutDependency:layoutDependency,layoutId:\"d_0pElDZn-container\",name:\"close-fill\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"var(--token-6ba40cf4-c133-47d9-a783-0533b485c947, rgb(117, 117, 122))\",height:\"100%\",id:\"d_0pElDZn\",layoutId:\"d_0pElDZn\",name:\"close-fill\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"#ffffff\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.9997 10.5865L16.9495 5.63672L18.3637 7.05093L13.4139 12.0007L18.3637 16.9504L16.9495 18.3646L11.9997 13.4149L7.04996 18.3646L5.63574 16.9504L10.5855 12.0007L5.63574 7.05093L7.04996 5.63672L11.9997 10.5865Z\"/></svg>',width:\"100%\",...addPropertyOverrides({\"CuUsSvVzK-hover\":{color:\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5e0mQ.framer-r7wmgf, .framer-5e0mQ .framer-r7wmgf { display: block; }\",\".framer-5e0mQ.framer-43ev9n { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5e0mQ .framer-1purb2b-container { aspect-ratio: 1 / 1; flex: none; height: 20px; position: relative; width: var(--framer-aspect-ratio-supported, 20px); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5e0mQ.framer-43ev9n { gap: 0px; } .framer-5e0mQ.framer-43ev9n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5e0mQ.framer-43ev9n > :first-child { margin-left: 0px; } .framer-5e0mQ.framer-43ev9n > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"mkU8DfFp6\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"JtYProOds\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercLIOZpuSD=withCSS(Component,css,\"framer-5e0mQ\");export default FramercLIOZpuSD;FramercLIOZpuSD.displayName=\"Icon hover\";FramercLIOZpuSD.defaultProps={height:28,width:28};addPropertyControls(FramercLIOZpuSD,{JtYProOds:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramercLIOZpuSD,[{explicitInter:true,fonts:[]},...FramerIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercLIOZpuSD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"JtYProOds\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"28\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mkU8DfFp6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cLIOZpuSD.map", "// Generated by Framer (b62c1c2)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={koQsrM4Lt:new LazyValue(()=>import(\"./YfU52qU9C-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\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}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 Loops from\"https://framerusercontent.com/modules/CJgw13h0ok22pdnRmFv0/g58aJ125AH1vTSn4GUsX/Input_Loops.js\";import LoadMore from\"https://framerusercontent.com/modules/DeOFaQSEkzad7IWREtaG/uSF4wTJztPxXXCcQVP6B/g3OPvNRkB.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import IconHover from\"#framer/local/canvasComponent/cLIOZpuSD/cLIOZpuSD.js\";import Nav from\"#framer/local/canvasComponent/ffmUxt1HG/ffmUxt1HG.js\";import Card from\"#framer/local/canvasComponent/poUcabGQH/poUcabGQH.js\";import AccountMenu from\"#framer/local/canvasComponent/RK08aYatk/RK08aYatk.js\";import DesktopNewFooter from\"#framer/local/canvasComponent/XBCXytljU/XBCXytljU.js\";import Fonts from\"#framer/local/collection/hr5Jj5Jjv/hr5Jj5Jjv.js\";import FontsCategories from\"#framer/local/collection/Su_4IFW2H/Su_4IFW2H.js\";import*as sharedStyle3 from\"#framer/local/css/bUOEp0R1y/bUOEp0R1y.js\";import*as sharedStyle2 from\"#framer/local/css/ihkWSiNrK/ihkWSiNrK.js\";import*as sharedStyle from\"#framer/local/css/lFXEzh6ui/lFXEzh6ui.js\";import*as sharedStyle1 from\"#framer/local/css/xSpC0s0Ym/xSpC0s0Ym.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/YfU52qU9C/YfU52qU9C.js\";import metadataProvider from\"#framer/local/webPageMetadata/YfU52qU9C/YfU52qU9C.js\";const AccountMenuFonts=getFonts(AccountMenu);const LoopsFonts=getFonts(Loops);const DownloadFonts=getFonts(Download);const IconHoverFonts=getFonts(IconHover);const NavFonts=getFonts(Nav);const CardFonts=getFonts(Card);const LoadMoreFonts=getFonts(LoadMore);const DesktopNewFooterFonts=getFonts(DesktopNewFooter);const breakpoints={BnOl3FRZE:\"(min-width: 810px) and (max-width: 1439px)\",iv6l7d6vv:\"(min-width: 1440px)\",IzbGH3MTQ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FkuLJ\";const variantClassNames={BnOl3FRZE:\"framer-v-4vw0xl\",iv6l7d6vv:\"framer-v-xwx11c\",IzbGH3MTQ:\"framer-v-1jw68o\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translate(-50%, -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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"iv6l7d6vv\",Phone:\"IzbGH3MTQ\",Tablet:\"BnOl3FRZE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iv6l7d6vv\"};};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:{constraint:{left:{collection:\"YfU52qU9C\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"YfU52qU9C\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"YfU52qU9C\",data:Fonts,type:\"Collection\"},right:{alias:\"previousItemId\",data:Fonts,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Fonts,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"YfU52qU9C\",name:\"Qywb_WXbS\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"AwPD26WlG\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"EsGELTJ1T\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"NAF3fNSS3\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"F57tHflR6\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"FQaxPQRio\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"nZ_u34uKw\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"nM274H0HF\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"f85V3H080\",type:\"Identifier\"},{collection:\"YfU52qU9C\",name:\"DYxIksPYJ\",type:\"Identifier\"},{alias:\"jPkXyQbwi\",arguments:[{from:{alias:\"jPkXyQbwi\",data:FontsCategories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"YfU52qU9C\",name:\"jPkXyQbwi\",type:\"Identifier\"},{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"YfU52qU9C\",name:\"jPkXyQbwi\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"YfU52qU9C\",name:\"scR2MlgF6\",type:\"Identifier\"},{alias:\"previousItemId.Qywb_WXbS\",collection:\"previousItemId\",name:\"Qywb_WXbS\",type:\"Identifier\"},{alias:\"previousItemId.BrkGnjOy3\",collection:\"previousItemId\",name:\"BrkGnjOy3\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.Qywb_WXbS\",collection:\"nextItemId\",name:\"Qywb_WXbS\",type:\"Identifier\"},{alias:\"nextItemId.BrkGnjOy3\",collection:\"nextItemId\",name:\"BrkGnjOy3\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"YfU52qU9C\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,f85V3H080=getFromCurrentRouteData(\"f85V3H080\"),previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_BrkGnjOy3=getFromCurrentRouteData(\"previousItemId.BrkGnjOy3\")??\"\",previousItemId_Qywb_WXbS=getFromCurrentRouteData(\"previousItemId.Qywb_WXbS\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_BrkGnjOy3=getFromCurrentRouteData(\"nextItemId.BrkGnjOy3\")??\"\",nextItemId_Qywb_WXbS=getFromCurrentRouteData(\"nextItemId.Qywb_WXbS\")??\"\",Qywb_WXbS=getFromCurrentRouteData(\"Qywb_WXbS\")??\"\",F57tHflR6=getFromCurrentRouteData(\"F57tHflR6\")??\"\",AwPD26WlG=getFromCurrentRouteData(\"AwPD26WlG\")??\"\",FQaxPQRio=getFromCurrentRouteData(\"FQaxPQRio\")??\"\",EsGELTJ1T=getFromCurrentRouteData(\"EsGELTJ1T\")??\"\",nZ_u34uKw=getFromCurrentRouteData(\"nZ_u34uKw\")??\"\",NAF3fNSS3=getFromCurrentRouteData(\"NAF3fNSS3\")??\"\",nM274H0HF=getFromCurrentRouteData(\"nM274H0HF\")??\"\",FlzZSnpoqC9dkw3glw,VdkJV7hlYC9dkw3glw,idC9dkw3glw,jPkXyQbwi=getFromCurrentRouteData(\"jPkXyQbwi\"),scR2MlgF6=getFromCurrentRouteData(\"scR2MlgF6\")??\"\",DYxIksPYJ=getFromCurrentRouteData(\"DYxIksPYJ\"),BrkGnjOy3AbVUi9Zbs,f85V3H080AbVUi9Zbs,Qywb_WXbSAbVUi9Zbs,L_Ly3SQ4pAbVUi9Zbs,jPkXyQbwiAbVUi9Zbs,idAbVUi9Zbs,...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 tSttRekDY3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const JtYProOds1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(previousItemId);const textContent=prefix(previousItemId_Qywb_WXbS,\"\u2039 \");const visible1=isSet(nextItemId);const textContent1=suffix(nextItemId_Qywb_WXbS,\" \u203A\");usePreloadLocalizedValues(activeLocale);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"iv6l7d6vv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1e782f09-def1-4a70-9745-30a9c677fa41, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-xwx11c\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10m4r0n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mepjsr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+0+20+610+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(f85V3H080)}},IzbGH3MTQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+0+20+620+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(f85V3H080)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+75+0+0+0+0),...toResponsiveImage(f85V3H080)},className:\"framer-1awwg4m\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkkhwn\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{BrkGnjOy3:previousItemId_BrkGnjOy3},webPageId:\"YfU52qU9C\"},motionChild:true,nodeId:\"Z5fK1NAfy\",openInNewTab:false,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\"\u2039 Familjen Grotesk\"})})})}),className:\"framer-32k08v\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{BrkGnjOy3:nextItemId_BrkGnjOy3},webPageId:\"YfU52qU9C\"},motionChild:true,nodeId:\"z9o3ZDuzD\",openInNewTab:false,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\" \u203AFamiljen Grotesk\"})})})}),className:\"framer-84yc32\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fz6vf6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yal3iu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mt16k5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:\"Rawest\"})}),fonts:[\"FS;Switzer-regular\"]},IzbGH3MTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:\"Rawest\"})}),fonts:[\"FS;Switzer-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13dwjy\",\"data-styles-preset\":\"ihkWSiNrK\",style:{\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:\"Rawest\"})}),className:\"framer-c5spoc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:Qywb_WXbS,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9vojx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3rtt4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17o6t52\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6ba40cf4-c133-47d9-a783-0533b485c947, rgb(117, 117, 122))\"},children:\"\u4F5C\u8005\"})}),className:\"framer-f0ddvl\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:F57tHflR6,motionChild:true,nodeId:\"mDhpZtz6C\",openInNewTab:true,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\"atipostudio\"})})})}),className:\"framer-16vk8og\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:AwPD26WlG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:FQaxPQRio,motionChild:true,nodeId:\"mDPUOxOQQ\",openInNewTab:true,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\"Content\"})})})}),className:\"framer-13f6oys\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:EsGELTJ1T,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:nZ_u34uKw,motionChild:true,nodeId:\"tXQk3ioYF\",openInNewTab:true,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\"Content\"})})})}),className:\"framer-1l6as8b\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:NAF3fNSS3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oyxr3d\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6ba40cf4-c133-47d9-a783-0533b485c947, rgb(117, 117, 122))\"},children:\"\u7C7B\u522B\"})}),className:\"framer-1tx2x7v\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kk80j5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"C9dkw3glw\",data:FontsCategories,type:\"Collection\"},orderBy:[{arguments:[{type:\"LiteralValue\",value:jPkXyQbwi},{collection:\"C9dkw3glw\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"C9dkw3glw\",name:\"FlzZSnpoq\",type:\"Identifier\"},{collection:\"C9dkw3glw\",name:\"VdkJV7hlY\",type:\"Identifier\"},{collection:\"C9dkw3glw\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"C9dkw3glw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:jPkXyQbwi},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({FlzZSnpoq:FlzZSnpoqC9dkw3glw,id:idC9dkw3glw,VdkJV7hlY:VdkJV7hlYC9dkw3glw},index)=>{FlzZSnpoqC9dkw3glw??=\"\";VdkJV7hlYC9dkw3glw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`C9dkw3glw-${idC9dkw3glw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{VdkJV7hlY:VdkJV7hlYC9dkw3glw},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-23w36z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:nM274H0HF,motionChild:true,nodeId:\"AUP6__hAo\",openInNewTab:true,scopeId:\"YfU52qU9C\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8layg7\",\"data-styles-preset\":\"xSpC0s0Ym\",children:\"\u975E\u886C\u7EBF\"})})})}),className:\"framer-19og713\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:FlzZSnpoqC9dkw3glw,verticalAlignment:\"top\",withExternalLayout:true})})})},idC9dkw3glw);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kbmw3j\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6ba40cf4-c133-47d9-a783-0533b485c947, rgb(117, 117, 122))\"},children:\"Rawest \u662F\u4E00\u6B3E\u7531\u8457\u540D\u8BBE\u8BA1\u5DE5\u4F5C\u5BA4 atipostudio \u7CBE\u5FC3\u6253\u9020\u7684\u51E0\u4F55\u65E0\u886C\u7EBF\u5B57\u4F53\u7CFB\u5217\u3002\u5B83\u7684\u8BBE\u8BA1\u7075\u611F\u6E90\u4E8E\u57FA\u7840\u51E0\u4F55\u5F62\u72B6\uFF0C\u91C7\u7528\u5355\u7EBF\u6761\u7ED3\u6784\uFF0C\u5C55\u73B0\u51FA\u9C9C\u660E\u800C\u5927\u80C6\u7684\u4E2A\u6027\u3002\"})}),className:\"framer-zw3k9c\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:scR2MlgF6,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{y:(componentViewport?.y||0)+55+0+20+0+0+0+94+0+422},IzbGH3MTQ:{y:(componentViewport?.y||0)+55+0+20+0+0+0+104+0+422}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+75+0+0+0+0+94+0+422,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-xuhip4-container\",id:\"xuhip4\",nodeId:\"ccmHFBbYr\",scopeId:\"YfU52qU9C\",children:[/*#__PURE__*/_jsx(AccountMenu,{height:\"100%\",id:\"ccmHFBbYr\",layoutId:\"ccmHFBbYr\",rEyAzfubr:getLocalizedValue(\"v2\",activeLocale)??\"\u4E0B\u8F7D\u5B57\u4F53\",style:{height:\"100%\"},tSttRekDY:tSttRekDY3bnx0g({overlay}),variant:\"ZXB0XYpzF\",width:\"100%\"}),/*#__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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-32sxkb\"),\"data-framer-portal-id\":\"xuhip4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"FMrQuy6Pq\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-6a57ao\"),\"data-framer-name\":\"Subscribe Overlay\",\"data-framer-portal-id\":\"xuhip4\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-efucpe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-161u0me\",\"data-styles-preset\":\"bUOEp0R1y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:\"\u4E0B\u8F7D\u5B57\u4F53\"})}),className:\"framer-d0wxj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1u6q9em\",\"data-styles-preset\":\"lFXEzh6ui\",style:{\"--framer-text-alignment\":\"left\"},children:[\"\u8BA2\u9605\u6211\u4EEC\uFF0C\u7B2C\u4E00\u65F6\u95F4\u83B7\u5F97\u6700\u65B0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u5B57\u4F53\u8D44\u6E90\u548C\u8BBE\u8BA1\u8D44\u6E90\u3002\"]})}),className:\"framer-8z0a3e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kxguv-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pC17Q4VPl\",rendersWithMotion:true,scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(Loops,{button:{buttonFont:{fontFamily:'\"Switzer\", \"Switzer Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:10,buttonPaddingBottom:6,buttonPaddingLeft:8,buttonPaddingPerSide:false,buttonPaddingRight:8,buttonPaddingTop:6,color:\"rgb(255, 255, 255)\",fill:\"var(--token-1e782f09-def1-4a70-9745-30a9c677fa41, rgb(8, 8, 8))\",insetWhenDocked:4,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:91},font:{fontFamily:'\"Switzer\", \"Switzer Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:6,height:\"100%\",id:\"pC17Q4VPl\",input:{borderRadius:8,color:\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\",fill:\"rgb(26, 26, 26)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-104b4e0d-795a-4d32-9884-a670de1dd0bc, rgb(37, 37, 38))\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:14,paddingBottom:10,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:10,placeholder:\"name@email.com\",placeholderColor:\"var(--token-46961974-bfb0-4bc5-b6fd-7ab8044494de, rgb(174, 174, 178))\"},layout:\"horizontal\",layoutId:\"pC17Q4VPl\",loopsID:\"cm5cn6z9n00oj1htnlt4vsznp\",loopsMailingList:\"\",loopsUserGroup:\"Today Haha\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-snpx4w\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10c4goq-container\",\"data-framer-name\":\"Support\",inComponentSlot:true,name:\"Support\",nodeId:\"aEng8Z0BY\",rendersWithMotion:true,scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(AccountMenu,{C2_BMoBjh:\"https://todayhaha.lemonsqueezy.com/buy/a864faa5-0fb8-4ebd-99d7-b07153050556\",height:\"100%\",id:\"aEng8Z0BY\",layoutId:\"aEng8Z0BY\",name:\"Support\",rEyAzfubr:getLocalizedValue(\"v5\",activeLocale)??\"\u4E0B\u8F7D\u6240\u6709\u5B57\u4F53\",variant:\"PQRC8zyAs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ybrfv7-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yKfSQ0I0R\",rendersWithMotion:true,scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Switzer\", \"Switzer Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-f7a2c992-9ece-4391-91b2-b892014c7f4d, rgba(255, 0, 111, 0.85))\",color:\"rgb(255, 255, 255)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"yKfSQ0I0R\",layoutId:\"yKfSQ0I0R\",srcFile:DYxIksPYJ,srcType:\"Upload\",srcURL:\"\",style:{height:\"100%\"},styleOptions:{backgroundColor:\"var(--token-72609e45-fda0-4696-95a1-70f8a11dfa53, rgb(255, 0, 111))\",borderRadius:6,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:8,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:8},text:getLocalizedValue(\"v6\",activeLocale)??\"\u4E0B\u8F7D\u5B57\u4F53\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-643qnu-container\",inComponentSlot:true,nodeId:\"g5bkeRZU_\",rendersWithMotion:true,scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(IconHover,{height:\"100%\",id:\"g5bkeRZU_\",JtYProOds:JtYProOds1wnntms({overlay}),layoutId:\"g5bkeRZU_\",width:\"100%\"})})})]})]}),getContainer())})})]})})})})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{width:\"100vw\"},IzbGH3MTQ:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"1440px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1inbjog-container\",layoutScroll:true,nodeId:\"lqm0_hImp\",scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{style:{height:\"100%\",width:\"100%\"},variant:\"LQ_braWRZ\"},IzbGH3MTQ:{style:{height:\"100%\",width:\"100%\"},variant:\"LQ_braWRZ\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"lqm0_hImp\",layoutId:\"lqm0_hImp\",style:{width:\"100%\"},variant:\"xY8Cd0nP9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xtscl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ek80lu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9bts3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13dwjy\",\"data-styles-preset\":\"ihkWSiNrK\",style:{\"--framer-text-color\":\"var(--token-f0560e33-12a8-433f-aea9-ca570eaac1ee, rgb(236, 236, 243))\"},children:\"\u66F4\u591A\"})}),className:\"framer-pskwss\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gy071t\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{query:{from:{alias:\"AbVUi9Zbs\",data:Fonts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"f85V3H080\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"Qywb_WXbS\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"L_Ly3SQ4p\",type:\"Identifier\"},{alias:\"jPkXyQbwi\",arguments:[{from:{alias:\"jPkXyQbwi\",data:FontsCategories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"AbVUi9Zbs\",name:\"id\",type:\"Identifier\"}],where:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"}}}},IzbGH3MTQ:{query:{from:{alias:\"AbVUi9Zbs\",data:Fonts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"f85V3H080\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"Qywb_WXbS\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"L_Ly3SQ4p\",type:\"Identifier\"},{alias:\"jPkXyQbwi\",arguments:[{from:{alias:\"jPkXyQbwi\",data:FontsCategories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"AbVUi9Zbs\",name:\"id\",type:\"Identifier\"}],where:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"}}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AbVUi9Zbs\",data:Fonts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"f85V3H080\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"Qywb_WXbS\",type:\"Identifier\"},{collection:\"AbVUi9Zbs\",name:\"L_Ly3SQ4p\",type:\"Identifier\"},{alias:\"jPkXyQbwi\",arguments:[{from:{alias:\"jPkXyQbwi\",data:FontsCategories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"jPkXyQbwi\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"AbVUi9Zbs\",name:\"jPkXyQbwi\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"AbVUi9Zbs\",name:\"id\",type:\"Identifier\"}],where:{conditions:[{then:{type:\"LiteralValue\",value:true},type:\"Condition\",when:{type:\"LiteralValue\",value:\"\"}}],else:{type:\"LiteralValue\",value:true},type:\"Case\",value:{collection:\"AbVUi9Zbs\",name:\"BrkGnjOy3\",type:\"Identifier\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({BrkGnjOy3:BrkGnjOy3AbVUi9Zbs,f85V3H080:f85V3H080AbVUi9Zbs,id:idAbVUi9Zbs,jPkXyQbwi:jPkXyQbwiAbVUi9Zbs,L_Ly3SQ4p:L_Ly3SQ4pAbVUi9Zbs,Qywb_WXbS:Qywb_WXbSAbVUi9Zbs},index1)=>{BrkGnjOy3AbVUi9Zbs??=\"\";Qywb_WXbSAbVUi9Zbs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AbVUi9Zbs-${idAbVUi9Zbs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BrkGnjOy3:BrkGnjOy3AbVUi9Zbs},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BrkGnjOy3:BrkGnjOy3AbVUi9Zbs},webPageId:\"YfU52qU9C\"},implicitPathVariables:undefined},{href:{pathVariables:{BrkGnjOy3:BrkGnjOy3AbVUi9Zbs},webPageId:\"YfU52qU9C\"},implicitPathVariables:undefined},{href:{pathVariables:{BrkGnjOy3:BrkGnjOy3AbVUi9Zbs},webPageId:\"YfU52qU9C\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+55+1303.6+0+0+0+44+20+0},IzbGH3MTQ:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,y:(componentViewport?.y||0)+55+1293.6+0+0+0+44+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:279,width:\"342.5px\",y:(componentViewport?.y||0)+75+693.6+0+0+0+44+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xdkbr-container\",nodeId:\"UsMWeLPbj\",scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{sizunzYXy:resolvedLinks[1]},IzbGH3MTQ:{sizunzYXy:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"UsMWeLPbj\",layoutId:\"UsMWeLPbj\",oqZ4dg4Nm:L_Ly3SQ4pAbVUi9Zbs,sizunzYXy:resolvedLinks[0],SJvHJxZNC:toResponsiveImage(f85V3H080AbVUi9Zbs),style:{width:\"100%\"},variant:\"WWMUJ7SVM\",VONCMx6O4:jPkXyQbwiAbVUi9Zbs,width:\"100%\",wSJ_VOwbH:Qywb_WXbSAbVUi9Zbs})})})})})})})},idAbVUi9Zbs);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{y:(componentViewport?.y||0)+55+1303.6+0+0+0+44+588-40},IzbGH3MTQ:{y:(componentViewport?.y||0)+55+1293.6+0+0+0+44+588-40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+75+693.6+0+0+0+44+588-40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q4tg5i-container\",isModuleExternal:true,nodeId:\"RgG778OIF\",scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(LoadMore,{height:\"100%\",id:\"RgG778OIF\",layoutId:\"RgG778OIF\",variant:\"RY1CAqXo3\",width:\"100%\"})})})})]})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+1995.6},IzbGH3MTQ:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+1965.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:\"1440px\",y:(componentViewport?.y||0)+75+1425.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1brm79v-container\",nodeId:\"XYCBom2o_\",scopeId:\"YfU52qU9C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BnOl3FRZE:{variant:\"upzbQFgKA\"},IzbGH3MTQ:{variant:\"TOidE1Rmt\"}},children:/*#__PURE__*/_jsx(DesktopNewFooter,{height:\"100%\",id:\"XYCBom2o_\",layoutId:\"XYCBom2o_\",style:{width:\"100%\"},variant:\"XeVqrZPSm\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FkuLJ.framer-1xlj9ts, .framer-FkuLJ .framer-1xlj9ts { display: block; }\",\".framer-FkuLJ.framer-xwx11c { align-content: center; align-items: center; background-color: var(--token-1e782f09-def1-4a70-9745-30a9c677fa41, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 75px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-FkuLJ .framer-10m4r0n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-FkuLJ .framer-mepjsr { align-content: center; align-items: center; 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-FkuLJ .framer-1awwg4m { aspect-ratio: 1.5957446808510638 / 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, 552px); position: relative; width: 100%; z-index: 1; }\",\".framer-FkuLJ .framer-1rkkhwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-32k08v, .framer-FkuLJ .framer-84yc32, .framer-FkuLJ .framer-19og713 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FkuLJ .framer-1fz6vf6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: sticky; top: 75px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-FkuLJ .framer-1yal3iu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 500px; }\",\".framer-FkuLJ .framer-mt16k5 { 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 0px 20px 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-c5spoc, .framer-FkuLJ .framer-zw3k9c { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FkuLJ .framer-u9vojx { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-d3rtt4, .framer-FkuLJ .framer-1ek80lu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-17o6t52 { --border-bottom-width: 0px; --border-color: #171717; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-f0ddvl, .framer-FkuLJ .framer-1tx2x7v { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 50px; word-break: break-word; word-wrap: break-word; }\",\".framer-FkuLJ .framer-16vk8og, .framer-FkuLJ .framer-13f6oys, .framer-FkuLJ .framer-1l6as8b { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-FkuLJ .framer-1oyxr3d { --border-bottom-width: 1px; --border-color: var(--token-87e536ef-177c-499c-9038-af802cb670a5, #1a1a1a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-kk80j5, .framer-FkuLJ .framer-23w36z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-FkuLJ .framer-kbmw3j { --border-bottom-width: 1px; --border-color: var(--token-87e536ef-177c-499c-9038-af802cb670a5, #1a1a1a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-xuhip4-container, .framer-FkuLJ .framer-ybrfv7-container { flex: none; height: 34px; position: relative; width: auto; }\",\".framer-FkuLJ.framer-32sxkb { background-color: rgba(0, 0, 0, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-FkuLJ.framer-6a57ao { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: #121212; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 30px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-FkuLJ .framer-efucpe { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-FkuLJ .framer-d0wxj, .framer-FkuLJ .framer-8z0a3e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FkuLJ .framer-13kxguv-container { flex: none; height: auto; position: relative; width: 343px; }\",\".framer-FkuLJ .framer-snpx4w { --border-bottom-width: 0px; --border-color: #1c1c1c; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: auto; }\",\".framer-FkuLJ .framer-10c4goq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FkuLJ .framer-643qnu-container { flex: none; height: auto; position: absolute; right: 10px; top: 10px; width: auto; z-index: 1; }\",\".framer-FkuLJ .framer-1inbjog-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 1440px; z-index: 1; }\",\".framer-FkuLJ .framer-14xtscl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-1k9bts3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1440px; }\",\".framer-FkuLJ .framer-pskwss { flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-FkuLJ .framer-1gy071t { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 20px 20px 0px 20px; position: relative; width: 1440px; }\",\".framer-FkuLJ .framer-5xdkbr-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-FkuLJ .framer-q4tg5i-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-FkuLJ .framer-1brm79v-container { flex: none; height: auto; position: relative; width: 1440px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FkuLJ.framer-xwx11c, .framer-FkuLJ .framer-10m4r0n, .framer-FkuLJ .framer-mepjsr, .framer-FkuLJ .framer-1fz6vf6, .framer-FkuLJ .framer-1yal3iu, .framer-FkuLJ .framer-mt16k5, .framer-FkuLJ .framer-u9vojx, .framer-FkuLJ .framer-d3rtt4, .framer-FkuLJ .framer-17o6t52, .framer-FkuLJ .framer-1oyxr3d, .framer-FkuLJ .framer-kk80j5, .framer-FkuLJ .framer-23w36z, .framer-FkuLJ .framer-kbmw3j, .framer-FkuLJ.framer-6a57ao, .framer-FkuLJ .framer-efucpe, .framer-FkuLJ .framer-snpx4w, .framer-FkuLJ .framer-14xtscl, .framer-FkuLJ .framer-1ek80lu, .framer-FkuLJ .framer-1k9bts3 { gap: 0px; } .framer-FkuLJ.framer-xwx11c > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-FkuLJ.framer-xwx11c > :first-child, .framer-FkuLJ .framer-mepjsr > :first-child, .framer-FkuLJ .framer-1yal3iu > :first-child, .framer-FkuLJ .framer-mt16k5 > :first-child, .framer-FkuLJ .framer-u9vojx > :first-child, .framer-FkuLJ .framer-d3rtt4 > :first-child, .framer-FkuLJ .framer-kbmw3j > :first-child, .framer-FkuLJ.framer-6a57ao > :first-child, .framer-FkuLJ .framer-efucpe > :first-child, .framer-FkuLJ .framer-14xtscl > :first-child, .framer-FkuLJ .framer-1ek80lu > :first-child { margin-top: 0px; } .framer-FkuLJ.framer-xwx11c > :last-child, .framer-FkuLJ .framer-mepjsr > :last-child, .framer-FkuLJ .framer-1yal3iu > :last-child, .framer-FkuLJ .framer-mt16k5 > :last-child, .framer-FkuLJ .framer-u9vojx > :last-child, .framer-FkuLJ .framer-d3rtt4 > :last-child, .framer-FkuLJ .framer-kbmw3j > :last-child, .framer-FkuLJ.framer-6a57ao > :last-child, .framer-FkuLJ .framer-efucpe > :last-child, .framer-FkuLJ .framer-14xtscl > :last-child, .framer-FkuLJ .framer-1ek80lu > :last-child { margin-bottom: 0px; } .framer-FkuLJ .framer-10m4r0n > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-FkuLJ .framer-10m4r0n > :first-child, .framer-FkuLJ .framer-1fz6vf6 > :first-child, .framer-FkuLJ .framer-17o6t52 > :first-child, .framer-FkuLJ .framer-1oyxr3d > :first-child, .framer-FkuLJ .framer-kk80j5 > :first-child, .framer-FkuLJ .framer-23w36z > :first-child, .framer-FkuLJ .framer-snpx4w > :first-child, .framer-FkuLJ .framer-1k9bts3 > :first-child { margin-left: 0px; } .framer-FkuLJ .framer-10m4r0n > :last-child, .framer-FkuLJ .framer-1fz6vf6 > :last-child, .framer-FkuLJ .framer-17o6t52 > :last-child, .framer-FkuLJ .framer-1oyxr3d > :last-child, .framer-FkuLJ .framer-kk80j5 > :last-child, .framer-FkuLJ .framer-23w36z > :last-child, .framer-FkuLJ .framer-snpx4w > :last-child, .framer-FkuLJ .framer-1k9bts3 > :last-child { margin-right: 0px; } .framer-FkuLJ .framer-mepjsr > *, .framer-FkuLJ .framer-kbmw3j > *, .framer-FkuLJ .framer-14xtscl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FkuLJ .framer-1fz6vf6 > *, .framer-FkuLJ .framer-kk80j5 > *, .framer-FkuLJ .framer-23w36z > *, .framer-FkuLJ .framer-snpx4w > *, .framer-FkuLJ .framer-1k9bts3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FkuLJ .framer-1yal3iu > *, .framer-FkuLJ.framer-6a57ao > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-FkuLJ .framer-mt16k5 > *, .framer-FkuLJ .framer-u9vojx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-FkuLJ .framer-d3rtt4 > *, .framer-FkuLJ .framer-1ek80lu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FkuLJ .framer-17o6t52 > *, .framer-FkuLJ .framer-1oyxr3d > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FkuLJ .framer-efucpe > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-FkuLJ[data-border=\"true\"]::after, .framer-FkuLJ [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: 810px) and (max-width: 1439px) { .framer-FkuLJ.framer-xwx11c { gap: 60px; padding: 55px 0px 0px 0px; width: 810px; } .framer-FkuLJ .framer-10m4r0n { flex-direction: column; gap: 40px; padding: 20px; width: 100%; } .framer-FkuLJ .framer-mepjsr { flex: none; order: 1; width: 100%; } .framer-FkuLJ .framer-1awwg4m { height: var(--framer-aspect-ratio-supported, 483px); } .framer-FkuLJ .framer-1fz6vf6 { order: 0; position: relative; top: unset; width: 100%; } .framer-FkuLJ .framer-1yal3iu { flex: 1 0 0px; width: 1px; } .framer-FkuLJ .framer-mt16k5 { gap: unset; justify-content: space-between; } .framer-FkuLJ .framer-kbmw3j { align-content: flex-start; align-items: flex-start; } .framer-FkuLJ .framer-1inbjog-container { height: 55px; left: calc(50.00000000000002% - 100% / 2); transform: unset; width: 100%; } .framer-FkuLJ .framer-1k9bts3, .framer-FkuLJ .framer-1brm79v-container { width: 100%; } .framer-FkuLJ .framer-1gy071t { grid-template-columns: repeat(3, minmax(50px, 1fr)); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FkuLJ.framer-xwx11c, .framer-FkuLJ .framer-10m4r0n, .framer-FkuLJ .framer-mt16k5 { gap: 0px; } .framer-FkuLJ.framer-xwx11c > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-FkuLJ.framer-xwx11c > :first-child, .framer-FkuLJ .framer-10m4r0n > :first-child { margin-top: 0px; } .framer-FkuLJ.framer-xwx11c > :last-child, .framer-FkuLJ .framer-10m4r0n > :last-child { margin-bottom: 0px; } .framer-FkuLJ .framer-10m4r0n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-FkuLJ .framer-mt16k5 > *, .framer-FkuLJ .framer-mt16k5 > :first-child, .framer-FkuLJ .framer-mt16k5 > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-FkuLJ.framer-xwx11c { gap: 40px; padding: 55px 0px 0px 0px; width: 390px; } .framer-FkuLJ .framer-10m4r0n { flex-direction: column; gap: 40px; padding: 20px; width: 100%; } .framer-FkuLJ .framer-mepjsr { flex: none; order: 1; width: 100%; } .framer-FkuLJ .framer-1awwg4m { height: var(--framer-aspect-ratio-supported, 220px); } .framer-FkuLJ .framer-1fz6vf6 { order: 0; position: relative; top: unset; width: 100%; } .framer-FkuLJ .framer-1yal3iu { flex: 1 0 0px; gap: 40px; width: 1px; } .framer-FkuLJ .framer-mt16k5 { gap: unset; justify-content: space-between; } .framer-FkuLJ.framer-6a57ao { gap: 24px; padding: 24px; width: 350px; } .framer-FkuLJ .framer-efucpe, .framer-FkuLJ .framer-snpx4w { align-self: unset; width: 100%; } .framer-FkuLJ .framer-13kxguv-container, .framer-FkuLJ .framer-1k9bts3, .framer-FkuLJ .framer-1brm79v-container { width: 100%; } .framer-FkuLJ .framer-1inbjog-container { height: 55px; left: calc(50.00000000000002% - 100% / 2); transform: unset; width: 100%; } .framer-FkuLJ .framer-1gy071t { grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FkuLJ.framer-xwx11c, .framer-FkuLJ .framer-10m4r0n, .framer-FkuLJ .framer-1yal3iu, .framer-FkuLJ .framer-mt16k5, .framer-FkuLJ.framer-6a57ao { gap: 0px; } .framer-FkuLJ.framer-xwx11c > *, .framer-FkuLJ .framer-10m4r0n > *, .framer-FkuLJ .framer-1yal3iu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-FkuLJ.framer-xwx11c > :first-child, .framer-FkuLJ .framer-10m4r0n > :first-child, .framer-FkuLJ .framer-1yal3iu > :first-child, .framer-FkuLJ.framer-6a57ao > :first-child { margin-top: 0px; } .framer-FkuLJ.framer-xwx11c > :last-child, .framer-FkuLJ .framer-10m4r0n > :last-child, .framer-FkuLJ .framer-1yal3iu > :last-child, .framer-FkuLJ.framer-6a57ao > :last-child { margin-bottom: 0px; } .framer-FkuLJ .framer-mt16k5 > *, .framer-FkuLJ .framer-mt16k5 > :first-child, .framer-FkuLJ .framer-mt16k5 > :last-child { margin: 0px; } .framer-FkuLJ.framer-6a57ao > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1629\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BnOl3FRZE\":{\"layout\":[\"fixed\",\"auto\"]},\"IzbGH3MTQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerYfU52qU9C=withCSS(Component,css,\"framer-FkuLJ\");export default FramerYfU52qU9C;FramerYfU52qU9C.displayName=\"Page\";FramerYfU52qU9C.defaultProps={height:1629,width:1440};addFonts(FramerYfU52qU9C,[{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\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"}]},...AccountMenuFonts,...LoopsFonts,...DownloadFonts,...IconHoverFonts,...NavFonts,...CardFonts,...LoadMoreFonts,...DesktopNewFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYfU52qU9C\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BnOl3FRZE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IzbGH3MTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1629\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1440\"}},\"__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", "DEFAULT_COLOR", "DEFAULT_SVG", "DEFAULT_STROKE_WIDTH", "FramerIcons", "props", "customizedSvg", "getCustomizedSVG", "p", "addPropertyControls", "ControlType", "hideStrokeWidth", "svg", "strokeWidthMatch", "match", "color", "strokeWidth", "svgAttributes", "width", "height", "viewBox", "viewBoxWidth", "viewBoxHeight", "hasElementsWithValidColors", "attr", "value", "FramerIconsFonts", "getFonts", "FramerIcons", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JtYProOds", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap64gjvw", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "FramercLIOZpuSD", "withCSS", "cLIOZpuSD_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "AccountMenuFonts", "getFonts", "RK08aYatk_default", "LoopsFonts", "Loops", "DownloadFonts", "Download", "IconHoverFonts", "cLIOZpuSD_default", "NavFonts", "ffmUxt1HG_default", "CardFonts", "poUcabGQH_default", "LoadMoreFonts", "g3OPvNRkB_default", "DesktopNewFooterFonts", "XBCXytljU_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "prefix", "suffix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "hr5Jj5Jjv_default", "Su_4IFW2H_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "f85V3H080", "previousItemId", "previousItemId_BrkGnjOy3", "previousItemId_Qywb_WXbS", "nextItemId", "nextItemId_BrkGnjOy3", "nextItemId_Qywb_WXbS", "Qywb_WXbS", "F57tHflR6", "AwPD26WlG", "FQaxPQRio", "EsGELTJ1T", "nZ_u34uKw", "NAF3fNSS3", "nM274H0HF", "FlzZSnpoqC9dkw3glw", "VdkJV7hlYC9dkw3glw", "idC9dkw3glw", "jPkXyQbwi", "scR2MlgF6", "DYxIksPYJ", "BrkGnjOy3AbVUi9Zbs", "f85V3H080AbVUi9Zbs", "Qywb_WXbSAbVUi9Zbs", "L_Ly3SQ4pAbVUi9Zbs", "jPkXyQbwiAbVUi9Zbs", "idAbVUi9Zbs", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "tSttRekDY3bnx0g", "overlay", "loadMore", "args", "JtYProOds1wnntms", "scopingClassNames", "cx", "textContent", "visible1", "textContent1", "usePreloadLocalizedValues", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "Link", "getLocalizedValue", "ChildrenCanSuspend", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "ComponentViewportProvider", "Container", "RK08aYatk_default", "AnimatePresence", "Ga", "Loops", "Download", "cLIOZpuSD_default", "ffmUxt1HG_default", "collection1", "paginationInfo1", "loadMore1", "index1", "ResolveLinks", "resolvedLinks", "poUcabGQH_default", "g3OPvNRkB_default", "XBCXytljU_default", "css", "FramerYfU52qU9C", "withCSS", "YfU52qU9C_default", "addFonts", "AccountMenuFonts", "LoopsFonts", "DownloadFonts", "IconHoverFonts", "NavFonts", "CardFonts", "LoadMoreFonts", "DesktopNewFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
