{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0UFZuYlXQDsJn180LCo5/uu7lWLoLkFZ79o4Jqo5U/DismissOnce.js", "ssg:https://framerusercontent.com/modules/JEHHUBUhcZ5UVrxCL3Z6/1utpy7PDnQbWLaZK1nJe/Image_Zoom.js", "ssg:https://framerusercontent.com/modules/HyH0lnn90HDhIVWiOEdW/GX2Mp5L5b5di8zP8hFTM/componentPresets.js", "ssg:https://framerusercontent.com/modules/12beeecwgq5ZEjUgPc7P/sz7zEjS1YF1BOfybx1oS/dM8iBfAzE.js", "ssg:https://framerusercontent.com/modules/ONsqrN7duptrpZ0v0NLT/b2ZlEIhHacj8kRAZX2Di/LHROwmJBK.js", "ssg:https://framerusercontent.com/modules/476MLTFMURlApR35EppU/8GEDXz8v9eQ5k09B7ddV/OubD7us5v.js", "ssg:https://framerusercontent.com/modules/ehrsmDIPhOdDrZTw5YVV/H56Rx104L9C47FIkEr1S/rT7n3GE8J.js", "ssg:https://framerusercontent.com/modules/NCFy6UUKHa41MZ15pmwF/gOCdB8mje3fwtjiGoKlb/wI4iNe6Vk.js", "ssg:https://framerusercontent.com/modules/16dCunlEA3351P3J4hzF/v87AO0NgOIeOMMVec07I/z5AlICy6O.js", "ssg:https://framerusercontent.com/modules/pXtFjuPPZKYIdOlMcHwi/x6Z5nJbr0w9kjeNRSGED/xmuHvIM82.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function DismissOnceBanner(props){const[isVisible,setIsVisible]=useState(false);const[isHovered,setIsHovered]=useState(false);const[isCloseHovered,setIsCloseHovered]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const bannerId=props.bannerId;useEffect(()=>{if(!isCanvas&&bannerId){const dismissed=localStorage.getItem(\"bannerDismissed_\"+bannerId);if(dismissed!==\"true\"){setIsVisible(true);}}},[isCanvas,bannerId]);const handleDismiss=()=>{if(!isCanvas&&bannerId){setIsVisible(false);localStorage.setItem(\"bannerDismissed_\"+bannerId,\"true\");}};const handleClick=()=>{if(!isCanvas&&props.link.url){window.open(props.link.url,props.link.openInNewTab?\"_blank\":\"_self\");}};if(!isVisible&&!isCanvas)return null;return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:props.layout.height,backgroundColor:isHovered?props.colors.hoverBackground:props.colors.background,display:\"flex\",alignItems:\"center\",justifyContent:\"space-between\",padding:`0 ${props.layout.horizontalPadding}px`,cursor:props.link.url&&!isCanvas?\"pointer\":\"default\",transition:\"background-color 0.3s ease\"},onClick:handleClick,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"center\",justifyContent:props.layout.horizontalAlignment,flex:1},children:[/*#__PURE__*/_jsx(\"p\",{style:{color:props.text.color,...props.text.font,marginRight:props.chevron.show?10:0},children:props.text.content}),props.chevron.show&&/*#__PURE__*/_jsx(\"svg\",{width:props.chevron.size,height:props.chevron.size,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M9 18L15 12L9 6\",stroke:props.chevron.color,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})})]}),/*#__PURE__*/_jsx(\"button\",{onClick:e=>{e.stopPropagation();handleDismiss();},onMouseEnter:()=>setIsCloseHovered(true),onMouseLeave:()=>setIsCloseHovered(false),style:{background:\"none\",border:\"none\",cursor:\"pointer\",color:isCloseHovered?props.closeButton.hoverColor:props.closeButton.color,fontSize:props.closeButton.size,padding:`0 0 ${props.closeButton.bottomPadding}px 0`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:props.closeButton.size,height:props.closeButton.size,transition:\"color 0.3s ease\"},children:\"\\xd7\"})]});}DismissOnceBanner.defaultProps={layout:{height:48,horizontalPadding:20,horizontalAlignment:\"center\"},colors:{background:\"#594EED\",hoverBackground:\"#594EED\"},text:{content:\"This component will not appear again after you dismiss it. Try it out\",color:\"#FFFFFF\",font:{family:\"Inter\",weight:\"Medium\",size:14,lineHeight:\"1em\",align:\"left\",letterSpacing:\"0em\"}},link:{url:\"\",openInNewTab:false},closeButton:{color:\"#CCC8FA\",hoverColor:\"#FFFFFF\",size:24,bottomPadding:4},chevron:{show:true,size:24,color:\"#FFFFFF\"}};addPropertyControls(DismissOnceBanner,{bannerId:{type:ControlType.String,title:\"Banner ID\",placeholder:\"Enter unique ID\",description:\"Unique identifier for the banner. Change this ID to display the banner again.\"},layout:{type:ControlType.Object,controls:{height:{type:ControlType.Number,title:\"Height\",min:20,max:200,step:1},horizontalPadding:{type:ControlType.Number,title:\"Horizontal Padding\",min:0,max:100,step:1},horizontalAlignment:{type:ControlType.Enum,title:\"Alignment\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Left\",\"Center\",\"Right\"]}}},colors:{type:ControlType.Object,controls:{background:{type:ControlType.Color,title:\"Background\"},hoverBackground:{type:ControlType.Color,title:\"Hover Background\"}}},text:{type:ControlType.Object,controls:{content:{type:ControlType.String,title:\"Content\"},color:{type:ControlType.Color,title:\"Color\"},font:{type:ControlType.Font,controls:\"extended\",title:\"Font\"}}},link:{type:ControlType.Object,controls:{url:{type:ControlType.Link,title:\"URL\"},openInNewTab:{type:ControlType.Boolean,title:\"Open in New Tab\"}}},closeButton:{type:ControlType.Object,controls:{color:{type:ControlType.Color,title:\"Color\"},hoverColor:{type:ControlType.Color,title:\"Hover Color\"},size:{type:ControlType.Number,title:\"Size\",min:12,max:48,step:1},bottomPadding:{type:ControlType.Number,title:\"Bottom Padding\",min:0,max:50,step:1}}},chevron:{type:ControlType.Object,controls:{show:{type:ControlType.Boolean,title:\"Show\"},size:{type:ControlType.Number,title:\"Size\",min:12,max:48,step:1,hidden:props=>!props.chevron.show},color:{type:ControlType.Color,title:\"Color\",hidden:props=>!props.chevron.show}},description:\"v1.1 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DismissOnceBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DismissOnce.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";export function CMSContentImageLightboxWithSmoothTransition(Component){return props=>{const[lightboxDisplay,setLightboxDisplay]=useState(false);const[selectedImage,setSelectedImage]=useState(\"\");const[opacity,setOpacity]=useState(0);const handleImageClick=src=>{setSelectedImage(src);setLightboxDisplay(true);};useEffect(()=>{if(lightboxDisplay){setTimeout(()=>setOpacity(1),10);}},[lightboxDisplay]);const closeLightbox=()=>{setOpacity(0);setTimeout(()=>setLightboxDisplay(false),300);};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Component,{...props,onClick:e=>{if(e.target.tagName===\"IMG\"){handleImageClick(e.target.src);}},style:{cursor:\"pointer\"}}),/*#__PURE__*/_jsx(\"style\",{children:`\n                    .${props.className} img {\n                        cursor: zoom-in;\n                    }\n                    .lightbox-backdrop {\n                        position: fixed;\n                        top: 0;\n                        left: 0;\n                        width: 100vw;\n                        height: 100vh;\n                        background-color: rgba(0, 0, 0, 0.8);\n                        display: flex;\n                        align-items: center;\n                        justify-content: center;\n                        z-index: 1000;\n                        opacity: 0;\n                        transition: opacity 0.3s ease;\n                    }\n                    .lightbox-image {\n                        max-height: 90%;\n                        max-width: 90%;\n                    }\n                `}),lightboxDisplay&&/*#__PURE__*/_jsx(\"div\",{className:\"lightbox-backdrop\",onClick:closeLightbox,style:{opacity:opacity},children:/*#__PURE__*/_jsx(\"img\",{src:selectedImage,className:\"lightbox-image\",alt:\"Fullscreen\"})})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"CMSContentImageLightboxWithSmoothTransition\":{\"type\":\"reactHoc\",\"name\":\"CMSContentImageLightboxWithSmoothTransition\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Image_Zoom.map", "// Generated by Framer (ca9141d)\nexport const props={DuZnD4TDM:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,topLeftRadius:0,topRightRadius:0},Ev9ShDvuH:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},md1aHmPhs:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0}};export const fonts={Ev9ShDvuH:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay-Bold\",\"FR;InterDisplay-Black\",\"FR;InterDisplay-BlackItalic\",\"FR;InterDisplay-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",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/EZSFVoaPWKnZ6GuVk5dlS5pk.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/TMYuLEOqLWgunxD5qCFeADEgk.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/EL4v8OG6t2XwHSJLO1YF25DNiDw.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/vSoBOmgqFUd0rVCgogjwL7jQI.woff2\",weight:\"900\"},{family:\"Inter Display\",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/bIwBTbnyeAOa9wQIBagEdRDHXhE.woff2\",weight:\"900\"},{family:\"Inter Display\",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/ytuJ1iJd5SddEQ3LTMbeYRRwiE.woff2\",weight:\"900\"},{family:\"Inter Display\",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/fmXYBApyDC604dR7g2aaACGvCk.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/yHWoQPBZSEiCC3aW3JXtcoFby8o.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UHqhq621TbUtspKtPKPA1Ne8qY.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6dsy2CbviAWDcszGLlgyaLpRMk.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/TQqnntSFYYGDv7XtyT3ZhfvDA.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/nE03Xxh2GngsU8hDpg6CRGxqfoM.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/sz8HQr9IEEln6nmUJ8X0dtBwUQ.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/dWFiPjtJpfcxAIDV8RPyuCq04.woff2\",weight:\"900\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"}]}];export const css=['.framer-EhEwX .framer-styles-preset-15o8n9y:not(.rich-text-wrapper), .framer-EhEwX .framer-styles-preset-15o8n9y.rich-text-wrapper h2 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 30px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-EhEwX\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-9tgU1 .framer-styles-preset-1wlkf36:not(.rich-text-wrapper), .framer-9tgU1 .framer-styles-preset-1wlkf36.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-9tgU1\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-RazYI .framer-styles-preset-gj1mk2:not(.rich-text-wrapper), .framer-RazYI .framer-styles-preset-gj1mk2.rich-text-wrapper h5 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RazYI\";\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\"}}}", "// Generated by Framer (ca9141d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-A4BUk .framer-styles-preset-13srdvr:not(.rich-text-wrapper), .framer-A4BUk .framer-styles-preset-13srdvr.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 26px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-A4BUk\";\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\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-GLApl .framer-styles-preset-1pb93n6 { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: var(--token-263fe8e2-91af-4ca8-846b-a3683e2a778a, #ffffff) /* {\"name\":\"text-primary\"} */; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-GLApl\";\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\"}}}", "// Generated by Framer (98479f1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-TDjkY .framer-styles-preset-809d7g {  }\"];export const className=\"framer-TDjkY\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0998f3)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3,_componentPresets_fonts4,_componentPresets_fonts5;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import DismissOnceBanner from\"https://framerusercontent.com/modules/0UFZuYlXQDsJn180LCo5/uu7lWLoLkFZ79o4Jqo5U/DismissOnce.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import VideoContainer from\"#framer/local/canvasComponent/cuceVyHqF/cuceVyHqF.js\";import Footer from\"#framer/local/canvasComponent/j3HFFkuSQ/j3HFFkuSQ.js\";import Nav from\"#framer/local/canvasComponent/nW9hdB1Bs/nW9hdB1Bs.js\";import CardsMain from\"#framer/local/canvasComponent/UazruCh1B/UazruCh1B.js\";import{CMSContentImageLightboxWithSmoothTransition}from\"#framer/local/codeFile/rcPr1W3/Image_Zoom.js\";import Categories from\"#framer/local/collection/E6Ylc9tLI/E6Ylc9tLI.js\";import Articles from\"#framer/local/collection/wwM1LJD4x/wwM1LJD4x.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/ayKqaVTO3/ayKqaVTO3.js\";import*as sharedStyle1 from\"#framer/local/css/B0MKyKkOg/B0MKyKkOg.js\";import*as sharedStyle3 from\"#framer/local/css/dM8iBfAzE/dM8iBfAzE.js\";import*as sharedStyle6 from\"#framer/local/css/Dy0QHcgrQ/Dy0QHcgrQ.js\";import*as sharedStyle4 from\"#framer/local/css/LHROwmJBK/LHROwmJBK.js\";import*as sharedStyle5 from\"#framer/local/css/OubD7us5v/OubD7us5v.js\";import*as sharedStyle from\"#framer/local/css/rT7n3GE8J/rT7n3GE8J.js\";import*as sharedStyle7 from\"#framer/local/css/Vhgx1Lvqw/Vhgx1Lvqw.js\";import*as sharedStyle8 from\"#framer/local/css/wI4iNe6Vk/wI4iNe6Vk.js\";import*as sharedStyle9 from\"#framer/local/css/z5AlICy6O/z5AlICy6O.js\";import metadataProvider from\"#framer/local/webPageMetadata/xmuHvIM82/xmuHvIM82.js\";const VideoFonts=getFonts(Video);const CardsMainFonts=getFonts(CardsMain);const NavFonts=getFonts(Nav);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const DismissOnceBannerFonts=getFonts(DismissOnceBanner);const VideoContainerFonts=getFonts(VideoContainer);const RichTextCMSContentImageLightboxWithSmoothTransition=CMSContentImageLightboxWithSmoothTransition(RichText);const FooterFonts=getFonts(Footer);const breakpoints={DEEekqZ1_:\"(min-width: 1200px) and (max-width: 1439px)\",eIzAOxuLp:\"(max-width: 809px)\",sq3tw7kHo:\"(min-width: 1440px)\",x4nI2ghpI:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Qkg0v\";const variantClassNames={DEEekqZ1_:\"framer-v-186p1o9\",eIzAOxuLp:\"framer-v-7j8yys\",sq3tw7kHo:\"framer-v-1cf7a2i\",x4nI2ghpI:\"framer-v-1aumcrb\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:1.5,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop - Large\":\"sq3tw7kHo\",Desktop:\"DEEekqZ1_\",Phone:\"eIzAOxuLp\",Tablet:\"x4nI2ghpI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DEEekqZ1_\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"xmuHvIM82\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"xmuHvIM82\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"xmuHvIM82\",data:Articles,type:\"Collection\"},right:{alias:\"previousItemId\",data:Articles,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Articles,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"xmuHvIM82\",name:\"MyTuzRUiz\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"POunCStQc\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"L1Y151M4q\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"cgZzQyIAQ\",type:\"Identifier\"},{alias:\"l2YdzXDN4\",arguments:[{from:{alias:\"l2YdzXDN4\",data:Categories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"xmuHvIM82\",name:\"l2YdzXDN4\",type:\"Identifier\"},{collection:\"l2YdzXDN4\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"l2YdzXDN4\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"l2YdzXDN4\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"xmuHvIM82\",name:\"l2YdzXDN4\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"xmuHvIM82\",name:\"xBLeQH92A\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"z1JDUqvkp\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"xqDbaOfNk\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"ZIxDSguCc\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"hz92CrjYe\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"j63Fz0z8R\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"Ydd7MB4K2\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"k8jMFbHs6\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"oawa5BuKk\",type:\"Identifier\"},{collection:\"xmuHvIM82\",name:\"c1p05WfbR\",type:\"Identifier\"},{alias:\"previousItemId.MyTuzRUiz\",collection:\"previousItemId\",name:\"MyTuzRUiz\",type:\"Identifier\"},{alias:\"previousItemId.adHa8CqUZ\",collection:\"previousItemId\",name:\"adHa8CqUZ\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.MyTuzRUiz\",collection:\"nextItemId\",name:\"MyTuzRUiz\",type:\"Identifier\"},{alias:\"nextItemId.adHa8CqUZ\",collection:\"nextItemId\",name:\"adHa8CqUZ\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"xmuHvIM82\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11,_getFromCurrentRouteData12;const{style,className,layoutId,variant,l2YdzXDN4=getFromCurrentRouteData(\"l2YdzXDN4\"),MyTuzRUiz=(_getFromCurrentRouteData=getFromCurrentRouteData(\"MyTuzRUiz\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",POunCStQc=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"POunCStQc\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",L1Y151M4q=getFromCurrentRouteData(\"L1Y151M4q\"),z1JDUqvkp=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"z1JDUqvkp\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",cgZzQyIAQ=getFromCurrentRouteData(\"cgZzQyIAQ\"),xqDbaOfNk=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"xqDbaOfNk\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",ZIxDSguCc=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"ZIxDSguCc\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",hz92CrjYe=getFromCurrentRouteData(\"hz92CrjYe\"),Ydd7MB4K2=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"Ydd7MB4K2\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",k8jMFbHs6=getFromCurrentRouteData(\"k8jMFbHs6\"),j63Fz0z8R=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"j63Fz0z8R\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",oawa5BuKk=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"oawa5BuKk\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",xBLeQH92A=getFromCurrentRouteData(\"xBLeQH92A\"),adHa8CqUZPFtO6r1dz,c1p05WfbR=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"c1p05WfbR\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_adHa8CqUZ=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"previousItemId.adHa8CqUZ\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:\"\",previousItemId_MyTuzRUiz=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"previousItemId.MyTuzRUiz\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_adHa8CqUZ=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"nextItemId.adHa8CqUZ\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:\"\",nextItemId_MyTuzRUiz=(_getFromCurrentRouteData12=getFromCurrentRouteData(\"nextItemId.MyTuzRUiz\"))!==null&&_getFromCurrentRouteData12!==void 0?_getFromCurrentRouteData12:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Qkg0v`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Qkg0v`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"eIzAOxuLp\")return true;return false;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(L1Y151M4q,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=isSet(xqDbaOfNk);const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"eIzAOxuLp\")return value;return true;};const visible1=isSet(ZIxDSguCc);const router=useRouter();const visible2=isSet(Ydd7MB4K2);const visible3=isSet(oawa5BuKk);const elementId=useRouteElementId(\"SIImzgDFq\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"IKUmFUtFu\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"sq3tw7kHo\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"sq3tw7kHo\",\"eIzAOxuLp\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"eIzAOxuLp\")return false;return true;};const isDisplayed5=value=>{if(!isBrowser())return true;if(baseVariant===\"eIzAOxuLp\")return false;return value;};const isDisplayed6=value=>{if(!isBrowser())return true;if(baseVariant===\"sq3tw7kHo\")return value;return true;};const visible4=isSet(j63Fz0z8R);const visible5=isSet(previousItemId);const textContent1=prefix(previousItemId_MyTuzRUiz,\"\u2039 \");const visible6=isSet(nextItemId);const textContent2=suffix(nextItemId_MyTuzRUiz,\" \u203A\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"DEEekqZ1_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-186p1o9\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pn5cqm hidden-186p1o9 hidden-1aumcrb hidden-1cf7a2i\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jaf2nx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QW2512uGi\",data:Categories,type:\"Collection\"},orderBy:[{arguments:[{type:\"LiteralValue\",value:l2YdzXDN4},{collection:\"QW2512uGi\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[],where:{left:{collection:\"QW2512uGi\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:l2YdzXDN4},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3gvnb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-13srdvr\",\"data-styles-preset\":\"rT7n3GE8J\",style:{\"--framer-text-alignment\":\"left\"},children:\"Director AI\"})}),className:\"framer-t8wy6f\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:MyTuzRUiz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(193, 193, 193)\"},children:\"Designing an all in one video experience for Generative Media\"})}),className:\"framer-31r9zp\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:POunCStQc,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jwstp\",\"data-border\":true,\"data-framer-name\":\"Frame 190\",name:\"Frame 190\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aoexmn\",\"data-framer-name\":\"Frame 193\",name:\"Frame 193\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6svbm\",\"data-framer-name\":\"Group 33\",name:\"Group 33\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(243.5808532714844),src:\"https://framerusercontent.com/images/Pay0w1QlYXnTCw3dMrTIpF0JYPc.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Pay0w1QlYXnTCw3dMrTIpF0JYPc.jpg\"},className:\"framer-19onh9o\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iiel25\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.06033 12.6576H0.850739V12.1964H8.87584L12.1735 8.87569V0.850586H12.6347V9.08324L9.06033 12.6576Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fbteh6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.922746 12.2449H0.461533V4.03534L4.03593 0.460938H12.2455V0.92215H4.22042L0.922746 4.21983V12.2449Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ttmu1d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:14,name:\"Vector\",svg:'<svg width=\"14\" height=\"26\" viewBox=\"0 0 14 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0959 25.851H11.7123V4.42765L8.69136 1.38364H0.850739V0H9.26788L13.0959 3.85113V25.851Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19qou1c\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"27\" viewBox=\"0 0 13 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.2452 26.1194H3.85113L0 22.2683V0.245361H1.38364V21.6918L4.40458 24.7358H12.2452V26.1194Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ib3n3k\",\"data-framer-name\":\"Frame 192\",name:\"Frame 192\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Michael Ajah\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(170, 170, 170)\"},children:\" on\"})]})}),className:\"framer-v9ph35\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay-Medium\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(170, 170, 170)\"},children:\"Content\"})}),className:\"framer-1rhq1vn\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay-Medium\"],name:\"Main heading\",text:textContent,verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xlxksa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e2ttkq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1atdqgm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-84u18k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9zarfx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sc82ta-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"YatkXRiP6\",isMixedBorderRadius:false,layoutId:\"YatkXRiP6\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(cgZzQyIAQ),posterEnabled:true,srcType:\"URL\",srcUrl:z1JDUqvkp,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o7r9fg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17ku6re\",\"data-framer-name\":\"Video-tr\",layout:\"position\",name:\"Video-tr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 27\"><path d=\"M 0 0 L 26.809 26.987 L 31.278 26.987 L 4.448 0 Z M 10.536 0 L 37.366 26.987 L 41.814 26.987 L 14.984 0 Z M 21.071 0 L 47.901 26.987 L 52.349 26.987 L 25.519 0 Z M 31.608 0 L 58.438 26.987 L 62.885 26.987 L 36.076 0 L 31.607 0 Z M 42.162 0 L 68.992 26.987 L 73.44 26.987 L 46.61 0 Z M 52.698 0 L 79.528 26.987 L 83.975 26.987 L 57.145 0 Z M 63.232 0 L 90.062 26.987 L 94.51 26.987 L 67.701 0 Z M 73.788 0 L 100.598 26.987 L 105.066 26.987 L 78.236 0 Z M 84.325 0 L 111.155 26.987 L 115.603 26.987 L 88.773 0 Z\" fill=\"rgb(64,64,64)\"></path></svg>',svgContentId:11416813575,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xhxy08\",\"data-framer-name\":\"Avatar-str2\",fill:\"black\",intrinsicHeight:229,intrinsicWidth:380,name:\"Avatar-str2\",svg:'<svg width=\"380\" height=\"229\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m285.818 30.623.292.293h92.743v187.56l-8.878 8.877H71.857L27.654 183.15V99.436l-.293-.293-26.36-26.36.074-47.165L25.692 1h230.503l29.623 29.623Z\" stroke=\"#363636\" stroke-width=\"2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vondsq\",\"data-framer-name\":\"Video-bl\",fill:\"black\",intrinsicHeight:67,intrinsicWidth:67,name:\"Video-bl\",svg:'<svg width=\"67\" height=\"67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m0 0 66.835 66.835H0V0Z\" fill=\"#383838\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stbqxo\",children:[isDisplayed1(visible)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS01MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Important Links\"})}),className:cx(\"framer-erny6k\",!visible&&\"hidden-7j8yys\"),\"data-framer-name\":\"Main heading\",fonts:[\"GF;Inter Display-500\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmq7j1\",\"data-framer-name\":\"Frame 201\",name:\"Frame 201\",children:[isDisplayed1(visible1)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:ZIxDSguCc,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{y:576.5999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-78uxr5-container\",!visible1&&\"hidden-7j8yys\"),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{J3vSWmnLH:resolvedLinks[0]}},children:/*#__PURE__*/_jsx(CardsMain,{D9rDT9f16:toResponsiveImage(hz92CrjYe),height:\"100%\",id:\"Yeb3bHBnR\",layoutId:\"Yeb3bHBnR\",nmYnjHgB_:xqDbaOfNk,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),isDisplayed1(visible2)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Ydd7MB4K2,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{y:655.5999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-sbokfa-container\",!visible2&&\"hidden-7j8yys\"),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{J3vSWmnLH:resolvedLinks1[0]}},children:/*#__PURE__*/_jsx(CardsMain,{D9rDT9f16:toResponsiveImage(k8jMFbHs6),height:\"100%\",id:\"URYf5Vw3z\",layoutId:\"URYf5Vw3z\",nmYnjHgB_:j63Fz0z8R,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),isDisplayed1(visible3)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-7lyx0p\",!visible3&&\"hidden-7j8yys\"),\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 90, 145)\"},children:[\"*\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})]})}),className:\"framer-da1wb3\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The early preview has missing functionality as it is still in development and may be buggy\"})}),className:\"framer-150nymr\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay\"],name:\"Main heading\",text:oawa5BuKk,verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bs6kax\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{y:-.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-f8d7tb-container\",\"data-framer-appear-id\":\"f8d7tb\",id:elementId1,initial:animation1,layoutScroll:true,optimized:true,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{style:{width:\"100%\"},variant:\"d6BnUzp6S\"},x4nI2ghpI:{variant:\"LYTMmsHFI\"}},children:/*#__PURE__*/_jsx(Nav,{CMR515jwh:\"https://github.com/luigiajah\",height:\"100%\",id:\"IKUmFUtFu\",layoutId:\"IKUmFUtFu\",LPMOkmSYS:\"https://youtube.com/michaelajah\",MJnrBKZz2:\"https://x.com/dnaijatechguy\",style:{height:\"100%\",width:\"100%\"},variant:\"jmCtbsl3j\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15v442h\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qy1uo7 hidden-186p1o9 hidden-1aumcrb hidden-7j8yys\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lo984r-container hidden-186p1o9\",children:/*#__PURE__*/_jsx(DismissOnceBanner,{bannerId:\"5\",chevron:{color:\"rgb(255, 255, 255)\",show:false,size:24},closeButton:{bottomPadding:4,color:\"rgb(26, 25, 38)\",hoverColor:\"rgb(255, 255, 255)\",size:24},colors:{background:\"rgb(80, 80, 148)\",hoverBackground:\"rgb(76, 69, 176)\"},height:\"100%\",id:\"LdtSwg2Gz\",layout:{height:48,horizontalAlignment:\"center\",horizontalPadding:20},layoutId:\"LdtSwg2Gz\",link:{openInNewTab:false},style:{width:\"100%\"},text:{color:\"rgb(255, 255, 255)\",content:\"An extended version of this project would be live in a few weeks.\",font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-80c5qo hidden-1cf7a2i hidden-7j8yys\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3hpwk1-container\",children:/*#__PURE__*/_jsx(DismissOnceBanner,{bannerId:\"5\",chevron:{color:\"rgb(255, 255, 255)\",show:false,size:24},closeButton:{bottomPadding:4,color:\"rgb(26, 25, 38)\",hoverColor:\"rgb(255, 255, 255)\",size:24},colors:{background:\"rgb(80, 80, 148)\",hoverBackground:\"rgb(76, 69, 176)\"},height:\"100%\",id:\"x3CpqIzTH\",layout:{height:48,horizontalAlignment:\"center\",horizontalPadding:20},layoutId:\"x3CpqIzTH\",link:{openInNewTab:false},style:{width:\"100%\"},text:{color:\"rgb(255, 255, 255)\",content:\"An extended version of this project would be live in a few weeks.\",font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"}},width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u168pt hidden-7j8yys\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1f7gmmc\",\"data-styles-preset\":\"B0MKyKkOg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Director AI\"})}),className:\"framer-b97z8b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:MyTuzRUiz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vh45yi\",\"data-styles-preset\":\"ayKqaVTO3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(193, 193, 193)\"},children:\"Dec 28, 2024\"})}),className:\"framer-dvdzn4\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:POunCStQc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8xhjl\",\"data-framer-name\":\"Frame 190\",name:\"Frame 190\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cn44hy\",\"data-framer-name\":\"Frame 193\",name:\"Frame 193\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g65l4b\",\"data-framer-name\":\"Group 33\",name:\"Group 33\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(586.4808532714844),src:\"https://framerusercontent.com/images/Pay0w1QlYXnTCw3dMrTIpF0JYPc.jpg\"},className:\"framer-1viwcbi\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fdt2aa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.06033 12.6576H0.850739V12.1964H8.87584L12.1735 8.87569V0.850586H12.6347V9.08324L9.06033 12.6576Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1osvq3i\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.922746 12.2449H0.461533V4.03534L4.03593 0.460938H12.2455V0.92215H4.22042L0.922746 4.21983V12.2449Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vpdm54\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:14,name:\"Vector\",svg:'<svg width=\"14\" height=\"26\" viewBox=\"0 0 14 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0959 25.851H11.7123V4.42765L8.69136 1.38364H0.850739V0H9.26788L13.0959 3.85113V25.851Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s2gbu9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"27\" viewBox=\"0 0 13 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.2452 26.1194H3.85113L0 22.2683V0.245361H1.38364V21.6918L4.40458 24.7358H12.2452V26.1194Z\" fill=\"#FAFAFA\" fill-opacity=\"0.19\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bgz9h2\",\"data-framer-name\":\"Frame 192\",name:\"Frame 192\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Michael Ajah\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(170, 170, 170)\"},children:\" on\"})]})}),className:\"framer-74if7g\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay-Medium\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(170, 170, 170)\"},children:\"Content\"})}),className:\"framer-1vmv7sf\",\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay-Medium\"],name:\"Main heading\",text:textContent,verticalAlignment:\"center\",withExternalLayout:true})]})]})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{adHa8CqUZ:adHa8CqUZPFtO6r1dz},webPageId:\"xmuHvIM82\"},implicitPathVariables:undefined},{href:{pathVariables:{adHa8CqUZ:adHa8CqUZPFtO6r1dz},webPageId:\"xmuHvIM82\"},implicitPathVariables:undefined},{href:{pathVariables:{adHa8CqUZ:adHa8CqUZPFtO6r1dz},webPageId:\"xmuHvIM82\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"737px\",y:648.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tn6nww-container hidden-7j8yys\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{FLo5DcegU:resolvedLinks2[2]},x4nI2ghpI:{FLo5DcegU:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(VideoContainer,{FLo5DcegU:resolvedLinks2[0],height:\"100%\",id:\"xaDBcShVG\",IiEZVH54B:toResponsiveImage(cgZzQyIAQ),k5NgJ5quV:z1JDUqvkp,layoutId:\"xaDBcShVG\",style:{height:\"100%\",width:\"100%\"},variant:\"vclhnPsBY\",width:\"100%\",YGgqaFiiy:xBLeQH92A})})})})}),isDisplayed5(visible)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-1sxa0qb\",\"hidden-7j8yys\",!visible&&\"hidden-186p1o9\"),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Important Links\"})}),fonts:[\"FR;InterDisplay-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS01MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Important Links\"})}),className:\"framer-1som7i1\",\"data-framer-name\":\"Main heading\",fonts:[\"GF;Inter Display-500\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed6(visible)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-pgcqvp\",!visible&&\"hidden-1cf7a2i\"),\"data-framer-name\":\"Frame 201\",name:\"Frame 201\",children:[visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:ZIxDSguCc,implicitPathVariables:undefined},{href:ZIxDSguCc,implicitPathVariables:undefined},{href:ZIxDSguCc,implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{y:1126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"max((min(700px, 100vw) - 36px) / 0, 1px)\",y:1084,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g0ep83-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{J3vSWmnLH:resolvedLinks3[2]},x4nI2ghpI:{J3vSWmnLH:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(CardsMain,{D9rDT9f16:toResponsiveImage(hz92CrjYe),height:\"100%\",id:\"gvKkXGAQ3\",J3vSWmnLH:resolvedLinks3[0],layoutId:\"gvKkXGAQ3\",nmYnjHgB_:xqDbaOfNk,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),visible4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Ydd7MB4K2,implicitPathVariables:undefined},{href:Ydd7MB4K2,implicitPathVariables:undefined},{href:Ydd7MB4K2,implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{y:1126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"max((min(700px, 100vw) - 36px) / 0, 1px)\",y:1084,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p543oe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sq3tw7kHo:{J3vSWmnLH:resolvedLinks4[2]},x4nI2ghpI:{J3vSWmnLH:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(CardsMain,{D9rDT9f16:toResponsiveImage(k8jMFbHs6),height:\"100%\",id:\"wZKUY7Dak\",J3vSWmnLH:resolvedLinks4[0],layoutId:\"wZKUY7Dak\",nmYnjHgB_:j63Fz0z8R,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d45zgc\",\"data-border\":true,children:[isDisplayed6(visible3)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 90, 145)\"},children:[\"*\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})]})}),className:cx(\"framer-1s5qmz3\",!visible3&&\"hidden-1cf7a2i\"),\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay\"],name:\"Main heading\",verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed6(visible3)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The early preview has missing functionality as it is still in development and may be buggy\"})}),className:cx(\"framer-12tjsm8\",!visible3&&\"hidden-1cf7a2i\"),\"data-framer-name\":\"Main heading\",fonts:[\"FR;InterDisplay\"],name:\"Main heading\",text:oawa5BuKk,verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"DuZnD4TDM\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"md1aHmPhs\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"Ev9ShDvuH\"]},children:/*#__PURE__*/_jsx(RichTextCMSContentImageLightboxWithSmoothTransition,{__fromCanvasComponent:true,children:c1p05WfbR,className:\"framer-1rdic05\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-dp8ems\",code:\"framer-styles-preset-1pb93n6\",h1:\"framer-styles-preset-1f7gmmc\",h2:\"framer-styles-preset-15o8n9y\",h3:\"framer-styles-preset-13srdvr\",h4:\"framer-styles-preset-1wlkf36\",h5:\"framer-styles-preset-gj1mk2\",h6:\"framer-styles-preset-9trjuv\",img:\"framer-styles-preset-809d7g\",p:\"framer-styles-preset-vh45yi\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ts30a\",children:[visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vh45yi\",\"data-styles-preset\":\"ayKqaVTO3\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{adHa8CqUZ:previousItemId_adHa8CqUZ},webPageId:\"xmuHvIM82\"},nodeId:\"S35Z5wc4X\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-dp8ems\",\"data-styles-preset\":\"Vhgx1Lvqw\",children:\"\u2039 \"})})})}),className:\"framer-dy1w73\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],name:\"Previous\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lid15p\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),visible6&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vh45yi\",\"data-styles-preset\":\"ayKqaVTO3\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{adHa8CqUZ:nextItemId_adHa8CqUZ},webPageId:\"xmuHvIM82\"},nodeId:\"bLM7u6yev\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-dp8ems\",\"data-styles-preset\":\"Vhgx1Lvqw\",children:\" \u203A\"})})})}),className:\"framer-1tkk0t8\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],name:\"Next\",text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{width:\"calc(100vw - 16px)\",y:886.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:\"calc(100vw - 40px)\",y:1536.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jd6rbd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eIzAOxuLp:{style:{width:\"100%\"},variant:\"ue1mLKHwD\"},sq3tw7kHo:{variant:\"xkFefqBCz\"},x4nI2ghpI:{style:{width:\"100%\"},variant:\"ue1mLKHwD\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"OsvFVO029\",layoutId:\"OsvFVO029\",style:{height:\"100%\",width:\"100%\"},variant:\"eGHnlYsGs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Qkg0v { background: var(--token-e344c64d-c0a1-4250-8b63-c5b77a516c69, rgb(25, 25, 25)) /* {\"name\":\"bg-page\"} */; }`,\".framer-Qkg0v.framer-l5q4q1, .framer-Qkg0v .framer-l5q4q1 { display: block; }\",\".framer-Qkg0v.framer-186p1o9 { align-content: center; align-items: center; background-color: var(--token-e344c64d-c0a1-4250-8b63-c5b77a516c69, #191919); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 140px 20px 30px 20px; position: relative; width: 1200px; }\",\".framer-Qkg0v .framer-1pn5cqm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-jaf2nx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-z3gvnb { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 8px 0px; position: relative; width: auto; }\",\".framer-Qkg0v .framer-t8wy6f, .framer-Qkg0v .framer-b97z8b, .framer-Qkg0v .framer-dvdzn4 { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qkg0v .framer-31r9zp { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Qkg0v .framer-7jwstp { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 66px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-Qkg0v .framer-1aoexmn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 4px 0px 0px; position: relative; width: 1px; }\",\".framer-Qkg0v .framer-c6svbm, .framer-Qkg0v .framer-1g65l4b { flex: none; height: 38px; overflow: visible; position: relative; width: 38px; }\",\".framer-Qkg0v .framer-19onh9o, .framer-Qkg0v .framer-1viwcbi { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 31px; left: 4px; overflow: hidden; position: absolute; top: 3px; width: 29px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qkg0v .framer-iiel25, .framer-Qkg0v .framer-fdt2aa { bottom: 1px; flex: none; left: 25px; position: absolute; right: 1px; top: 25px; }\",\".framer-Qkg0v .framer-fbteh6, .framer-Qkg0v .framer-1osvq3i { bottom: 26px; flex: none; left: 0px; position: absolute; right: 26px; top: 0px; }\",\".framer-Qkg0v .framer-1ttmu1d, .framer-Qkg0v .framer-vpdm54 { bottom: 12px; flex: none; left: 25px; position: absolute; right: 1px; top: 0px; }\",\".framer-Qkg0v .framer-19qou1c, .framer-Qkg0v .framer-s2gbu9 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 26px; top: 12px; }\",\".framer-Qkg0v .framer-ib3n3k, .framer-Qkg0v .framer-1bgz9h2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-v9ph35, .framer-Qkg0v .framer-erny6k, .framer-Qkg0v .framer-da1wb3, .framer-Qkg0v .framer-74if7g, .framer-Qkg0v .framer-1som7i1, .framer-Qkg0v .framer-1s5qmz3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qkg0v .framer-1rhq1vn, .framer-Qkg0v .framer-1vmv7sf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 128px; word-break: break-word; word-wrap: break-word; }\",\".framer-Qkg0v .framer-1xlxksa { 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: min-content; z-index: 1; }\",\".framer-Qkg0v .framer-1e2ttkq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-1atdqgm { flex: none; height: 225px; overflow: visible; position: relative; width: 372px; }\",\".framer-Qkg0v .framer-84u18k { -webkit-mask: url('https://framerusercontent.com/images/BWol7CylpKpypZivsyvlhdtD7o.svg') alpha no-repeat center / cover add; background-color: #ffffff; flex: none; height: 222px; left: calc(50.00000000000002% - 368px / 2); mask: url('https://framerusercontent.com/images/BWol7CylpKpypZivsyvlhdtD7o.svg') alpha no-repeat center / cover add; overflow: hidden; position: absolute; top: 0px; width: 368px; }\",\".framer-Qkg0v .framer-9zarfx { background-color: #ffffff; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-Qkg0v .framer-1sc82ta-container { bottom: -13px; flex: none; left: 0px; position: absolute; right: -21px; top: -1px; }\",\".framer-Qkg0v .framer-1o7r9fg { flex: none; height: 27px; left: 258px; overflow: visible; position: absolute; top: 0px; width: 94px; }\",\".framer-Qkg0v .framer-17ku6re { flex: none; height: 27px; left: calc(61.702127659574494% - 116px / 2); position: absolute; top: calc(48.14814814814817% - 27px / 2); width: 116px; }\",\".framer-Qkg0v .framer-xhxy08 { aspect-ratio: 1.6593886462882097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 224px); left: -1px; position: absolute; top: -1px; width: 372px; }\",\".framer-Qkg0v .framer-1vondsq { aspect-ratio: 1 / 1; bottom: 5px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 26px; position: absolute; width: 28px; }\",\".framer-Qkg0v .framer-stbqxo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-Qkg0v .framer-mmq7j1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qkg0v .framer-78uxr5-container, .framer-Qkg0v .framer-sbokfa-container { flex: none; height: 67px; position: relative; width: 100%; }\",\".framer-Qkg0v .framer-7lyx0p, .framer-Qkg0v .framer-1d45zgc { --border-bottom-width: 1px; --border-color: #313131; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Qkg0v .framer-150nymr, .framer-Qkg0v .framer-12tjsm8 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Qkg0v .framer-bs6kax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 103px; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-Qkg0v .framer-f8d7tb-container { flex: none; height: 103px; left: calc(50.00000000000002% - 100% / 2); position: relative; top: calc(49.51456310679614% - 103px / 2); width: 100%; z-index: 1; }\",\".framer-Qkg0v .framer-15v442h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 700px; }\",\".framer-Qkg0v .framer-1qy1uo7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 48px; min-width: 700px; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-lo984r-container, .framer-Qkg0v .framer-3hpwk1-container { flex: none; height: auto; position: relative; width: 1400px; }\",\".framer-Qkg0v .framer-80c5qo { 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 0px 8px 0px; position: relative; width: min-content; }\",\".framer-Qkg0v .framer-1u168pt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 600px; }\",\".framer-Qkg0v .framer-l8xhjl { align-content: center; align-items: center; background-color: #212121; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qkg0v .framer-cn44hy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 1px; }\",\".framer-Qkg0v .framer-tn6nww-container { flex: none; height: 450px; position: relative; width: 737px; }\",\".framer-Qkg0v .framer-1sxa0qb { 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 0px 0px 48px; position: relative; width: 100%; }\",\".framer-Qkg0v .framer-pgcqvp { align-content: center; align-items: center; 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-Qkg0v .framer-1g0ep83-container, .framer-Qkg0v .framer-p543oe-container { flex: 1 0 0px; height: 67px; position: relative; width: 1px; }\",\".framer-Qkg0v .framer-1rdic05 { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qkg0v .framer-5ts30a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; padding: 0px; position: relative; width: 100%; }\",\".framer-Qkg0v .framer-dy1w73, .framer-Qkg0v .framer-1tkk0t8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qkg0v .framer-1lid15p { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Qkg0v .framer-1jd6rbd-container { flex: none; height: 385px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Qkg0v.framer-186p1o9, .framer-Qkg0v .framer-1pn5cqm, .framer-Qkg0v .framer-jaf2nx, .framer-Qkg0v .framer-z3gvnb, .framer-Qkg0v .framer-7jwstp, .framer-Qkg0v .framer-1aoexmn, .framer-Qkg0v .framer-ib3n3k, .framer-Qkg0v .framer-1xlxksa, .framer-Qkg0v .framer-1e2ttkq, .framer-Qkg0v .framer-stbqxo, .framer-Qkg0v .framer-mmq7j1, .framer-Qkg0v .framer-7lyx0p, .framer-Qkg0v .framer-bs6kax, .framer-Qkg0v .framer-15v442h, .framer-Qkg0v .framer-1qy1uo7, .framer-Qkg0v .framer-80c5qo, .framer-Qkg0v .framer-1u168pt, .framer-Qkg0v .framer-l8xhjl, .framer-Qkg0v .framer-cn44hy, .framer-Qkg0v .framer-1bgz9h2, .framer-Qkg0v .framer-1sxa0qb, .framer-Qkg0v .framer-pgcqvp, .framer-Qkg0v .framer-1d45zgc, .framer-Qkg0v .framer-5ts30a { gap: 0px; } .framer-Qkg0v.framer-186p1o9 > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-Qkg0v.framer-186p1o9 > :first-child, .framer-Qkg0v .framer-1pn5cqm > :first-child, .framer-Qkg0v .framer-z3gvnb > :first-child, .framer-Qkg0v .framer-1e2ttkq > :first-child, .framer-Qkg0v .framer-stbqxo > :first-child, .framer-Qkg0v .framer-mmq7j1 > :first-child, .framer-Qkg0v .framer-15v442h > :first-child, .framer-Qkg0v .framer-1u168pt > :first-child, .framer-Qkg0v .framer-1sxa0qb > :first-child { margin-top: 0px; } .framer-Qkg0v.framer-186p1o9 > :last-child, .framer-Qkg0v .framer-1pn5cqm > :last-child, .framer-Qkg0v .framer-z3gvnb > :last-child, .framer-Qkg0v .framer-1e2ttkq > :last-child, .framer-Qkg0v .framer-stbqxo > :last-child, .framer-Qkg0v .framer-mmq7j1 > :last-child, .framer-Qkg0v .framer-15v442h > :last-child, .framer-Qkg0v .framer-1u168pt > :last-child, .framer-Qkg0v .framer-1sxa0qb > :last-child { margin-bottom: 0px; } .framer-Qkg0v .framer-1pn5cqm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Qkg0v .framer-jaf2nx > *, .framer-Qkg0v .framer-1xlxksa > *, .framer-Qkg0v .framer-7lyx0p > *, .framer-Qkg0v .framer-bs6kax > *, .framer-Qkg0v .framer-1qy1uo7 > *, .framer-Qkg0v .framer-80c5qo > *, .framer-Qkg0v .framer-cn44hy > *, .framer-Qkg0v .framer-1d45zgc > *, .framer-Qkg0v .framer-5ts30a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qkg0v .framer-jaf2nx > :first-child, .framer-Qkg0v .framer-7jwstp > :first-child, .framer-Qkg0v .framer-1aoexmn > :first-child, .framer-Qkg0v .framer-ib3n3k > :first-child, .framer-Qkg0v .framer-1xlxksa > :first-child, .framer-Qkg0v .framer-7lyx0p > :first-child, .framer-Qkg0v .framer-bs6kax > :first-child, .framer-Qkg0v .framer-1qy1uo7 > :first-child, .framer-Qkg0v .framer-80c5qo > :first-child, .framer-Qkg0v .framer-l8xhjl > :first-child, .framer-Qkg0v .framer-cn44hy > :first-child, .framer-Qkg0v .framer-1bgz9h2 > :first-child, .framer-Qkg0v .framer-pgcqvp > :first-child, .framer-Qkg0v .framer-1d45zgc > :first-child, .framer-Qkg0v .framer-5ts30a > :first-child { margin-left: 0px; } .framer-Qkg0v .framer-jaf2nx > :last-child, .framer-Qkg0v .framer-7jwstp > :last-child, .framer-Qkg0v .framer-1aoexmn > :last-child, .framer-Qkg0v .framer-ib3n3k > :last-child, .framer-Qkg0v .framer-1xlxksa > :last-child, .framer-Qkg0v .framer-7lyx0p > :last-child, .framer-Qkg0v .framer-bs6kax > :last-child, .framer-Qkg0v .framer-1qy1uo7 > :last-child, .framer-Qkg0v .framer-80c5qo > :last-child, .framer-Qkg0v .framer-l8xhjl > :last-child, .framer-Qkg0v .framer-cn44hy > :last-child, .framer-Qkg0v .framer-1bgz9h2 > :last-child, .framer-Qkg0v .framer-pgcqvp > :last-child, .framer-Qkg0v .framer-1d45zgc > :last-child, .framer-Qkg0v .framer-5ts30a > :last-child { margin-right: 0px; } .framer-Qkg0v .framer-z3gvnb > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Qkg0v .framer-7jwstp > *, .framer-Qkg0v .framer-l8xhjl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Qkg0v .framer-1aoexmn > *, .framer-Qkg0v .framer-ib3n3k > *, .framer-Qkg0v .framer-1bgz9h2 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Qkg0v .framer-1e2ttkq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Qkg0v .framer-stbqxo > *, .framer-Qkg0v .framer-1sxa0qb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qkg0v .framer-mmq7j1 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Qkg0v .framer-15v442h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qkg0v .framer-1u168pt > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Qkg0v .framer-pgcqvp > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-Qkg0v[data-border=\"true\"]::after, .framer-Qkg0v [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) { .${metadata.bodyClassName}-framer-Qkg0v { background: var(--token-e344c64d-c0a1-4250-8b63-c5b77a516c69, rgb(25, 25, 25)) /* {\"name\":\"bg-page\"} */; } .framer-Qkg0v.framer-186p1o9 { width: 810px; } .framer-Qkg0v .framer-bs6kax, .framer-Qkg0v .framer-tn6nww-container { order: 2; } .framer-Qkg0v .framer-15v442h, .framer-Qkg0v .framer-80c5qo { order: 0; } .framer-Qkg0v .framer-1u168pt, .framer-Qkg0v .framer-1som7i1 { order: 1; } .framer-Qkg0v .framer-1sxa0qb { order: 4; } .framer-Qkg0v .framer-1rdic05 { order: 5; } .framer-Qkg0v .framer-1jd6rbd-container { height: auto; order: 3; }}`,`@media (min-width: 1440px) { .${metadata.bodyClassName}-framer-Qkg0v { background: var(--token-e344c64d-c0a1-4250-8b63-c5b77a516c69, rgb(25, 25, 25)) /* {\"name\":\"bg-page\"} */; } .framer-Qkg0v.framer-186p1o9 { padding: 140px 20px 0px 20px; width: 1440px; } .framer-Qkg0v .framer-bs6kax { order: 1; } .framer-Qkg0v .framer-15v442h { order: 2; } .framer-Qkg0v .framer-1qy1uo7 { min-height: unset; min-width: unset; } .framer-Qkg0v .framer-1d45zgc { min-height: 45px; } .framer-Qkg0v .framer-1jd6rbd-container { order: 3; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Qkg0v { background: var(--token-e344c64d-c0a1-4250-8b63-c5b77a516c69, rgb(25, 25, 25)) /* {\"name\":\"bg-page\"} */; } .framer-Qkg0v.framer-186p1o9 { gap: 24px; padding: 140px 8px 30px 8px; width: 390px; } .framer-Qkg0v .framer-bs6kax { flex-direction: column; overflow: visible; } .framer-Qkg0v .framer-f8d7tb-container { height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); } .framer-Qkg0v .framer-15v442h { padding: 16px 24px 32px 24px; } .framer-Qkg0v .framer-1rdic05 { order: 0; width: auto; } .framer-Qkg0v .framer-1jd6rbd-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Qkg0v.framer-186p1o9, .framer-Qkg0v .framer-bs6kax { gap: 0px; } .framer-Qkg0v.framer-186p1o9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Qkg0v.framer-186p1o9 > :first-child, .framer-Qkg0v .framer-bs6kax > :first-child { margin-top: 0px; } .framer-Qkg0v.framer-186p1o9 > :last-child, .framer-Qkg0v .framer-bs6kax > :last-child { margin-bottom: 0px; } .framer-Qkg0v .framer-bs6kax > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4504\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x4nI2ghpI\":{\"layout\":[\"fixed\",\"auto\"]},\"sq3tw7kHo\":{\"layout\":[\"fixed\",\"auto\"]},\"eIzAOxuLp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerxmuHvIM82=withCSS(Component,css,\"framer-Qkg0v\");export default FramerxmuHvIM82;FramerxmuHvIM82.displayName=\"Articles Detail\";FramerxmuHvIM82.defaultProps={height:4504,width:1200};addFonts(FramerxmuHvIM82,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"}]},...VideoFonts,...CardsMainFonts,...NavFonts,...DismissOnceBannerFonts,...VideoContainerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"Ev9ShDvuH\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"Ev9ShDvuH\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"md1aHmPhs\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"md1aHmPhs\"]):[],...((_componentPresets_fonts4=componentPresets.fonts)===null||_componentPresets_fonts4===void 0?void 0:_componentPresets_fonts4[\"DuZnD4TDM\"])?getFontsFromComponentPreset((_componentPresets_fonts5=componentPresets.fonts)===null||_componentPresets_fonts5===void 0?void 0:_componentPresets_fonts5[\"DuZnD4TDM\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxmuHvIM82\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4504\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x4nI2ghpI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sq3tw7kHo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eIzAOxuLp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DismissOnceBanner", "props", "isVisible", "setIsVisible", "ye", "isHovered", "setIsHovered", "isCloseHovered", "setIsCloseHovered", "isCanvas", "RenderTarget", "bannerId", "ue", "handleDismiss", "handleClick", "window", "u", "p", "e", "addPropertyControls", "ControlType", "CMSContentImageLightboxWithSmoothTransition", "Component", "props", "lightboxDisplay", "setLightboxDisplay", "ye", "selectedImage", "setSelectedImage", "opacity", "setOpacity", "handleImageClick", "src", "ue", "closeLightbox", "u", "l", "p", "e", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "_componentPresets_fonts4", "_componentPresets_fonts5", "VideoFonts", "getFonts", "Video", "CardsMainFonts", "UazruCh1B_default", "NavFonts", "nW9hdB1Bs_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "DismissOnceBannerFonts", "DismissOnceBanner", "VideoContainerFonts", "cuceVyHqF_default", "RichTextCMSContentImageLightboxWithSmoothTransition", "CMSContentImageLightboxWithSmoothTransition", "RichText2", "FooterFonts", "j3HFFkuSQ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "toImageSrc", "isSet", "toResponsiveImage", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "prefix", "suffix", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "wwM1LJD4x_default", "E6Ylc9tLI_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "_getFromCurrentRouteData12", "style", "className", "layoutId", "variant", "l2YdzXDN4", "MyTuzRUiz", "POunCStQc", "L1Y151M4q", "z1JDUqvkp", "cgZzQyIAQ", "xqDbaOfNk", "ZIxDSguCc", "hz92CrjYe", "Ydd7MB4K2", "k8jMFbHs6", "j63Fz0z8R", "oawa5BuKk", "xBLeQH92A", "adHa8CqUZPFtO6r1dz", "c1p05WfbR", "previousItemId", "previousItemId_adHa8CqUZ", "previousItemId_MyTuzRUiz", "nextItemId", "nextItemId_adHa8CqUZ", "nextItemId_MyTuzRUiz", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "isDisplayed1", "visible1", "router", "useRouter", "visible2", "visible3", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "visible4", "visible5", "textContent1", "visible6", "textContent2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "SVG", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ComponentPresetsProvider", "Link", "css", "FramerxmuHvIM82", "withCSS", "xmuHvIM82_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
