{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sx9M4BFlndt70jgk3yDB/OXrpyXHghwKHbfzqzWUM/CMSTags.js", "ssg:https://framerusercontent.com/modules/E89WBxyEZUYAtaMp68ri/ZDnoiqQm4zgIY1ZNjB2h/BackButton.js", "ssg:https://framerusercontent.com/modules/BN4xLGcd2csndU6dTrOp/0mcu2ZA6o1xSFDD9tswA/CEYJOupeA.js", "ssg:https://framerusercontent.com/modules/MnR1soYQQVy3zuSS4oz4/PSsUxKKtX5r0gyL8HFGR/pLI4U7cLg.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @copyright \u00A9framersnippets.com\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n **/export default function CMSTags(props){const{content,font,color,fill,padding,gap,radius,border,styles,isMixedPadding=false,isMixedRadius=false}=props;const words=content.split(\",\").map(word=>word.trim());const paddingValue=isMixedPadding?`${styles.padding}px`:`${styles.topPadding}px ${styles.rightPadding}px ${styles.bottomPadding}px ${styles.leftPadding}px`;const radiusValue=isMixedRadius?`${styles.radius}px`:`${styles.topLeftRadius}px ${styles.topRightRadius}px ${styles.bottomRightRadius}px ${styles.bottomLeftRadius}px`;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",flexWrap:\"wrap\",gap:`${styles.gap}px`},children:words.map((word,index)=>/*#__PURE__*/_jsx(motion.div,{style:{...font,color:color,backgroundColor:styles.fill,padding:paddingValue,borderRadius:radiusValue,border:`${styles.border.borderWidth}px ${styles.border.borderStyle} ${styles.border.borderColor}`},children:word},index))});}CMSTags.defaultProps={content:\"Tag 1, Tag 2, Tag 3, Tag 4\",color:\"white\",font:{fontFamily:\"Inter, sans-serif\",fontSize:15,fontWeight:400,lineHeight:1.2,letterSpacing:0},styles:{fill:\"#0099ff\",padding:6,gap:8,radius:10,border:{borderWidth:1,borderStyle:\"Solid\",borderColor:\"#0099ff\"},isMixedPadding:true,isMixedRadius:true}};addPropertyControls(CMSTags,{content:{type:ControlType.String,title:\"Content\",defaultValue:CMSTags.defaultProps.content,displayTextArea:true,placeholder:\"Type something\u2026\",description:\"Create a plain text CMS field, add your tags separated by commas, and link the variable to this field.\"},font:{type:ControlType.Font,controls:\"extended\",displayFontSize:true,displayTextAlignment:false,defaultValue:CMSTags.defaultProps.font},color:{type:ControlType.Color,title:\"Color\",defaultValue:CMSTags.defaultProps.color},styles:{type:ControlType.Object,controls:{fill:{type:ControlType.Color,title:\"Fill\",defaultValue:CMSTags.defaultProps.styles.fill},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:CMSTags.defaultProps.styles.padding,toggleKey:\"isMixedPadding\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topPadding\",\"rightPadding\",\"bottomPadding\",\"leftPadding\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:CMSTags.defaultProps.styles.gap,displayStepper:true,min:0,step:1},radius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:CMSTags.defaultProps.styles.padding,toggleKey:\"isMixedRadius\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,title:\"Border\",controls:{borderWidth:{type:ControlType.Number,title:\"Size\",min:0,displayStepper:true},borderStyle:{type:ControlType.Enum,title:\"Style\",options:[\"dotted\",\"dashed\",\"solid\",\"double\",\"groove\",\"ridge\",\"inset\",\"outset\",\"none\"],optionTitles:[\"Dotted\",\"Dashed\",\"Solid\",\"Double\",\"Groove\",\"Ridge\",\"Inset\",\"Outset\",\"None\"],defaultValue:\"solid\"},borderColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#007AFF\"}}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSTags\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMSTags.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";/**\n * @copyright \u00A9framersnippets.com\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n **/export default function BackButton(props){const{text,font,style,icon,hover,transition,padding,radius,border,scale,isMixedPadding=false,isMixedRadius=false,isMixedRadiusHover=false}=props;const[hoverState,setHoverState]=useState(false);const paddingValue=isMixedPadding?`${style.padding}px`:`${style.top}px ${style.right}px ${style.bottom}px ${style.left}px`;const radiusValue=isMixedRadius?`${style.radius}px`:`${style.topLeft}px ${style.topRight}px ${style.bottomRight}px ${style.bottomLeft}px`;const radiusValueHover=isMixedRadiusHover?`${hover.radius}px`:`${hover.topLeft}px ${hover.topRight}px ${hover.bottomRight}px ${hover.bottomLeft}px`;const iconStyle={fill:hoverState?hover.icon.color:icon.color,width:icon.size,height:icon.size};const iconElement=icon.custom?/*#__PURE__*/_jsx(\"img\",{src:hoverState&&hover.icon.custom?hover.icon.custom:icon.custom,style:{width:icon.size,height:icon.size}}):/*#__PURE__*/_jsx(\"svg\",{viewBox:\"0 0 16 16\",style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M1.00387 8.00772C1.00351 8.13615 1.05233 8.26469 1.15031 8.36268L6.64362 13.856C6.83889 14.0513 7.15547 14.0513 7.35073 13.856L7.82214 13.3846C8.0174 13.1893 8.0174 12.8727 7.82214 12.6775L3.98562 8.84097L13.5038 8.84097C13.7799 8.84097 14.0038 8.61712 14.0038 8.34097L14.0038 7.67431C14.0038 7.39816 13.7799 7.17431 13.5038 7.17431L3.98563 7.17431L7.82996 3.32998C8.02523 3.13471 8.02523 2.81813 7.82996 2.62287L7.35856 2.15146C7.1633 1.9562 6.84671 1.9562 6.65145 2.15147L1.15031 7.6526C1.05228 7.75063 1.00347 7.87924 1.00387 8.00772Z\"})});return /*#__PURE__*/_jsxs(motion.button,{onClick:()=>window.history.back(),onHoverStart:()=>setHoverState(true),onHoverEnd:()=>setHoverState(false),onTapStart:()=>setHoverState(true),onTapCancel:()=>setHoverState(false),style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"row\",cursor:\"pointer\",width:\"100%\",height:\"100%\",backgroundColor:style.fill,color:style.color,borderRadius:radiusValue,border:`${style.border.borderWidth}px ${style.border.borderStyle} ${style.border.borderColor}`,padding:paddingValue,gap:`${icon.gap}px`,fontFamily:props.fontFamily,fontSize:props.fontSize,fontWeight:props.fontWeight,lineHeight:props.lineHeight,letterSpacing:props.letterSpacing,scale:style.scale,whiteSpace:\"nowrap\",...font},whileHover:{backgroundColor:hover.fill,color:hover.color,borderRadius:radiusValueHover,border:`${hover.border.borderWidth}px ${hover.border.borderStyle} ${hover.border.borderColor}`,scale:hover.scale},whileTap:{backgroundColor:hover.fill,color:hover.color,borderRadius:radiusValueHover,border:`${hover.border.borderWidth}px ${hover.border.borderStyle} ${hover.border.borderColor}`,scale:hover.scale},transition:transition,children:[iconElement,text]});}BackButton.defaultProps={fontFamily:\"Inter, sans-serif\",fontSize:14,fontWeight:\"Regular\",lineHeight:1,letterSpacing:0};addPropertyControls(BackButton,{text:{type:ControlType.String,title:\"Label\",defaultValue:\"Back\",placeholder:\"Your text\u2026\"},font:{type:\"font\",controls:\"extended\",displayTextAlignment:false,defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1,letterSpacing:0}},icon:{type:ControlType.Object,controls:{default:{type:ControlType.Boolean,title:\"Default\",defaultValue:true},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:6,min:0},size:{type:ControlType.Number,title:\"Size\",defaultValue:14,min:8,max:48},custom:{type:ControlType.Image,title:\"Icon\",hidden(props){return props.default;}},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"white\",hidden(props){return!props.default;}}}},style:{type:ControlType.Object,title:\"Styles\",controls:{fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#007AFF\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},radius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:13,toggleKey:\"isMixedRadius\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:10,toggleKey:\"isMixedPadding\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"top\",\"right\",\"bottom\",\"left\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,step:.1,displayStepper:true},border:{type:ControlType.Object,title:\"Border\",controls:{borderWidth:{type:ControlType.Number,title:\"Size\",defaultValue:1,min:0,displayStepper:true},borderStyle:{type:ControlType.Enum,title:\"Style\",options:[\"dotted\",\"dashed\",\"solid\",\"double\",\"groove\",\"ridge\",\"inset\",\"outset\",\"none\"],optionTitles:[\"Dotted\",\"Dashed\",\"Solid\",\"Double\",\"Groove\",\"Ridge\",\"Inset\",\"Outset\",\"None\"],defaultValue:\"solid\"},borderColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#007AFF\"}}}}},hover:{type:ControlType.Object,controls:{fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0060C0\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\"},radius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:13,toggleKey:\"isMixedRadiusHover\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,step:.1,displayStepper:true},border:{type:ControlType.Object,title:\"Border\",controls:{borderWidth:{type:ControlType.Number,title:\"Size\",defaultValue:1,min:0,displayStepper:true},borderStyle:{type:ControlType.Enum,title:\"Style\",options:[\"dotted\",\"dashed\",\"solid\",\"double\",\"groove\",\"ridge\",\"inset\",\"outset\",\"none\"],optionTitles:[\"Dotted\",\"Dashed\",\"Solid\",\"Double\",\"Groove\",\"Ridge\",\"Inset\",\"Outset\",\"None\"],defaultValue:\"solid\"},borderColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#0060C0\"}}},icon:{type:ControlType.Object,title:\"Icon\",controls:{default:{type:ControlType.Boolean,title:\"Default\",defaultValue:true},custom:{type:ControlType.Image,title:\"Icon\",hidden(props){return props.default;}},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFFFFF\",hidden(props){return!props.default;}}}}}},transition:{type:ControlType.Transition,title:\"Transition\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BackButton\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BackButton.map", "// Generated by Framer (1d71865)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Geist Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5oWTfKbNbkC18G2CzOgUJznt1s.woff2\"}]}];export const css=[\".framer-W8KeG .framer-styles-preset-vr916r:not(.rich-text-wrapper), .framer-W8KeG .framer-styles-preset-vr916r.rich-text-wrapper h2 { --framer-font-family: \\\"Geist Medium\\\", \\\"Geist Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'ss03' on, 'ss04' on, 'ss09' on, 'frac' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.015em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-W8KeG .framer-styles-preset-vr916r:not(.rich-text-wrapper), .framer-W8KeG .framer-styles-preset-vr916r.rich-text-wrapper h2 { --framer-font-family: \\\"Geist Medium\\\", \\\"Geist Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'ss03' on, 'ss04' on, 'ss09' on, 'frac' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.015em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-W8KeG .framer-styles-preset-vr916r:not(.rich-text-wrapper), .framer-W8KeG .framer-styles-preset-vr916r.rich-text-wrapper h2 { --framer-font-family: \\\"Geist Medium\\\", \\\"Geist Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'ss03' on, 'ss04' on, 'ss09' on, 'frac' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.015em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }\"];export const className=\"framer-W8KeG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCodeBoundaryForOverrides,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 Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import NavNav from\"#framer/local/canvasComponent/HvjTZ_x76/HvjTZ_x76.js\";import NavFooter from\"#framer/local/canvasComponent/Vn10kjc8e/Vn10kjc8e.js\";import ProductsCard from\"#framer/local/canvasComponent/zmOGeQGX8/zmOGeQGX8.js\";import CMSRelativeTime from\"#framer/local/codeFile/bBr09QG/CMSRelativeTime.js\";import CMSTags from\"#framer/local/codeFile/cmwvz4h/CMSTags.js\";import BackButton from\"#framer/local/codeFile/ujse38P/BackButton.js\";import CopyToClipboardButton from\"#framer/local/codeFile/r7NpOuO/CopytoClipboardButton.js\";import{withCustomScrollbar}from\"#framer/local/codeFile/igllTkq/CustomScrollbar.js\";import Components,{enumToDisplayNameFunctions}from\"#framer/local/collection/DMooZTJtl/DMooZTJtl.js\";import*as sharedStyle from\"#framer/local/css/CEYJOupeA/CEYJOupeA.js\";import*as sharedStyle1 from\"#framer/local/css/IP9wMV4IH/IP9wMV4IH.js\";import*as sharedStyle3 from\"#framer/local/css/KHQQpiIhB/KHQQpiIhB.js\";import*as sharedStyle4 from\"#framer/local/css/r_mBLwATb/r_mBLwATb.js\";import*as sharedStyle2 from\"#framer/local/css/sia1lB1nx/sia1lB1nx.js\";import*as sharedStyle5 from\"#framer/local/css/TXU92CxAU/TXU92CxAU.js\";import metadataProvider from\"#framer/local/webPageMetadata/pLI4U7cLg/pLI4U7cLg.js\";const NavNavFonts=getFonts(NavNav);const BackButtonFonts=getFonts(BackButton);const EmbedFonts=getFonts(Embed);const CopyToClipboardButtonFonts=getFonts(CopyToClipboardButton);const CMSRelativeTimeFonts=getFonts(CMSRelativeTime);const CMSTagsFonts=getFonts(CMSTags);const ProductsCardFonts=getFonts(ProductsCard);const NavFooterFonts=getFonts(NavFooter);const MotionDivWithCustomScrollbar2ry9j4=withCodeBoundaryForOverrides(motion.div,{nodeId:\"KW2grSyFA\",override:withCustomScrollbar,scopeId:\"pLI4U7cLg\"});const breakpoints={aGy6PL2xa:\"(min-width: 810px) and (max-width: 1199px)\",E9SXh8poB:\"(max-width: 809px)\",KW2grSyFA:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-YURJw\";const variantClassNames={aGy6PL2xa:\"framer-v-1dxku0i\",E9SXh8poB:\"framer-v-hpueqy\",KW2grSyFA:\"framer-v-2ry9j4\"};const negate=value=>{return!value;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};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 transition1={damping:100,delay:0,mass:1,stiffness:1500,type:\"spring\"};const animation={backgroundColor:\"var(--token-5068d997-5509-471a-aafc-c68b498fb354, rgb(0, 104, 222))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};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 isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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:\"KW2grSyFA\",Phone:\"E9SXh8poB\",Tablet:\"aGy6PL2xa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KW2grSyFA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"pLI4U7cLg\",data:Components,type:\"Collection\"},select:[{collection:\"pLI4U7cLg\",name:\"txjnDExHQ\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"bKY93JMti\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"hbk6M9Vly\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"yJQGqBClU\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"JDfX2lsd3\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"XC4yuhz4Z\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"V6s4PzLsI\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"fdmeJCbGp\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"Ex0AfsDl0\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"Gqj1Tt3zf\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"WfTcm1jhT\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"qrPeR2boi\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"qYSP1EFDN\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"sGxemE7Oj\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"Fr6qkcsnA\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"V0GV9VgFD\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"OwzRSsJg5\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"gXoKu82qp\",type:\"Identifier\"},{collection:\"pLI4U7cLg\",name:\"nSYsAB2PM\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"pLI4U7cLg\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Ex0AfsDl0=getFromCurrentRouteData(\"Ex0AfsDl0\")??\"\",bKY93JMti=getFromCurrentRouteData(\"bKY93JMti\")??true,hbk6M9Vly=getFromCurrentRouteData(\"hbk6M9Vly\")??true,fdmeJCbGp=getFromCurrentRouteData(\"fdmeJCbGp\")??\"\",qrPeR2boi=getFromCurrentRouteData(\"qrPeR2boi\")??\"\",Gqj1Tt3zf=getFromCurrentRouteData(\"Gqj1Tt3zf\")??\"\",qYSP1EFDN=getFromCurrentRouteData(\"qYSP1EFDN\"),sGxemE7Oj=getFromCurrentRouteData(\"sGxemE7Oj\")??\"\",V0GV9VgFD=getFromCurrentRouteData(\"V0GV9VgFD\")??\"\",Fr6qkcsnA=getFromCurrentRouteData(\"Fr6qkcsnA\"),gXoKu82qp=getFromCurrentRouteData(\"gXoKu82qp\")??\"\",yJQGqBClU=getFromCurrentRouteData(\"yJQGqBClU\")??true,OwzRSsJg5=getFromCurrentRouteData(\"OwzRSsJg5\")??\"\",WfTcm1jhT=getFromCurrentRouteData(\"WfTcm1jhT\")??\"\",Ex0AfsDl0SBEr30rj2,WfTcm1jhTSBEr30rj2,nSYsAB2PMSBEr30rj2,idSBEr30rj2,txjnDExHQ=getFromCurrentRouteData(\"txjnDExHQ\"),Ex0AfsDl0A2Jf97Zjo,WfTcm1jhTA2Jf97Zjo,nSYsAB2PMA2Jf97Zjo,idA2Jf97Zjo,Ex0AfsDl0V7S2mbiG3,WfTcm1jhTV7S2mbiG3,nSYsAB2PMV7S2mbiG3,idV7S2mbiG3,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(equals(negate(bKY93JMti),hbk6M9Vly));const textContent=prefix(fdmeJCbGp,\"$\");const visible1=isSet(V0GV9VgFD);const textContent1=enumToDisplayNameFunctions[\"Fr6qkcsnA\"]?.(Fr6qkcsnA,activeLocale);const visible2=isSet(gXoKu82qp);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"aGy6PL2xa\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KW2grSyFA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(MotionDivWithCustomScrollbar2ry9j4,{...restProps,className:cx(scopingClassNames,\"framer-2ry9j4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlmf8l\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyk220\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:`min(${componentViewport?.width||\"100vw\"}, 1140px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i0mkgt-container\",nodeId:\"IbnUgQMol\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(NavNav,{height:\"100%\",id:\"IbnUgQMol\",layoutId:\"IbnUgQMol\",style:{width:\"100%\"},variant:\"HQnBsdW0J\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16p6z6l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-darvaa\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wbl4l0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jou3j3\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1waldpl-container\",isAuthoredByUser:true,nodeId:\"bop7OIM72\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(BackButton,{font:{fontFamily:'\"Geist Medium\", \"Geist Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0.01em\",lineHeight:\"1em\"},height:\"100%\",hover:{border:{borderColor:\"rgb(0, 96, 192)\",borderStyle:\"solid\",borderWidth:0},bottomLeft:0,bottomRight:0,color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\",fill:\"rgba(255, 255, 255, 0)\",icon:{color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(17, 17, 17, 0.6))\",default:true},isMixedRadiusHover:false,radius:0,scale:1,topLeft:0,topRight:0},icon:{color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(17, 17, 17, 0.6))\",default:true,gap:5,size:12},id:\"bop7OIM72\",layoutId:\"bop7OIM72\",style:{border:{borderColor:\"rgb(0, 122, 255)\",borderStyle:\"solid\",borderWidth:0},bottom:0,bottomLeft:0,bottomRight:0,color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\",fill:\"rgba(255, 255, 255, 0)\",isMixedPadding:false,isMixedRadius:false,left:0,padding:0,radius:0,right:0,scale:1,top:0,topLeft:0,topRight:0},text:\"Back\",transition:{damping:100,delay:0,mass:1,stiffness:3e3,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-vr916r\",\"data-styles-preset\":\"CEYJOupeA\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-g5w7ll\",\"data-framer-name\":\"Framer Code. The best code components and overrides for framer.\",fonts:[\"Inter\"],text:Ex0AfsDl0,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71mrpg\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-70s3zb\",\"data-styles-preset\":\"IP9wMV4IH\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(255, 255, 255))\"},children:\"$\"})}),className:\"framer-1nt7a93\",\"data-framer-name\":\"Framer Code. The best code components and overrides for framer.\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),hbk6M9Vly&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-78rawz\",\"data-framer-name\":\"Coming Soon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-npkf9j\",\"data-styles-preset\":\"sia1lB1nx\",children:\"Coming Soon\"})}),className:\"framer-rkndcc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vvqp60\",\"data-framer-name\":\"Buy Now\",id:\"1vvqp60\",onTap:onTap3bnx0g({overlay}),whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-npkf9j\",\"data-styles-preset\":\"sia1lB1nx\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Buy Now\"})}),className:\"framer-6tuug\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ustora\"),\"data-framer-portal-id\":\"1vvqp60\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"SeP2tLBva\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-mpzlzj-container\"),\"data-framer-portal-id\":\"1vvqp60\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fywTRN5i_\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"fywTRN5i_\",layoutId:\"fywTRN5i_\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:qrPeR2boi,width:\"100%\",zoom:1})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1inmubg\"),\"data-framer-name\":\"Close\",\"data-framer-portal-id\":\"1vvqp60\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lc1q8q\",\"data-framer-name\":\"plus\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 5.469 10.5 C 5.71 10.5 5.906 10.304 5.906 10.062 L 5.906 5.906 L 10.062 5.906 C 10.304 5.906 10.5 5.71 10.5 5.469 L 10.5 5.031 C 10.5 4.79 10.304 4.594 10.063 4.594 L 5.906 4.594 L 5.906 0.437 C 5.906 0.196 5.71 0 5.469 0 L 5.031 0 C 4.79 0 4.594 0.196 4.594 0.438 L 4.594 4.594 L 0.438 4.594 C 0.196 4.594 0 4.79 0 5.031 L 0 5.469 C 0 5.71 0.196 5.906 0.438 5.906 L 4.594 5.906 L 4.594 10.063 C 4.594 10.304 4.79 10.5 5.031 10.5 Z\" transform=\"translate(1.75 1.75) rotate(45 5.25 5.25)\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10862884649,withExternalLayout:true})})]}),getContainer())})})]})})}),bKY93JMti&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sej8uq-container\",isAuthoredByUser:true,nodeId:\"kBwBSLZFo\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(CopyToClipboardButton,{content:qrPeR2boi,font:{fontFamily:'\"Geist Medium\", \"Geist Medium Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0.01em\",lineHeight:\"1.1em\"},height:\"100%\",hover:{border:{borderColor:\"var(--token-5068d997-5509-471a-aafc-c68b498fb354, rgb(0, 104, 222))\",borderStyle:\"solid\",borderWidth:1},bottomLeft:50,bottomRight:50,color:\"rgb(255, 255, 255)\",fill:\"var(--token-5068d997-5509-471a-aafc-c68b498fb354, rgb(0, 104, 222))\",icon:{color:\"rgba(255, 255, 255, 0.6)\",default:true},isMixedRadiusHover:false,radius:50,scale:1,topLeft:50,topRight:50},icon:{color:\"rgba(255, 255, 255, 0.6)\",default:true,gap:6,size:16},id:\"kBwBSLZFo\",label:\"Copy to Clipboard\",layoutId:\"kBwBSLZFo\",style:{border:{borderColor:\"var(--token-e4249d02-dd5c-4e59-97f5-00cd98c3d20a, rgb(0, 115, 250))\",borderStyle:\"solid\",borderWidth:1},bottom:10,bottomLeft:50,bottomRight:50,color:\"rgb(255, 255, 255)\",fill:\"var(--token-e4249d02-dd5c-4e59-97f5-00cd98c3d20a, rgb(0, 115, 250))\",isMixedPadding:true,isMixedRadius:false,left:24,padding:10,radius:50,right:24,scale:1,top:10,topLeft:50,topRight:50},tap:{border:{borderColor:\"var(--token-5068d997-5509-471a-aafc-c68b498fb354, rgb(0, 104, 222))\",borderStyle:\"solid\",borderWidth:1},bottomLeft:50,bottomRight:50,color:\"rgb(255, 255, 255)\",fill:\"var(--token-5068d997-5509-471a-aafc-c68b498fb354, rgb(0, 104, 222))\",icon:{color:\"rgba(255, 255, 255, 0.6)\",default:true},isMixedRadiusHover:false,radius:50,scale:1,topLeft:50,topRight:50},toast:{bottomLeft:4,bottomRight:4,color:\"var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, rgb(255, 255, 255))\",fill:\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(17, 17, 17))\",font:{fontFamily:'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"-0.1px\",lineHeight:\"1.2em\"},horizontal:\"center\",isMixedRadius:false,margin:20,padding:8,radius:4,topLeft:4,topRight:4,transition:{damping:100,delay:0,mass:1,stiffness:3e3,type:\"spring\"},vertical:\"top\"},transition:{damping:100,delay:0,mass:1,stiffness:3e3,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lbq2j2\",\"data-styles-preset\":\"KHQQpiIhB\",children:\"Content\"})}),className:\"framer-l88dbd\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Gqj1Tt3zf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fj2m9t\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ti1i2g\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0))\"},children:\"Last Updated\"})}),className:\"framer-91p9fk\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9lmw2-container\",isAuthoredByUser:true,nodeId:\"pW8iFrsTT\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(CMSRelativeTime,{color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\",date:qYSP1EFDN,font:{fontFamily:'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"pW8iFrsTT\",layoutId:\"pW8iFrsTT\",locale:\"\",prefix:\"\",suffix:\"\",unit:\"auto\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kxdy6\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0))\"},children:\"Type\"})}),className:\"framer-uh6zee\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\"},children:\"Content\"})}),className:\"framer-ftv9p1\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:sGxemE7Oj,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6kod2p\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0))\"},children:\"Dark Mode\"})}),className:\"framer-198rsq9\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\"},children:\"Content\"})}),className:\"framer-1ob9zon\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:V0GV9VgFD,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bfroxu\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0))\"},children:\"Requires Coding\"})}),className:\"framer-1oepktw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\"},children:\"Content\"})}),className:\"framer-s37ue6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u36uvs\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0))\"},children:\"Requires API\"})}),className:\"framer-syxk4n\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(255, 255, 255, 0.6))\"},children:\"No\"})}),className:\"framer-1js44ol\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v5wo4r\",\"data-framer-name\":\"Properties\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zlchl\",\"data-styles-preset\":\"r_mBLwATb\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(255, 255, 255))\"},children:\"Properties\"})}),className:\"framer-11mm2ye\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qh62fz-container\",isAuthoredByUser:true,nodeId:\"fIlMoLYPj\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(CMSTags,{color:\"var(--token-19a63e7e-0078-4cfb-8a9a-29b5c879b1b6, rgba(17, 17, 17, 0.6))\",content:gXoKu82qp,font:{fontFamily:'\"Geist Regular\", \"Geist Regular Placeholder\", sans-serif',fontSize:\"13px\",letterSpacing:\"0px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"fIlMoLYPj\",layoutId:\"fIlMoLYPj\",styles:{border:{borderColor:\"var(--token-a15b3feb-5e69-4c6d-a806-aca553607a2e, rgba(17, 17, 17, 0.04))\",borderStyle:\"solid\",borderWidth:.5},bottomLeftRadius:8,bottomPadding:5,bottomRightRadius:8,fill:\"var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, rgb(255, 255, 255))\",gap:5,isMixedPadding:true,isMixedRadius:false,leftPadding:7,padding:6,radius:8,rightPadding:7,topLeftRadius:8,topPadding:5,topRightRadius:8},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zfBOvHNh4\"},motionChild:true,nodeId:\"hHVFygMzP\",scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1oolind framer-gh9s6q\",\"data-framer-name\":\"Changelog\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16kobic\",\"data-framer-name\":\"changelog\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 4.008 4.846 C 4.008 5.122 4.232 5.346 4.508 5.346 L 5.008 5.346 C 5.284 5.346 5.508 5.122 5.508 4.846 L 5.508 3.091 C 5.511 3.069 5.512 3.047 5.512 3.025 L 5.512 2.525 C 5.512 2.388 5.456 2.257 5.357 2.163 C 5.264 2.072 5.138 2.021 5.007 2.021 L 4.507 2.021 C 4.486 2.021 4.464 2.022 4.443 2.025 L 2.687 2.025 C 2.411 2.025 2.187 2.249 2.187 2.525 L 2.187 3.025 C 2.187 3.301 2.411 3.525 2.687 3.525 L 2.859 3.525 C 1.791 4.781 1.206 6.376 1.209 8.025 C 1.208 10.229 2.252 12.303 4.023 13.614 C 4.13 13.691 4.264 13.719 4.393 13.693 C 4.522 13.667 4.635 13.588 4.703 13.475 L 4.973 13.054 C 5.116 12.816 5.055 12.509 4.832 12.344 C 3.492 11.312 2.708 9.715 2.709 8.024 C 2.709 6.677 3.197 5.443 4.008 4.49 Z M 11.502 3.704 C 12.842 4.737 13.626 6.333 13.624 8.024 C 13.626 9.331 13.158 10.594 12.304 11.583 L 12.304 11.156 C 12.304 10.88 12.08 10.656 11.804 10.656 L 11.304 10.656 C 11.028 10.656 10.804 10.88 10.804 11.156 L 10.804 12.911 C 10.802 12.933 10.801 12.955 10.801 12.977 L 10.801 13.477 C 10.801 13.614 10.857 13.745 10.956 13.839 C 11.046 13.927 11.169 13.981 11.305 13.981 L 11.805 13.981 C 11.826 13.981 11.848 13.98 11.869 13.977 L 13.625 13.977 C 13.901 13.977 14.125 13.753 14.125 13.477 L 14.125 12.977 C 14.125 12.701 13.901 12.477 13.625 12.477 L 13.513 12.477 C 14.556 11.228 15.127 9.651 15.124 8.024 C 15.126 5.82 14.082 3.745 12.31 2.434 C 12.203 2.357 12.069 2.329 11.94 2.355 C 11.811 2.381 11.698 2.46 11.63 2.573 L 11.362 2.995 C 11.219 3.232 11.28 3.539 11.502 3.704 Z M 9.628 6.12 L 7.64 8.11 L 6.707 7.175 C 6.512 6.98 6.195 6.98 6 7.175 L 5.646 7.529 C 5.451 7.724 5.451 8.041 5.646 8.236 L 6.887 9.477 C 6.9 9.495 6.915 9.511 6.93 9.527 L 7.284 9.88 C 7.379 9.975 7.507 10.027 7.641 10.026 C 7.774 10.027 7.903 9.974 7.997 9.88 L 8.351 9.526 C 8.366 9.511 8.381 9.494 8.394 9.477 L 10.69 7.181 C 10.885 6.986 10.885 6.669 10.69 6.474 L 10.336 6.12 C 10.141 5.925 9.824 5.925 9.629 6.12 Z\" fill=\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(17, 17, 17))\"></path></svg>',svgContentId:12817035846,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-npkf9j\",\"data-styles-preset\":\"sia1lB1nx\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(17, 17, 17))\"},children:\"Changelog\"})}),className:\"framer-w3ukqu\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),yJQGqBClU&&/*#__PURE__*/_jsx(Link,{href:OwzRSsJg5,motionChild:true,nodeId:\"STfhv6HVW\",openInNewTab:false,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-147vrm8 framer-gh9s6q\",\"data-framer-name\":\"Changelog\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ow1xyp\",\"data-framer-name\":\"help\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 16\"><path d=\"M 12.667 3.5 L 3.667 3.5 L 3.667 12.5 L 12.667 12.5 Z M 2.167 2.5 C 2.167 2.224 2.391 2 2.667 2 L 13.667 2 C 13.943 2 14.167 2.224 14.167 2.5 L 14.167 13.5 C 14.167 13.776 13.943 14 13.667 14 L 2.667 14 C 2.391 14 2.167 13.776 2.167 13.5 Z M 8.253 5.914 C 8.022 5.912 7.799 6.003 7.635 6.166 C 7.437 6.358 7.155 6.496 6.898 6.391 L 6.435 6.203 C 6.18 6.098 6.055 5.804 6.203 5.572 C 6.544 5.039 7.188 4.414 8.253 4.414 C 9.031 4.414 9.605 4.708 9.97 5.152 C 10.309 5.564 10.417 6.044 10.417 6.375 C 10.417 6.985 10.244 7.42 9.935 7.767 C 9.818 7.893 9.692 8.01 9.556 8.115 L 9.544 8.125 C 9.456 8.193 9.371 8.266 9.291 8.343 C 9.155 8.473 9.053 8.634 8.993 8.812 C 8.906 9.074 8.701 9.305 8.425 9.305 L 7.925 9.305 C 7.649 9.305 7.413 9.08 7.448 8.805 C 7.462 8.703 7.482 8.591 7.514 8.475 C 7.618 8.091 7.832 7.681 8.23 7.282 C 8.36 7.152 8.493 7.045 8.589 6.968 L 8.613 6.948 C 8.721 6.861 8.775 6.814 8.816 6.768 C 8.844 6.738 8.866 6.703 8.88 6.664 C 8.909 6.57 8.921 6.473 8.917 6.375 C 8.91 6.276 8.873 6.181 8.811 6.104 C 8.756 6.037 8.623 5.914 8.253 5.914 Z M 8.417 9.924 C 8.693 9.924 8.917 10.148 8.917 10.424 L 8.917 10.924 C 8.917 11.2 8.693 11.424 8.417 11.424 L 7.917 11.424 C 7.641 11.424 7.417 11.2 7.417 10.924 L 7.417 10.424 C 7.417 10.148 7.641 9.924 7.917 9.924 Z\" fill=\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11474078904,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-npkf9j\",\"data-styles-preset\":\"sia1lB1nx\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(17, 17, 17))\"},children:\"Tutorial\"})}),className:\"framer-12b0o9r\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10h9npd\",\"data-border\":true,\"data-framer-name\":\"Asset\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14gx645-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mBLcPdMWu\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:WfTcm1jhT,id:\"mBLcPdMWu\",layoutId:\"mBLcPdMWu\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"My Code Snippet\",width:\"100%\",zoom:1})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dhesyj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-q5jg2c\",\"data-styles-preset\":\"TXU92CxAU\",style:{\"--framer-text-color\":\"var(--token-8f1a233b-e8a1-444e-82c0-da27321afc97, rgb(255, 255, 255))\"},children:\"Related Products\"})}),className:\"framer-loi7xf\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h3dn5n\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ac97kd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SBEr30rj2\",data:Components,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"SBEr30rj2\",name:\"Ex0AfsDl0\",type:\"Identifier\"},{collection:\"SBEr30rj2\",name:\"WfTcm1jhT\",type:\"Identifier\"},{collection:\"SBEr30rj2\",name:\"nSYsAB2PM\",type:\"Identifier\"},{collection:\"SBEr30rj2\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"SBEr30rj2\",name:\"txjnDExHQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:txjnDExHQ},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"SBEr30rj2\",name:\"Ex0AfsDl0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Ex0AfsDl0},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Ex0AfsDl0:Ex0AfsDl0SBEr30rj2,id:idSBEr30rj2,nSYsAB2PM:nSYsAB2PMSBEr30rj2,WfTcm1jhT:WfTcm1jhTSBEr30rj2},index)=>{Ex0AfsDl0SBEr30rj2??=\"\";WfTcm1jhTSBEr30rj2??=\"\";nSYsAB2PMSBEr30rj2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SBEr30rj2-${idSBEr30rj2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{nSYsAB2PM:nSYsAB2PMSBEr30rj2},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMSBEr30rj2},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined},{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMSBEr30rj2},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined},{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMSBEr30rj2},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aGy6PL2xa:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 60px) / 2, 50px)`},E9SXh8poB:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1315.7+0+40.9+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1053.2+0+40.9+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4w6yon-container\",nodeId:\"iAb3VQz83\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aGy6PL2xa:{we5WjRsZe:resolvedLinks[1]},E9SXh8poB:{we5WjRsZe:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ProductsCard,{cjorHpwdK:WfTcm1jhTSBEr30rj2,GcxjPS6GR:Ex0AfsDl0SBEr30rj2,height:\"100%\",id:\"iAb3VQz83\",layoutId:\"iAb3VQz83\",style:{width:\"100%\"},we5WjRsZe:resolvedLinks[0],width:\"100%\"})})})})})})})},idSBEr30rj2);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fz6g7d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"A2Jf97Zjo\",data:Components,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"A2Jf97Zjo\",name:\"Ex0AfsDl0\",type:\"Identifier\"},{collection:\"A2Jf97Zjo\",name:\"WfTcm1jhT\",type:\"Identifier\"},{collection:\"A2Jf97Zjo\",name:\"nSYsAB2PM\",type:\"Identifier\"},{collection:\"A2Jf97Zjo\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"A2Jf97Zjo\",name:\"txjnDExHQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:txjnDExHQ},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"A2Jf97Zjo\",name:\"Ex0AfsDl0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Ex0AfsDl0},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({Ex0AfsDl0:Ex0AfsDl0A2Jf97Zjo,id:idA2Jf97Zjo,nSYsAB2PM:nSYsAB2PMA2Jf97Zjo,WfTcm1jhT:WfTcm1jhTA2Jf97Zjo},index1)=>{Ex0AfsDl0A2Jf97Zjo??=\"\";WfTcm1jhTA2Jf97Zjo??=\"\";nSYsAB2PMA2Jf97Zjo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`A2Jf97Zjo-${idA2Jf97Zjo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{nSYsAB2PM:nSYsAB2PMA2Jf97Zjo},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMA2Jf97Zjo},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined},{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMA2Jf97Zjo},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined},{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMA2Jf97Zjo},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aGy6PL2xa:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 60px) / 2, 50px)`},E9SXh8poB:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1315.7+0+40.9+0+320+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1053.2+0+40.9+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kxg12l-container\",nodeId:\"xzpYozoyb\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aGy6PL2xa:{we5WjRsZe:resolvedLinks1[1]},E9SXh8poB:{we5WjRsZe:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ProductsCard,{cjorHpwdK:WfTcm1jhTA2Jf97Zjo,GcxjPS6GR:Ex0AfsDl0A2Jf97Zjo,height:\"100%\",id:\"xzpYozoyb\",layoutId:\"xzpYozoyb\",style:{width:\"100%\"},we5WjRsZe:resolvedLinks1[0],width:\"100%\"})})})})})})})},idA2Jf97Zjo);})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-edbq7f hidden-1dxku0i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"V7S2mbiG3\",data:Components,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"V7S2mbiG3\",name:\"Ex0AfsDl0\",type:\"Identifier\"},{collection:\"V7S2mbiG3\",name:\"WfTcm1jhT\",type:\"Identifier\"},{collection:\"V7S2mbiG3\",name:\"nSYsAB2PM\",type:\"Identifier\"},{collection:\"V7S2mbiG3\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"V7S2mbiG3\",name:\"txjnDExHQ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:txjnDExHQ},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"V7S2mbiG3\",name:\"Ex0AfsDl0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Ex0AfsDl0},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({Ex0AfsDl0:Ex0AfsDl0V7S2mbiG3,id:idV7S2mbiG3,nSYsAB2PM:nSYsAB2PMV7S2mbiG3,WfTcm1jhT:WfTcm1jhTV7S2mbiG3},index2)=>{Ex0AfsDl0V7S2mbiG3??=\"\";WfTcm1jhTV7S2mbiG3??=\"\";nSYsAB2PMV7S2mbiG3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`V7S2mbiG3-${idV7S2mbiG3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{nSYsAB2PM:nSYsAB2PMV7S2mbiG3},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMV7S2mbiG3},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined},{href:{pathVariables:{nSYsAB2PM:nSYsAB2PMV7S2mbiG3},webPageId:\"pLI4U7cLg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9SXh8poB:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1315.7+0+40.9+0+640+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1053.2+0+40.9+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-394yds-container\",nodeId:\"o1gGuBCrV\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9SXh8poB:{we5WjRsZe:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ProductsCard,{cjorHpwdK:WfTcm1jhTV7S2mbiG3,GcxjPS6GR:Ex0AfsDl0V7S2mbiG3,height:\"100%\",id:\"o1gGuBCrV\",layoutId:\"o1gGuBCrV\",style:{width:\"100%\"},we5WjRsZe:resolvedLinks2[0],width:\"100%\"})})})})})})})},idV7S2mbiG3);})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9SXh8poB:{y:(componentViewport?.y||0)+0+0+0+2336.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:`min(${componentViewport?.width||\"100vw\"}, 1140px)`,y:(componentViewport?.y||0)+0+0+0+1434.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4wqvth-container\",nodeId:\"VYAnX24cQ\",rendersWithMotion:true,scopeId:\"pLI4U7cLg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E9SXh8poB:{variant:\"NBqeSnDDX\"}},children:/*#__PURE__*/_jsx(NavFooter,{height:\"100%\",id:\"VYAnX24cQ\",layoutId:\"VYAnX24cQ\",style:{width:\"100%\"},variant:\"XHr4jLIfv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cczsxv\",\"data-border\":true,\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzl32q\",\"data-border\":true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wopvpg\",\"data-border\":true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1royhab\",\"data-border\":true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12502lh\",\"data-border\":true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6rg5c\",\"data-border\":true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dg48gu\",\"data-border\":true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gn6wov\",\"data-framer-name\":\"Gradient Top\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ouobys\",\"data-framer-name\":\"Gradient Bottom\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YURJw.framer-gh9s6q, .framer-YURJw .framer-gh9s6q { display: block; }\",\".framer-YURJw.framer-2ry9j4 { align-content: center; align-items: center; background-color: var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-YURJw .framer-zlmf8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1140px; min-height: 100vh; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-YURJw .framer-1yyk220 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1i0mkgt-container, .framer-YURJw .framer-4w6yon-container, .framer-YURJw .framer-1kxg12l-container, .framer-YURJw .framer-394yds-container, .framer-YURJw .framer-4wqvth-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-YURJw .framer-16p6z6l { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(20px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-YURJw .framer-darvaa { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 2; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1wbl4l0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1jou3j3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-YURJw .framer-1waldpl-container, .framer-YURJw .framer-1h9lmw2-container, .framer-YURJw .framer-qh62fz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-YURJw .framer-g5w7ll { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YURJw .framer-71mrpg { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1nt7a93 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YURJw .framer-78rawz { align-content: center; align-items: center; background-color: var(--token-9c9b1908-038a-4a33-b85c-b4a2045b4bfa, rgba(0, 0, 0, 0.08)); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-YURJw .framer-rkndcc, .framer-YURJw .framer-6tuug { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YURJw .framer-1vvqp60 { align-content: center; align-items: center; background-color: var(--token-e4249d02-dd5c-4e59-97f5-00cd98c3d20a, #0073fa); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 10px 50px 10px 50px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-YURJw.framer-ustora { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-YURJw.framer-mpzlzj-container { flex: none; height: 100%; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 2; }\",\".framer-YURJw.framer-1inmubg { align-content: center; align-items: center; background-color: #4f4f4f; border-bottom-left-radius: 110px; border-bottom-right-radius: 110px; border-top-left-radius: 110px; border-top-right-radius: 110px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: fixed; right: 32px; top: 32px; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-YURJw .framer-1lc1q8q { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-YURJw .framer-1sej8uq-container { flex: none; height: 34px; position: relative; width: auto; }\",\".framer-YURJw .framer-l88dbd, .framer-YURJw .framer-11mm2ye, .framer-YURJw .framer-loi7xf { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YURJw .framer-fj2m9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1ti1i2g, .framer-YURJw .framer-19kxdy6, .framer-YURJw .framer-6kod2p, .framer-YURJw .framer-1bfroxu, .framer-YURJw .framer-1u36uvs { --border-bottom-width: 0.5px; --border-color: var(--token-a15b3feb-5e69-4c6d-a806-aca553607a2e, rgba(0, 0, 0, 0.1)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: 100%; }\",\".framer-YURJw .framer-91p9fk, .framer-YURJw .framer-uh6zee, .framer-YURJw .framer-ftv9p1, .framer-YURJw .framer-198rsq9, .framer-YURJw .framer-1ob9zon, .framer-YURJw .framer-1oepktw, .framer-YURJw .framer-s37ue6, .framer-YURJw .framer-syxk4n, .framer-YURJw .framer-1js44ol { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YURJw .framer-v5wo4r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1oolind, .framer-YURJw .framer-147vrm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-YURJw .framer-16kobic { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-YURJw .framer-w3ukqu, .framer-YURJw .framer-12b0o9r { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-YURJw .framer-ow1xyp { flex: none; height: 16px; position: relative; width: 17px; }\",\".framer-YURJw .framer-10h9npd { --border-bottom-width: 0.5px; --border-color: var(--token-a15b3feb-5e69-4c6d-a806-aca553607a2e, rgba(17, 17, 17, 0.04)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; align-self: start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 4; height: var(--framer-aspect-ratio-supported, 545px); justify-content: center; justify-self: end; overflow: hidden; padding: 0px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-YURJw .framer-14gx645-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 545px); position: relative; width: 100%; }\",\".framer-YURJw .framer-1dhesyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1h3dn5n { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1ac97kd, .framer-YURJw .framer-fz6g7d, .framer-YURJw .framer-edbq7f { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-YURJw .framer-1cczsxv { --border-bottom-width: 0px; --border-color: var(--token-a15b3feb-5e69-4c6d-a806-aca553607a2e, rgba(17, 17, 17, 0.07)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(20px, 1fr)); grid-template-rows: repeat(1, min-content); height: 100vh; justify-content: center; left: calc(50.00000000000002% - min(1140px, 100%) / 2); max-width: 1140px; overflow: visible; padding: 0px 20px 0px 20px; position: fixed; top: 0px; width: 100%; z-index: 0; }\",\".framer-YURJw .framer-1jzl32q, .framer-YURJw .framer-wopvpg, .framer-YURJw .framer-1royhab, .framer-YURJw .framer-12502lh, .framer-YURJw .framer-t6rg5c, .framer-YURJw .framer-1dg48gu { --border-bottom-width: 0px; --border-color: var(--token-a15b3feb-5e69-4c6d-a806-aca553607a2e, rgba(17, 17, 17, 0.07)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-self: start; flex: none; height: 100vh; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-YURJw .framer-gn6wov { background: linear-gradient(180deg, var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, #ffffff) 0%, rgba(0, 0, 0, 0) 100%); flex: none; height: 50vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-YURJw .framer-ouobys { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--token-c037b030-1ac7-44c3-8da7-9a3f74dbc6e4, rgb(255, 255, 255)) 100%); bottom: 0px; flex: none; height: 50vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-YURJw.framer-2ry9j4, .framer-YURJw .framer-1yyk220, .framer-YURJw .framer-darvaa, .framer-YURJw .framer-1wbl4l0, .framer-YURJw .framer-1jou3j3, .framer-YURJw .framer-71mrpg, .framer-YURJw .framer-78rawz, .framer-YURJw .framer-1vvqp60, .framer-YURJw.framer-1inmubg, .framer-YURJw .framer-fj2m9t, .framer-YURJw .framer-v5wo4r, .framer-YURJw .framer-1oolind, .framer-YURJw .framer-147vrm8, .framer-YURJw .framer-10h9npd, .framer-YURJw .framer-1dhesyj, .framer-YURJw .framer-1ac97kd, .framer-YURJw .framer-fz6g7d, .framer-YURJw .framer-edbq7f { gap: 0px; } .framer-YURJw.framer-2ry9j4 > *, .framer-YURJw .framer-10h9npd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YURJw.framer-2ry9j4 > :first-child, .framer-YURJw .framer-1yyk220 > :first-child, .framer-YURJw .framer-darvaa > :first-child, .framer-YURJw .framer-1jou3j3 > :first-child, .framer-YURJw .framer-71mrpg > :first-child, .framer-YURJw .framer-fj2m9t > :first-child, .framer-YURJw .framer-v5wo4r > :first-child, .framer-YURJw .framer-10h9npd > :first-child, .framer-YURJw .framer-1dhesyj > :first-child, .framer-YURJw .framer-1ac97kd > :first-child, .framer-YURJw .framer-fz6g7d > :first-child, .framer-YURJw .framer-edbq7f > :first-child { margin-top: 0px; } .framer-YURJw.framer-2ry9j4 > :last-child, .framer-YURJw .framer-1yyk220 > :last-child, .framer-YURJw .framer-darvaa > :last-child, .framer-YURJw .framer-1jou3j3 > :last-child, .framer-YURJw .framer-71mrpg > :last-child, .framer-YURJw .framer-fj2m9t > :last-child, .framer-YURJw .framer-v5wo4r > :last-child, .framer-YURJw .framer-10h9npd > :last-child, .framer-YURJw .framer-1dhesyj > :last-child, .framer-YURJw .framer-1ac97kd > :last-child, .framer-YURJw .framer-fz6g7d > :last-child, .framer-YURJw .framer-edbq7f > :last-child { margin-bottom: 0px; } .framer-YURJw .framer-1yyk220 > *, .framer-YURJw .framer-1ac97kd > *, .framer-YURJw .framer-fz6g7d > *, .framer-YURJw .framer-edbq7f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-YURJw .framer-darvaa > *, .framer-YURJw .framer-1dhesyj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YURJw .framer-1wbl4l0 > *, .framer-YURJw .framer-78rawz > *, .framer-YURJw .framer-1vvqp60 > *, .framer-YURJw.framer-1inmubg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YURJw .framer-1wbl4l0 > :first-child, .framer-YURJw .framer-78rawz > :first-child, .framer-YURJw .framer-1vvqp60 > :first-child, .framer-YURJw.framer-1inmubg > :first-child, .framer-YURJw .framer-1oolind > :first-child, .framer-YURJw .framer-147vrm8 > :first-child { margin-left: 0px; } .framer-YURJw .framer-1wbl4l0 > :last-child, .framer-YURJw .framer-78rawz > :last-child, .framer-YURJw .framer-1vvqp60 > :last-child, .framer-YURJw.framer-1inmubg > :last-child, .framer-YURJw .framer-1oolind > :last-child, .framer-YURJw .framer-147vrm8 > :last-child { margin-right: 0px; } .framer-YURJw .framer-1jou3j3 > *, .framer-YURJw .framer-71mrpg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YURJw .framer-fj2m9t > *, .framer-YURJw .framer-v5wo4r > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-YURJw .framer-1oolind > *, .framer-YURJw .framer-147vrm8 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-YURJw[data-border=\"true\"]::after, .framer-YURJw [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: 1199px) { .framer-YURJw.framer-2ry9j4 { width: 810px; } .framer-YURJw .framer-10h9npd, .framer-YURJw .framer-14gx645-container { height: var(--framer-aspect-ratio-supported, 380px); } .framer-YURJw .framer-1h3dn5n { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-YURJw .framer-1cczsxv { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; }}\",\"@media (max-width: 809px) { .framer-YURJw.framer-2ry9j4 { width: 390px; } .framer-YURJw .framer-16p6z6l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-YURJw .framer-darvaa { align-self: unset; height: min-content; order: 1; } .framer-YURJw .framer-1vvqp60, .framer-YURJw .framer-1sej8uq-container { width: 100%; } .framer-YURJw .framer-10h9npd { align-self: unset; height: var(--framer-aspect-ratio-supported, 263px); order: 0; position: relative; top: unset; } .framer-YURJw .framer-14gx645-container { height: var(--framer-aspect-ratio-supported, 263px); } .framer-YURJw .framer-1h3dn5n { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-YURJw .framer-1cczsxv { left: calc(50.00000000000002% - 100% / 2); max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-YURJw .framer-16p6z6l { gap: 0px; } .framer-YURJw .framer-16p6z6l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-YURJw .framer-16p6z6l > :first-child { margin-top: 0px; } .framer-YURJw .framer-16p6z6l > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1114.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aGy6PL2xa\":{\"layout\":[\"fixed\",\"auto\"]},\"E9SXh8poB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerpLI4U7cLg=withCSS(Component,css,\"framer-YURJw\");export default FramerpLI4U7cLg;FramerpLI4U7cLg.displayName=\"Products\";FramerpLI4U7cLg.defaultProps={height:1114.5,width:1200};addFonts(FramerpLI4U7cLg,[{explicitInter:true,fonts:[{family:\"Geist Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5oWTfKbNbkC18G2CzOgUJznt1s.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Geist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fmgcvoo7Pvi75XN7wkBOp5g4i4s.woff2\"}]},...NavNavFonts,...BackButtonFonts,...EmbedFonts,...CopyToClipboardButtonFonts,...CMSRelativeTimeFonts,...CMSTagsFonts,...ProductsCardFonts,...NavFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpLI4U7cLg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aGy6PL2xa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E9SXh8poB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1114.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CMSTags", "props", "content", "font", "color", "fill", "padding", "gap", "radius", "border", "styles", "isMixedPadding", "isMixedRadius", "words", "word", "paddingValue", "radiusValue", "p", "motion", "index", "addPropertyControls", "ControlType", "BackButton", "props", "text", "font", "style", "icon", "hover", "transition", "padding", "radius", "border", "scale", "isMixedPadding", "isMixedRadius", "isMixedRadiusHover", "hoverState", "setHoverState", "ye", "paddingValue", "radiusValue", "radiusValueHover", "iconStyle", "iconElement", "p", "u", "motion", "window", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "NavNavFonts", "getFonts", "HvjTZ_x76_default", "BackButtonFonts", "BackButton", "EmbedFonts", "Embed", "CopyToClipboardButtonFonts", "CopyToClipboardButton", "CMSRelativeTimeFonts", "CMSRelativeTime", "CMSTagsFonts", "CMSTags", "ProductsCardFonts", "zmOGeQGX8_default", "NavFooterFonts", "Vn10kjc8e_default", "MotionDivWithCustomScrollbar2ry9j4", "withCodeBoundaryForOverrides", "motion", "withCustomScrollbar", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "negate", "value", "equals", "a", "b", "prefix", "transition1", "animation", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "QueryData", "query", "pageSize", "data", "useQueryData", "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", "DMooZTJtl_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Ex0AfsDl0", "bKY93JMti", "hbk6M9Vly", "fdmeJCbGp", "qrPeR2boi", "Gqj1Tt3zf", "qYSP1EFDN", "sGxemE7Oj", "V0GV9VgFD", "Fr6qkcsnA", "gXoKu82qp", "yJQGqBClU", "OwzRSsJg5", "WfTcm1jhT", "Ex0AfsDl0SBEr30rj2", "WfTcm1jhTSBEr30rj2", "nSYsAB2PMSBEr30rj2", "idSBEr30rj2", "txjnDExHQ", "Ex0AfsDl0A2Jf97Zjo", "WfTcm1jhTA2Jf97Zjo", "nSYsAB2PMA2Jf97Zjo", "idA2Jf97Zjo", "Ex0AfsDl0V7S2mbiG3", "WfTcm1jhTV7S2mbiG3", "nSYsAB2PMV7S2mbiG3", "idV7S2mbiG3", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "textContent", "visible1", "textContent1", "enumToDisplayNameFunctions", "visible2", "router", "useRouter", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "RichText2", "x", "l", "AnimatePresence", "Ga", "SVG", "Link", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks2", "css", "FramerpLI4U7cLg", "withCSS", "pLI4U7cLg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
