{"version":3,"file":"8qJVNjCOJftLXAMC-3H-O9-b9BM84NyXcJzj6JQNydQ.2h0JIcve.mjs","names":["fonts","css","className","v0","React.Fragment","v1","__FramerMetadata__","v0","React.Fragment","v1","__FramerMetadata__","v0","React.Fragment","v1","__FramerMetadata__","v0","React.Fragment","v1","__FramerMetadata__","React.Fragment","__FramerMetadata__","localizedValues","localizedValues4","localizedValues1","localizedValues3","localizedValues2","ButtonCTAFonts","ButtonCTA","RainbowBorderCC","serializationHash","variantClassNames","transition1","prefix","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","sharedStyle3.className","className","css","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle3.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts","css","FeaturedIcon","ButtonCTA","serializationHash","variantClassNames","React.useContext","React.useMemo","React.Fragment","getProps","Account","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","css","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts","HeaderSearch","GridCardIcon","ButtonCategory","OfferBanner","CTASecondary","useRef","React.useId","metadata","React.useMemo","metadataProvider","sharedStyle.className","className","PropertyOverrides","Categories","_Fragment","ANrMIH9KUmyB6KpZmV","idmyB6KpZmV","LYIoEkvwXmyB6KpZmV","Qp6NUdKDAmyB6KpZmV","QU63molv0myB6KpZmV","RRB0KmjQNmyB6KpZmV","vgIuzNDBimyB6KpZmV","React.Fragment","Tags","idZqOtjIvbR","KPz2J6iKgZqOtjIvbR","smIjWW9w6ZqOtjIvbR","UK1MNDTI7ZqOtjIvbR","WEfUEbkgvZqOtjIvbR","sharedStyle.css","sharedStyle.fonts"],"sources":["https:/framerusercontent.com/modules/YB2n3O8sVUDtfZb0xCQt/DCpRSenPef9TLyL55bQQ/RainbowBorder.js","https:/framerusercontent.com/modules/RtqmKA89fhzY3nIhhdmZ/ITa6im5E2L3fubfnjQKu/JQbxmvx3f.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm-0.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm-1.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm-2.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm-3.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm-4.js","https:/framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm.js","https:/framerusercontent.com/modules/oAjJHzRhaEHrpMKUHnQu/JeD4QTCYXaP52KfUya2a/pCPKxwXAm.js","https:/framerusercontent.com/modules/oynMBEklLj9C46mUYsUk/qYrFCotzLQ7AgFBGqpui/AYpSsNQAg.js","https:/framerusercontent.com/modules/tXTbRIrVJi1Zksw82pBI/3a1ETuovlEt3dtYpxCfc/jffYajARH.js","https:/framerusercontent.com/modules/ht3LdZA2SUZvkjre2dvc/5p79MgA5HIbK1M580aQM/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform,animate}from\"framer-motion\";import{useEffect}from\"react\";/**\n@framerSupportedLayoutWidth fixed\n@framerSupportedLayoutHeight fixed\n*/export default function RainbowBorder(props){const{saturation,brightness,opacity,animation,customColors}=props;const startAngle=props.randomize?0:props.startAngle;const inset=props.borderWidth;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const angle=useMotionValue(!isCanvas&&props.randomize?Math.random()*360:0);useEffect(()=>{if(!isCanvas&&animation){animate(angle,angle.get()+(animation.direction===\"ccw\"?-360:360),{duration:animation.duration,repeat:Infinity,ease:\"linear\"});}},[]);let gradientColors=[];if(customColors&&customColors.length>0){gradientColors=customColors.map(color=>{if(opacity<1){// Append opacity as 2-digit hex if needed\nreturn`${color}${Math.round(opacity*255).toString(16).padStart(2,\"0\")}`;}return color;});gradientColors.push(gradientColors[0])// Loop the gradient\n;}else{let multiplier=props.direction===\"default\"?1:-1;const stopCount=18;for(let i=0;i<stopCount;i++){gradientColors.push(`hsl(${i/stopCount*360*multiplier}deg ${saturation}% ${brightness}% / ${opacity})`);}gradientColors.push(gradientColors[0]);}const gradientStops=gradientColors.join(\", \");return /*#__PURE__*/_jsx(motion.div,{style:{backgroundImage:isCanvas?`conic-gradient(from ${startAngle}deg, ${gradientStops})`:useTransform([angle],([value])=>`conic-gradient(from ${startAngle+value}deg, ${gradientColors})`),borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,...props.style},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:inset,backgroundColor:props.fill,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft-inset}px ${props.radiusTopRight-inset}px ${props.radiusBottomRight-inset}px ${props.radiusBottomLeft-inset}px`:`${props.radius-inset}px`}})});}RainbowBorder.displayName=\"Rainbow Border (CC)\";const animationDefault={duration:5,direction:\"cw\"};// Default color list you requested\nconst defaultCustomColors=[\"#FFAA00\",\"#FF6A00\",\"#FF1500\",\"#FF0055\",\"#FF00AA\",\"#BF00FF\",\"#4000FF\",\"#0080FF\",\"#00BFFF\",\"#00FFD5\",\"#00FF95\",\"#40BF4A\"];addPropertyControls(RainbowBorder,{borderWidth:{type:ControlType.Number,defaultValue:10,min:1,step:1,title:\"Width\"},direction:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"reverse\"],optionTitles:[\"Default\",\"Reverse\"],displaySegmentedControl:true},saturation:{type:ControlType.Number,defaultValue:100,min:0,max:100,unit:\"%\"},brightness:{type:ControlType.Number,defaultValue:50,min:0,max:100,unit:\"%\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01},animation:{type:ControlType.Object,defaultValue:animationDefault,optional:true,icon:\"effect\",controls:{duration:{type:ControlType.Number,defaultValue:animationDefault.duration,min:.1,description:\"Seconds to rotate 360\\xb0\"},direction:{type:ControlType.Enum,defaultValue:animationDefault.direction,options:[\"cw\",\"ccw\"],optionTitles:[\"Clockwise\",\"Counterclockwise\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"}}},randomize:{type:ControlType.Boolean,defaultValue:true,description:\"Random start angle.\"},startAngle:{type:ControlType.Number,defaultValue:0,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.randomize},fill:{type:ControlType.Color,defaultValue:\"#000\"},radius:{type:ControlType.FusedNumber,defaultValue:20,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},customColors:{type:ControlType.Array,defaultValue:defaultCustomColors,propertyControl:{type:ControlType.Color},title:\"Custom Colors\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RainbowBorder\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RainbowBorder.map","// Generated by Framer (d65dc2b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-mWgcF .framer-styles-preset-18u4jil:not(.rich-text-wrapper), .framer-mWgcF .framer-styles-preset-18u4jil.rich-text-wrapper a { --framer-link-current-text-color: var(--token-6ba0bca5-617d-4689-8139-0308c58db936, #555555); --framer-link-current-text-decoration: line-through; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-c1886627-170f-4c1d-85fc-7ff393832ff3, #cccccc); --framer-link-text-decoration: underline; transition-delay: 0s; transition-duration: 0.2s; transition-property: color,text-decoration-color,text-decoration-thickness,text-underline-offset; transition-timing-function: cubic-bezier(0.44, 0, 0.56, 1); }\"];export const className=\"framer-mWgcF\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=({Whq67L5wb})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"Populair\"})})})});export const v1=\"* \";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=({Whq67L5wb})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"Beliebt\"})})})});export const v1=\"*\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=({Whq67L5wb})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"Populaire\"})})})});export const v1=\"* \";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=({Whq67L5wb})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"Popular\"})})})});export const v1=\"* \";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=({Whq67L5wb})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"Popolare\"})})})});export const v1=\"* \";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (349ae9e)\nimport*as localizedValues from\"./pCPKxwXAm-0.js\";import*as localizedValues1 from\"./pCPKxwXAm-1.js\";import*as localizedValues2 from\"./pCPKxwXAm-2.js\";import*as localizedValues3 from\"./pCPKxwXAm-3.js\";import*as localizedValues4 from\"./pCPKxwXAm-4.js\";const valuesByLocaleId={CfGhBAyom:localizedValues,KnTSfRlEb:localizedValues4,LASqWnjbT:localizedValues1,LMYmDzsTL:localizedValues3,PKMmRs3eb:localizedValues2};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (349ae9e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import RainbowBorderCC from\"https://framerusercontent.com/modules/YB2n3O8sVUDtfZb0xCQt/DCpRSenPef9TLyL55bQQ/RainbowBorder.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/RtqmKA89fhzY3nIhhdmZ/ITa6im5E2L3fubfnjQKu/JQbxmvx3f.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vOCGvEo8EaGK7PeXit6T/11K47ekyntGmltnQ7Uq7/l6oSdaYQ2.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/owAhQdU6z3NTnh9fh7yV/bzNQNx3Hk7T5kvXsJl7S/tkUouEkgn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/JXDT0oKhzvrvDgtPiFQL/Vhfiva0HnZSUHqtAazdf/xj09ocFAY.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/ZJYbXp9Kc3C5VwLc5scc/XkijEPnWJtMEijLuuj62/pCPKxwXAm.js\";import ButtonCTA from\"https://framerusercontent.com/modules/A0BoSox3uTokGaiSqvMW/91Z4FslKbhIfYZKgnCWX/Rbo1JJ4NY.js\";const ButtonCTAFonts=getFonts(ButtonCTA);const RainbowBorderCCFonts=getFonts(RainbowBorderCC);const cycleOrder=[\"m3UU9DYio\",\"YpCOydh39\",\"IDxlIbiK1\"];const serializationHash=\"framer-rUS3S\";const variantClassNames={IDxlIbiK1:\"framer-v-2865s8\",m3UU9DYio:\"framer-v-kkoabj\",YpCOydh39:\"framer-v-1243b7a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};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 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 humanReadableEnumMap={Large:\"xycfJYovs\",None:\"znzzY1Ody\",Small:\"uS5yELHav\"};const humanReadableEnumMap1={Large:\"xycfJYovs\",None:\"tCmgfA5Wi\",Small:\"uS5yELHav\"};const humanReadableVariantMap={Desktop:\"m3UU9DYio\",Phone:\"IDxlIbiK1\",Tablet:\"YpCOydh39\"};const getProps=({bottomSpacing,button1Label,button1Link,button1Visible,button2Label,button2Link,button2Visible,conditionsLabel,conditionsLink,heading,height,id,paragraph,paragraphVisible,topSpacing,width,...props})=>{return{...props,BphPz7Zbf:heading??props.BphPz7Zbf??\"Medium length heading goes here\",DH7dmEDDv:paragraph??props.DH7dmEDDv??\"Use this paragraph to provide clear context for the heading above and introduce key details or benefits. Make sure it's no longer than 150 characters.\",ixnWbDikc:button1Link??props.ixnWbDikc,kD_QuobyN:button2Visible??props.kD_QuobyN??true,lANI0axhp:paragraphVisible??props.lANI0axhp??true,QqfNjKKJs:button2Label??props.QqfNjKKJs??\"Learn more\",QQPH3sujD:button1Visible??props.QQPH3sujD??true,r_4Ui1Sd1:button2Link??props.r_4Ui1Sd1,variant:humanReadableVariantMap[props.variant]??props.variant??\"m3UU9DYio\",vXPZ0BPsU:humanReadableEnumMap1[bottomSpacing]??bottomSpacing??props.vXPZ0BPsU??\"uS5yELHav\",Whq67L5wb:conditionsLink??props.Whq67L5wb,xI3O2w_G8:button1Label??props.xI3O2w_G8??\"Learn more\",Xo1EGFAVS:humanReadableEnumMap[topSpacing]??topSpacing??props.Xo1EGFAVS??\"uS5yELHav\",Z90GMCADp:conditionsLabel??props.Z90GMCADp??\"Terms & Conditions apply\"};};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,Xo1EGFAVS,vXPZ0BPsU,BphPz7Zbf,lANI0axhp,DH7dmEDDv,QQPH3sujD,ixnWbDikc,xI3O2w_G8,kD_QuobyN,r_4Ui1Sd1,QqfNjKKJs,Whq67L5wb,Z90GMCADp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m3UU9DYio\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=equals(Xo1EGFAVS,\"xycfJYovs\");const visible1=equals(Xo1EGFAVS,\"uS5yELHav\");const visible2=isSet(Whq67L5wb);const textContent=prefix(Z90GMCADp,getLocalizedValue(\"v1\",activeLocale)??\"* \");const visible3=equals(vXPZ0BPsU,\"xycfJYovs\");const visible4=equals(vXPZ0BPsU,\"uS5yELHav\");return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kkoabj\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"m3UU9DYio\",ref:refBinding,style:{...style},...addPropertyOverrides({IDxlIbiK1:{\"data-framer-name\":\"Phone\"},YpCOydh39:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bzgdfc\",\"data-framer-name\":\"Spacing Large\",layoutDependency:layoutDependency,layoutId:\"XFyGFMJnP\"}),visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r1ftoh\",\"data-framer-name\":\"Spacing Small\",layoutDependency:layoutDependency,layoutId:\"OSl8GVD_b\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1af5yte\",\"data-framer-name\":\"Card wrapper\",layoutDependency:layoutDependency,layoutId:\"Ian0A4TUa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ch8jns\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"W8bWaPjv9\",style:{backgroundColor:\"var(--token-3bce3e37-a047-4551-8c7d-acdbecdcf988, rgb(48, 48, 48))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egrlzt\",\"data-framer-name\":\"Content wrapper\",layoutDependency:layoutDependency,layoutId:\"egZPNLNah\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hb2sxs\",\"data-framer-name\":\"Text wrapper\",layoutDependency:layoutDependency,layoutId:\"Xybn93YB_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1bicfjg\",\"data-styles-preset\":\"xj09ocFAY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Medium length heading goes here\"})}),className:\"framer-1gn5sit\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"otTN5mrp0\",text:BphPz7Zbf,verticalAlignment:\"top\",withExternalLayout:true}),lANI0axhp&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gyg6n\",\"data-styles-preset\":\"tkUouEkgn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use this paragraph to provide clear context for the heading above and introduce key details or benefits. Make sure it's no longer than 150 characters.\"})}),className:\"framer-5gsi5k\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SUiRBJMhU\",text:DH7dmEDDv,verticalAlignment:\"top\",withExternalLayout:true}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)?.({Whq67L5wb})??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",children:/*#__PURE__*/_jsx(Link,{href:Whq67L5wb,motionChild:true,nodeId:\"JGxmxhD3f\",openInNewTab:false,relValues:[],scopeId:\"pCPKxwXAm\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18u4jil\",\"data-styles-preset\":\"JQbxmvx3f\",children:\"* \"})})})}),className:\"framer-18f1edu\",\"data-framer-name\":\"Conditions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JGxmxhD3f\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),QQPH3sujD&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w0crf3\",\"data-framer-name\":\"Button group\",layoutDependency:layoutDependency,layoutId:\"jiByqiigB\",children:[QQPH3sujD&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,...addPropertyOverrides({IDxlIbiK1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 52px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||688)-0-414)/2+0+0)+2+0+24+0+0+326+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1orp1ax-container\",layoutDependency:layoutDependency,layoutId:\"nng1xhOT2-container\",nodeId:\"nng1xhOT2\",rendersWithMotion:true,scopeId:\"pCPKxwXAm\",children:/*#__PURE__*/_jsx(ButtonCTA,{BGPpXqsL8:{borderColor:\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},eOURVY8ge:false,g4f9J79Zm:false,height:\"100%\",id:\"nng1xhOT2\",KPkyNVgao:\"var(--token-e57735e2-196e-43e3-9a5e-dcc249f219bb, rgb(255, 106, 0))\",layoutId:\"nng1xhOT2\",Lf_18mXwD:false,MHDsp5Fqa:xI3O2w_G8,Pj77ECfEs:ixnWbDikc,variant:\"KbOPpsSFK\",width:\"100%\",YHy61TLod:\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",...addPropertyOverrides({IDxlIbiK1:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),kD_QuobyN&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,...addPropertyOverrides({IDxlIbiK1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 52px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||688)-0-414)/2+0+0)+2+0+24+0+0+326+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvmmuf-container\",layoutDependency:layoutDependency,layoutId:\"chTFQ03jm-container\",nodeId:\"chTFQ03jm\",rendersWithMotion:true,scopeId:\"pCPKxwXAm\",children:/*#__PURE__*/_jsx(ButtonCTA,{BGPpXqsL8:{borderColor:\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},eOURVY8ge:true,g4f9J79Zm:false,height:\"100%\",id:\"chTFQ03jm\",KPkyNVgao:\"var(--token-e57735e2-196e-43e3-9a5e-dcc249f219bb, rgb(255, 106, 0))\",layoutId:\"chTFQ03jm\",Lf_18mXwD:false,MHDsp5Fqa:QqfNjKKJs,Pj77ECfEs:r_4Ui1Sd1,variant:\"EUUfBvaBF\",width:\"100%\",YHy61TLod:\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",...addPropertyOverrides({IDxlIbiK1:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14g8g6v-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"N79yHgfDW-container\",nodeId:\"N79yHgfDW\",rendersWithMotion:true,scopeId:\"pCPKxwXAm\",children:/*#__PURE__*/_jsx(RainbowBorderCC,{animation:{direction:\"cw\",duration:5},borderWidth:2,brightness:50,customColors:[\"rgb(255, 170, 0)\",\"rgb(255, 106, 0)\",\"rgb(255, 21, 0)\",\"rgb(255, 0, 85)\",\"rgb(255, 0, 170)\",\"rgb(191, 0, 255)\",\"rgb(64, 0, 255)\",\"rgb(0, 128, 255)\",\"rgb(0, 191, 255)\",\"rgb(0, 255, 213)\",\"rgb(0, 255, 149)\",\"rgb(64, 191, 74)\"],direction:\"default\",fill:\"rgb(0, 0, 0)\",height:\"100%\",id:\"N79yHgfDW\",layoutId:\"N79yHgfDW\",opacity:1,radius:20,radiusBottomLeft:20,radiusBottomRight:20,radiusIsMixed:false,radiusTopLeft:20,radiusTopRight:20,randomize:true,saturation:100,startAngle:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),visible3&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ctjk0\",\"data-framer-name\":\"Spacing Large\",layoutDependency:layoutDependency,layoutId:\"pB87_8qjJ\"}),visible4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s8m5ap\",\"data-framer-name\":\"Spacing Small\",layoutDependency:layoutDependency,layoutId:\"hdvv1Id9t\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rUS3S.framer-18rftv, .framer-rUS3S .framer-18rftv { display: block; }\",\".framer-rUS3S.framer-kkoabj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 1280px; }\",\".framer-rUS3S .framer-1bzgdfc, .framer-rUS3S .framer-5ctjk0 { flex: none; height: 64px; overflow: visible; position: relative; width: 100%; }\",\".framer-rUS3S .framer-1r1ftoh, .framer-rUS3S .framer-1s8m5ap { flex: none; height: 32px; overflow: visible; position: relative; width: 100%; }\",\".framer-rUS3S .framer-1af5yte { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 2px; position: relative; width: 100%; }\",\".framer-rUS3S .framer-1ch8jns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; z-index: 2; }\",\".framer-rUS3S .framer-1egrlzt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rUS3S .framer-hb2sxs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rUS3S .framer-1gn5sit, .framer-rUS3S .framer-5gsi5k, .framer-rUS3S .framer-18f1edu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rUS3S .framer-w0crf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rUS3S .framer-1orp1ax-container, .framer-rUS3S .framer-rvmmuf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rUS3S .framer-14g8g6v-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-rUS3S.framer-v-1243b7a.framer-kkoabj { width: 768px; }\",\".framer-rUS3S.framer-v-2865s8.framer-kkoabj { padding: 0px 16px 0px 16px; width: 375px; }\",\".framer-rUS3S.framer-v-2865s8 .framer-1ch8jns { flex-direction: column; gap: 48px; padding: 24px; }\",\".framer-rUS3S.framer-v-2865s8 .framer-1egrlzt { flex: none; width: 100%; }\",\".framer-rUS3S.framer-v-2865s8 .framer-w0crf3 { flex-direction: column; }\",\".framer-rUS3S.framer-v-2865s8 .framer-1orp1ax-container, .framer-rUS3S.framer-v-2865s8 .framer-rvmmuf-container { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 376\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YpCOydh39\":{\"layout\":[\"fixed\",\"auto\"]},\"IDxlIbiK1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Xo1EGFAVS\":\"topSpacing\",\"vXPZ0BPsU\":\"bottomSpacing\",\"BphPz7Zbf\":\"heading\",\"lANI0axhp\":\"paragraphVisible\",\"DH7dmEDDv\":\"paragraph\",\"QQPH3sujD\":\"button1Visible\",\"ixnWbDikc\":\"button1Link\",\"xI3O2w_G8\":\"button1Label\",\"kD_QuobyN\":\"button2Visible\",\"r_4Ui1Sd1\":\"button2Link\",\"QqfNjKKJs\":\"button2Label\",\"Whq67L5wb\":\"conditionsLink\",\"Z90GMCADp\":\"conditionsLabel\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpCPKxwXAm=withCSS(Component,css,\"framer-rUS3S\");export default FramerpCPKxwXAm;FramerpCPKxwXAm.displayName=\"Offer Banner\";FramerpCPKxwXAm.defaultProps={height:376,width:1280};addPropertyControls(FramerpCPKxwXAm,{variant:{options:[\"m3UU9DYio\",\"YpCOydh39\",\"IDxlIbiK1\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Xo1EGFAVS:{defaultValue:\"uS5yELHav\",options:[\"znzzY1Ody\",\"uS5yELHav\",\"xycfJYovs\"],optionTitles:[\"None\",\"Small\",\"Large\"],title:\"Top Spacing\",type:ControlType.Enum},vXPZ0BPsU:{defaultValue:\"uS5yELHav\",options:[\"tCmgfA5Wi\",\"uS5yELHav\",\"xycfJYovs\"],optionTitles:[\"None\",\"Small\",\"Large\"],title:\"Bottom Spacing\",type:ControlType.Enum},BphPz7Zbf:{defaultValue:\"Medium length heading goes here\",displayTextArea:true,title:\"Heading\",type:ControlType.String},lANI0axhp:{defaultValue:true,title:\"Paragraph Visible\",type:ControlType.Boolean},DH7dmEDDv:{defaultValue:\"Use this paragraph to provide clear context for the heading above and introduce key details or benefits. Make sure it's no longer than 150 characters.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},QQPH3sujD:{defaultValue:true,title:\"Button 1 Visible\",type:ControlType.Boolean},ixnWbDikc:{title:\"Button 1 Link\",type:ControlType.Link},xI3O2w_G8:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Button 1 Label\",type:ControlType.String},kD_QuobyN:{defaultValue:true,title:\"Button 2 Visible\",type:ControlType.Boolean},r_4Ui1Sd1:{title:\"Button 2 Link\",type:ControlType.Link},QqfNjKKJs:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Button 2 Label\",type:ControlType.String},Whq67L5wb:{title:\"Conditions Link\",type:ControlType.Link},Z90GMCADp:{defaultValue:\"Terms & Conditions apply\",displayTextArea:false,title:\"Conditions Label\",type:ControlType.String}});addFonts(FramerpCPKxwXAm,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...ButtonCTAFonts,...RainbowBorderCCFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpCPKxwXAm\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YpCOydh39\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IDxlIbiK1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Xo1EGFAVS\\\":\\\"topSpacing\\\",\\\"vXPZ0BPsU\\\":\\\"bottomSpacing\\\",\\\"BphPz7Zbf\\\":\\\"heading\\\",\\\"lANI0axhp\\\":\\\"paragraphVisible\\\",\\\"DH7dmEDDv\\\":\\\"paragraph\\\",\\\"QQPH3sujD\\\":\\\"button1Visible\\\",\\\"ixnWbDikc\\\":\\\"button1Link\\\",\\\"xI3O2w_G8\\\":\\\"button1Label\\\",\\\"kD_QuobyN\\\":\\\"button2Visible\\\",\\\"r_4Ui1Sd1\\\":\\\"button2Link\\\",\\\"QqfNjKKJs\\\":\\\"button2Label\\\",\\\"Whq67L5wb\\\":\\\"conditionsLink\\\",\\\"Z90GMCADp\\\":\\\"conditionsLabel\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"376\",\"framerIntrinsicWidth\":\"1280\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (84a2f33)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-semibold\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHQSXRPK2WZQNSVXVPHNEWQTX6ASEI3T/LQUMI7WZAOIVAXJCVJ7ABTISRT4ZYBQO/SOTTHSMCKKCT5M6IOCQJ5LOSJSXCUBMQ.woff2\",weight:\"600\"}]}];export const css=['.framer-rco2I .framer-styles-preset-amcrgu:not(.rich-text-wrapper), .framer-rco2I .framer-styles-preset-amcrgu.rich-text-wrapper h3 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 30px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 767px) and (min-width: 0px) { .framer-rco2I .framer-styles-preset-amcrgu:not(.rich-text-wrapper), .framer-rco2I .framer-styles-preset-amcrgu.rich-text-wrapper h3 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 28px; --framer-paragraph-spacing: 18px; --framer-text-alignment: left; --framer-text-color: var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-rco2I\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2a7bdb4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,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/oynMBEklLj9C46mUYsUk/qYrFCotzLQ7AgFBGqpui/AYpSsNQAg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vOCGvEo8EaGK7PeXit6T/11K47ekyntGmltnQ7Uq7/l6oSdaYQ2.js\";import Account from\"https://framerusercontent.com/modules/53NoiizrkyvieKMrtz9Y/0Tw20ellLIoe695BXD6X/ZA_eranEZ.js\";import FeaturedIcon from\"https://framerusercontent.com/modules/mhrQXEYQGawueKAOu80V/2H5CqlX9sgA8Z1X9SZov/ok8irvOEn.js\";import ButtonCTA from\"https://framerusercontent.com/modules/A0BoSox3uTokGaiSqvMW/91Z4FslKbhIfYZKgnCWX/Rbo1JJ4NY.js\";const FeaturedIconFonts=getFonts(FeaturedIcon);const ButtonCTAFonts=getFonts(ButtonCTA);const serializationHash=\"framer-8zsup\";const variantClassNames={jH0F9Xagj:\"framer-v-3ynjy4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const negate=value=>{return!value;};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=({buttonForegroundColor,buttonLabel,buttonLink,buttonVisible,cardBackgroundColor,cardBodyTextColor,cardHeadingTextColor,heading,height,icon,iconBGColor,iconFGColor,id,subheading,width,...props})=>{return{...props,bzj8IFrXK:buttonVisible??props.bzj8IFrXK??true,EdDTc5ICF:icon??props.EdDTc5ICF??Account,kxbaI1d41:buttonForegroundColor??props.kxbaI1d41??\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",OAzjgmBlD:cardBodyTextColor??props.OAzjgmBlD??\"var(--token-c1886627-170f-4c1d-85fc-7ff393832ff3, rgb(204, 204, 204))\",qiGddTnKi:cardHeadingTextColor??props.qiGddTnKi??\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",raHE7lCfm:buttonLink??props.raHE7lCfm,t6zO2ED8U:buttonLabel??props.t6zO2ED8U??\"Learn more\",TjxXnnWM7:cardBackgroundColor??props.TjxXnnWM7??\"var(--token-3bce3e37-a047-4551-8c7d-acdbecdcf988, rgb(48, 48, 48))\",X3VTr5lRH:iconFGColor??props.X3VTr5lRH??\"var(--token-eff3ede8-e3a4-45c8-ae48-6356a7e551cd, rgb(0, 128, 255))\",YCvQIOMI6:heading??props.YCvQIOMI6??\"Short heading here\",Z7pLtOwrs:iconBGColor??props.Z7pLtOwrs??\"var(--token-3f28d65e-45a1-45a5-829f-d96a12c70be0, rgb(0, 23, 46))\",zkNnhQXDX:subheading??props.zkNnhQXDX??\"A 2-3 line sentence to provide more context for the heading above goes right here.\"};};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,EdDTc5ICF,X3VTr5lRH,Z7pLtOwrs,YCvQIOMI6,zkNnhQXDX,bzj8IFrXK,raHE7lCfm,t6zO2ED8U,TjxXnnWM7,qiGddTnKi,OAzjgmBlD,kxbaI1d41,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jH0F9Xagj\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(bzj8IFrXK);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3ynjy4\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"jH0F9Xagj\",ref:refBinding,style:{backgroundColor:TjxXnnWM7,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gukdty\",\"data-framer-name\":\"Spacing\",layoutDependency:layoutDependency,layoutId:\"SUlMCl0tU\",tabIndex:-1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+32+4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4rf428-container\",layoutDependency:layoutDependency,layoutId:\"dguv7aQOQ-container\",nodeId:\"dguv7aQOQ\",rendersWithMotion:true,scopeId:\"jffYajARH\",children:/*#__PURE__*/_jsx(FeaturedIcon,{FiY0JDkl2:Z7pLtOwrs,height:\"100%\",id:\"dguv7aQOQ\",krOX7PYWx:EdDTc5ICF,layoutId:\"dguv7aQOQ\",variant:\"GRjYGefv8\",width:\"100%\",yhHRhmXqR:X3VTr5lRH})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqcs0j\",\"data-framer-name\":\"Content wrapper\",layoutDependency:layoutDependency,layoutId:\"q0fHWjMeI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-156cnay\",\"data-framer-name\":\"Text wrapper\",layoutDependency:layoutDependency,layoutId:\"SbR5zniRg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ypc9b\",\"data-framer-name\":\"Heading wrapper\",layoutDependency:layoutDependency,layoutId:\"l_P8vUbch\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-amcrgu\",\"data-styles-preset\":\"AYpSsNQAg\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-qiGddTnKi-jffYajARH))\"},children:\"Short heading here\"})}),className:\"framer-392hjq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vt1V0soc6\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-qiGddTnKi-jffYajARH)\",\"--variable-reference-qiGddTnKi-jffYajARH\":qiGddTnKi},text:YCvQIOMI6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1faymt2\",\"data-styles-preset\":\"l6oSdaYQ2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-OAzjgmBlD-jffYajARH))\"},children:\"A 2-3 line sentence to provide more context for the heading above goes right here.\"})}),className:\"framer-1i4eteh\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vxY4sIgZQ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-OAzjgmBlD-jffYajARH)\",\"--variable-reference-OAzjgmBlD-jffYajARH\":OAzjgmBlD},text:zkNnhQXDX,verticalAlignment:\"top\",withExternalLayout:true})]}),bzj8IFrXK&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+32+0+185,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vzob9l-container\",layoutDependency:layoutDependency,layoutId:\"KXA7TmCGK-container\",nodeId:\"KXA7TmCGK\",rendersWithMotion:true,scopeId:\"jffYajARH\",children:/*#__PURE__*/_jsx(ButtonCTA,{BGPpXqsL8:{borderColor:\"var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:2},eOURVY8ge:true,g4f9J79Zm:false,height:\"100%\",id:\"KXA7TmCGK\",KPkyNVgao:\"var(--token-e57735e2-196e-43e3-9a5e-dcc249f219bb, rgb(255, 106, 0))\",layoutId:\"KXA7TmCGK\",Lf_18mXwD:false,MHDsp5Fqa:t6zO2ED8U,Pj77ECfEs:raHE7lCfm,variant:\"EUUfBvaBF\",width:\"100%\",YHy61TLod:kxbaI1d41})})}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p30dx2\",\"data-framer-name\":\"Spacing\",layoutDependency:layoutDependency,layoutId:\"Xk2MZDaH3\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8zsup.framer-1ddvcuo, .framer-8zsup .framer-1ddvcuo { display: block; }\",\".framer-8zsup.framer-3ynjy4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 32px 22px 32px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8zsup .framer-gukdty { 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: 4px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-8zsup .framer-4rf428-container, .framer-8zsup .framer-vzob9l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8zsup .framer-iqcs0j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8zsup .framer-156cnay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8zsup .framer-8ypc9b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8zsup .framer-392hjq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8zsup .framer-1i4eteh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8zsup .framer-p30dx2 { flex: none; height: 10px; overflow: visible; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EdDTc5ICF\":\"icon\",\"X3VTr5lRH\":\"iconFGColor\",\"Z7pLtOwrs\":\"iconBGColor\",\"YCvQIOMI6\":\"heading\",\"zkNnhQXDX\":\"subheading\",\"bzj8IFrXK\":\"buttonVisible\",\"raHE7lCfm\":\"buttonLink\",\"t6zO2ED8U\":\"buttonLabel\",\"TjxXnnWM7\":\"cardBackgroundColor\",\"qiGddTnKi\":\"cardHeadingTextColor\",\"OAzjgmBlD\":\"cardBodyTextColor\",\"kxbaI1d41\":\"buttonForegroundColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerVectorSets [\"7yMwNLPciiLrZPLxdCqa\"]\n */const FramerjffYajARH=withCSS(Component,css,\"framer-8zsup\");export default FramerjffYajARH;FramerjffYajARH.displayName=\"Grid Card Icon\";FramerjffYajARH.defaultProps={height:210,width:400};addPropertyControls(FramerjffYajARH,{EdDTc5ICF:{defaultValue:{identifier:\"local-module:vector/ZA_eranEZ:default\",moduleId:\"53NoiizrkyvieKMrtz9Y\"},setModuleId:\"7yMwNLPciiLrZPLxdCqa\",title:\"Icon\",type:ControlType.VectorSetItem},X3VTr5lRH:{defaultValue:'var(--token-eff3ede8-e3a4-45c8-ae48-6356a7e551cd, rgb(0, 128, 255)) /* {\"name\":\"fg-blue\"} */',title:\"Icon FG Color\",type:ControlType.Color},Z7pLtOwrs:{defaultValue:'var(--token-3f28d65e-45a1-45a5-829f-d96a12c70be0, rgb(0, 23, 46)) /* {\"name\":\"bg-blue\"} */',title:\"Icon BG Color\",type:ControlType.Color},YCvQIOMI6:{defaultValue:\"Short heading here\",displayTextArea:true,title:\"Heading\",type:ControlType.String},zkNnhQXDX:{defaultValue:\"A 2-3 line sentence to provide more context for the heading above goes right here.\",displayTextArea:true,title:\"Subheading\",type:ControlType.String},bzj8IFrXK:{defaultValue:true,title:\"Button Visible\",type:ControlType.Boolean},raHE7lCfm:{title:\"Button Link\",type:ControlType.Link},t6zO2ED8U:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Button Label\",type:ControlType.String},TjxXnnWM7:{defaultValue:'var(--token-3bce3e37-a047-4551-8c7d-acdbecdcf988, rgb(48, 48, 48)) /* {\"name\":\"gray-800\"} */',title:\"Card Background Color\",type:ControlType.Color},qiGddTnKi:{defaultValue:'var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255)) /* {\"name\":\"base-white\"} */',description:\"\",title:\"Card Heading Text Color\",type:ControlType.Color},OAzjgmBlD:{defaultValue:'var(--token-c1886627-170f-4c1d-85fc-7ff393832ff3, rgb(204, 204, 204)) /* {\"name\":\"gray-300\"} */',title:\"Card Body Text Color\",type:ControlType.Color},kxbaI1d41:{defaultValue:'var(--token-c4ad87ef-8de8-4922-aea2-faa3cd49a21b, rgb(255, 255, 255)) /* {\"name\":\"base-white\"} */',title:\"Button Foreground Color\",type:ControlType.Color}});addFonts(FramerjffYajARH,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...FeaturedIconFonts,...ButtonCTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjffYajARH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"210\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVectorSets\":\"[\\\"7yMwNLPciiLrZPLxdCqa\\\"]\",\"framerVariables\":\"{\\\"EdDTc5ICF\\\":\\\"icon\\\",\\\"X3VTr5lRH\\\":\\\"iconFGColor\\\",\\\"Z7pLtOwrs\\\":\\\"iconBGColor\\\",\\\"YCvQIOMI6\\\":\\\"heading\\\",\\\"zkNnhQXDX\\\":\\\"subheading\\\",\\\"bzj8IFrXK\\\":\\\"buttonVisible\\\",\\\"raHE7lCfm\\\":\\\"buttonLink\\\",\\\"t6zO2ED8U\\\":\\\"buttonLabel\\\",\\\"TjxXnnWM7\\\":\\\"cardBackgroundColor\\\",\\\"qiGddTnKi\\\":\\\"cardHeadingTextColor\\\",\\\"OAzjgmBlD\\\":\\\"cardBodyTextColor\\\",\\\"kxbaI1d41\\\":\\\"buttonForegroundColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (9175e75)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CTASecondary from\"https://framerusercontent.com/modules/fQbDCv7ohvwvmt0o0KWG/hoJkb0d1piDGUCa8RPla/Z1XkBQEvo.js\";import ButtonCategory from\"https://framerusercontent.com/modules/NsEAaEdO3kaIzgYKmMxH/lrVZKthtBEuQH3pPRFfD/JXtT5fMB9.js\";import OfferBanner from\"https://framerusercontent.com/modules/oAjJHzRhaEHrpMKUHnQu/JeD4QTCYXaP52KfUya2a/pCPKxwXAm.js\";import GridCardIcon from\"https://framerusercontent.com/modules/tXTbRIrVJi1Zksw82pBI/3a1ETuovlEt3dtYpxCfc/jffYajARH.js\";import HeaderSearch from\"#framer/local/canvasComponent/JxAWdQC7n/JxAWdQC7n.js\";import Tags from\"#framer/local/collection/TfL6n6biY/TfL6n6biY.js\";import Categories from\"#framer/local/collection/Ukd5RGThH/Ukd5RGThH.js\";import*as sharedStyle from\"#framer/local/css/amckmL00n/amckmL00n.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderSearchFonts=getFonts(HeaderSearch);const GridCardIconFonts=getFonts(GridCardIcon);const ButtonCategoryFonts=getFonts(ButtonCategory);const OfferBannerFonts=getFonts(OfferBanner);const CTASecondaryFonts=getFonts(CTASecondary);const breakpoints={eeMEd5Hvd:\"(min-width: 1280px)\",QhQDAoD_e:\"(min-width: 768px) and (max-width: 1279.98px)\",Yw6ERwi3p:\"(max-width: 767.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rCoZM\";const variantClassNames={eeMEd5Hvd:\"framer-v-m9uj4d\",QhQDAoD_e:\"framer-v-111mvr1\",Yw6ERwi3p:\"framer-v-wmhlto\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"eeMEd5Hvd\",Phone:\"Yw6ERwi3p\",Tablet:\"QhQDAoD_e\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eeMEd5Hvd\"};};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,LYIoEkvwXmyB6KpZmV,vgIuzNDBimyB6KpZmV,Qp6NUdKDAmyB6KpZmV,RRB0KmjQNmyB6KpZmV,ANrMIH9KUmyB6KpZmV,QU63molv0myB6KpZmV,idmyB6KpZmV,smIjWW9w6ZqOtjIvbR,KPz2J6iKgZqOtjIvbR,WEfUEbkgvZqOtjIvbR,UK1MNDTI7ZqOtjIvbR,idZqOtjIvbR,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({},activeLocale),[activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eeMEd5Hvd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d505fdd1-2742-497d-a417-fb00989f1e59, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-m9uj4d\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-kadbgl\",\"data-framer-name\":\"MAIN CONTENT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oo0afo-container\",nodeId:\"ovEk5kB9v\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QhQDAoD_e:{variant:\"ZnEAhZwZA\"},Yw6ERwi3p:{variant:\"oIRt1Lsr7\"}},children:/*#__PURE__*/_jsx(HeaderSearch,{bLOPrQre3:\"We're here to help you make the most of bunq.\",DKDctI8Uz:\"Help Center\",height:\"100%\",id:\"ovEk5kB9v\",layoutId:\"ovEk5kB9v\",Rf3ZJyAdu:\"What are you looking for?\",style:{width:\"100%\"},variant:\"gys_BfnAW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1wj89ae\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7u1gb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bxfkon\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"myB6KpZmV\",data:Categories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:9},select:[{collection:\"myB6KpZmV\",name:\"LYIoEkvwX\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"vgIuzNDBi\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"Qp6NUdKDA\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"RRB0KmjQN\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"ANrMIH9KU\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"QU63molv0\",type:\"Identifier\"},{collection:\"myB6KpZmV\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ANrMIH9KU:ANrMIH9KUmyB6KpZmV,id:idmyB6KpZmV,LYIoEkvwX:LYIoEkvwXmyB6KpZmV,Qp6NUdKDA:Qp6NUdKDAmyB6KpZmV,QU63molv0:QU63molv0myB6KpZmV,RRB0KmjQN:RRB0KmjQNmyB6KpZmV,vgIuzNDBi:vgIuzNDBimyB6KpZmV},index)=>{LYIoEkvwXmyB6KpZmV??=\"\";Qp6NUdKDAmyB6KpZmV??=\"#09F\";RRB0KmjQNmyB6KpZmV??=\"#09F\";ANrMIH9KUmyB6KpZmV??=\"\";QU63molv0myB6KpZmV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`myB6KpZmV-${idmyB6KpZmV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LYIoEkvwX:LYIoEkvwXmyB6KpZmV},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7al421\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LYIoEkvwX:LYIoEkvwXmyB6KpZmV},webPageId:\"mpyKVHaSC\"},implicitPathVariables:undefined},{href:{pathVariables:{LYIoEkvwX:LYIoEkvwXmyB6KpZmV},webPageId:\"mpyKVHaSC\"},implicitPathVariables:undefined},{href:{pathVariables:{LYIoEkvwX:LYIoEkvwXmyB6KpZmV},webPageId:\"mpyKVHaSC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QhQDAoD_e:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1216px) - 16px) / 2, 50px), 1px)`},Yw6ERwi3p:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1216px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1216px) - 32px) / 3, 50px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-38zppe-container\",id:`${LYIoEkvwXmyB6KpZmV}-38zppe`,isModuleExternal:true,nodeId:\"QJnE1nVy4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QhQDAoD_e:{raHE7lCfm:resolvedLinks[1]},Yw6ERwi3p:{raHE7lCfm:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(GridCardIcon,{bzj8IFrXK:true,EdDTc5ICF:vgIuzNDBimyB6KpZmV,height:\"100%\",id:\"QJnE1nVy4\",kxbaI1d41:\"var(--token-f3df94ae-8a3d-431d-8c1c-46027fd84ec9, rgb(255, 255, 255))\",layoutId:\"QJnE1nVy4\",OAzjgmBlD:\"var(--token-07787457-a4c1-4355-b26d-87ff22c750d3, rgb(204, 204, 204))\",qiGddTnKi:\"var(--token-f3df94ae-8a3d-431d-8c1c-46027fd84ec9, rgb(255, 255, 255))\",raHE7lCfm:resolvedLinks[0],style:{width:\"100%\"},t6zO2ED8U:\"Show articles\",TjxXnnWM7:\"var(--token-88e88fcc-edbf-420c-9562-3ce796f3e6b0, rgb(48, 48, 48))\",width:\"100%\",X3VTr5lRH:Qp6NUdKDAmyB6KpZmV,YCvQIOMI6:ANrMIH9KUmyB6KpZmV,Z7pLtOwrs:RRB0KmjQNmyB6KpZmV,zkNnhQXDX:QU63molv0myB6KpZmV})})})})})})})})},idmyB6KpZmV);})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ny12dw\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15dr72p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cz7av0\",\"data-styles-preset\":\"amckmL00n\",children:\"Search by topic\"})}),className:\"framer-9zzmxx\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-75o6ic\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZqOtjIvbR\",data:Tags,type:\"Collection\"},select:[{collection:\"ZqOtjIvbR\",name:\"smIjWW9w6\",type:\"Identifier\"},{collection:\"ZqOtjIvbR\",name:\"KPz2J6iKg\",type:\"Identifier\"},{collection:\"ZqOtjIvbR\",name:\"WEfUEbkgv\",type:\"Identifier\"},{collection:\"ZqOtjIvbR\",name:\"UK1MNDTI7\",type:\"Identifier\"},{collection:\"ZqOtjIvbR\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZqOtjIvbR\",name:\"t0Xle2ZNy\",type:\"Identifier\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"ZqOtjIvbR\",name:\"FAQTqvdpV\",type:\"Identifier\"}},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idZqOtjIvbR,KPz2J6iKg:KPz2J6iKgZqOtjIvbR,smIjWW9w6:smIjWW9w6ZqOtjIvbR,UK1MNDTI7:UK1MNDTI7ZqOtjIvbR,WEfUEbkgv:WEfUEbkgvZqOtjIvbR},index1)=>{smIjWW9w6ZqOtjIvbR??=\"\";KPz2J6iKgZqOtjIvbR??=\"\";WEfUEbkgvZqOtjIvbR??=\"#09F\";UK1MNDTI7ZqOtjIvbR??=\"#09F\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZqOtjIvbR-${idZqOtjIvbR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{smIjWW9w6:smIjWW9w6ZqOtjIvbR},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8qx0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{smIjWW9w6:smIjWW9w6ZqOtjIvbR},webPageId:\"xkYN9qNg5\"},implicitPathVariables:undefined},{href:{pathVariables:{smIjWW9w6:smIjWW9w6ZqOtjIvbR},webPageId:\"xkYN9qNg5\"},implicitPathVariables:undefined},{href:{pathVariables:{smIjWW9w6:smIjWW9w6ZqOtjIvbR},webPageId:\"xkYN9qNg5\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2sptqz-container\",isModuleExternal:true,nodeId:\"ne9dqlHEb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QhQDAoD_e:{qBue7FI_V:resolvedLinks1[1]},Yw6ERwi3p:{qBue7FI_V:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonCategory,{height:\"100%\",id:\"ne9dqlHEb\",iKVWQEyBr:UK1MNDTI7ZqOtjIvbR,layoutId:\"ne9dqlHEb\",nfBpAbhVs:KPz2J6iKgZqOtjIvbR,qBue7FI_V:resolvedLinks1[0],U3aOpEzN1:WEfUEbkgvZqOtjIvbR,variant:\"wrMkNgCPF\",width:\"100%\"})})})})})})})},idZqOtjIvbR);})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-o2gnpx-container\",isModuleExternal:true,nodeId:\"sbLxSuiLT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OfferBanner,{BphPz7Zbf:\"Check the legal stuff\",DH7dmEDDv:\"We've organized all the legal mumbo-jumbo, and presented it in a way that won't put you to sleep.\",height:\"100%\",id:\"sbLxSuiLT\",ixnWbDikc:\"https://www.bunq.com/documents\",kD_QuobyN:false,lANI0axhp:true,layoutId:\"sbLxSuiLT\",QqfNjKKJs:\"Learn more\",QQPH3sujD:true,style:{width:\"100%\"},variant:\"m3UU9DYio\",vXPZ0BPsU:\"uS5yELHav\",width:\"100%\",xI3O2w_G8:\"Go to Documents\",Xo1EGFAVS:\"uS5yELHav\",Z90GMCADp:\"Terms & Conditions apply\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-heswr4-container\",isModuleExternal:true,nodeId:\"ePIJka8Tt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QhQDAoD_e:{variant:\"AEL6KvCPJ\"},Yw6ERwi3p:{variant:\"GCGoWKPUg\"}},children:/*#__PURE__*/_jsx(CTASecondary,{B5nBR7cgO:\"If you can’t find an answer to your question or need someone to speak to, we're always available to offer a helping hand.\",dc45LKN8u:\"We’re here for you\",height:\"100%\",id:\"ePIJka8Tt\",layoutId:\"ePIJka8Tt\",nIYvdOBMC:\"https://www.bunq.com/contact\",NTDmgexhA:\"Get in touch\",style:{width:\"100%\"},variant:\"QlWg3ljYC\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rCoZM.framer-lux5qc, .framer-rCoZM .framer-lux5qc { display: block; }\",\".framer-rCoZM.framer-m9uj4d { align-content: center; align-items: center; background-color: var(--token-d505fdd1-2742-497d-a417-fb00989f1e59, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-rCoZM .framer-kadbgl { 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%; z-index: 1; }\",\".framer-rCoZM .framer-1oo0afo-container, .framer-rCoZM .framer-o2gnpx-container, .framer-rCoZM .framer-heswr4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rCoZM .framer-1wj89ae, .framer-rCoZM .framer-ny12dw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 32px 64px 32px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-d7u1gb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-bxfkon { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-7al421 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-38zppe-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-rCoZM .framer-15dr72p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-9zzmxx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rCoZM .framer-75o6ic { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px 16px; height: min-content; justify-content: center; max-width: 768px; padding: 0px; position: relative; width: 100%; }\",\".framer-rCoZM .framer-1y8qx0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: min-content; }\",\".framer-rCoZM .framer-2sptqz-container { flex: none; height: auto; position: relative; width: auto; }\",...sharedStyle.css,\"@media (min-width: 768px) and (max-width: 1279.98px) { .framer-rCoZM.framer-m9uj4d { width: 768px; } .framer-rCoZM .framer-bxfkon { grid-template-columns: repeat(2, minmax(50px, 1fr)); }}\",\"@media (max-width: 767.98px) { .framer-rCoZM.framer-m9uj4d { width: 375px; } .framer-rCoZM .framer-1wj89ae, .framer-rCoZM .framer-ny12dw { padding: 0px 16px 64px 16px; } .framer-rCoZM .framer-d7u1gb, .framer-rCoZM .framer-15dr72p { gap: 24px; } .framer-rCoZM .framer-bxfkon { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-rCoZM .framer-7al421 { align-self: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2583.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QhQDAoD_e\":{\"layout\":[\"fixed\",\"auto\"]},\"Yw6ERwi3p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerVectorSets [\"7yMwNLPciiLrZPLxdCqa\"]\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-rCoZM\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:2583.5,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"}]},...HeaderSearchFonts,...GridCardIconFonts,...ButtonCategoryFonts,...OfferBannerFonts,...CTASecondaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerIntrinsicHeight\":\"2583.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVectorSets\":\"[\\\"7yMwNLPciiLrZPLxdCqa\\\"]\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QhQDAoD_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yw6ERwi3p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}