{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/r9pzfnWLyWNjSAfssL28/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/A4ld94elrQNddtXvgzeQ/region.js", "ssg:https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js", "ssg:https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/1cScs1EQ61ocAaA6rJBr/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/UZwNJjzc8oCt2JJx3RmF/Cookies.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/epgMuPiEWmMZkvihyvAR/PpJOwOO5V1ErGAkC8tq9/nbPsyqHog.js", "ssg:https://framerusercontent.com/modules/t8tV4JxoOfO6bJDVnsLC/j2mvU7CdCFHtRIuypbRV/HIzsPeabj.js", "ssg:https://framerusercontent.com/modules/1Wtcz3Sz5VZb6ZN6dFup/QJ8HyzQiFwb6609ZJvI7/M9PfdfBl9.js", "ssg:https://framerusercontent.com/modules/oINHfyVO0QM82PmTmfQe/nlGNq8mAJtqeJywvOFLb/iJXPmeSzU.js"],
  "sourcesContent": ["import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window.${dataLayerName} = window.${dataLayerName} || [];`+(dataLayer?`window.${dataLayerName}.push(${JSON.stringify(dataLayer)})`:\"\");/**\n * Function to get the Iframe snippet\n * @param environment - The parameters to use a custom environment\n * @param customDomain - Custom domain for gtm\n * @param id - The id of the container\n */const getIframeSnippet=(id,environment,customDomain=DEFAULT_DOMAIN)=>{let params=``;if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`<iframe src=\"${customDomain}/ns.html?id=${id}${params}\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" id=\"tag-manager\"></iframe>`;};/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=``;if(environment){const{gtm_auth,gtm_preview}=environment;params=`+\"&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x\"`;}return`\n    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n      '${customDomain}/${customScriptName}?id='+i+dl${params};f.parentNode.insertBefore(j,f);\n    })(window,document,'script','${dataLayerName}','${id}');\n  `;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getNoScript=()=>{const noScript=document.createElement(\"noscript\");noScript.innerHTML=getIframeSnippet(params.id,params.environment,params.customDomain);return noScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.innerHTML=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getNoScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();const noScript=gtm.getNoScript();document.head.insertBefore(dataLayerScript,document.head.childNodes[0]);document.head.insertBefore(script,document.head.childNodes[1]);document.body.insertBefore(noScript,document.body.childNodes[0]);};/**\n * Function to send the events to the GTM\n * I can't find how to type a function using the \"arguments\" keyword so I've setup\n * a wrapper function that mutes typescript.\n */function gtag(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}export function sendToGTM(...args){// @ts-ignore\ngtag(...args);}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser as e}from\"framer-motion\";export const DEFAULT_FONT_FAMILY='\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"';export function getFlexboxValues(e){let t,o;let r=e.split(\"-\");switch(r[0]){case\"top\":o=\"flex-start\";break;case\"bottom\":o=\"flex-end\";break;case\"center\":o=\"center\";break;default:o=\"initial\";}switch(r[1]){case\"left\":t=\"flex-start\";break;case\"right\":t=\"flex-end\";break;case\"center\":t=\"center\";break;default:t=\"initial\";}return{justifyContent:t,alignItems:o};}export function getMultipleShadows(...e){let t=[];return e.forEach(e=>e&&t.push(e)),t.join(\", \");}export function getShadow(e){return e?`${e.shadowX}px ${e.shadowY}px ${e.shadowBlur}px ${e.shadowColor}`:null;}export function safeJSONParse(e,t){try{return JSON.parse(e);}catch{t&&t();}}export const getCookie=(t,o)=>{var r;o=o||(e?document.cookie:\"\");let[,,a]=null!==(r=o.match(`(^|;) ?${t}=([^;]*)(;|$)`))&&void 0!==r?r:[null,null,null];return a;};\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useEffect,useReducer}from\"react\";import{isBrowser}from\"framer-motion\";import{useIsOnFramerCanvas}from\"framer\";import{sendToGTM,initGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js\";import{safeJSONParse}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};export function useConsent({gtmId,defaultConsent}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){const isFirstSync=!state.hasSynced;if(isFirstSync){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});}else{sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));}}}useEffect(()=>{getStateFromLocalStorage();},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{const shouldSync=state.sync&&isBrowser&&!isOnFramerCanvas&&state.modes!==null;if(!shouldSync){return;}syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\",];const isInEUTimezone=()=>{var ref,ref1,ref2;return(ref1=(ref=Intl===null||Intl===void 0?void 0:Intl.DateTimeFormat())===null||ref===void 0?void 0:ref.resolvedOptions())===null||ref1===void 0?void 0:(ref2=ref1.timeZone)===null||ref2===void 0?void 0:ref2.startsWith(\"Europe\");};const isEULocale=()=>{var ref;var _language;const locale=(_language=navigator.language)!==null&&_language!==void 0?_language:(ref=navigator.languages)===null||ref===void 0?void 0:ref[0];return countries.some(country=>{var ref;return(ref=locale===null||locale===void 0?void 0:locale.toUpperCase())===null||ref===void 0?void 0:ref.includes(country);});};export const inEU=()=>{return isInEUTimezone()||isEULocale();};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";export const IconCookie=props=>/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color,fill:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M164.49,163.51a12,12,0,1,1-17,0A12,12,0,0,1,164.49,163.51Zm-81-8a12,12,0,1,0,17,0A12,12,0,0,0,83.51,155.51Zm9-39a12,12,0,1,0-17,0A12,12,0,0,0,92.49,116.49Zm48-1a12,12,0,1,0,0,17A12,12,0,0,0,140.49,115.51ZM232,128A104,104,0,1,1,128,24a8,8,0,0,1,8,8,40,40,0,0,0,40,40,8,8,0,0,1,8,8,40,40,0,0,0,40,40A8,8,0,0,1,232,128Zm-16.31,7.39A56.13,56.13,0,0,1,168.5,87.5a56.13,56.13,0,0,1-47.89-47.19,88,88,0,1,0,95.08,95.08Z\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"IconCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "// Generated by Framer (1445756)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zReINw005\",\"n1Lxx4QSl\"];const variantClassNames={n1Lxx4QSl:\"framer-v-ydz03l\",zReINw005:\"framer-v-35610y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Off:\"zReINw005\",On:\"n1Lxx4QSl\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"zReINw005\",background:oep5aWG90=\"rgb(0, 153, 255)\",backgroundInactive:wdGQJh0F_=\"rgba(0, 0, 0, 0.1)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"zReINw005\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-4aJ9g\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-35610y\",className),\"data-framer-name\":\"Off\",layoutDependency:layoutDependency,layoutId:\"zReINw005\",ref:ref,style:{backgroundColor:wdGQJh0F_,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},transition:transition,variants:{n1Lxx4QSl:{backgroundColor:oep5aWG90}},...addPropertyOverrides({n1Lxx4QSl:{\"data-framer-name\":\"On\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-u7n9zz\",layoutDependency:layoutDependency,layoutId:\"O3uKgVodv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},transition:transition})})})});});const css=['.framer-4aJ9g [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4aJ9g .framer-15sckd1 { display: block; }\",\".framer-4aJ9g .framer-35610y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: flex-start; overflow: hidden; padding: 2px 2px 2px 2px; position: relative; width: 24px; will-change: transform; }\",\".framer-4aJ9g .framer-u7n9zz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: visible; position: relative; width: 10px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4aJ9g .framer-35610y { gap: 0px; } .framer-4aJ9g .framer-35610y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4aJ9g .framer-35610y > :first-child { margin-left: 0px; } .framer-4aJ9g .framer-35610y > :last-child { margin-right: 0px; } }\",\".framer-4aJ9g.framer-v-ydz03l .framer-35610y { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"n1Lxx4QSl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"oep5aWG90\":\"background\",\"wdGQJh0F_\":\"backgroundInactive\"}\n */ const FramerBlf0sjosZ=withCSS(Component,css,\"framer-4aJ9g\");export default FramerBlf0sjosZ;FramerBlf0sjosZ.displayName=\"Toggle\";FramerBlf0sjosZ.defaultProps={height:14,width:24};addPropertyControls(FramerBlf0sjosZ,{variant:{options:[\"zReINw005\",\"n1Lxx4QSl\"],optionTitles:[\"Off\",\"On\"],title:\"Variant\",type:ControlType.Enum},oep5aWG90:{defaultValue:\"rgb(0, 153, 255)\",title:\"Background\",type:ControlType.Color},wdGQJh0F_:{defaultValue:\"rgba(0, 0, 0, 0.1)\",title:\"Background Inactive\",type:ControlType.Color}});addFonts(FramerBlf0sjosZ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlf0sjosZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n1Lxx4QSl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"oep5aWG90\\\":\\\"background\\\",\\\"wdGQJh0F_\\\":\\\"backgroundInactive\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"14\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Blf0sjosZ.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import Toggle from\"https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP\";const SPACING=20;export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"h6\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);return shouldShow&&/*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[description,\" \",(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;return /*#__PURE__*/_jsx(motion.input,{id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:.6},whileTap:{opacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",outline:\"none\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});}\nexport const __FramerMetadata__ = {\"exports\":{\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createPortal}from\"react-dom\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,useIsOnFramerCanvas}from\"framer\";import{AnimatePresence,motion,isBrowser}from\"framer-motion\";import{useConsent,defaultConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/r9pzfnWLyWNjSAfssL28/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/A4ld94elrQNddtXvgzeQ/region.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import{IconCookie}from\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/1cScs1EQ61ocAaA6rJBr/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,onShown,onConsentChange,onAccept,onDismiss,onReject}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){onShown({isInEU});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){onAccept({isInEU});}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){onConsentChange({isInEU,consent:consent.modes});}},[consent.modes]);function handleDismiss(){consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){onDismiss({isInEU});}}function handleAcceptAll(){consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){onAccept({isInEU});}}function handleRejectAll(){consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){onReject({isInEU});}}function handleAcceptCurrent(){consent.acceptCurrent();setIsOpen(false);// Fire callback\nif(onAccept){onAccept({isInEU});}}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode})})]});}function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(motion.div,{style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:props.region.blocking?\"all\":\"none\"},children:[props.region.blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}),document.body);}function Trigger({trigger,style,onClick}){const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",outline:\"inherit\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}}function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (532f6a7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZAvXisb8m\",\"RLZDJVYzl\"];const variantClassNames={RLZDJVYzl:\"framer-v-bps6rf\",ZAvXisb8m:\"framer-v-1sk321d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Progress Bar 1\":\"ZAvXisb8m\",\"Progress Bar 2\":\"RLZDJVYzl\"};const transitions={default:{damping:60,delay:0,duration:7,ease:[0,0,1,1],mass:1,stiffness:500,type:\"tween\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"ZAvXisb8m\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZAvXisb8m\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear8g024n=activeVariantCallback(async(...args)=>{setVariant(\"RLZDJVYzl\");});useOnVariantChange(baseVariant,{default:onAppear8g024n});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-ouEqq\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1sk321d\",className),\"data-framer-name\":\"Progress Bar 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZAvXisb8m\",ref:ref,style:{backgroundColor:\"var(--token-30882c94-f0d7-4676-a31c-4e1d40152456, rgb(33, 49, 36))\",...style},transition:transition,...addPropertyOverrides({RLZDJVYzl:{\"data-framer-name\":\"Progress Bar 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-a0y36y\",layoutDependency:layoutDependency,layoutId:\"aySL_N3il\",style:{backgroundColor:\"var(--token-41c18a18-12b3-451f-83bc-41109044dc69, rgb(220, 229, 222))\"},transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-a5zuij\",layoutDependency:layoutDependency,layoutId:\"m_fE9Mb8s\",style:{backgroundColor:\"var(--token-0dbc62f9-ce04-4373-93c9-1d22735eece5, rgb(0, 176, 18))\"},transition:transition})]})})});});const css=['.framer-ouEqq [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ouEqq .framer-1c8fm6q { display: block; }\",\".framer-ouEqq .framer-1sk321d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 4px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-ouEqq .framer-a0y36y { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-ouEqq .framer-a5zuij { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 0%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ouEqq .framer-1sk321d { gap: 0px; } .framer-ouEqq .framer-1sk321d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ouEqq .framer-1sk321d > :first-child { margin-left: 0px; } .framer-ouEqq .framer-1sk321d > :last-child { margin-right: 0px; } }\",\".framer-ouEqq.framer-v-bps6rf .framer-a5zuij { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RLZDJVYzl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramernbPsyqHog=withCSS(Component,css,\"framer-ouEqq\");export default FramernbPsyqHog;FramernbPsyqHog.displayName=\"Slide Features / Progress Bar\";FramernbPsyqHog.defaultProps={height:4,width:400};addPropertyControls(FramernbPsyqHog,{variant:{options:[\"ZAvXisb8m\",\"RLZDJVYzl\"],optionTitles:[\"Progress Bar 1\",\"Progress Bar 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernbPsyqHog,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernbPsyqHog\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RLZDJVYzl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nbPsyqHog.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fQE9VP4BcvHQLwXLXjv8/qriVlxFWAa1SF58v45tx/GWltAg7xQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lOKbAkTVtDqJDHiMUHKH/uB26uzn7GT0VKrPNsGzK/Yglm84QF7.js\";import SlideFeaturesProgressBar from\"https://framerusercontent.com/modules/epgMuPiEWmMZkvihyvAR/PpJOwOO5V1ErGAkC8tq9/nbPsyqHog.js\";const SlideFeaturesProgressBarFonts=getFonts(SlideFeaturesProgressBar);const enabledGestures={Mc2zpxEw3:{hover:true}};const cycleOrder=[\"SIBENtIpz\",\"Mc2zpxEw3\"];const serializationHash=\"framer-mikvG\";const variantClassNames={Mc2zpxEw3:\"framer-v-1xmi0vq\",SIBENtIpz:\"framer-v-hn4hgs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"Mc2zpxEw3\",Open:\"SIBENtIpz\"};const getProps=({height,id,tap,text,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,bag9a2Ok0:(_ref=title!==null&&title!==void 0?title:props.bag9a2Ok0)!==null&&_ref!==void 0?_ref:\"Feature One\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"SIBENtIpz\",wedAHr85c:(_ref2=text!==null&&text!==void 0?text:props.wedAHr85c)!==null&&_ref2!==void 0?_ref2:\"Unlock the full potential of your product by transcending the realm of mere analytics and embracing the power of user insights. \",Wvc2ILvfX:tap!==null&&tap!==void 0?tap:props.Wvc2ILvfX};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Wvc2ILvfX,bag9a2Ok0,wedAHr85c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SIBENtIpz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap18j1m1d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wvc2ILvfX){const res=await Wvc2ILvfX(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"Mc2zpxEw3-hover\")return false;if(baseVariant===\"Mc2zpxEw3\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hn4hgs\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SIBENtIpz\",onTap:onTap18j1m1d,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fff3d0c1-71be-4c4e-9a3b-f15fde42a409, rgb(241, 245, 242))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fff3d0c1-71be-4c4e-9a3b-f15fde42a409, rgb(241, 245, 242))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"Mc2zpxEw3-hover\":{backgroundColor:\"var(--token-41c18a18-12b3-451f-83bc-41109044dc69, rgb(220, 229, 222))\"}},...addPropertyOverrides({\"Mc2zpxEw3-hover\":{\"data-framer-name\":undefined},Mc2zpxEw3:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ninz5\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"PETOFMchr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-138kmgf\",\"data-styles-preset\":\"Yglm84QF7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Feature One\"})}),className:\"framer-wylf3t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ztUHmZCZJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bag9a2Ok0,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17bgt0w\",\"data-styles-preset\":\"GWltAg7xQ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unlock the full potential of your product by transcending the realm of mere analytics and embracing the power of user insights. \"})}),className:\"framer-yjpete\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rf4Rp6_1J\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wedAHr85c,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1saelz3-container\",layoutDependency:layoutDependency,layoutId:\"MZzeXESk1-container\",children:/*#__PURE__*/_jsx(SlideFeaturesProgressBar,{height:\"100%\",id:\"MZzeXESk1\",layoutId:\"MZzeXESk1\",style:{height:\"100%\",width:\"100%\"},variant:\"ZAvXisb8m\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mikvG.framer-17xk1gr, .framer-mikvG .framer-17xk1gr { display: block; }\",\".framer-mikvG.framer-hn4hgs { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mikvG .framer-16ninz5 { 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: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-mikvG .framer-wylf3t { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mikvG .framer-yjpete { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mikvG .framer-1saelz3-container { flex: none; height: 4px; left: 0px; position: absolute; top: calc(98.40255591054316% - 4px / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mikvG.framer-hn4hgs, .framer-mikvG .framer-16ninz5 { gap: 0px; } .framer-mikvG.framer-hn4hgs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-mikvG.framer-hn4hgs > :first-child, .framer-mikvG .framer-16ninz5 > :first-child { margin-top: 0px; } .framer-mikvG.framer-hn4hgs > :last-child, .framer-mikvG .framer-16ninz5 > :last-child { margin-bottom: 0px; } .framer-mikvG .framer-16ninz5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-mikvG[data-border=\"true\"]::after, .framer-mikvG [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 175\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mc2zpxEw3\":{\"layout\":[\"fixed\",\"auto\"]},\"KZrXZFVO1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Wvc2ILvfX\":\"tap\",\"bag9a2Ok0\":\"title\",\"wedAHr85c\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHIzsPeabj=withCSS(Component,css,\"framer-mikvG\");export default FramerHIzsPeabj;FramerHIzsPeabj.displayName=\"Slide Features / Card\";FramerHIzsPeabj.defaultProps={height:175,width:300};addPropertyControls(FramerHIzsPeabj,{variant:{options:[\"SIBENtIpz\",\"Mc2zpxEw3\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},Wvc2ILvfX:{title:\"Tap\",type:ControlType.EventHandler},bag9a2Ok0:{defaultValue:\"Feature One\",displayTextArea:false,title:\"Title\",type:ControlType.String},wedAHr85c:{defaultValue:\"Unlock the full potential of your product by transcending the realm of mere analytics and embracing the power of user insights. \",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerHIzsPeabj,[{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\"}]},...SlideFeaturesProgressBarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHIzsPeabj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerVariables\":\"{\\\"Wvc2ILvfX\\\":\\\"tap\\\",\\\"bag9a2Ok0\\\":\\\"title\\\",\\\"wedAHr85c\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mc2zpxEw3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KZrXZFVO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"175\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HIzsPeabj.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import SlideFeaturesCard from\"https://framerusercontent.com/modules/t8tV4JxoOfO6bJDVnsLC/j2mvU7CdCFHtRIuypbRV/HIzsPeabj.js\";const SlideFeaturesCardFonts=getFonts(SlideFeaturesCard);const VideoFonts=getFonts(Video);const cycleOrder=[\"nHyncK8D_\",\"jxmBcgMDS\",\"K55EEGxoL\",\"ILvJpCj9S\",\"bw0xtF5Ni\",\"SZeq711Nl\",\"LZPWzLSTj\",\"rq_i_6yyM\",\"vc40YTD1b\",\"OpLqz1TDj\",\"MdPwP2Eje\",\"vWMRNThkd\",\"Y8bwAxvsJ\",\"aEKwl6NKh\",\"aKvq1WOQF\",\"kXiMqSKwH\",\"RU39d8YG2\"];const serializationHash=\"framer-RAUTm\";const variantClassNames={aEKwl6NKh:\"framer-v-g0g7qp\",aKvq1WOQF:\"framer-v-17ri0bl\",bw0xtF5Ni:\"framer-v-3qbwxa\",ILvJpCj9S:\"framer-v-1t99goi\",jxmBcgMDS:\"framer-v-1ebnay1\",K55EEGxoL:\"framer-v-1pzlrxt\",kXiMqSKwH:\"framer-v-lbcx9g\",LZPWzLSTj:\"framer-v-5r58xr\",MdPwP2Eje:\"framer-v-b7tp07\",nHyncK8D_:\"framer-v-zr5e5s\",OpLqz1TDj:\"framer-v-g5n7ke\",rq_i_6yyM:\"framer-v-85x97h\",RU39d8YG2:\"framer-v-3nt3ga\",SZeq711Nl:\"framer-v-xnb0yg\",vc40YTD1b:\"framer-v-v1cx4b\",vWMRNThkd:\"framer-v-1q1fvwy\",Y8bwAxvsJ:\"framer-v-az6enk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"nHyncK8D_\",\"Desktop 2 Primary\":\"Y8bwAxvsJ\",\"Desktop 2\":\"jxmBcgMDS\",\"Desktop 3 Primary\":\"aEKwl6NKh\",\"Desktop 3\":\"K55EEGxoL\",\"Desktop 4\":\"ILvJpCj9S\",\"Desktop 5\":\"bw0xtF5Ni\",\"Mobile 1 Usability\":\"aKvq1WOQF\",\"Mobile 1\":\"SZeq711Nl\",\"Mobile 2 Usability\":\"kXiMqSKwH\",\"Mobile 2\":\"LZPWzLSTj\",\"Mobile 3 Usability\":\"RU39d8YG2\",\"Mobile 3\":\"rq_i_6yyM\",\"Mobile 4\":\"vc40YTD1b\",\"Mobile 5\":\"OpLqz1TDj\",Variant:\"MdPwP2Eje\"};const getProps=({height,id,image1,image2,image3,text1,text2,text3,title1,title2,title3,width,...props})=>{return{...props,b_saYkFyl:image2??props.b_saYkFyl??{src:\"https://framerusercontent.com/images/jDsWPrhSwQ3uBDDdTzzLSlTfU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jDsWPrhSwQ3uBDDdTzzLSlTfU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jDsWPrhSwQ3uBDDdTzzLSlTfU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/jDsWPrhSwQ3uBDDdTzzLSlTfU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/jDsWPrhSwQ3uBDDdTzzLSlTfU.webp 2800w\"},DhecZES3l:text3??props.DhecZES3l??\"Simplifies the process of distributing information, resources, or files, enhancing collaboration, communication.\",jEZfB9cP2:title1??props.jEZfB9cP2??\"Collaborate with your team\",JLdKPKSqQ:image1??props.JLdKPKSqQ,seSAtOQqe:title2??props.seSAtOQqe??\"Powerful analytics\",UquBv3yja:text2??props.UquBv3yja??\"Enables users to unlock the hidden potential of their data, extract valuable insights, and gain a competitive edge.\\n\",UwHSYt0G3:image3??props.UwHSYt0G3??{src:\"https://framerusercontent.com/images/MUiVJeuMbF08y6yg1Xcdy0gKTk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MUiVJeuMbF08y6yg1Xcdy0gKTk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MUiVJeuMbF08y6yg1Xcdy0gKTk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/MUiVJeuMbF08y6yg1Xcdy0gKTk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/MUiVJeuMbF08y6yg1Xcdy0gKTk.webp 2800w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"nHyncK8D_\",ZFBGrHCne:title3??props.ZFBGrHCne??\"Easy sharing\",ZqeK4Od1_:text1??props.ZqeK4Od1_??\"Empowers organizations and teams by providing a centralized, digital workspace where members can collaborate efficiently.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JLdKPKSqQ,b_saYkFyl,UwHSYt0G3,jEZfB9cP2,ZqeK4Od1_,seSAtOQqe,UquBv3yja,ZFBGrHCne,DhecZES3l,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nHyncK8D_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1hkenj3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jxmBcgMDS\"),7e3);});const onAppearpfm1ig=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"K55EEGxoL\"),7e3);});const onAppear100m3wv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ILvJpCj9S\"),7e3);});const onAppears994fb=activeVariantCallback(async(...args)=>{setVariant(\"nHyncK8D_\");});const onAppear1rq0arc=activeVariantCallback(async(...args)=>{setVariant(\"K55EEGxoL\");});const onAppeariujgd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"LZPWzLSTj\"),7e3);});const onAppear3yhl6p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rq_i_6yyM\"),7e3);});const onAppear1glsh3u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vc40YTD1b\"),7e3);});const onAppear1itst7=activeVariantCallback(async(...args)=>{setVariant(\"SZeq711Nl\");});const onAppear1gws0cy=activeVariantCallback(async(...args)=>{setVariant(\"rq_i_6yyM\");});const onAppear1webm4h=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Y8bwAxvsJ\"),7e3);});const onAppear1c5k8cc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aEKwl6NKh\"),7e3);});const onAppear1s4we38=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vWMRNThkd\"),7e3);});const onAppearxe4fdn=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kXiMqSKwH\"),7e3);});const onAppearjlwcbc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RU39d8YG2\"),7e3);});const onAppearusneyf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aKvq1WOQF\"),7e3);});const Wvc2ILvfXs994fb=activeVariantCallback(async(...args)=>{setVariant(\"nHyncK8D_\");});const Wvc2ILvfX1ysynm7=activeVariantCallback(async(...args)=>{setVariant(\"ILvJpCj9S\");});const Wvc2ILvfX1itst7=activeVariantCallback(async(...args)=>{setVariant(\"SZeq711Nl\");});const Wvc2ILvfXkfdzn3=activeVariantCallback(async(...args)=>{setVariant(\"vc40YTD1b\");});const Wvc2ILvfX16c7rin=activeVariantCallback(async(...args)=>{setVariant(\"vWMRNThkd\");});const Wvc2ILvfX1ck9o9k=activeVariantCallback(async(...args)=>{setVariant(\"aKvq1WOQF\");});const Wvc2ILvfXjicnff=activeVariantCallback(async(...args)=>{setVariant(\"jxmBcgMDS\");});const Wvc2ILvfXyancvz=activeVariantCallback(async(...args)=>{setVariant(\"LZPWzLSTj\");});const Wvc2ILvfXp6zg4q=activeVariantCallback(async(...args)=>{setVariant(\"Y8bwAxvsJ\");});const Wvc2ILvfXsaevl7=activeVariantCallback(async(...args)=>{setVariant(\"kXiMqSKwH\");});const Wvc2ILvfXe28b50=activeVariantCallback(async(...args)=>{setVariant(\"bw0xtF5Ni\");});const Wvc2ILvfX1rq0arc=activeVariantCallback(async(...args)=>{setVariant(\"K55EEGxoL\");});const Wvc2ILvfX1iq7z6j=activeVariantCallback(async(...args)=>{setVariant(\"OpLqz1TDj\");});const Wvc2ILvfX1gws0cy=activeVariantCallback(async(...args)=>{setVariant(\"rq_i_6yyM\");});const Wvc2ILvfX1wg0ic=activeVariantCallback(async(...args)=>{setVariant(\"aEKwl6NKh\");});const Wvc2ILvfX10q1muw=activeVariantCallback(async(...args)=>{setVariant(\"RU39d8YG2\");});useOnVariantChange(baseVariant,{aEKwl6NKh:onAppear1s4we38,aKvq1WOQF:onAppearxe4fdn,bw0xtF5Ni:onAppear1rq0arc,default:onAppear1hkenj3,ILvJpCj9S:onAppears994fb,jxmBcgMDS:onAppearpfm1ig,K55EEGxoL:onAppear100m3wv,kXiMqSKwH:onAppearjlwcbc,LZPWzLSTj:onAppear3yhl6p,OpLqz1TDj:onAppear1gws0cy,rq_i_6yyM:onAppear1glsh3u,RU39d8YG2:onAppearusneyf,SZeq711Nl:onAppeariujgd,vc40YTD1b:onAppear1itst7,vWMRNThkd:onAppear1webm4h,Y8bwAxvsJ:onAppear1c5k8cc});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Y8bwAxvsJ\")return false;return true;};const isDisplayed1=()=>{if([\"aEKwl6NKh\",\"kXiMqSKwH\",\"RU39d8YG2\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"aKvq1WOQF\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"MdPwP2Eje\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"vWMRNThkd\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"aKvq1WOQF\")return true;return false;};const isDisplayed6=()=>{if([\"ILvJpCj9S\",\"bw0xtF5Ni\",\"vc40YTD1b\",\"OpLqz1TDj\",\"vWMRNThkd\",\"aEKwl6NKh\",\"aKvq1WOQF\",\"RU39d8YG2\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"vWMRNThkd\",\"aKvq1WOQF\",\"kXiMqSKwH\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"aEKwl6NKh\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"aEKwl6NKh\")return false;return true;};const isDisplayed10=()=>{if([\"jxmBcgMDS\",\"rq_i_6yyM\",\"vc40YTD1b\",\"OpLqz1TDj\",\"vWMRNThkd\",\"aEKwl6NKh\",\"aKvq1WOQF\",\"kXiMqSKwH\",\"RU39d8YG2\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"Y8bwAxvsJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ILvJpCj9S:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zr5e5s\",className,classNames),\"data-framer-name\":\"Desktop 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nHyncK8D_\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({aEKwl6NKh:{\"data-framer-name\":\"Desktop 3 Primary\"},aKvq1WOQF:{\"data-framer-name\":\"Mobile 1 Usability\"},bw0xtF5Ni:{\"data-framer-name\":\"Desktop 5\"},ILvJpCj9S:{\"data-framer-name\":\"Desktop 4\"},jxmBcgMDS:{\"data-framer-name\":\"Desktop 2\"},K55EEGxoL:{\"data-framer-name\":\"Desktop 3\"},kXiMqSKwH:{\"data-framer-name\":\"Mobile 2 Usability\"},LZPWzLSTj:{\"data-framer-name\":\"Mobile 2\"},MdPwP2Eje:{\"data-framer-name\":undefined},OpLqz1TDj:{\"data-framer-name\":\"Mobile 5\"},rq_i_6yyM:{\"data-framer-name\":\"Mobile 3\"},RU39d8YG2:{\"data-framer-name\":\"Mobile 3 Usability\"},SZeq711Nl:{\"data-framer-name\":\"Mobile 1\"},vc40YTD1b:{\"data-framer-name\":\"Mobile 4\"},vWMRNThkd:{\"data-framer-name\":\"Desktop 2 Primary\"},Y8bwAxvsJ:{\"data-framer-name\":\"Desktop 2 Primary\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j6jn62\",\"data-framer-name\":\"Features Block\",layoutDependency:layoutDependency,layoutId:\"ToS0tqQSU\",style:{backgroundColor:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8o2ej9\",layoutDependency:layoutDependency,layoutId:\"oaCSti9VG\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:\"300px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-589)/2)+0+0+0+0,...addPropertyOverrides({aKvq1WOQF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+0+0+0},kXiMqSKwH:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0},LZPWzLSTj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0},OpLqz1TDj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0},rq_i_6yyM:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0},RU39d8YG2:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0},SZeq711Nl:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+0+0+0},vc40YTD1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2bn65f-container\",layoutDependency:layoutDependency,layoutId:\"iQLPq1gfg-container\",nodeId:\"iQLPq1gfg\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",children:/*#__PURE__*/_jsx(SlideFeaturesCard,{bag9a2Ok0:jEZfB9cP2,height:\"100%\",id:\"iQLPq1gfg\",layoutId:\"iQLPq1gfg\",style:{width:\"100%\"},variant:\"SIBENtIpz\",wedAHr85c:ZqeK4Od1_,width:\"100%\",Wvc2ILvfX:Wvc2ILvfXs994fb,...addPropertyOverrides({aEKwl6NKh:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX16c7rin},aKvq1WOQF:{Wvc2ILvfX:Wvc2ILvfX1ck9o9k},bw0xtF5Ni:{variant:\"Mc2zpxEw3\"},jxmBcgMDS:{variant:\"Mc2zpxEw3\"},K55EEGxoL:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1ysynm7},kXiMqSKwH:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1ck9o9k},LZPWzLSTj:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1itst7},OpLqz1TDj:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1itst7},rq_i_6yyM:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfXkfdzn3},RU39d8YG2:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1ck9o9k},SZeq711Nl:{Wvc2ILvfX:Wvc2ILvfX1itst7},vc40YTD1b:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX1itst7},vWMRNThkd:{Wvc2ILvfX:Wvc2ILvfX16c7rin},Y8bwAxvsJ:{variant:\"Mc2zpxEw3\",Wvc2ILvfX:Wvc2ILvfX16c7rin}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xrhb8h\",layoutDependency:layoutDependency,layoutId:\"GrOSpgRwK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:\"300px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-589)/2)+0+207+0+0,...addPropertyOverrides({aKvq1WOQF:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+195+0+0},kXiMqSKwH:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0},LZPWzLSTj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0},OpLqz1TDj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0},rq_i_6yyM:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0},RU39d8YG2:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0},SZeq711Nl:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+195+0+0},vc40YTD1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+195+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dtvtkw-container\",layoutDependency:layoutDependency,layoutId:\"sEVvBA8sh-container\",nodeId:\"sEVvBA8sh\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",children:/*#__PURE__*/_jsx(SlideFeaturesCard,{bag9a2Ok0:seSAtOQqe,height:\"100%\",id:\"sEVvBA8sh\",layoutId:\"sEVvBA8sh\",style:{width:\"100%\"},variant:\"Mc2zpxEw3\",wedAHr85c:UquBv3yja,width:\"100%\",Wvc2ILvfX:Wvc2ILvfXjicnff,...addPropertyOverrides({aEKwl6NKh:{Wvc2ILvfX:Wvc2ILvfXp6zg4q},aKvq1WOQF:{Wvc2ILvfX:Wvc2ILvfXsaevl7},jxmBcgMDS:{variant:\"SIBENtIpz\"},kXiMqSKwH:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfXsaevl7},LZPWzLSTj:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfXyancvz},OpLqz1TDj:{Wvc2ILvfX:undefined},rq_i_6yyM:{Wvc2ILvfX:Wvc2ILvfXyancvz},RU39d8YG2:{Wvc2ILvfX:Wvc2ILvfXsaevl7},SZeq711Nl:{Wvc2ILvfX:Wvc2ILvfXyancvz},vc40YTD1b:{Wvc2ILvfX:undefined},vWMRNThkd:{Wvc2ILvfX:Wvc2ILvfXp6zg4q},Y8bwAxvsJ:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfXp6zg4q}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-163l99g\",layoutDependency:layoutDependency,layoutId:\"vVOWfxRi5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:\"299.6073px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-589)/2)+0+414+0+0,...addPropertyOverrides({aKvq1WOQF:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9987)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+390+0+0},kXiMqSKwH:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9987)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0},LZPWzLSTj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0},OpLqz1TDj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0},rq_i_6yyM:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0},RU39d8YG2:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9987)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0},SZeq711Nl:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9987)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+0+0)+0+390+0+0},vc40YTD1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+0+0)+0+390+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pgxa4v-container\",layoutDependency:layoutDependency,layoutId:\"DCgC4QrhM-container\",nodeId:\"DCgC4QrhM\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",children:/*#__PURE__*/_jsx(SlideFeaturesCard,{bag9a2Ok0:ZFBGrHCne,height:\"100%\",id:\"DCgC4QrhM\",layoutId:\"DCgC4QrhM\",style:{width:\"100%\"},variant:\"Mc2zpxEw3\",wedAHr85c:DhecZES3l,width:\"100%\",Wvc2ILvfX:Wvc2ILvfXe28b50,...addPropertyOverrides({aEKwl6NKh:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX1wg0ic},aKvq1WOQF:{Wvc2ILvfX:Wvc2ILvfX10q1muw},bw0xtF5Ni:{variant:\"SIBENtIpz\"},ILvJpCj9S:{Wvc2ILvfX:Wvc2ILvfX1rq0arc},jxmBcgMDS:{Wvc2ILvfX:Wvc2ILvfX1rq0arc},K55EEGxoL:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX1rq0arc},kXiMqSKwH:{Wvc2ILvfX:Wvc2ILvfX10q1muw},LZPWzLSTj:{Wvc2ILvfX:Wvc2ILvfX1gws0cy},OpLqz1TDj:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX1iq7z6j},rq_i_6yyM:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX1gws0cy},RU39d8YG2:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX10q1muw},SZeq711Nl:{Wvc2ILvfX:Wvc2ILvfX1iq7z6j},vc40YTD1b:{variant:\"SIBENtIpz\",Wvc2ILvfX:Wvc2ILvfX1gws0cy},vWMRNThkd:{Wvc2ILvfX:Wvc2ILvfX1wg0ic},Y8bwAxvsJ:{Wvc2ILvfX:Wvc2ILvfX1wg0ic}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18dct3m\",\"data-framer-name\":\"Images Wrapper\",layoutDependency:layoutDependency,layoutId:\"okDIPWYuj\",style:{backgroundColor:\"rgb(240, 244, 241)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{aEKwl6NKh:{backgroundColor:\"rgba(0, 0, 0, 0)\"},aKvq1WOQF:{backgroundColor:\"rgb(248, 248, 250)\"},kXiMqSKwH:{backgroundColor:\"rgb(248, 248, 250)\"},RU39d8YG2:{backgroundColor:\"rgb(248, 248, 250)\"},vWMRNThkd:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-o4zzp6\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"TsKLz1dmN\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600},className:\"framer-fx0erp\",layoutDependency:layoutDependency,layoutId:\"osJAymV6n\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kd38w7\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"DTHbM1IrH\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},transformTemplate:transformTemplate1,variants:{aKvq1WOQF:{backgroundColor:\"rgba(0, 0, 0, 0)\"},MdPwP2Eje:{backgroundColor:\"rgb(248, 248, 250)\"},vWMRNThkd:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({aKvq1WOQF:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-500)/2)+0+0+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1jywe65\",layoutDependency:layoutDependency,layoutId:\"kvEClfZXM\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{vWMRNThkd:{backgroundColor:\"rgb(248, 248, 250)\"}},...addPropertyOverrides({bw0xtF5Ni:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+0-600+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},ILvJpCj9S:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+0-600+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},jxmBcgMDS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-429)/2)+429-291e3+144950+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},K55EEGxoL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-600)/2)+-580+40+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},LZPWzLSTj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-800+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},MdPwP2Eje:{background:{alt:\"\",intrinsicHeight:1600,intrinsicWidth:1600,positionX:\"center\",positionY:\"center\"}},OpLqz1TDj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-800+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},rq_i_6yyM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-800+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},SZeq711Nl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+565+56)+(0+(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-0-Math.min((Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-0)*1,600))/2)+(0+(Math.min((Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-0)*1,600)-0-(Math.min((Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-0)*1,600)-0)*1)/2)+((Math.min((Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-0)*1,600)-0)*1*.5000000000000002-250)+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},vc40YTD1b:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-800+-250+11368683772161603e-29+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(JLdKPKSqQ),...{positionX:\"center\",positionY:\"center\"}}},vWMRNThkd:{background:undefined}},baseVariant,gestureVariant),children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2vu2e9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UKA_HKjm1-container\",nodeId:\"UKA_HKjm1\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UKA_HKjm1\",isMixedBorderRadius:false,layoutId:\"UKA_HKjm1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/OvLPF5Uvx82NFJ3XEXl1KemhBo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qe89be-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WlMQfkOxP-container\",nodeId:\"WlMQfkOxP\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WlMQfkOxP\",isMixedBorderRadius:false,layoutId:\"WlMQfkOxP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/OvLPF5Uvx82NFJ3XEXl1KemhBo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c5hg2m-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PilmeFT7F-container\",nodeId:\"PilmeFT7F\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PilmeFT7F\",isMixedBorderRadius:false,layoutId:\"PilmeFT7F\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HxAqvAJggAwki6ovjdZm7yHAPw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-x36pvt\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"wFBXb5bgU\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-500)/2)+450.0000000000001+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zgn87c\",layoutDependency:layoutDependency,layoutId:\"tGEoghVHq\",...addPropertyOverrides({jxmBcgMDS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-429)/2)+0+0),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}}},K55EEGxoL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-600)/2)+600-1200+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}}},kXiMqSKwH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+-242),pixelHeight:1856,pixelWidth:2326,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px)`,src:\"https://framerusercontent.com/images/2FssQK0TLfmL4Mhu9Q0MVQr82t4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2FssQK0TLfmL4Mhu9Q0MVQr82t4.png?scale-down-to=512 512w,https://framerusercontent.com/images/2FssQK0TLfmL4Mhu9Q0MVQr82t4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2FssQK0TLfmL4Mhu9Q0MVQr82t4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2FssQK0TLfmL4Mhu9Q0MVQr82t4.png 2326w\"}},LZPWzLSTj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+-242),pixelHeight:1600,pixelWidth:1600,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}}},rq_i_6yyM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-800+58),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}}},SZeq711Nl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+565+56)+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-(-410+Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600))+(0+(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0-(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0)*1)/2)),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"} * 1.0013, 600px)`,...toResponsiveImage(b_saYkFyl),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15r2c91\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"MDNArQpQG\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{aEKwl6NKh:{backgroundColor:\"rgb(248, 248, 250)\"},RU39d8YG2:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:434,intrinsicWidth:590,pixelHeight:868,pixelWidth:1180,src:\"https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg 1180w\"},className:\"framer-4p1g00\",\"data-framer-name\":\"Test anything, anywhere visual\",layoutDependency:layoutDependency,layoutId:\"zLMR8IYEV\",...addPropertyOverrides({aEKwl6NKh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:434,intrinsicWidth:590,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-484)/2)+0+25),pixelHeight:868,pixelWidth:1180,sizes:\"590px\",src:\"https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bf5L8DwVj6PW9q8gg20dD3zLz4.svg 1180w\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-500)/2)+450.0000000000001+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-sd6nrz\",layoutDependency:layoutDependency,layoutId:\"WNKRLJFHJ\",...addPropertyOverrides({bw0xtF5Ni:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+0+-242),pixelHeight:1600,pixelWidth:1600,sizes:`max(${componentViewport?.width||\"100vw\"} * 0.6, 1px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},ILvJpCj9S:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+0+-242),pixelHeight:1600,pixelWidth:1600,sizes:`max(${componentViewport?.width||\"100vw\"} * 0.6, 1px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},jxmBcgMDS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-429)/2)+366.482142857143+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},K55EEGxoL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-600)/2)+0+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},LZPWzLSTj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+-300+58),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"} * 1.0007, 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},OpLqz1TDj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+-242),pixelHeight:1600,pixelWidth:1600,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},rq_i_6yyM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+0),pixelHeight:1600,pixelWidth:1600,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},RU39d8YG2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+-242),pixelHeight:1736,pixelWidth:2360,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px) * 0.97)`,src:\"https://framerusercontent.com/images/M8FBnIQMEIPyywLGZAfs8uz9IY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/M8FBnIQMEIPyywLGZAfs8uz9IY.png?scale-down-to=512 512w,https://framerusercontent.com/images/M8FBnIQMEIPyywLGZAfs8uz9IY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/M8FBnIQMEIPyywLGZAfs8uz9IY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/M8FBnIQMEIPyywLGZAfs8uz9IY.png 2360w\"}},SZeq711Nl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+565+56)+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-(-410+Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600))+(0+(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0-(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0)*1)/2)),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},vc40YTD1b:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0+-242),pixelHeight:1600,pixelWidth:1600,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6r6gd6\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"kobAWbrn0\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-500)/2)+450.0000000000001+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1c7vuth\",layoutDependency:layoutDependency,layoutId:\"r75FmMZ3s\",...addPropertyOverrides({bw0xtF5Ni:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+-300+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},ILvJpCj9S:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-0)/2)+-300+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},K55EEGxoL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-600)/2)+600.0000000000001+58),pixelHeight:1600,pixelWidth:1600,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6004)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},LZPWzLSTj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-621)/2+565+56)+0-190+58),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"} * 1.0013, 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}},SZeq711Nl:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-(565+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1+56))/2+565+56)+Math.max(0,((componentViewport?.height||800)-0-621)/1)*1-(-410+Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600))+(0+(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0-(Math.min(Math.max(0,((componentViewport?.height||800)-0-621)/1)*1*1,600)-0)*1)/2)),pixelHeight:1600,pixelWidth:1600,sizes:`min(${componentViewport?.width||\"100vw\"}, 600px)`,...toResponsiveImage(UwHSYt0G3),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w6o1qo\",\"data-framer-name\":\"Images Wrapper\",layoutDependency:layoutDependency,layoutId:\"mbvLp5elP\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lnafi9\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"j7F25F3hB\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600},className:\"framer-18wzm5w\",layoutDependency:layoutDependency,layoutId:\"NumKRZFYJ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12wk2cq\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"AcIVkhjsn\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4cn5av\",layoutDependency:layoutDependency,layoutId:\"qfX7ho9tX\",style:{backgroundColor:\"rgb(248, 248, 250)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pp6scm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fkULAXL6y-container\",nodeId:\"fkULAXL6y\",rendersWithMotion:true,scopeId:\"M9PfdfBl9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fkULAXL6y\",isMixedBorderRadius:false,layoutId:\"fkULAXL6y\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/OvLPF5Uvx82NFJ3XEXl1KemhBo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9cr3bu\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"oiwpwUmzn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nsssxl\",layoutDependency:layoutDependency,layoutId:\"UOZzNNa24\",style:{backgroundColor:\"rgb(248, 248, 250)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,pixelHeight:928,pixelWidth:1163,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png\",srcSet:\"https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png 1163w\"},className:\"framer-n2yfoa\",layoutDependency:layoutDependency,layoutId:\"plDCfDfFs\",...addPropertyOverrides({Y8bwAxvsJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-500)/2)+-35.537190082644486+85.5+429-428.2969970703125),pixelHeight:928,pixelWidth:1163,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.558)`,src:\"https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png\",srcSet:\"https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ioGXhTueYHX4IX1RZHlJACNkl8.png 1163w\"}}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RAUTm.framer-1w78h6y, .framer-RAUTm .framer-1w78h6y { display: block; }\",\".framer-RAUTm.framer-zr5e5s { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: 550px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-RAUTm .framer-j6jn62 { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-RAUTm .framer-8o2ej9, .framer-RAUTm .framer-1xrhb8h, .framer-RAUTm .framer-163l99g { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RAUTm .framer-2bn65f-container, .framer-RAUTm .framer-dtvtkw-container, .framer-RAUTm .framer-pgxa4v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RAUTm .framer-18dct3m, .framer-RAUTm .framer-w6o1qo { 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: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RAUTm .framer-o4zzp6, .framer-RAUTm .framer-lnafi9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RAUTm .framer-fx0erp, .framer-RAUTm .framer-1jywe65 { aspect-ratio: 1.24 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 484px); position: relative; width: 100%; }\",\".framer-RAUTm .framer-kd38w7, .framer-RAUTm .framer-12wk2cq { 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%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 100%; }\",\".framer-RAUTm .framer-2vu2e9-container { flex: none; height: 407px; left: calc(50.00000000000002% - 494px / 2); position: absolute; top: calc(50.00000000000002% - 407px / 2); width: 494px; }\",\".framer-RAUTm .framer-qe89be-container, .framer-RAUTm .framer-1pp6scm-container { aspect-ratio: 1.2137592137592137 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 165px); left: 50%; position: absolute; top: 50%; width: 92%; }\",\".framer-RAUTm .framer-c5hg2m-container { aspect-ratio: 1.2137592137592137 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 165px); position: relative; width: 114%; }\",\".framer-RAUTm .framer-x36pvt, .framer-RAUTm .framer-15r2c91, .framer-RAUTm .framer-6r6gd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; left: calc(49.967213114754124% - 100.06557377049181% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(150.00000000000003% - 600px / 2); width: 100%; z-index: 1; }\",\".framer-RAUTm .framer-zgn87c, .framer-RAUTm .framer-sd6nrz, .framer-RAUTm .framer-1c7vuth { aspect-ratio: 1.2396694214876034 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 485px); position: relative; width: 100%; }\",\".framer-RAUTm .framer-4p1g00 { aspect-ratio: 1.359447004608295 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 434px); overflow: visible; position: relative; width: 590px; }\",\".framer-RAUTm .framer-18wzm5w, .framer-RAUTm .framer-4cn5av { aspect-ratio: 1.24 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 161px); position: relative; width: 100%; }\",\".framer-RAUTm .framer-9cr3bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(52.8925619834711% - 600px / 2); width: 100%; z-index: 1; }\",\".framer-RAUTm .framer-nsssxl { aspect-ratio: 1.2396694214876034 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 161px); position: relative; width: 100%; }\",\".framer-RAUTm .framer-n2yfoa { aspect-ratio: 1.2396694214876034 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 161px); position: absolute; right: 0px; width: 93%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-zr5e5s, .framer-RAUTm .framer-j6jn62, .framer-RAUTm .framer-8o2ej9, .framer-RAUTm .framer-1xrhb8h, .framer-RAUTm .framer-163l99g, .framer-RAUTm .framer-18dct3m, .framer-RAUTm .framer-o4zzp6, .framer-RAUTm .framer-kd38w7, .framer-RAUTm .framer-x36pvt, .framer-RAUTm .framer-15r2c91, .framer-RAUTm .framer-6r6gd6, .framer-RAUTm .framer-w6o1qo, .framer-RAUTm .framer-lnafi9, .framer-RAUTm .framer-12wk2cq, .framer-RAUTm .framer-9cr3bu { gap: 0px; } .framer-RAUTm.framer-zr5e5s > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-RAUTm.framer-zr5e5s > :first-child, .framer-RAUTm .framer-18dct3m > :first-child, .framer-RAUTm .framer-o4zzp6 > :first-child, .framer-RAUTm .framer-kd38w7 > :first-child, .framer-RAUTm .framer-x36pvt > :first-child, .framer-RAUTm .framer-15r2c91 > :first-child, .framer-RAUTm .framer-6r6gd6 > :first-child, .framer-RAUTm .framer-w6o1qo > :first-child, .framer-RAUTm .framer-lnafi9 > :first-child, .framer-RAUTm .framer-12wk2cq > :first-child, .framer-RAUTm .framer-9cr3bu > :first-child { margin-left: 0px; } .framer-RAUTm.framer-zr5e5s > :last-child, .framer-RAUTm .framer-18dct3m > :last-child, .framer-RAUTm .framer-o4zzp6 > :last-child, .framer-RAUTm .framer-kd38w7 > :last-child, .framer-RAUTm .framer-x36pvt > :last-child, .framer-RAUTm .framer-15r2c91 > :last-child, .framer-RAUTm .framer-6r6gd6 > :last-child, .framer-RAUTm .framer-w6o1qo > :last-child, .framer-RAUTm .framer-lnafi9 > :last-child, .framer-RAUTm .framer-12wk2cq > :last-child, .framer-RAUTm .framer-9cr3bu > :last-child { margin-right: 0px; } .framer-RAUTm .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RAUTm .framer-j6jn62 > :first-child, .framer-RAUTm .framer-8o2ej9 > :first-child, .framer-RAUTm .framer-1xrhb8h > :first-child, .framer-RAUTm .framer-163l99g > :first-child { margin-top: 0px; } .framer-RAUTm .framer-j6jn62 > :last-child, .framer-RAUTm .framer-8o2ej9 > :last-child, .framer-RAUTm .framer-1xrhb8h > :last-child, .framer-RAUTm .framer-163l99g > :last-child { margin-bottom: 0px; } .framer-RAUTm .framer-8o2ej9 > *, .framer-RAUTm .framer-1xrhb8h > *, .framer-RAUTm .framer-163l99g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RAUTm .framer-18dct3m > *, .framer-RAUTm .framer-o4zzp6 > *, .framer-RAUTm .framer-kd38w7 > *, .framer-RAUTm .framer-x36pvt > *, .framer-RAUTm .framer-15r2c91 > *, .framer-RAUTm .framer-6r6gd6 > *, .framer-RAUTm .framer-w6o1qo > *, .framer-RAUTm .framer-lnafi9 > *, .framer-RAUTm .framer-12wk2cq > *, .framer-RAUTm .framer-9cr3bu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-RAUTm.framer-v-1ebnay1 .framer-o4zzp6 { bottom: 600px; height: 290400px; left: calc(50.00000000000002% - 100% / 2); position: absolute; z-index: 1; }\",\".framer-RAUTm.framer-v-1ebnay1 .framer-x36pvt { height: min-content; left: unset; position: relative; top: unset; width: 100%; }\",\".framer-RAUTm.framer-v-1ebnay1 .framer-zgn87c, .framer-RAUTm.framer-v-1ebnay1 .framer-sd6nrz, .framer-RAUTm.framer-v-1pzlrxt .framer-zgn87c, .framer-RAUTm.framer-v-1pzlrxt .framer-sd6nrz, .framer-RAUTm.framer-v-1pzlrxt .framer-1c7vuth, .framer-RAUTm.framer-v-1t99goi .framer-sd6nrz, .framer-RAUTm.framer-v-1t99goi .framer-1c7vuth, .framer-RAUTm.framer-v-az6enk .framer-18wzm5w, .framer-RAUTm.framer-v-az6enk .framer-4cn5av, .framer-RAUTm.framer-v-az6enk .framer-nsssxl { height: var(--framer-aspect-ratio-supported, 484px); }\",\".framer-RAUTm.framer-v-1ebnay1 .framer-15r2c91 { left: calc(50.00000000000002% - 100.06557377049181% / 2); top: calc(155.3571428571429% - 600px / 2); }\",\".framer-RAUTm.framer-v-1pzlrxt .framer-o4zzp6 { bottom: 600px; height: unset; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: -580px; z-index: 1; }\",\".framer-RAUTm.framer-v-1pzlrxt .framer-x36pvt { bottom: 600px; left: calc(50.00000000000002% - 100.06557377049181% / 2); top: unset; }\",\".framer-RAUTm.framer-v-1pzlrxt .framer-15r2c91 { left: unset; position: relative; top: unset; }\",\".framer-RAUTm.framer-v-1t99goi .framer-o4zzp6, .framer-RAUTm.framer-v-3qbwxa .framer-o4zzp6 { bottom: 600px; height: 60000%; left: calc(50.00000000000002% - 100% / 2); position: absolute; z-index: 1; }\",\".framer-RAUTm.framer-v-1t99goi .framer-15r2c91, .framer-RAUTm.framer-v-3qbwxa .framer-15r2c91 { align-self: stretch; flex: 1 0 0px; height: auto; left: unset; position: relative; top: unset; width: 1px; }\",\".framer-RAUTm.framer-v-3qbwxa .framer-fx0erp, .framer-RAUTm.framer-v-3qbwxa .framer-1jywe65, .framer-RAUTm.framer-v-3qbwxa .framer-sd6nrz, .framer-RAUTm.framer-v-3qbwxa .framer-1c7vuth, .framer-RAUTm.framer-v-85x97h .framer-fx0erp, .framer-RAUTm.framer-v-85x97h .framer-1jywe65, .framer-RAUTm.framer-v-85x97h .framer-zgn87c, .framer-RAUTm.framer-v-85x97h .framer-sd6nrz, .framer-RAUTm.framer-v-v1cx4b .framer-fx0erp, .framer-RAUTm.framer-v-v1cx4b .framer-1jywe65, .framer-RAUTm.framer-v-v1cx4b .framer-sd6nrz, .framer-RAUTm.framer-v-g5n7ke .framer-fx0erp, .framer-RAUTm.framer-v-g5n7ke .framer-1jywe65, .framer-RAUTm.framer-v-b7tp07 .framer-fx0erp, .framer-RAUTm.framer-v-b7tp07 .framer-1jywe65, .framer-RAUTm.framer-v-b7tp07 .framer-zgn87c, .framer-RAUTm.framer-v-b7tp07 .framer-sd6nrz, .framer-RAUTm.framer-v-b7tp07 .framer-1c7vuth { height: var(--framer-aspect-ratio-supported, 161px); }\",\".framer-RAUTm.framer-v-xnb0yg.framer-zr5e5s, .framer-RAUTm.framer-v-5r58xr.framer-zr5e5s, .framer-RAUTm.framer-v-85x97h.framer-zr5e5s, .framer-RAUTm.framer-v-v1cx4b.framer-zr5e5s, .framer-RAUTm.framer-v-g5n7ke.framer-zr5e5s, .framer-RAUTm.framer-v-17ri0bl.framer-zr5e5s, .framer-RAUTm.framer-v-lbcx9g.framer-zr5e5s, .framer-RAUTm.framer-v-3nt3ga.framer-zr5e5s { flex-direction: column; height: 800px; width: 390px; }\",\".framer-RAUTm.framer-v-xnb0yg .framer-j6jn62, .framer-RAUTm.framer-v-17ri0bl .framer-j6jn62, .framer-RAUTm.framer-v-lbcx9g .framer-j6jn62, .framer-RAUTm.framer-v-3nt3ga .framer-j6jn62 { gap: 20px; width: 100%; }\",\".framer-RAUTm.framer-v-xnb0yg .framer-18dct3m, .framer-RAUTm.framer-v-17ri0bl .framer-18dct3m { flex: 1 0 0px; height: 1px; width: 100%; }\",\".framer-RAUTm.framer-v-xnb0yg .framer-o4zzp6 { height: 100%; max-height: 600px; max-width: 600px; }\",\".framer-RAUTm.framer-v-xnb0yg .framer-fx0erp, .framer-RAUTm.framer-v-xnb0yg .framer-1jywe65, .framer-RAUTm.framer-v-xnb0yg .framer-zgn87c, .framer-RAUTm.framer-v-xnb0yg .framer-sd6nrz, .framer-RAUTm.framer-v-xnb0yg .framer-1c7vuth, .framer-RAUTm.framer-v-5r58xr .framer-fx0erp, .framer-RAUTm.framer-v-5r58xr .framer-1jywe65, .framer-RAUTm.framer-v-5r58xr .framer-zgn87c, .framer-RAUTm.framer-v-5r58xr .framer-sd6nrz, .framer-RAUTm.framer-v-5r58xr .framer-1c7vuth, .framer-RAUTm.framer-v-17ri0bl .framer-fx0erp, .framer-RAUTm.framer-v-lbcx9g .framer-zgn87c { height: var(--framer-aspect-ratio-supported, 315px); }\",\".framer-RAUTm.framer-v-xnb0yg .framer-x36pvt { bottom: -410px; height: 100%; left: calc(50.00000000000002% - min(600px, 100.12820512820512%) / 2); max-height: 600px; max-width: 600px; top: unset; width: 100%; }\",\".framer-RAUTm.framer-v-xnb0yg .framer-15r2c91, .framer-RAUTm.framer-v-xnb0yg .framer-6r6gd6 { bottom: -410px; height: 100%; left: calc(50.00000000000002% - min(600px, 100%) / 2); max-height: 600px; max-width: 600px; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-xnb0yg.framer-zr5e5s, .framer-RAUTm.framer-v-xnb0yg .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-xnb0yg.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-xnb0yg.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-xnb0yg .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-xnb0yg.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-xnb0yg .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-xnb0yg .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-RAUTm.framer-v-5r58xr .framer-j6jn62, .framer-RAUTm.framer-v-85x97h .framer-j6jn62, .framer-RAUTm.framer-v-v1cx4b .framer-j6jn62 { gap: 20px; }\",\".framer-RAUTm.framer-v-5r58xr .framer-18dct3m, .framer-RAUTm.framer-v-85x97h .framer-18dct3m, .framer-RAUTm.framer-v-v1cx4b .framer-18dct3m, .framer-RAUTm.framer-v-lbcx9g .framer-18dct3m, .framer-RAUTm.framer-v-3nt3ga .framer-18dct3m { width: 100%; }\",\".framer-RAUTm.framer-v-5r58xr .framer-o4zzp6, .framer-RAUTm.framer-v-v1cx4b .framer-o4zzp6, .framer-RAUTm.framer-v-g5n7ke .framer-o4zzp6 { height: 60000%; left: calc(50.00000000000002% - min(600px, 100%) / 2); max-height: 600px; max-width: 600px; position: absolute; top: -800px; z-index: 1; }\",\".framer-RAUTm.framer-v-5r58xr .framer-x36pvt, .framer-RAUTm.framer-v-85x97h .framer-15r2c91, .framer-RAUTm.framer-v-v1cx4b .framer-15r2c91, .framer-RAUTm.framer-v-g5n7ke .framer-15r2c91, .framer-RAUTm.framer-v-lbcx9g .framer-x36pvt, .framer-RAUTm.framer-v-3nt3ga .framer-15r2c91 { align-self: stretch; flex: 1 0 0px; height: auto; left: unset; max-height: 600px; max-width: 600px; position: relative; top: unset; width: 1px; }\",\".framer-RAUTm.framer-v-5r58xr .framer-15r2c91 { left: calc(50.00000000000002% - min(600px, 100.06557377049181%) / 2); max-height: 600px; max-width: 600px; top: calc(150.16611295681065% - min(600px, 600px) / 2); }\",\".framer-RAUTm.framer-v-5r58xr .framer-6r6gd6 { bottom: -410px; left: calc(50.00000000000002% - min(600px, 100.12820512820512%) / 2); max-height: 600px; max-width: 600px; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-5r58xr.framer-zr5e5s, .framer-RAUTm.framer-v-5r58xr .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-5r58xr.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-5r58xr.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-5r58xr .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-5r58xr.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-5r58xr .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-5r58xr .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-RAUTm.framer-v-85x97h .framer-o4zzp6 { height: 100%; left: calc(50.00000000000002% - min(600px, 100%) / 2); max-height: 600px; max-width: 600px; position: absolute; top: -800px; z-index: 1; }\",\".framer-RAUTm.framer-v-85x97h .framer-x36pvt { left: calc(50.00000000000002% - min(600px, 100%) / 2); max-height: 600px; max-width: 600px; top: -800px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-85x97h.framer-zr5e5s, .framer-RAUTm.framer-v-85x97h .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-85x97h.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-85x97h.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-85x97h .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-85x97h.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-85x97h .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-85x97h .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-v1cx4b.framer-zr5e5s, .framer-RAUTm.framer-v-v1cx4b .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-v1cx4b.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-v1cx4b.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-v1cx4b .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-v1cx4b.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-v1cx4b .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-v1cx4b .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-RAUTm.framer-v-g5n7ke .framer-j6jn62 { gap: 20px; order: 0; }\",\".framer-RAUTm.framer-v-g5n7ke .framer-18dct3m { order: 1; width: 100%; }\",\".framer-RAUTm.framer-v-g5n7ke .framer-sd6nrz { height: var(--framer-aspect-ratio-supported, 161px); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-g5n7ke.framer-zr5e5s, .framer-RAUTm.framer-v-g5n7ke .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-g5n7ke.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-g5n7ke.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-g5n7ke .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-g5n7ke.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-g5n7ke .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-g5n7ke .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-RAUTm.framer-v-1q1fvwy .framer-1jywe65, .framer-RAUTm.framer-v-g0g7qp .framer-4p1g00 { order: 0; }\",\".framer-RAUTm.framer-v-1q1fvwy .framer-qe89be-container, .framer-RAUTm.framer-v-az6enk .framer-1pp6scm-container { height: var(--framer-aspect-ratio-supported, 455px); }\",\".framer-RAUTm.framer-v-az6enk .framer-n2yfoa { height: var(--framer-aspect-ratio-supported, 450px); }\",\".framer-RAUTm.framer-v-g0g7qp .framer-15r2c91 { height: 484px; left: unset; position: relative; top: unset; }\",\".framer-RAUTm.framer-v-17ri0bl .framer-o4zzp6 { height: 92%; max-height: 600px; max-width: 600px; }\",\".framer-RAUTm.framer-v-17ri0bl .framer-kd38w7 { left: -17px; top: 49%; width: 97%; }\",\".framer-RAUTm.framer-v-17ri0bl .framer-c5hg2m-container { height: var(--framer-aspect-ratio-supported, 354px); order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-17ri0bl.framer-zr5e5s, .framer-RAUTm.framer-v-17ri0bl .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-17ri0bl.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-17ri0bl.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-17ri0bl .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-17ri0bl.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-17ri0bl .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-17ri0bl .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-lbcx9g.framer-zr5e5s, .framer-RAUTm.framer-v-lbcx9g .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-lbcx9g.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-lbcx9g.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-lbcx9g .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-lbcx9g.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-lbcx9g .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-lbcx9g .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-RAUTm.framer-v-3nt3ga .framer-sd6nrz { height: var(--framer-aspect-ratio-supported, 161px); width: 97%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RAUTm.framer-v-3nt3ga.framer-zr5e5s, .framer-RAUTm.framer-v-3nt3ga .framer-j6jn62 { gap: 0px; } .framer-RAUTm.framer-v-3nt3ga.framer-zr5e5s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-RAUTm.framer-v-3nt3ga.framer-zr5e5s > :first-child, .framer-RAUTm.framer-v-3nt3ga .framer-j6jn62 > :first-child { margin-top: 0px; } .framer-RAUTm.framer-v-3nt3ga.framer-zr5e5s > :last-child, .framer-RAUTm.framer-v-3nt3ga .framer-j6jn62 > :last-child { margin-bottom: 0px; } .framer-RAUTm.framer-v-3nt3ga .framer-j6jn62 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jxmBcgMDS\":{\"layout\":[\"fixed\",\"fixed\"]},\"K55EEGxoL\":{\"layout\":[\"fixed\",\"fixed\"]},\"ILvJpCj9S\":{\"layout\":[\"fixed\",\"fixed\"]},\"bw0xtF5Ni\":{\"layout\":[\"fixed\",\"fixed\"]},\"SZeq711Nl\":{\"layout\":[\"fixed\",\"fixed\"]},\"LZPWzLSTj\":{\"layout\":[\"fixed\",\"fixed\"]},\"rq_i_6yyM\":{\"layout\":[\"fixed\",\"fixed\"]},\"vc40YTD1b\":{\"layout\":[\"fixed\",\"fixed\"]},\"OpLqz1TDj\":{\"layout\":[\"fixed\",\"fixed\"]},\"MdPwP2Eje\":{\"layout\":[\"fixed\",\"fixed\"]},\"vWMRNThkd\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y8bwAxvsJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"aEKwl6NKh\":{\"layout\":[\"fixed\",\"fixed\"]},\"aKvq1WOQF\":{\"layout\":[\"fixed\",\"fixed\"]},\"kXiMqSKwH\":{\"layout\":[\"fixed\",\"fixed\"]},\"RU39d8YG2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"JLdKPKSqQ\":\"image1\",\"b_saYkFyl\":\"image2\",\"UwHSYt0G3\":\"image3\",\"jEZfB9cP2\":\"title1\",\"ZqeK4Od1_\":\"text1\",\"seSAtOQqe\":\"title2\",\"UquBv3yja\":\"text2\",\"ZFBGrHCne\":\"title3\",\"DhecZES3l\":\"text3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM9PfdfBl9=withCSS(Component,css,\"framer-RAUTm\");export default FramerM9PfdfBl9;FramerM9PfdfBl9.displayName=\"Slide Features / Slide Features Component\";FramerM9PfdfBl9.defaultProps={height:550,width:1e3};addPropertyControls(FramerM9PfdfBl9,{variant:{options:[\"nHyncK8D_\",\"jxmBcgMDS\",\"K55EEGxoL\",\"ILvJpCj9S\",\"bw0xtF5Ni\",\"SZeq711Nl\",\"LZPWzLSTj\",\"rq_i_6yyM\",\"vc40YTD1b\",\"OpLqz1TDj\",\"MdPwP2Eje\",\"vWMRNThkd\",\"Y8bwAxvsJ\",\"aEKwl6NKh\",\"aKvq1WOQF\",\"kXiMqSKwH\",\"RU39d8YG2\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Desktop 5\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\",\"Mobile 4\",\"Mobile 5\",\"Variant\",\"Desktop 2 Primary\",\"Desktop 2 Primary\",\"Desktop 3 Primary\",\"Mobile 1 Usability\",\"Mobile 2 Usability\",\"Mobile 3 Usability\"],title:\"Variant\",type:ControlType.Enum},JLdKPKSqQ:{title:\"Image 1\",type:ControlType.ResponsiveImage},b_saYkFyl:{__defaultAssetReference:\"data:framer/asset-reference,jDsWPrhSwQ3uBDDdTzzLSlTfU.webp?originalFilename=2.webp&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},UwHSYt0G3:{__defaultAssetReference:\"data:framer/asset-reference,MUiVJeuMbF08y6yg1Xcdy0gKTk.webp?originalFilename=3.webp&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},jEZfB9cP2:{defaultValue:\"Collaborate with your team\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},ZqeK4Od1_:{defaultValue:\"Empowers organizations and teams by providing a centralized, digital workspace where members can collaborate efficiently.\",displayTextArea:true,title:\"Text 1\",type:ControlType.String},seSAtOQqe:{defaultValue:\"Powerful analytics\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},UquBv3yja:{defaultValue:\"Enables users to unlock the hidden potential of their data, extract valuable insights, and gain a competitive edge.\\n\",displayTextArea:true,title:\"Text 2\",type:ControlType.String},ZFBGrHCne:{defaultValue:\"Easy sharing\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},DhecZES3l:{defaultValue:\"Simplifies the process of distributing information, resources, or files, enhancing collaboration, communication.\",displayTextArea:true,title:\"Text 3\",type:ControlType.String}});addFonts(FramerM9PfdfBl9,[{explicitInter:true,fonts:[]},...SlideFeaturesCardFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM9PfdfBl9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"550\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jxmBcgMDS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K55EEGxoL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ILvJpCj9S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bw0xtF5Ni\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SZeq711Nl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LZPWzLSTj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rq_i_6yyM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vc40YTD1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OpLqz1TDj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MdPwP2Eje\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vWMRNThkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y8bwAxvsJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aEKwl6NKh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aKvq1WOQF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kXiMqSKwH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RU39d8YG2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"JLdKPKSqQ\\\":\\\"image1\\\",\\\"b_saYkFyl\\\":\\\"image2\\\",\\\"UwHSYt0G3\\\":\\\"image3\\\",\\\"jEZfB9cP2\\\":\\\"title1\\\",\\\"ZqeK4Od1_\\\":\\\"text1\\\",\\\"seSAtOQqe\\\":\\\"title2\\\",\\\"UquBv3yja\\\":\\\"text2\\\",\\\"ZFBGrHCne\\\":\\\"title3\\\",\\\"DhecZES3l\\\":\\\"text3\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M9PfdfBl9.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SlideFeaturesSlideFeaturesComponent from\"https://framerusercontent.com/modules/1Wtcz3Sz5VZb6ZN6dFup/QJ8HyzQiFwb6609ZJvI7/M9PfdfBl9.js\";const SlideFeaturesSlideFeaturesComponentFonts=getFonts(SlideFeaturesSlideFeaturesComponent);const cycleOrder=[\"KalljXjbL\",\"pGnZajTsz\",\"j_vAwnxR2\",\"HlBne5X9x\"];const serializationHash=\"framer-6QeYU\";const variantClassNames={HlBne5X9x:\"framer-v-eufnrc\",j_vAwnxR2:\"framer-v-z4w13x\",KalljXjbL:\"framer-v-1phc2u5\",pGnZajTsz:\"framer-v-i2y7l4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop usability\":\"j_vAwnxR2\",\"Mobile usability\":\"HlBne5X9x\",Desktop:\"KalljXjbL\",Mobile:\"pGnZajTsz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KalljXjbL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KalljXjbL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1phc2u5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"KalljXjbL\",ref:ref??ref1,style:{backgroundColor:\"var(--token-43d2da8e-3dbc-409e-8bc7-3d3835e600e5, rgb(255, 255, 255))\",...style},...addPropertyOverrides({HlBne5X9x:{\"data-framer-name\":\"Mobile usability\"},j_vAwnxR2:{\"data-framer-name\":\"Desktop usability\"},pGnZajTsz:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||550)-0-550)/2),...addPropertyOverrides({HlBne5X9x:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||800)-0-550)/2)},pGnZajTsz:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||800)-0-550)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r9lbu6-container\",layoutDependency:layoutDependency,layoutId:\"zEQj0dZv_-container\",children:/*#__PURE__*/_jsx(SlideFeaturesSlideFeaturesComponent,{b_saYkFyl:addImageAlt({src:\"https://framerusercontent.com/images/D3GqThLj35bE8apmUezf3LcLc.png\",srcSet:\"https://framerusercontent.com/images/D3GqThLj35bE8apmUezf3LcLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/D3GqThLj35bE8apmUezf3LcLc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/D3GqThLj35bE8apmUezf3LcLc.png 1832w\"},\"\"),DhecZES3l:\"Treat your own AI interviewer by picking your AI interviewer persona, building your own discussion guide, adding moderator instructions, and selecting the moderator language.\",height:\"100%\",id:\"zEQj0dZv_\",jEZfB9cP2:\"AI-moderated conversations\",JLdKPKSqQ:addImageAlt({src:\"https://framerusercontent.com/images/hTUIYPcaPyzRGAJMctMjdGy7tA.png\",srcSet:\"https://framerusercontent.com/images/hTUIYPcaPyzRGAJMctMjdGy7tA.png?scale-down-to=512 512w,https://framerusercontent.com/images/hTUIYPcaPyzRGAJMctMjdGy7tA.png 956w\"},\"\"),layoutId:\"zEQj0dZv_\",seSAtOQqe:\"AI-powered synthesis\",style:{width:\"100%\"},UquBv3yja:\"Our AI engine parses transcripts so you can get summaries, extract and count themes, and highlight powerful verbatims to tell your story.\",UwHSYt0G3:addImageAlt({src:\"https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png\",srcSet:\"https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/nU7ifSRKLk09iZKdr2q71VGZQs.png 4205w\"},\"\"),variant:\"nHyncK8D_\",width:\"100%\",ZFBGrHCne:\"Customized to your study\",ZqeK4Od1_:'Conduct hundreds of interviews at once, in any language. Our AI interviewer engages participants in rich dialogue and probes deeper to get the \"why\" behind answers.',...addPropertyOverrides({HlBne5X9x:{DhecZES3l:\"Get in-depth feedback on live sites, prototypes, and even mobile apps across all platforms and 57 different languages.\",jEZfB9cP2:\"AI-moderated testing\",UquBv3yja:\"AI will instantly break down the stats and thematic unstructured feedback while letting you chat with your data in real time.\",variant:\"aKvq1WOQF\",ZFBGrHCne:\"Test anything, anywhere\",ZqeK4Od1_:\"Our AI moderator can navigate complex conversations, dynamically probe deeper into answers, and make sure you get the dpeth you need from responses.\"},j_vAwnxR2:{DhecZES3l:\"Get in-depth feedback on live sites, prototypes, and even mobile apps across all platforms and 57 different languages.\",jEZfB9cP2:\"AI-moderated testing\",UquBv3yja:\"AI will instantly break down the stats and thematic unstructured feedback while letting you chat with your data in real time.\",variant:\"vWMRNThkd\",ZFBGrHCne:\"Test anything, anywhere\",ZqeK4Od1_:\"Our AI moderator can navigate complex conversations, dynamically probe deeper into answers, and make sure you get the dpeth you need from responses.\"},pGnZajTsz:{variant:\"SZeq711Nl\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6QeYU.framer-1vgftx4, .framer-6QeYU .framer-1vgftx4 { display: block; }\",\".framer-6QeYU.framer-1phc2u5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-6QeYU .framer-1r9lbu6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6QeYU.framer-1phc2u5 { gap: 0px; } .framer-6QeYU.framer-1phc2u5 > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-6QeYU.framer-1phc2u5 > :first-child { margin-left: 0px; } .framer-6QeYU.framer-1phc2u5 > :last-child { margin-right: 0px; } }\",\".framer-6QeYU.framer-v-i2y7l4.framer-1phc2u5, .framer-6QeYU.framer-v-eufnrc.framer-1phc2u5 { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pGnZajTsz\":{\"layout\":[\"fixed\",\"auto\"]},\"j_vAwnxR2\":{\"layout\":[\"fixed\",\"auto\"]},\"HlBne5X9x\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriJXPmeSzU=withCSS(Component,css,\"framer-6QeYU\");export default FrameriJXPmeSzU;FrameriJXPmeSzU.displayName=\"Slide Features / Slide Features\";FrameriJXPmeSzU.defaultProps={height:550,width:1e3};addPropertyControls(FrameriJXPmeSzU,{variant:{options:[\"KalljXjbL\",\"pGnZajTsz\",\"j_vAwnxR2\",\"HlBne5X9x\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop usability\",\"Mobile usability\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriJXPmeSzU,[{explicitInter:true,fonts:[]},...SlideFeaturesSlideFeaturesComponentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriJXPmeSzU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"550\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pGnZajTsz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j_vAwnxR2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HlBne5X9x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getIframeSnippet", "id", "environment", "customDomain", "params", "gtm_auth", "gtm_preview", "getGTMScript", "customScriptName", "setupGTM", "dataLayerScript", "noScript", "script", "initGTM", "nonce", "gtm", "gtag", "isBrowser", "window", "sendToGTM", "args", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "t", "o", "r", "getMultipleShadows", "e", "getShadow", "safeJSONParse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "useConsent", "gtmId", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "ue", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "ref", "ref1", "ref2", "isEULocale", "_language", "locale", "navigator", "country", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "IconCookie", "props", "p", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "oep5aWG90", "wdGQJh0F_", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "css", "FramerBlf0sjosZ", "withCSS", "Toggle_zGbN_default", "addPropertyControls", "ControlType", "addFonts", "SPACING", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "onClick", "theme", "Toggle_zGbN_default", "children", "style", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "AnimatePresence", "Overlay", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "Ga", "motion", "Backdrop", "onClick", "IconCookie", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear8g024n", "args", "useOnVariantChange", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramernbPsyqHog", "withCSS", "nbPsyqHog_default", "addPropertyControls", "ControlType", "addFonts", "SlideFeaturesProgressBarFonts", "getFonts", "nbPsyqHog_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "text", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Wvc2ILvfX", "bag9a2Ok0", "wedAHr85c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap18j1m1d", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerHIzsPeabj", "withCSS", "HIzsPeabj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SlideFeaturesCardFonts", "getFonts", "HIzsPeabj_default", "VideoFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "text1", "text2", "text3", "title1", "title2", "title3", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JLdKPKSqQ", "b_saYkFyl", "UwHSYt0G3", "jEZfB9cP2", "ZqeK4Od1_", "seSAtOQqe", "UquBv3yja", "ZFBGrHCne", "DhecZES3l", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1hkenj3", "args", "onAppearpfm1ig", "onAppear100m3wv", "onAppears994fb", "onAppear1rq0arc", "onAppeariujgd", "onAppear3yhl6p", "onAppear1glsh3u", "onAppear1itst7", "onAppear1gws0cy", "onAppear1webm4h", "onAppear1c5k8cc", "onAppear1s4we38", "onAppearxe4fdn", "onAppearjlwcbc", "onAppearusneyf", "Wvc2ILvfXs994fb", "Wvc2ILvfX1ysynm7", "Wvc2ILvfX1itst7", "Wvc2ILvfXkfdzn3", "Wvc2ILvfX16c7rin", "Wvc2ILvfX1ck9o9k", "Wvc2ILvfXjicnff", "Wvc2ILvfXyancvz", "Wvc2ILvfXp6zg4q", "Wvc2ILvfXsaevl7", "Wvc2ILvfXe28b50", "Wvc2ILvfX1rq0arc", "Wvc2ILvfX1iq7z6j", "Wvc2ILvfX1gws0cy", "Wvc2ILvfX1wg0ic", "Wvc2ILvfX10q1muw", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerM9PfdfBl9", "withCSS", "M9PfdfBl9_default", "addPropertyControls", "ControlType", "addFonts", "SlideFeaturesSlideFeaturesComponentFonts", "getFonts", "M9PfdfBl9_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FrameriJXPmeSzU", "withCSS", "iJXPmeSzU_default", "addPropertyControls", "ControlType", "addFonts"]
}
