{"version":3,"file":"kKmR8IdaUfq2DD_SOkYJfXH0sujn6RIaHtLkzY1bXhM.Bxeassns.mjs","names":["_Fragment","props","AktoTopbarWhite","Countdown","Phosphor","Button","Button1","FooterDark","props","Events","metadata","className","PropertyOverrides","RichText","Image","_Fragment","CO8vIHLfJcd0Ue_dlj","idcd0Ue_dlj","sXD9FjrSUcd0Ue_dlj","xJhuHAebIcd0Ue_dlj","css"],"sources":["https:/framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js","https:/framerusercontent.com/modules/NTIA3SfOGAlJ2UTvpK7I/38w2HkaVo6afRxmffykF/UCtz6ZMfL.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;const calculateTimeLeft=(difference,digitCount)=>{if(difference>0){return{days:minTwoDigits(Math.floor(difference/(1e3*60*60*24)),digitCount),hours:minTwoDigits(Math.floor(difference/(1e3*60*60)%24),digitCount),minutes:minTwoDigits(Math.floor(difference/1e3/60%60),digitCount),seconds:minTwoDigits(Math.floor(difference/1e3%60),digitCount)};}return{days:0,hours:0,minutes:0,seconds:0};};function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function minTwoDigits(number,digitCount){if(digitCount)return number;else return(number<10?\"0\":\"\")+number;}function wrapInSpan(colorValue,string){return /*#__PURE__*/_jsx(\"span\",{style:{color:colorValue},children:string});}function createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor){// Dots as default labels\nlet days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,space,showHours?wrapInSpan(labelColor,`:`):``]});let hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,space,showMinutes?wrapInSpan(labelColor,`:`):``]}):``;let minutes=showHours&&showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,space,showSeconds?wrapInSpan(labelColor,`:`):``]}):``;let seconds=showHours&&showMinutes&&showSeconds?timeLeft.seconds:``;// Custom labels have different logic\n// Dots you want to hide depending on the next item, but labels you do not\n// For example, 20D 4H is a common notation, but you do not want 20:4:, you want 20:4\nif(!labelType){days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,spaceForLabel,wrapInSpan(labelColor,dayLabel)]});hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,spaceForLabel,wrapInSpan(labelColor,hourLabel)]}):``;minutes=showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,spaceForLabel,wrapInSpan(labelColor,minuteLabel)]}):``;seconds=showSeconds?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.seconds,spaceForLabel,wrapInSpan(labelColor,secondLabel)]}):``;}return /*#__PURE__*/_jsxs(_Fragment,{children:[days,space,hours,space,minutes,space,seconds]});}/**\n * COUNTDOWN\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function CountdownTimer(props){const{date,pickTime,font,color,labelColor,displayProps,onComplete}=props;const{digitCount,labelType,numberSpace,labelSpace,dayLabel,hourLabel,minuteLabel,secondLabel,showHours,showMinutes,showSeconds,tabularFont}=displayProps;const{fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,lineHeight}=font;const[visible,setIsVisible]=useState(false);const difference=+new Date(date).setUTCHours(pickTime)-+new Date;if(difference<=0){onComplete===null||onComplete===void 0?void 0:onComplete();}const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();useEffect(()=>{setIsVisible(true);// Don’t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);const timeLeft=calculateTimeLeft(difference,digitCount);const space=numberSpace?\"\":\" \";const spaceForLabel=labelSpace?\"\":\" \";const emptyString=`00:00:00:00`;const timeString=createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,...font,margin:0,padding:0,visibility:visible?\"visible\":\"hidden\",fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:difference>0?timeString:emptyString});}CountdownTimer.displayName=\"Countdown\";const defaultDate=new Date;defaultDate.setDate(defaultDate.getDate()+2);/* Property Controls */addPropertyControls(CountdownTimer,{date:{type:ControlType.Date,title:\"Date\",defaultValue:defaultDate.toISOString()},pickTime:{type:ControlType.Number,min:0,max:24,defaultValue:0,step:1,displayStepper:true,title:\"UTC\",unit:\":00\"},displayProps:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Dots, Labels\",icon:\"boolean\",controls:{digitCount:{title:\"Digits\",type:ControlType.Boolean,enabledTitle:\"One\",disabledTitle:\"Two\",defaultValue:false},labelType:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Dots\",disabledTitle:\"Custom\",defaultValue:true},numberSpace:{type:ControlType.Boolean,title:\"Number\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:false},labelSpace:{type:ControlType.Boolean,title:\"Label\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:true,hidden:props=>props.labelType},dayLabel:{type:ControlType.String,title:\"Days\",defaultValue:\"D\",placeholder:\"D\",hidden:props=>props.labelType},showHours:{title:\"Hours\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},hourLabel:{type:ControlType.String,title:\" \",defaultValue:\"H\",placeholder:\"H\",hidden:props=>props.labelType||!props.showHours},showMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours},minuteLabel:{type:ControlType.String,title:\" \",defaultValue:\"M\",placeholder:\"M\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours||!props.showMinutes},secondLabel:{type:ControlType.String,title:\" \",defaultValue:\"S\",placeholder:\"S\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes||!props.showSeconds},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true}}},font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#999\"},labelColor:{title:\"Label\",type:ControlType.Color,defaultValue:\"rgba(153,153,153,0.5)\"},onComplete:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map","// Generated by Framer (b78a127)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button1 from\"https://framerusercontent.com/modules/czBuFOJqheLrtgN4mJP2/BzB0Dg15ZdYuSHpv03Fv/VDQGQXUlH.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/cGBHXozmXUtcAABEfMAq/Hubspot.js\";import Countdown from\"https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js\";import AktoTopbarWhite from\"#framer/local/canvasComponent/J_QoL10c5/J_QoL10c5.js\";import FooterDark from\"#framer/local/canvasComponent/ml8yRj9mK/ml8yRj9mK.js\";import Button from\"#framer/local/canvasComponent/VDQGQXUlH/VDQGQXUlH.js\";import Events,{enumToDisplayNameFunctions}from\"#framer/local/collection/Vd_YEz8zY/Vd_YEz8zY.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle13 from\"#framer/local/css/ax0lR7aiv/ax0lR7aiv.js\";import*as sharedStyle7 from\"#framer/local/css/cbqfK0H2g/cbqfK0H2g.js\";import*as sharedStyle6 from\"#framer/local/css/DQsahiLq4/DQsahiLq4.js\";import*as sharedStyle10 from\"#framer/local/css/EkZfiqxaS/EkZfiqxaS.js\";import*as sharedStyle2 from\"#framer/local/css/GLu6bmN_E/GLu6bmN_E.js\";import*as sharedStyle15 from\"#framer/local/css/J_AJBRnoR/J_AJBRnoR.js\";import*as sharedStyle4 from\"#framer/local/css/JU2Bmmg3u/JU2Bmmg3u.js\";import*as sharedStyle11 from\"#framer/local/css/LOVH2Tqn3/LOVH2Tqn3.js\";import*as sharedStyle8 from\"#framer/local/css/mHUZat7ap/mHUZat7ap.js\";import*as sharedStyle5 from\"#framer/local/css/o5l1Gl1RY/o5l1Gl1RY.js\";import*as sharedStyle16 from\"#framer/local/css/OJt7r2jcA/OJt7r2jcA.js\";import*as sharedStyle3 from\"#framer/local/css/P9eATzqql/P9eATzqql.js\";import*as sharedStyle from\"#framer/local/css/QPj5HgT9i/QPj5HgT9i.js\";import*as sharedStyle9 from\"#framer/local/css/rpEjKSjHb/rpEjKSjHb.js\";import*as sharedStyle14 from\"#framer/local/css/TdZa0YiSE/TdZa0YiSE.js\";import*as sharedStyle1 from\"#framer/local/css/vhdFqHUtC/vhdFqHUtC.js\";import*as sharedStyle12 from\"#framer/local/css/ywu7Yv41G/ywu7Yv41G.js\";import metadataProvider from\"#framer/local/webPageMetadata/UCtz6ZMfL/UCtz6ZMfL.js\";const AktoTopbarWhiteFonts=getFonts(AktoTopbarWhite);const CountdownFonts=getFonts(Countdown);const PhosphorFonts=getFonts(Phosphor);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const HubSpotFormFonts=getFonts(HubSpotForm);const Button1Fonts=getFonts(Button1);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={aPqpFA709:\"(min-width: 710px) and (max-width: 1199px)\",eXJ4S8Bbv:\"(max-width: 709px)\",W1pcv5uYH:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XBsU3\";const variantClassNames={aPqpFA709:\"framer-v-1hfjx3u\",eXJ4S8Bbv:\"framer-v-yjqzun\",W1pcv5uYH:\"framer-v-l8t06w\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"W1pcv5uYH\",Phone:\"eXJ4S8Bbv\",Tablet:\"aPqpFA709\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"W1pcv5uYH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"UCtz6ZMfL\",data:Events,type:\"Collection\"},select:[{collection:\"UCtz6ZMfL\",name:\"xJhuHAebI\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"sXD9FjrSU\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"vssM7qNub\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"pvKuvmeWy\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"AMXn811ue\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"uTRd3AV8e\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"O9GKGorJ9\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"GdiBaCLEa\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"S29x2ZEBR\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"Tw80yy09X\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"zb6LDRDFZ\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"FjTxA8dY9\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"PjOG2p5io\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"JLtLaFemD\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"Dq5AhOsHj\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"sQD2LAqmD\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"cTf9XDAES\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"rgYS5jjdx\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"BEry9qnce\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"fuiDIS3IY\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"gvhkI0kGc\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"glcX_yI4z\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"G44qrnHjK\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"v1Jpu_7rz\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"CTkUk2YLE\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"qq0ysGIEx\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"oafIynHO2\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"aDT6F7iJX\",type:\"Identifier\"},{collection:\"UCtz6ZMfL\",name:\"GeiB_14fh\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"UCtz6ZMfL\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,aDT6F7iJX=getFromCurrentRouteData(\"aDT6F7iJX\")??true,vssM7qNub=getFromCurrentRouteData(\"vssM7qNub\"),sXD9FjrSU=getFromCurrentRouteData(\"sXD9FjrSU\")??\"\",pvKuvmeWy=getFromCurrentRouteData(\"pvKuvmeWy\"),GeiB_14fh=getFromCurrentRouteData(\"GeiB_14fh\")??true,xJhuHAebI=getFromCurrentRouteData(\"xJhuHAebI\"),AMXn811ue=getFromCurrentRouteData(\"AMXn811ue\")??\"\",uTRd3AV8e=getFromCurrentRouteData(\"uTRd3AV8e\")??\"\",v1Jpu_7rz=getFromCurrentRouteData(\"v1Jpu_7rz\")??true,CTkUk2YLE=getFromCurrentRouteData(\"CTkUk2YLE\")??true,BEry9qnce=getFromCurrentRouteData(\"BEry9qnce\")??\"\",fuiDIS3IY=getFromCurrentRouteData(\"fuiDIS3IY\")??\"\",GdiBaCLEa=getFromCurrentRouteData(\"GdiBaCLEa\")??true,O9GKGorJ9=getFromCurrentRouteData(\"O9GKGorJ9\")??\"\",zb6LDRDFZ=getFromCurrentRouteData(\"zb6LDRDFZ\"),S29x2ZEBR=getFromCurrentRouteData(\"S29x2ZEBR\")??\"\",Tw80yy09X=getFromCurrentRouteData(\"Tw80yy09X\")??\"\",PjOG2p5io=getFromCurrentRouteData(\"PjOG2p5io\"),FjTxA8dY9=getFromCurrentRouteData(\"FjTxA8dY9\")??\"\",JLtLaFemD=getFromCurrentRouteData(\"JLtLaFemD\")??\"\",Dq5AhOsHj=getFromCurrentRouteData(\"Dq5AhOsHj\")??true,cTf9XDAES=getFromCurrentRouteData(\"cTf9XDAES\"),sQD2LAqmD=getFromCurrentRouteData(\"sQD2LAqmD\")??\"\",rgYS5jjdx=getFromCurrentRouteData(\"rgYS5jjdx\")??\"\",qq0ysGIEx=getFromCurrentRouteData(\"qq0ysGIEx\")??true,oafIynHO2=getFromCurrentRouteData(\"oafIynHO2\")??\"\",CO8vIHLfJcd0Ue_dlj,xJhuHAebIcd0Ue_dlj,sXD9FjrSUcd0Ue_dlj,idcd0Ue_dlj,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=enumToDisplayNameFunctions[\"vssM7qNub\"]?.(vssM7qNub,activeLocale);const visible=equals(vssM7qNub,\"HevJyU4uB\");const isDisplayed=value=>{if(!isBrowser())return true;if(baseVariant===\"eXJ4S8Bbv\")return value;return false;};const router=useRouter();const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"aPqpFA709\")return value;return false;};const visible1=isSet(PjOG2p5io);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"aPqpFA709\",\"eXJ4S8Bbv\"].includes(baseVariant))return false;return true;};const isDisplayed3=value=>{if(!isBrowser())return true;if([\"aPqpFA709\",\"eXJ4S8Bbv\"].includes(baseVariant))return false;return value;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"W1pcv5uYH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bb3a7224-77d5-44fd-b23e-e06fbed0bcd6, rgb(10, 9, 13)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-l8t06w\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ftw86-container\",nodeId:\"NKYqhHZGh\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{variant:\"odAj9JkQP\"},eXJ4S8Bbv:{variant:\"odAj9JkQP\"}},children:/*#__PURE__*/_jsx(AktoTopbarWhite,{height:\"100%\",id:\"NKYqhHZGh\",layoutId:\"NKYqhHZGh\",style:{width:\"100%\"},variant:\"JdJxmqFx6\",width:\"100%\"})})})}),aDT6F7iJX&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n37jqz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17tf760\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb06lc\",\"data-framer-name\":\"Atom/Back Link\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-4967afd1-5e9d-4945-bad4-8a931fe26943, rgb(20, 18, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ky8_PXp6f\"},motionChild:true,nodeId:\"ZD7uf83Vo\",openInNewTab:false,scopeId:\"UCtz6ZMfL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ba8gkf\",\"data-styles-preset\":\"QPj5HgT9i\",children:\"Home\"})})})}),className:\"framer-1rjykkp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-f2d0e0df-536e-47a2-aa39-a5eefbb43289, rgb(173, 171, 178))\"},children:\"/\"})}),className:\"framer-1k1wf09\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-4967afd1-5e9d-4945-bad4-8a931fe26943, rgb(20, 18, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Mbv5Kz8lH\"},motionChild:true,nodeId:\"knqnMRHdt\",openInNewTab:false,scopeId:\"UCtz6ZMfL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ba8gkf\",\"data-styles-preset\":\"QPj5HgT9i\",children:\"Events\"})})})}),className:\"framer-1ch6b1z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-f2d0e0df-536e-47a2-aa39-a5eefbb43289, rgb(173, 171, 178))\"},children:\"/\"})}),className:\"framer-1adi90j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(230, 68, 79)\"},children:\"Content\"})}),className:\"framer-1t5r0mt\",fonts:[\"Inter-Medium\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1f5nixm\",\"data-styles-preset\":\"vhdFqHUtC\",style:{\"--framer-text-alignment\":\"center\"},children:\"Top 5 API CVEs from 2023 - A Deep Dive with Joylynn, Senior Security Advocate at Microsoft\"})}),className:\"framer-1dlaogj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:sXD9FjrSU,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4dqnjx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zlQGp3Rct\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(Countdown,{color:\"rgb(153, 153, 153)\",date:pvKuvmeWy,displayProps:{dayLabel:\"D\",digitCount:false,hourLabel:\"H\",labelSpace:false,labelType:false,minuteLabel:\"M\",numberSpace:false,secondLabel:\"S\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"33px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"zlQGp3Rct\",labelColor:\"rgba(153, 153, 153, 0.5)\",layoutId:\"zlQGp3Rct\",pickTime:17,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-smfnla\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qfeozb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2r3jo\",children:[GeiB_14fh&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oattko\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qm1p5f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-862fcy\",\"data-framer-name\":\"Atom/Back Link\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-4967afd1-5e9d-4945-bad4-8a931fe26943, rgb(20, 18, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nTglLJp_M\"},motionChild:true,nodeId:\"ZT_wS0gDb\",openInNewTab:false,scopeId:\"UCtz6ZMfL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ba8gkf\",\"data-styles-preset\":\"QPj5HgT9i\",children:\"Home\"})})})}),className:\"framer-1p4amja\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-f2d0e0df-536e-47a2-aa39-a5eefbb43289, rgb(173, 171, 178))\"},children:\"/\"})}),className:\"framer-n5vhd6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-4967afd1-5e9d-4945-bad4-8a931fe26943, rgb(20, 18, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Mbv5Kz8lH\"},motionChild:true,nodeId:\"yzfDOxaiZ\",openInNewTab:false,scopeId:\"UCtz6ZMfL\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ba8gkf\",\"data-styles-preset\":\"QPj5HgT9i\",children:\"Events\"})})})}),className:\"framer-15ojfmg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vczrpn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"} - 124px, 1200px)`,...toResponsiveImage(xJhuHAebI)}},eXJ4S8Bbv:{background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,...toResponsiveImage(xJhuHAebI)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1200px) - 460px, 1px)`,...toResponsiveImage(xJhuHAebI)},className:\"framer-1u0o3cr\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19s1bs2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-610sg0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6jy0u0\",\"data-styles-preset\":\"GLu6bmN_E\",style:{\"--framer-text-color\":\"var(--token-7043b717-a07a-4298-b670-7eebca77576b, rgb(123, 63, 228))\"},children:\"In-person\"})}),className:\"framer-1wxygkv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15c3ukg\",\"data-styles-preset\":\"P9eATzqql\",children:\"Meet Akto Team at OWASP Global AppSec 2024 in SF\"})}),className:\"framer-1c1997x\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:sXD9FjrSU,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8uqc9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jd6dis-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lf7DN0MDQ\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f6d99381-f3d2-4603-a0f6-a21b135b89f3, rgb(83, 46, 146))\",height:\"100%\",iconSearch:\"Marker\",iconSelection:\"Calendar\",id:\"lf7DN0MDQ\",layoutId:\"lf7DN0MDQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6jy0u0\",\"data-styles-preset\":\"GLu6bmN_E\",children:\"Sep 23-27, 2024\"})}),className:\"framer-1im1eck\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:AMXn811ue,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjs6w7\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"s3IyfBhIY\"],\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\":componentPresets.props[\"NRuvpw3R2\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uTRd3AV8e,className:\"framer-9pl8rn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-3udq1\",blockquote:\"framer-styles-preset-1mny189\",code:\"framer-styles-preset-1xr20qp\",h1:\"framer-styles-preset-4mrhdw\",h2:\"framer-styles-preset-15c3ukg\",h3:\"framer-styles-preset-eh69ih\",h4:\"framer-styles-preset-1241nrf\",h5:\"framer-styles-preset-15ddrhn\",h6:\"framer-styles-preset-8avhp0\",img:\"framer-styles-preset-1stf3r9\",p:\"framer-styles-preset-6jy0u0\",table:\"framer-styles-preset-1unghx9\"},verticalAlignment:\"top\",withExternalLayout:true})}),v1Jpu_7rz&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bfz8is-container\",isModuleExternal:true,nodeId:\"Krq9rGvu2\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"Krq9rGvu2\",isMixedBorderRadius:false,layoutId:\"Krq9rGvu2\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/J92UBwqizyHplWJ7iKSEkk3CxU.mp4\",srcType:\"Upload\",srcUrl:\"https://www.veed.io/view/44693c53-ebfd-4fb3-afd4-00d32de0dd8a?panel=share\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),isDisplayed(CTkUk2YLE)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:fuiDIS3IY,implicitPathVariables:undefined},{href:fuiDIS3IY,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eXJ4S8Bbv:{height:52,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-1uxolu2-container\",\"hidden-l8t06w\",\"hidden-1hfjx3u\",!CTkUk2YLE&&\"hidden-yjqzun\"),nodeId:\"A6louXdNj\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eXJ4S8Bbv:{Rs7_Ftdjq:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{CiJlcia50:true,FK4Qj9i_r:BEry9qnce,height:\"100%\",id:\"A6louXdNj\",IEd5DVRu5:\"woxTvhha1\",layoutId:\"A6louXdNj\",lf0vwXXAG:\"woxTvhha1\",Rs7_Ftdjq:resolvedLinks[0],style:{width:\"100%\"},variant:\"t60YJS4by\",width:\"100%\"})})})})})})]}),isDisplayed1(CTkUk2YLE)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:fuiDIS3IY,implicitPathVariables:undefined},{href:fuiDIS3IY,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{height:52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-acye6y-container\",\"hidden-l8t06w\",\"hidden-yjqzun\",!CTkUk2YLE&&\"hidden-1hfjx3u\"),nodeId:\"GoaIOFjOJ\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{Rs7_Ftdjq:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{CiJlcia50:true,FK4Qj9i_r:BEry9qnce,height:\"100%\",id:\"GoaIOFjOJ\",IEd5DVRu5:\"woxTvhha1\",layoutId:\"GoaIOFjOJ\",lf0vwXXAG:\"woxTvhha1\",Rs7_Ftdjq:resolvedLinks1[0],variant:\"t60YJS4by\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qas25j\",\"data-border\":true,children:[GdiBaCLEa&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jla1t2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n6s08t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-purtvv\",\"data-styles-preset\":\"TdZa0YiSE\",style:{\"--framer-text-color\":\"var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, rgb(255, 255, 255))\"},children:\"Speakers\"})}),className:\"framer-1uw83yd\",fonts:[\"Inter\"],text:O9GKGorJ9,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dmdav\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncwd3p\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"52px\",...toResponsiveImage(zb6LDRDFZ)},className:\"framer-1whnjxb\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xo7lj4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kado15\",\"data-styles-preset\":\"J_AJBRnoR\",style:{\"--framer-text-color\":\"var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, rgb(255, 255, 255))\"},children:\"Ankita Gupta\"})}),className:\"framer-eedsld\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:S29x2ZEBR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h28k7l\",\"data-styles-preset\":\"OJt7r2jcA\",style:{\"--framer-text-color\":\"var(--token-7ad6e373-62ee-40d4-917f-6382f7e4467e, rgb(199, 198, 204))\"},children:\"CEO & Co-Founder at Akto\"})}),className:\"framer-x2t4z1\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:Tw80yy09X,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uf4yvy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"52px\",...toResponsiveImage(PjOG2p5io)},className:\"framer-aio5nw\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52sgsy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kado15\",\"data-styles-preset\":\"J_AJBRnoR\",style:{\"--framer-text-color\":\"var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, rgb(255, 255, 255))\"},children:\"Ankush Jain\"})}),className:\"framer-nhdmu\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:FjTxA8dY9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h28k7l\",\"data-styles-preset\":\"OJt7r2jcA\",style:{\"--framer-text-color\":\"var(--token-7ad6e373-62ee-40d4-917f-6382f7e4467e, rgb(199, 198, 204))\"},children:\"CTO & Co-Founder at Akto\"})}),className:\"framer-xs2kq0\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:JLtLaFemD,verticalAlignment:\"top\",withExternalLayout:true})]})]}),Dq5AhOsHj&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqtt14\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"52px\",...toResponsiveImage(cTf9XDAES)},className:\"framer-ftdb3z\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dssz5r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kado15\",\"data-styles-preset\":\"J_AJBRnoR\",style:{\"--framer-text-color\":\"var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, rgb(255, 255, 255))\"},children:\"Ankush Jain\"})}),className:\"framer-1f456e6\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:sQD2LAqmD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h28k7l\",\"data-styles-preset\":\"OJt7r2jcA\",style:{\"--framer-text-color\":\"var(--token-7ad6e373-62ee-40d4-917f-6382f7e4467e, rgb(199, 198, 204))\"},children:\"CTO & Co-Founder at Akto\"})}),className:\"framer-ang4t9\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:rgYS5jjdx,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rq0ein hidden-1hfjx3u hidden-yjqzun\"})]}),qq0ysGIEx&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-150lykp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xVpGpFHYa\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:oafIynHO2,height:\"100%\",id:\"xVpGpFHYa\",layoutId:\"xVpGpFHYa\",portalId:\"39558551\",region:\"eu1\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3(CTkUk2YLE)&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:fuiDIS3IY,implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-8o5zlh-container\",\"hidden-1hfjx3u\",\"hidden-yjqzun\",!CTkUk2YLE&&\"hidden-l8t06w\"),nodeId:\"Xm570QbvZ\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(Button,{CiJlcia50:true,FK4Qj9i_r:BEry9qnce,height:\"100%\",id:\"Xm570QbvZ\",IEd5DVRu5:\"woxTvhha1\",layoutId:\"Xm570QbvZ\",lf0vwXXAG:\"woxTvhha1\",Rs7_Ftdjq:resolvedLinks2[0],variant:\"t60YJS4by\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198g135\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eh69ih\",\"data-styles-preset\":\"o5l1Gl1RY\",children:\"More events\"})}),className:\"framer-jbrrhv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oz595b\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{query:{from:{alias:\"cd0Ue_dlj\",data:Events,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"cd0Ue_dlj\",name:\"CO8vIHLfJ\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"xJhuHAebI\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"sXD9FjrSU\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"cd0Ue_dlj\",name:\"sXD9FjrSU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:sXD9FjrSU},type:\"BinaryOperation\"}}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cd0Ue_dlj\",data:Events,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"cd0Ue_dlj\",name:\"CO8vIHLfJ\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"xJhuHAebI\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"sXD9FjrSU\",type:\"Identifier\"},{collection:\"cd0Ue_dlj\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"cd0Ue_dlj\",name:\"sXD9FjrSU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:sXD9FjrSU},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CO8vIHLfJ:CO8vIHLfJcd0Ue_dlj,id:idcd0Ue_dlj,sXD9FjrSU:sXD9FjrSUcd0Ue_dlj,xJhuHAebI:xJhuHAebIcd0Ue_dlj},index)=>{CO8vIHLfJcd0Ue_dlj??=\"\";sXD9FjrSUcd0Ue_dlj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cd0Ue_dlj-${idcd0Ue_dlj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{CO8vIHLfJ:CO8vIHLfJcd0Ue_dlj},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{CO8vIHLfJ:CO8vIHLfJcd0Ue_dlj},webPageId:\"UCtz6ZMfL\"},motionChild:true,nodeId:\"eLwRtyp40\",openInNewTab:false,scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1fd9cfe framer-15avjw6\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:1200,pixelHeight:675,pixelWidth:1200,sizes:`calc(max((max(${componentViewport?.width||\"100vw\"}, 100px) - 148px) / 2, 250px) * 1.0016)`,...toResponsiveImage(xJhuHAebIcd0Ue_dlj)}},eXJ4S8Bbv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:1200,pixelHeight:675,pixelWidth:1200,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 100px) - 40px, 1200px), 200px) * 1.0016)`,...toResponsiveImage(xJhuHAebIcd0Ue_dlj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:1200,pixelHeight:675,pixelWidth:1200,sizes:`calc(max((min(max(${componentViewport?.width||\"100vw\"}, 100px) - 200px, 1200px) - 48px) / 3, 300px) * 1.0016)`,...toResponsiveImage(xJhuHAebIcd0Ue_dlj)},className:\"framer-1k3vxwn\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxt81j\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yocdwd\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-czia9i\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6jy0u0\",\"data-styles-preset\":\"GLu6bmN_E\",children:\"Moving from Traditional DAST to Modern API Scanners: With Jim Manico\"})}),className:\"framer-ji51ly\",\"data-framer-name\":\"What is a Decentralized Autonomous Organization ?\",fonts:[\"Inter\"],text:sXD9FjrSUcd0Ue_dlj,verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})},idcd0Ue_dlj);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxh4bt\",\"data-framer-name\":\"Grid 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eXJ4S8Bbv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:187.5,intrinsicWidth:281.5,pixelHeight:375,pixelWidth:563,sizes:`calc(${componentViewport?.width||\"100vw\"} * 5.2487)`,src:\"https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png 563w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:187.5,intrinsicWidth:281.5,pixelHeight:375,pixelWidth:563,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZY4XH95YDvJ8r58tQk5siOXzuo.png 563w\"},className:\"framer-13ciwqw\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:314,intrinsicWidth:314,pixelHeight:628,pixelWidth:628,sizes:`calc((${componentViewport?.width||\"100vw\"} - 124px) * 0.32)`,src:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=1024 722w,https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png 1018w\"}},eXJ4S8Bbv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:314,intrinsicWidth:314,pixelHeight:628,pixelWidth:628,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=1024 722w,https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png 1018w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:314,intrinsicWidth:314,pixelHeight:628,pixelWidth:628,sizes:`calc((${componentViewport?.width||\"100vw\"} - 200px) * 0.2387)`,src:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png?scale-down-to=1024 722w,https://framerusercontent.com/images/7cyFbzQ0GqlJK4k835d69umGVtc.png 1018w\"},className:\"framer-8jxemm\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ezvm05\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avmkcl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s9pwyn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15c3ukg\",\"data-styles-preset\":\"P9eATzqql\",style:{\"--framer-text-color\":\"var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, rgb(255, 255, 255))\"},children:\"Akto named as Representative Vendor in 2024 Gartner\\xae Market Guide for API Protection\"})}),className:\"framer-1j8nc7m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6jy0u0\",\"data-styles-preset\":\"GLu6bmN_E\",style:{\"--framer-text-color\":\"var(--token-2b97971a-0f0c-4b6e-a759-9c2687e21a78, rgb(226, 225, 229))\"},children:\"Cybersecurity attacks that use APIs as an attack vector constitute a major threat to your sensitive data. Get this market guide to see how tools like Akto can help secure your organization’s APIs.\"})}),className:\"framer-1xdx88g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-scgonb-container\",isModuleExternal:true,nodeId:\"kFSwwMIEA\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eXJ4S8Bbv:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button1,{CiJlcia50:true,FK4Qj9i_r:\"Get the report\",height:\"100%\",id:\"kFSwwMIEA\",IEd5DVRu5:\"xIQ_kjdQ2\",layoutId:\"kFSwwMIEA\",lf0vwXXAG:\"woxTvhha1\",Rs7_Ftdjq:\"https://www.gartner.com/en/documents/5471595\",variant:\"P0XDp1OtL\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:880,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1juhcoh-container\",nodeId:\"ghzT7vNNp\",scopeId:\"UCtz6ZMfL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPqpFA709:{variant:\"aR8ygJp22\"},eXJ4S8Bbv:{variant:\"WR_W2ajRw\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"ghzT7vNNp\",layoutId:\"ghzT7vNNp\",style:{width:\"100%\"},variant:\"JnpAGX1cB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XBsU3.framer-15avjw6, .framer-XBsU3 .framer-15avjw6 { display: block; }\",\".framer-XBsU3.framer-l8t06w { align-content: center; align-items: center; background-color: var(--token-bb3a7224-77d5-44fd-b23e-e06fbed0bcd6, #0a090d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-XBsU3 .framer-ftw86-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-XBsU3 .framer-n37jqz { align-content: center; align-items: center; background: linear-gradient(0deg, var(--token-2e29d5f8-af5e-4364-9520-bcf762e1f403, #2f1a52) 0%, var(--token-bb3a7224-77d5-44fd-b23e-e06fbed0bcd6, rgb(10, 9, 13)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-width: 100px; overflow: visible; padding: 80px 100px 80px 100px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-17tf760 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-sb06lc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1rjykkp, .framer-XBsU3 .framer-1ch6b1z, .framer-XBsU3 .framer-1t5r0mt, .framer-XBsU3 .framer-1p4amja, .framer-XBsU3 .framer-15ojfmg { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-XBsU3 .framer-1k1wf09, .framer-XBsU3 .framer-1adi90j, .framer-XBsU3 .framer-n5vhd6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-XBsU3 .framer-1dlaogj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 56%; word-break: break-word; word-wrap: break-word; }\",\".framer-XBsU3 .framer-4dqnjx-container, .framer-XBsU3 .framer-acye6y-container, .framer-XBsU3 .framer-8o5zlh-container, .framer-XBsU3 .framer-scgonb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XBsU3 .framer-smfnla { align-content: flex-start; align-items: flex-start; background-color: var(--token-dec5f1b6-5f66-4d83-a1e9-86d13b3afda6, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 64px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1qfeozb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XBsU3 .framer-1b2r3jo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XBsU3 .framer-1oattko { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-qm1p5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-862fcy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XBsU3 .framer-vczrpn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1u0o3cr { aspect-ratio: 1.7730496453900708 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 113px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XBsU3 .framer-19s1bs2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-610sg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1wxygkv, .framer-XBsU3 .framer-1c1997x, .framer-XBsU3 .framer-x2t4z1, .framer-XBsU3 .framer-xs2kq0, .framer-XBsU3 .framer-ang4t9, .framer-XBsU3 .framer-ji51ly { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XBsU3 .framer-a8uqc9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1jd6dis-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-XBsU3 .framer-1im1eck { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XBsU3 .framer-1cjs6w7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-9pl8rn { --framer-paragraph-spacing: 16px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XBsU3 .framer-1bfz8is-container { flex: none; height: 271px; position: relative; width: 171px; }\",\".framer-XBsU3 .framer-1uxolu2-container, .framer-XBsU3 .framer-1juhcoh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1qas25j { --border-bottom-width: 2px; --border-color: var(--token-7043b717-a07a-4298-b670-7eebca77576b, #7b3fe4); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: var(--token-2e29d5f8-af5e-4364-9520-bcf762e1f403, #2f1a52); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-height: 1250px; overflow: visible; padding: 24px; position: sticky; top: 120px; width: 400px; z-index: 1; }\",\".framer-XBsU3 .framer-1jla1t2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1n6s08t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1uw83yd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XBsU3 .framer-12dmdav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-ncwd3p, .framer-XBsU3 .framer-1uf4yvy, .framer-XBsU3 .framer-zqtt14 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1whnjxb { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 52px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 52px); will-change: var(--framer-will-change-override, transform); }\",\".framer-XBsU3 .framer-1xo7lj4, .framer-XBsU3 .framer-52sgsy, .framer-XBsU3 .framer-dssz5r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-XBsU3 .framer-eedsld, .framer-XBsU3 .framer-nhdmu, .framer-XBsU3 .framer-1f456e6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XBsU3 .framer-aio5nw, .framer-XBsU3 .framer-ftdb3z { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: hidden; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XBsU3 .framer-rq0ein { align-content: center; align-items: center; background-color: var(--token-2b97971a-0f0c-4b6e-a759-9c2687e21a78, #e2e1e5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; opacity: 0.1; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-150lykp-container { flex: none; height: 835px; max-width: 516px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-198g135 { --border-bottom-width: 0px; --border-color: var(--token-2b97971a-0f0c-4b6e-a759-9c2687e21a78, #e2e1e5); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-width: 100px; overflow: visible; padding: 60px 100px 60px 100px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-jbrrhv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-XBsU3 .framer-oz595b { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(300px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1fd9cfe { align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XBsU3 .framer-1k3vxwn { aspect-ratio: 1.776536312849162 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 113px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XBsU3 .framer-1gxt81j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 32px 16px 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1yocdwd, .framer-XBsU3 .framer-czia9i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-yxh4bt { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-13ciwqw { flex: none; height: 100%; opacity: 0.28; overflow: visible; position: absolute; right: 0px; top: calc(49.9276410998553% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-XBsU3 .framer-8jxemm { aspect-ratio: 0.7085427135678392 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 282px); overflow: visible; position: relative; width: 24%; z-index: 1; }\",\".framer-XBsU3 .framer-ezvm05 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 43%; z-index: 1; }\",\".framer-XBsU3 .framer-avmkcl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-s9pwyn { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XBsU3 .framer-1j8nc7m, .framer-XBsU3 .framer-1xdx88g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XBsU3.framer-l8t06w, .framer-XBsU3 .framer-n37jqz, .framer-XBsU3 .framer-17tf760, .framer-XBsU3 .framer-sb06lc, .framer-XBsU3 .framer-smfnla, .framer-XBsU3 .framer-1qfeozb, .framer-XBsU3 .framer-1b2r3jo, .framer-XBsU3 .framer-1oattko, .framer-XBsU3 .framer-qm1p5f, .framer-XBsU3 .framer-862fcy, .framer-XBsU3 .framer-vczrpn, .framer-XBsU3 .framer-19s1bs2, .framer-XBsU3 .framer-610sg0, .framer-XBsU3 .framer-a8uqc9, .framer-XBsU3 .framer-1cjs6w7, .framer-XBsU3 .framer-1qas25j, .framer-XBsU3 .framer-1jla1t2, .framer-XBsU3 .framer-1n6s08t, .framer-XBsU3 .framer-12dmdav, .framer-XBsU3 .framer-ncwd3p, .framer-XBsU3 .framer-1xo7lj4, .framer-XBsU3 .framer-1uf4yvy, .framer-XBsU3 .framer-52sgsy, .framer-XBsU3 .framer-zqtt14, .framer-XBsU3 .framer-dssz5r, .framer-XBsU3 .framer-rq0ein, .framer-XBsU3 .framer-198g135, .framer-XBsU3 .framer-1fd9cfe, .framer-XBsU3 .framer-1gxt81j, .framer-XBsU3 .framer-1yocdwd, .framer-XBsU3 .framer-czia9i, .framer-XBsU3 .framer-yxh4bt, .framer-XBsU3 .framer-ezvm05, .framer-XBsU3 .framer-avmkcl, .framer-XBsU3 .framer-s9pwyn { gap: 0px; } .framer-XBsU3.framer-l8t06w > *, .framer-XBsU3 .framer-1fd9cfe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XBsU3.framer-l8t06w > :first-child, .framer-XBsU3 .framer-n37jqz > :first-child, .framer-XBsU3 .framer-17tf760 > :first-child, .framer-XBsU3 .framer-1b2r3jo > :first-child, .framer-XBsU3 .framer-1oattko > :first-child, .framer-XBsU3 .framer-vczrpn > :first-child, .framer-XBsU3 .framer-19s1bs2 > :first-child, .framer-XBsU3 .framer-610sg0 > :first-child, .framer-XBsU3 .framer-1qas25j > :first-child, .framer-XBsU3 .framer-1jla1t2 > :first-child, .framer-XBsU3 .framer-1n6s08t > :first-child, .framer-XBsU3 .framer-12dmdav > :first-child, .framer-XBsU3 .framer-1xo7lj4 > :first-child, .framer-XBsU3 .framer-52sgsy > :first-child, .framer-XBsU3 .framer-dssz5r > :first-child, .framer-XBsU3 .framer-198g135 > :first-child, .framer-XBsU3 .framer-1fd9cfe > :first-child, .framer-XBsU3 .framer-1gxt81j > :first-child, .framer-XBsU3 .framer-1yocdwd > :first-child, .framer-XBsU3 .framer-czia9i > :first-child, .framer-XBsU3 .framer-ezvm05 > :first-child, .framer-XBsU3 .framer-avmkcl > :first-child, .framer-XBsU3 .framer-s9pwyn > :first-child { margin-top: 0px; } .framer-XBsU3.framer-l8t06w > :last-child, .framer-XBsU3 .framer-n37jqz > :last-child, .framer-XBsU3 .framer-17tf760 > :last-child, .framer-XBsU3 .framer-1b2r3jo > :last-child, .framer-XBsU3 .framer-1oattko > :last-child, .framer-XBsU3 .framer-vczrpn > :last-child, .framer-XBsU3 .framer-19s1bs2 > :last-child, .framer-XBsU3 .framer-610sg0 > :last-child, .framer-XBsU3 .framer-1qas25j > :last-child, .framer-XBsU3 .framer-1jla1t2 > :last-child, .framer-XBsU3 .framer-1n6s08t > :last-child, .framer-XBsU3 .framer-12dmdav > :last-child, .framer-XBsU3 .framer-1xo7lj4 > :last-child, .framer-XBsU3 .framer-52sgsy > :last-child, .framer-XBsU3 .framer-dssz5r > :last-child, .framer-XBsU3 .framer-198g135 > :last-child, .framer-XBsU3 .framer-1fd9cfe > :last-child, .framer-XBsU3 .framer-1gxt81j > :last-child, .framer-XBsU3 .framer-1yocdwd > :last-child, .framer-XBsU3 .framer-czia9i > :last-child, .framer-XBsU3 .framer-ezvm05 > :last-child, .framer-XBsU3 .framer-avmkcl > :last-child, .framer-XBsU3 .framer-s9pwyn > :last-child { margin-bottom: 0px; } .framer-XBsU3 .framer-n37jqz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XBsU3 .framer-17tf760 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XBsU3 .framer-sb06lc > *, .framer-XBsU3 .framer-qm1p5f > *, .framer-XBsU3 .framer-862fcy > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-XBsU3 .framer-sb06lc > :first-child, .framer-XBsU3 .framer-smfnla > :first-child, .framer-XBsU3 .framer-1qfeozb > :first-child, .framer-XBsU3 .framer-qm1p5f > :first-child, .framer-XBsU3 .framer-862fcy > :first-child, .framer-XBsU3 .framer-a8uqc9 > :first-child, .framer-XBsU3 .framer-1cjs6w7 > :first-child, .framer-XBsU3 .framer-ncwd3p > :first-child, .framer-XBsU3 .framer-1uf4yvy > :first-child, .framer-XBsU3 .framer-zqtt14 > :first-child, .framer-XBsU3 .framer-rq0ein > :first-child, .framer-XBsU3 .framer-yxh4bt > :first-child { margin-left: 0px; } .framer-XBsU3 .framer-sb06lc > :last-child, .framer-XBsU3 .framer-smfnla > :last-child, .framer-XBsU3 .framer-1qfeozb > :last-child, .framer-XBsU3 .framer-qm1p5f > :last-child, .framer-XBsU3 .framer-862fcy > :last-child, .framer-XBsU3 .framer-a8uqc9 > :last-child, .framer-XBsU3 .framer-1cjs6w7 > :last-child, .framer-XBsU3 .framer-ncwd3p > :last-child, .framer-XBsU3 .framer-1uf4yvy > :last-child, .framer-XBsU3 .framer-zqtt14 > :last-child, .framer-XBsU3 .framer-rq0ein > :last-child, .framer-XBsU3 .framer-yxh4bt > :last-child { margin-right: 0px; } .framer-XBsU3 .framer-smfnla > *, .framer-XBsU3 .framer-1qfeozb > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-XBsU3 .framer-1b2r3jo > *, .framer-XBsU3 .framer-12dmdav > *, .framer-XBsU3 .framer-198g135 > *, .framer-XBsU3 .framer-1gxt81j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XBsU3 .framer-1oattko > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XBsU3 .framer-vczrpn > *, .framer-XBsU3 .framer-1qas25j > *, .framer-XBsU3 .framer-1jla1t2 > *, .framer-XBsU3 .framer-ezvm05 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-XBsU3 .framer-19s1bs2 > *, .framer-XBsU3 .framer-1yocdwd > *, .framer-XBsU3 .framer-czia9i > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-XBsU3 .framer-610sg0 > *, .framer-XBsU3 .framer-s9pwyn > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-XBsU3 .framer-a8uqc9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XBsU3 .framer-1cjs6w7 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-XBsU3 .framer-1n6s08t > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-XBsU3 .framer-ncwd3p > *, .framer-XBsU3 .framer-1uf4yvy > *, .framer-XBsU3 .framer-zqtt14 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-XBsU3 .framer-1xo7lj4 > *, .framer-XBsU3 .framer-52sgsy > *, .framer-XBsU3 .framer-dssz5r > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-XBsU3 .framer-rq0ein > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XBsU3 .framer-yxh4bt > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-XBsU3 .framer-avmkcl > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,'.framer-XBsU3[data-border=\"true\"]::after, .framer-XBsU3 [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: 710px) and (max-width: 1199px) { .framer-XBsU3.framer-l8t06w { width: 710px; } .framer-XBsU3 .framer-n37jqz { padding: 80px 62px 80px 62px; } .framer-XBsU3 .framer-smfnla { flex-direction: column; gap: 48px; padding: 64px 62px 120px 62px; } .framer-XBsU3 .framer-1qfeozb { flex: none; flex-direction: column; width: 100%; } .framer-XBsU3 .framer-1b2r3jo { flex: none; width: 100%; } .framer-XBsU3 .framer-610sg0 { align-content: flex-start; align-items: flex-start; } .framer-XBsU3 .framer-1c1997x { width: 83%; } .framer-XBsU3 .framer-1bfz8is-container { height: 300px; } .framer-XBsU3 .framer-1qas25j { position: relative; top: unset; width: 100%; } .framer-XBsU3 .framer-150lykp-container { height: 737px; } .framer-XBsU3 .framer-198g135 { padding: 60px 62px 60px 62px; } .framer-XBsU3 .framer-oz595b { grid-template-columns: repeat(2, minmax(250px, 1fr)); max-width: unset; } .framer-XBsU3 .framer-yxh4bt { align-content: flex-start; align-items: flex-start; gap: 56px; padding: 100px 62px 100px 62px; } .framer-XBsU3 .framer-13ciwqw { left: calc(50.00000000000002% - 100% / 2); right: unset; top: calc(50.00000000000002% - 100% / 2); } .framer-XBsU3 .framer-8jxemm { width: 32%; } .framer-XBsU3 .framer-ezvm05 { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XBsU3 .framer-smfnla, .framer-XBsU3 .framer-1qfeozb, .framer-XBsU3 .framer-yxh4bt { gap: 0px; } .framer-XBsU3 .framer-smfnla > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-XBsU3 .framer-smfnla > :first-child, .framer-XBsU3 .framer-1qfeozb > :first-child { margin-top: 0px; } .framer-XBsU3 .framer-smfnla > :last-child, .framer-XBsU3 .framer-1qfeozb > :last-child { margin-bottom: 0px; } .framer-XBsU3 .framer-1qfeozb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-XBsU3 .framer-yxh4bt > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-XBsU3 .framer-yxh4bt > :first-child { margin-left: 0px; } .framer-XBsU3 .framer-yxh4bt > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 709px) { .framer-XBsU3.framer-l8t06w { width: 390px; } .framer-XBsU3 .framer-n37jqz { padding: 64px 20px 80px 20px; } .framer-XBsU3 .framer-1dlaogj, .framer-XBsU3 .framer-8jxemm, .framer-XBsU3 .framer-ezvm05, .framer-XBsU3 .framer-scgonb-container { width: 100%; } .framer-XBsU3 .framer-smfnla { flex-direction: column; gap: 40px; padding: 60px 20px 64px 20px; } .framer-XBsU3 .framer-1qfeozb { flex: none; flex-direction: column; width: 100%; } .framer-XBsU3 .framer-1b2r3jo, .framer-XBsU3 .framer-9pl8rn { flex: none; width: 100%; } .framer-XBsU3 .framer-1oattko, .framer-XBsU3 .framer-1u0o3cr, .framer-XBsU3 .framer-1jla1t2 { order: 0; } .framer-XBsU3 .framer-vczrpn, .framer-XBsU3 .framer-1uxolu2-container { order: 1; } .framer-XBsU3 .framer-19s1bs2 { order: 2; } .framer-XBsU3 .framer-1cjs6w7 { flex-direction: column; order: 3; } .framer-XBsU3 .framer-1bfz8is-container { height: 584px; width: 350px; } .framer-XBsU3 .framer-1qas25j { position: relative; top: unset; width: 100%; } .framer-XBsU3 .framer-150lykp-container { height: 842px; order: 1; } .framer-XBsU3 .framer-198g135 { padding: 64px 20px 64px 20px; } .framer-XBsU3 .framer-oz595b { gap: 36px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-XBsU3 .framer-yxh4bt { flex-direction: column; gap: 40px; padding: 100px 20px 100px 20px; } .framer-XBsU3 .framer-13ciwqw { bottom: -97px; height: unset; left: calc(50.00000000000002% - 524.8717948717949% / 2); right: unset; top: -96px; width: 525%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XBsU3 .framer-smfnla, .framer-XBsU3 .framer-1qfeozb, .framer-XBsU3 .framer-1cjs6w7, .framer-XBsU3 .framer-oz595b, .framer-XBsU3 .framer-yxh4bt { gap: 0px; } .framer-XBsU3 .framer-smfnla > *, .framer-XBsU3 .framer-yxh4bt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XBsU3 .framer-smfnla > :first-child, .framer-XBsU3 .framer-1qfeozb > :first-child, .framer-XBsU3 .framer-1cjs6w7 > :first-child, .framer-XBsU3 .framer-yxh4bt > :first-child { margin-top: 0px; } .framer-XBsU3 .framer-smfnla > :last-child, .framer-XBsU3 .framer-1qfeozb > :last-child, .framer-XBsU3 .framer-1cjs6w7 > :last-child, .framer-XBsU3 .framer-yxh4bt > :last-child { margin-bottom: 0px; } .framer-XBsU3 .framer-1qfeozb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-XBsU3 .framer-1cjs6w7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-XBsU3 .framer-oz595b > *, .framer-XBsU3 .framer-oz595b > :first-child, .framer-XBsU3 .framer-oz595b > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3685\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aPqpFA709\":{\"layout\":[\"fixed\",\"auto\"]},\"eXJ4S8Bbv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerUCtz6ZMfL=withCSS(Component,css,\"framer-XBsU3\");export default FramerUCtz6ZMfL;FramerUCtz6ZMfL.displayName=\"Page\";FramerUCtz6ZMfL.defaultProps={height:3685,width:1200};addFonts(FramerUCtz6ZMfL,[{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\",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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...AktoTopbarWhiteFonts,...CountdownFonts,...PhosphorFonts,...VideoFonts,...ButtonFonts,...HubSpotFormFonts,...Button1Fonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...componentPresets.fonts?.[\"NRuvpw3R2\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"NRuvpw3R2\"]):[],...componentPresets.fonts?.[\"s3IyfBhIY\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"s3IyfBhIY\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUCtz6ZMfL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3685\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aPqpFA709\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eXJ4S8Bbv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}