{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js", "ssg:https://framerusercontent.com/modules/d9HvFqmsVsDEBKmj9F3w/EujNdGhtTSjc6PMKXTmh/augiA20Il.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)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\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`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\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 getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,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();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";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(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization: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};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){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){if(!hasInitializedGTM&&!gtmLoadedExternally){// 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\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[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\":{\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// 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 _Intl_DateTimeFormat_resolvedOptions_timeZone,_Intl_DateTimeFormat_resolvedOptions,_Intl_DateTimeFormat,_Intl;return(_Intl=Intl)===null||_Intl===void 0?void 0:(_Intl_DateTimeFormat=_Intl.DateTimeFormat())===null||_Intl_DateTimeFormat===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions=_Intl_DateTimeFormat.resolvedOptions())===null||_Intl_DateTimeFormat_resolvedOptions===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions_timeZone=_Intl_DateTimeFormat_resolvedOptions.timeZone)===null||_Intl_DateTimeFormat_resolvedOptions_timeZone===void 0?void 0:_Intl_DateTimeFormat_resolvedOptions_timeZone.startsWith(\"Europe\");};const isEULocale=()=>{var _navigator_languages;var _navigator_language;const locale=(_navigator_language=navigator.language)!==null&&_navigator_language!==void 0?_navigator_language:(_navigator_languages=navigator.languages)===null||_navigator_languages===void 0?void 0:_navigator_languages[0];return countries.some(country=>{var _locale_toUpperCase;return locale===null||locale===void 0?void 0:(_locale_toUpperCase=locale.toUpperCase())===null||_locale_toUpperCase===void 0?void 0:_locale_toUpperCase.includes(country);});};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\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/gnipUJynzv8FJkpTy04V/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,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));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,showReject:region.showReject,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,showReject=true,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,optional:option===\"necessary\"?options[option].optional:true}))},\"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:[showReject&&/*#__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,optional,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}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),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(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description===null||description===void 0?void 0:description.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&(policy===null||policy===void 0?void 0:policy.link)?\" \":null,(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});}const Button=withCSS(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;var _settings_hoverOpacity,_settings_tapOpacity;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:(_settings_hoverOpacity=settings.hoverOpacity)!==null&&_settings_hoverOpacity!==void 0?_settings_hoverOpacity:.6},whileTap:{opacity:(_settings_tapOpacity=settings.tapOpacity)!==null&&_settings_tapOpacity!==void 0?_settings_tapOpacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",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}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\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{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.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,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){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,gtmLoadedExternally});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){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({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(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,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));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);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[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})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",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(Suspense,{children:/*#__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.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");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},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},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\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{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: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},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},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\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},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},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},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},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue: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\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import GraphicMobile from\"#framer/local/canvasComponent/DhHMYAZB0/DhHMYAZB0.js\";import VideoCard from\"#framer/local/canvasComponent/FFgVrC63U/FFgVrC63U.js\";import Footer from\"#framer/local/canvasComponent/FPVMhTjmj/FPVMhTjmj.js\";import ButtonSecondary from\"#framer/local/canvasComponent/fxKX01zFp/fxKX01zFp.js\";import ContactButton from\"#framer/local/canvasComponent/J32wuDOzw/J32wuDOzw.js\";import ButtonPrimary from\"#framer/local/canvasComponent/KzzEnz_um/KzzEnz_um.js\";import Logos from\"#framer/local/canvasComponent/mfFcip9DF/mfFcip9DF.js\";import ButtonPrimarySmall from\"#framer/local/canvasComponent/mS_iNIyWo/mS_iNIyWo.js\";import Hand3D from\"#framer/local/canvasComponent/pftG3HR3V/pftG3HR3V.js\";import VideoControls from\"#framer/local/canvasComponent/PlLIzjgV_/PlLIzjgV_.js\";import NavigationBar from\"#framer/local/canvasComponent/qMPT5WPFr/qMPT5WPFr.js\";import FAQS from\"#framer/local/canvasComponent/WX7SUM2f5/WX7SUM2f5.js\";import*as sharedStyle from\"#framer/local/css/NmiAO0a2S/NmiAO0a2S.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const Hand3DFonts=getFonts(Hand3D);const VideoCardFonts=getFonts(VideoCard);const VideoCardWithVariantAppearEffect=withVariantAppearEffect(VideoCard);const LogosFonts=getFonts(Logos);const GraphicMobileFonts=getFonts(GraphicMobile);const ButtonPrimarySmallFonts=getFonts(ButtonPrimarySmall);const ImageWithFX=withFX(Image);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const FAQSFonts=getFonts(FAQS);const ContactButtonFonts=getFonts(ContactButton);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const CookieBannerFonts=getFonts(CookieBanner);const FooterFonts=getFonts(Footer);const VideoControlsFonts=getFonts(VideoControls);const breakpoints={ENYJHm5Bs:\"(max-width: 809px)\",kSJlyQlrY:\"(min-width: 1440px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1439px)\",XFxkSVo3y:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BR1Vw\";const variantClassNames={ENYJHm5Bs:\"framer-v-oacmt8\",kSJlyQlrY:\"framer-v-11e9574\",WQLkyLRf1:\"framer-v-72rtr7\",XFxkSVo3y:\"framer-v-ulvhoq\"};const transition1={bounce:0,delay:.3,duration:.5,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:.4,duration:.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:.1,duration:.6,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.2,delay:.3,duration:.6,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Notebook:\"kSJlyQlrY\",Phone:\"ENYJHm5Bs\",Tablet:\"XFxkSVo3y\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={component:VideoControls,variant:\"sxz57Ua2I\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-BR1Vw`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-BR1Vw`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"UffqhR4Zk\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"ZHMV91enT\");const ref3=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"Yh8LQwcHB\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"mgqvVOBfL\");const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId4=useRouteElementId(\"ADE6YijbB\");const elementId5=useRouteElementId(\"ik7rFDe8I\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"PycGduKdJ\");const ref8=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ENYJHm5Bs\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ENYJHm5Bs\")return false;return true;};const elementId7=useRouteElementId(\"C0YDwf2uU\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"u2dWLPDsX\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"H_fgjWTqY\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"c7Pp5xWBx\");const ref12=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({\"12yhemy\":cursor,c1pt1w:{...cursor,variant:\"TUoHcR2IO\"}});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"12yhemy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3jvf2\",\"data-framer-name\":\"Main Wrap\",id:elementId,name:\"Main Wrap\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-am839t\",\"data-framer-name\":\"Nav\",name:\"Nav\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"min(100vw - 32px, 1140px)\"},XFxkSVo3y:{width:\"min(100vw - 80px, 1140px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"min(100vw - 200px, 1140px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-68m5di-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{variant:\"mqllw4CTf\"},XFxkSVo3y:{variant:\"OepxjgNdo\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"GQB9vUN60\",layoutId:\"GQB9vUN60\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"FxTbqAWq5\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w67yrx\",\"data-framer-name\":\"Hero\",id:elementId1,name:\"Hero\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oisk6j\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pus1lu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ff4mmq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13l3b49\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1571\",name:\"Ellipse 1571\",style:{rotate:-23}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1oy7j5v\",\"data-styles-preset\":\"NmiAO0a2S\",children:[\"Meet \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(52, 193, 255)\"},children:\"Ally.\"})]}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1oy7j5v\",\"data-styles-preset\":\"NmiAO0a2S\",children:\"Your perfect match for \"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1oy7j5v\",\"data-styles-preset\":\"NmiAO0a2S\",children:\"on-demand design needs.\"})]}),className:\"framer-krryyy\",\"data-framer-name\":\"Meet Ally. Your perfect match for on-demand design needs.\",fonts:[\"Inter\"],name:\"Meet Ally. Your perfect match for on-demand design needs.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"The best of both worlds: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"in-house flexibility without the overhead.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"The best of both worlds: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"in-house flexibility without the overhead.\"})]}),className:\"framer-1rgemxh\",\"data-framer-name\":\"Main \u2192 Strong \u2192 Get everyone working in a single platform\",fonts:[\"GF;Inter Tight-600\",\"GF;Inter Tight-regular\"],name:\"Main \u2192 Strong \u2192 Get everyone working in a single platform\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1kpewm\",\"data-framer-appear-id\":\"1kpewm\",\"data-framer-name\":\"Avatar\",initial:animation1,name:\"Avatar\",optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7h7edt\",\"data-framer-name\":\"Frame 48098629\",name:\"Frame 48098629\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vq579t\",\"data-framer-name\":\"Frame 13\",name:\"Frame 13\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8.61px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 253, 253)\"},children:\"Designer\"})}),className:\"framer-1ea03m1\",\"data-framer-name\":\"Designer\",fonts:[\"Inter-SemiBold\"],name:\"Designer\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UF7zfCRnLsRz7qLxr798CwunFIM.png\"},className:\"framer-93euh5\",\"data-framer-name\":\"2\",name:\"2\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ypw17e\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10vo0tt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-muikax\",\"data-framer-name\":\"Frame 13\",name:\"Frame 13\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8.61px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 253, 253)\"},children:\"Team leader\"})}),className:\"framer-12bqe34\",\"data-framer-name\":\"Team leader\",fonts:[\"Inter-SemiBold\"],name:\"Team leader\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:153,intrinsicWidth:222,pixelHeight:153,pixelWidth:222,src:\"https://framerusercontent.com/images/b3qkmwS1uETMomYed9EhMlp03Q.png\"},className:\"framer-ug41dx\",\"data-framer-appear-id\":\"ug41dx\",\"data-framer-name\":\"Leader\",initial:animation1,name:\"Leader\",optimized:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3j3hiu\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":PycGduKdJ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":PycGduKdJ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":PycGduKdJ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":PycGduKdJ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"min(min(100vw, 1440px) - 32px, 300px)\"},XFxkSVo3y:{width:\"min(min(100vw, 1440px) - 80px, 300px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"min(min(100vw, 1440px) - 200px, 300px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5v779n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{x_ZERGDkz:resolvedLinks[3]},kSJlyQlrY:{x_ZERGDkz:resolvedLinks[2]},XFxkSVo3y:{x_ZERGDkz:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{Eufde2Knw:true,height:\"100%\",id:\"sXRjer4ih\",layoutId:\"sXRjer4ih\",qE3gfcxB6:\"I want to know more\",style:{width:\"100%\"},variant:\"ms8cmCVAy\",VWTmpN70b:0,width:\"100%\",x_ZERGDkz:resolvedLinks[0]})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkgnja\",\"data-framer-name\":\"How it works\",name:\"How it works\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14iwmia\",\"data-framer-name\":\"Grid\",name:\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116c2de\",\"data-border\":true,\"data-framer-name\":\"Branding\",name:\"Branding\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4qgjii\",\"data-framer-name\":\"Intersect\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Intersect\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_827)\">\\n<path d=\"M9.24618 15.2975C12.8555 15.2975 15.7814 12.3716 15.7814 8.76229C15.7814 5.15298 12.8555 2.22705 9.24618 2.22705C5.63686 2.22705 2.71094 5.15298 2.71094 8.76229C2.71094 12.3716 5.63686 15.2975 9.24618 15.2975Z\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M15.0545 21.1061C18.6638 21.1061 21.5898 18.1802 21.5898 14.5709C21.5898 10.9616 18.6638 8.03564 15.0545 8.03564C11.4452 8.03564 8.51929 10.9616 8.51929 14.5709C8.51929 18.1802 11.4452 21.1061 15.0545 21.1061Z\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.47363 11.1694L12.6469 14.3427\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.6523 8.99072L14.8256 12.1639\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_827\">\\n<rect width=\"23.2364\" height=\"23.2364\" fill=\"white\" transform=\"translate(0.532227 0.0483398)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Branding\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Branding\"})}),className:\"framer-1obkz73\",\"data-framer-name\":\"Branding\",fonts:[\"GF;Inter Tight-regular\"],name:\"Branding\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9afyh\",\"data-border\":true,\"data-framer-name\":\"Logo Design\",name:\"Logo Design\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-grb0i3\",\"data-framer-name\":\"PenNib\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"PenNib\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_835)\">\\n<path d=\"M11.8727 13.845C12.8753 13.845 13.6881 13.0323 13.6881 12.0297C13.6881 11.0271 12.8753 10.2144 11.8727 10.2144C10.8701 10.2144 10.0574 11.0271 10.0574 12.0297C10.0574 13.0323 10.8701 13.845 11.8727 13.845Z\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.25073 19.654L10.5908 13.313\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.2489 19.6537L16.9064 17.5442C17.032 17.5232 17.1498 17.4696 17.2481 17.3886C17.3464 17.3077 17.4217 17.2024 17.4664 17.0832L19.4978 11.6662L12.2364 4.40479L6.81943 6.43616C6.70022 6.48088 6.59487 6.55617 6.51393 6.65447C6.433 6.75276 6.37934 6.87061 6.35833 6.99619L4.2489 19.6537Z\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M19.4977 11.6665L22.1899 8.97438C22.3259 8.83822 22.4024 8.65359 22.4024 8.46109C22.4024 8.26859 22.3259 8.08397 22.1899 7.9478L15.9578 1.713C15.8216 1.57693 15.637 1.50049 15.4445 1.50049C15.252 1.50049 15.0674 1.57693 14.9312 1.713L12.2363 4.40516\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_835\">\\n<rect width=\"23.2364\" height=\"23.2364\" fill=\"white\" transform=\"translate(0.618042 0.0483398)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Logo design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Logo design\"})}),className:\"framer-s6slnd\",\"data-framer-name\":\"Logo design\",fonts:[\"GF;Inter Tight-regular\"],name:\"Logo design\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ss2zrm\",\"data-border\":true,\"data-framer-name\":\"Web Design\",name:\"Web Design\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lnc1si\",\"data-framer-name\":\"CodeBlock\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"CodeBlock\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_843)\">\\n<path d=\"M6.51283 2.95264L3.60828 5.85719L6.51283 8.76174\" stroke=\"#1A2028\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.1434 2.95264L13.048 5.85719L10.1434 8.76174\" stroke=\"#1A2028\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.6786 4.40479H18.857C19.0496 4.40479 19.2343 4.48129 19.3705 4.61747C19.5067 4.75364 19.5832 4.93834 19.5832 5.13092V18.2014C19.5832 18.394 19.5067 18.5787 19.3705 18.7149C19.2343 18.851 19.0496 18.9275 18.857 18.9275H5.78656C5.59398 18.9275 5.40928 18.851 5.27311 18.7149C5.13693 18.5787 5.06042 18.394 5.06042 18.2014V12.3923\" stroke=\"#1A2028\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_843\">\\n<rect width=\"23.2364\" height=\"23.2364\" fill=\"white\" transform=\"translate(0.703979 0.0483398)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Web design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Web design\"})}),className:\"framer-12k7xou\",\"data-framer-name\":\"Web design\",fonts:[\"GF;Inter Tight-regular\"],name:\"Web design\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16w9i1n\",\"data-border\":true,\"data-framer-name\":\"UX UI\",name:\"UX UI\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1litcqf\",\"data-framer-name\":\"Layout\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,name:\"Layout\",svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_850)\">\\n<path d=\"M10.2292 9.48779V18.9276\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.69501 9.48779H21.1223\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M20.3962 4.40479H4.42115C4.02011 4.40479 3.69501 4.72989 3.69501 5.13092V18.2014C3.69501 18.6024 4.02011 18.9275 4.42115 18.9275H20.3962C20.7972 18.9275 21.1223 18.6024 21.1223 18.2014V5.13092C21.1223 4.72989 20.7972 4.40479 20.3962 4.40479Z\" stroke=\"white\" stroke-width=\"1.45228\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_850\">\\n<rect width=\"23.2364\" height=\"23.2364\" fill=\"white\" transform=\"translate(0.789734 0.0483398)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX/UI design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX/UI design\"})}),className:\"framer-1ta62pu\",\"data-framer-name\":\"UX/UI design\",fonts:[\"GF;Inter Tight-regular\"],name:\"UX/UI design\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6y8fi\",\"data-border\":true,\"data-framer-name\":\"App Design\",name:\"App Design\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l0arau\",\"data-framer-name\":\"SquaresFour\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,name:\"SquaresFour\",svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_857)\">\\n<path d=\"M10.3162 4.40527H5.9592C5.55815 4.40527 5.23303 4.73039 5.23303 5.13144V9.48843C5.23303 9.88948 5.55815 10.2146 5.9592 10.2146H10.3162C10.7172 10.2146 11.0424 9.88948 11.0424 9.48843V5.13144C11.0424 4.73039 10.7172 4.40527 10.3162 4.40527Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M19.0301 4.40527H14.6731C14.272 4.40527 13.9469 4.73039 13.9469 5.13144V9.48843C13.9469 9.88948 14.272 10.2146 14.6731 10.2146H19.0301C19.4311 10.2146 19.7562 9.88948 19.7562 9.48843V5.13144C19.7562 4.73039 19.4311 4.40527 19.0301 4.40527Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.3162 13.1191H5.9592C5.55815 13.1191 5.23303 13.4443 5.23303 13.8453V18.2023C5.23303 18.6033 5.55815 18.9285 5.9592 18.9285H10.3162C10.7172 18.9285 11.0424 18.6033 11.0424 18.2023V13.8453C11.0424 13.4443 10.7172 13.1191 10.3162 13.1191Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M19.0301 13.1191H14.6731C14.272 13.1191 13.9469 13.4443 13.9469 13.8453V18.2023C13.9469 18.6033 14.272 18.9285 14.6731 18.9285H19.0301C19.4311 18.9285 19.7562 18.6033 19.7562 18.2023V13.8453C19.7562 13.4443 19.4311 13.1191 19.0301 13.1191Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_857\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.87561 0.0478516)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App design\"})}),className:\"framer-1yt3njw\",\"data-framer-name\":\"App design\",fonts:[\"GF;Inter Tight-regular\"],name:\"App design\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14zykwf\",\"data-border\":true,\"data-framer-name\":\"Packaging\",name:\"Packaging\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w2lfvc\",\"data-framer-name\":\"Package\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,name:\"Package\",svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_865)\">\\n<path d=\"M12.5805 11.7656V21.1041\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.93011 7.03027L12.5806 11.7649L21.231 7.03027\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M20.917 16.6439L12.9292 21.0172C12.8223 21.0757 12.7024 21.1064 12.5806 21.1064C12.4588 21.1064 12.3389 21.0757 12.2321 21.0172L4.24424 16.6439C4.13019 16.5815 4.03497 16.4896 3.96855 16.3778C3.90213 16.2661 3.86693 16.1385 3.86664 16.0085V7.32539C3.86693 7.19537 3.90213 7.06782 3.96855 6.95605C4.03497 6.84428 4.13019 6.7524 4.24424 6.68999L12.2321 2.31666C12.3389 2.25819 12.4588 2.22754 12.5806 2.22754C12.7024 2.22754 12.8223 2.25819 12.9292 2.31666L20.917 6.68999C21.0311 6.7524 21.1263 6.84428 21.1927 6.95605C21.2591 7.06782 21.2943 7.19537 21.2946 7.32539V16.0067C21.2946 16.137 21.2596 16.2649 21.1932 16.3771C21.1267 16.4892 21.0313 16.5813 20.917 16.6439Z\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.36469 4.43359L16.9371 9.12553V13.8456\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_865\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.962341 0.0478516)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Packaging\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Packaging\"})}),className:\"framer-93imzg\",\"data-framer-name\":\"Packaging\",fonts:[\"GF;Inter Tight-regular\"],name:\"Packaging\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u04etl\",\"data-border\":true,\"data-framer-name\":\"Deck\",name:\"Deck\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h6i4sy\",\"data-framer-name\":\"PresentationChart\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"PresentationChart\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_873)\">\\n<path d=\"M19.6562 4.40527H3.6806C3.27955 4.40527 2.95444 4.73039 2.95444 5.13144V16.0239C2.95444 16.425 3.27955 16.7501 3.6806 16.7501H19.6562C20.0573 16.7501 20.3824 16.425 20.3824 16.0239V5.13144C20.3824 4.73039 20.0573 4.40527 19.6562 4.40527Z\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M14.5726 16.75L17.4773 20.3808\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.7634 16.75L5.85873 20.3808\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.76309 10.9404V13.1189\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.6683 9.48828V13.1191\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M14.5726 8.03613V13.1193\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.6683 4.40506V2.22656\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_873\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.0491638 0.0478516)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Deck design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Deck design\"})}),className:\"framer-64ntbd\",\"data-framer-name\":\"Deck design\",fonts:[\"GF;Inter Tight-regular\"],name:\"Deck design\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6q364a\",\"data-border\":true,\"data-framer-name\":\"Marketing Graphics\",name:\"Marketing Graphics\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12ni56c\",\"data-framer-name\":\"MegaphoneSimple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"MegaphoneSimple\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_884)\">\\n<path d=\"M20.8126 13.6048C20.9634 13.5609 21.0959 13.4691 21.1902 13.3434C21.2845 13.2177 21.3354 13.0649 21.3354 12.9077V9.63999C21.3354 9.48287 21.2845 9.32999 21.1902 9.20429C21.0959 9.07859 20.9634 8.98686 20.8126 8.94287L4.83696 4.04125C4.72874 4.00969 4.61465 4.00375 4.50374 4.02392C4.39282 4.04409 4.28812 4.0898 4.19794 4.15744C4.10775 4.22508 4.03455 4.31279 3.98413 4.41362C3.93372 4.51445 3.90747 4.62564 3.90747 4.73837V17.8093C3.90747 17.9221 3.93372 18.0333 3.98413 18.1341C4.03455 18.2349 4.10775 18.3226 4.19794 18.3903C4.28812 18.4579 4.39282 18.5036 4.50374 18.5238C4.61465 18.544 4.72874 18.538 4.83696 18.5065L20.8126 13.6048Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M17.7059 14.558V17.8095C17.7059 18.002 17.6294 18.1867 17.4932 18.3229C17.357 18.4591 17.1723 18.5356 16.9797 18.5356H14.075C13.8825 18.5356 13.6977 18.4591 13.5616 18.3229C13.4254 18.1867 13.3489 18.002 13.3489 17.8095V6.65283\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_884\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.277588 0.381348)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marketing campaigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marketing campaigns\"})}),className:\"framer-1ycht97\",\"data-framer-name\":\"Marketing campaigns\",fonts:[\"GF;Inter Tight-regular\"],name:\"Marketing campaigns\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17eqzyh\",\"data-border\":true,\"data-framer-name\":\"Social Media\",name:\"Social Media\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3fqa06\",\"data-framer-name\":\"DeviceMobile\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"DeviceMobile\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_890)\">\\n<path d=\"M16.339 2.56006H7.625C6.8229 2.56006 6.17267 3.21029 6.17267 4.01239V19.988C6.17267 20.7901 6.8229 21.4404 7.625 21.4404H16.339C17.1411 21.4404 17.7913 20.7901 17.7913 19.988V4.01239C17.7913 3.21029 17.1411 2.56006 16.339 2.56006Z\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.17267 5.46436H17.7913\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.17267 18.5356H17.7913\" stroke=\"white\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_890\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.364197 0.381348)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Social Media\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Social Media\"})}),className:\"framer-19zj1ud\",\"data-framer-name\":\"Social Media\",fonts:[\"GF;Inter Tight-regular\"],name:\"Social Media\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1799aes\",\"data-framer-name\":\"Star\",name:\"Star\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ux85z1\",\"data-framer-name\":\"Frame 48098658\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,name:\"Frame 48098658\",svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.21012\" y=\"0.630041\" width=\"48.7402\" height=\"48.7402\" rx=\"24.3701\" fill=\"#F9F9F9\"/>\\n<rect x=\"1.21012\" y=\"0.630041\" width=\"48.7402\" height=\"48.7402\" rx=\"24.3701\" stroke=\"#34C2FF\" stroke-width=\"0.593091\"/>\\n<mask id=\"path-2-inside-1_1_896\" fill=\"white\">\\n<path d=\"M25.5796 15.5103L-nan -nanL25.5796 15.5103C26.6208 20.2537 30.3256 23.9585 35.069 24.9997L-nan -nanL35.069 24.9997L-nan -nanL35.069 24.9997C30.3256 26.0409 26.6208 29.7457 25.5796 34.4892L-nan -nanL25.5796 34.4892L25.5255 34.2675C24.3961 29.6368 20.7403 26.046 16.0901 24.9997L-nan -nanL16.0901 24.9997L-nan -nanL16.0901 24.9997C20.7403 23.9534 24.3961 20.3626 25.5255 15.7319L25.5796 15.5103Z\"/>\\n</mask>\\n<path d=\"M25.5255 34.2675L26.1017 34.127L26.1017 34.127L25.5255 34.2675ZM25.5255 15.7319L24.9493 15.5913L25.5255 15.7319ZM26.1017 15.8724L26.1558 15.6508L25.0034 15.3697L24.9493 15.5913L26.1017 15.8724ZM26.1558 34.3486L26.1017 34.127L24.9493 34.4081L25.0034 34.6297L26.1558 34.3486ZM34.9419 24.4204C29.9724 25.5113 26.0911 29.3926 25.0003 34.362L26.1589 34.6163C27.1505 30.0989 30.6788 26.5706 35.1962 25.579L34.9419 24.4204ZM26.1017 34.127C24.9189 29.2774 21.0903 25.5168 16.2203 24.4211L15.9599 25.5783C20.3903 26.5752 23.8733 29.9963 24.9493 34.4081L26.1017 34.127ZM16.2203 25.5783C21.0903 24.4826 24.9189 20.722 26.1017 15.8724L24.9493 15.5913C23.8733 20.0031 20.3903 23.4242 15.9599 24.4211L16.2203 25.5783ZM25.0003 15.6374C26.0911 20.6068 29.9724 24.4882 34.9419 25.579L35.1962 24.4204C30.6788 23.4288 27.1505 19.9005 26.1589 15.3831L25.0003 15.6374Z\" fill=\"#34C2FF\" mask=\"url(#path-2-inside-1_1_896)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-82xjf3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15paypu\",\"data-framer-name\":\"Rectangle 4235\",layout:\"position\",name:\"Rectangle 4235\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.526 19.601 L 10.102 19.46 L 10.102 19.46 Z M 9.526 1.065 L 8.949 0.925 Z M 10.102 1.206 L 10.156 0.984 L 9.003 0.703 L 8.949 0.925 Z M 10.156 19.682 L 10.102 19.46 L 8.949 19.741 L 9.003 19.963 Z M 18.942 9.754 C 13.972 10.844 10.091 14.726 9 19.695 L 10.159 19.95 C 11.151 15.432 14.679 11.904 19.196 10.912 Z M 10.102 19.46 C 8.919 14.611 5.09 10.85 0.22 9.754 L -0.04 10.912 C 4.39 11.908 7.873 15.33 8.949 19.741 Z M 0.22 10.912 C 5.09 9.816 8.919 6.055 10.102 1.206 L 8.949 0.925 C 7.873 5.336 4.39 8.757 -0.04 9.754 Z M 9 0.971 C 10.091 5.94 13.972 9.821 18.942 10.912 L 19.196 9.754 C 14.679 8.762 11.151 5.234 10.159 0.716 Z\" fill=\"rgb(52,194,255)\"></path></svg>',svgContentId:9495234345,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pg0eac\",\"data-framer-name\":\"User\",name:\"User\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cv5svh\",\"data-framer-name\":\"User\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,name:\"User\",svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.13651\" y=\"0.630041\" width=\"48.7402\" height=\"48.7402\" rx=\"24.3701\" fill=\"#CA054D\"/>\\n<rect x=\"1.13651\" y=\"0.630041\" width=\"48.7402\" height=\"48.7402\" rx=\"24.3701\" stroke=\"#CA054D\" stroke-width=\"0.593091\"/>\\n<path d=\"M25.5072 24.9997C22.8867 24.9997 20.7624 22.8754 20.7624 20.255C20.7624 17.6345 22.8867 15.5103 25.5072 15.5103C28.1276 15.5103 30.2519 17.6345 30.2519 20.255C30.2519 22.8754 28.1276 24.9997 25.5072 24.9997ZM25.5072 24.9997H16.0177C16.0177 30.2406 20.2663 34.4892 25.5072 34.4892C30.748 34.4892 34.9966 30.2406 34.9966 24.9997H25.5072Z\" stroke=\"white\" stroke-width=\"0.593091\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bkb39\",\"data-border\":true,\"data-framer-name\":\"Motion\",name:\"Motion\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a106sm\",\"data-framer-name\":\"FilmSlate\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"FilmSlate\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_901)\">\\n<path d=\"M3.93365 10.5474H19.9093V18.5352C19.9093 18.7278 19.8328 18.9125 19.6966 19.0487C19.5604 19.1848 19.3757 19.2613 19.1831 19.2613H4.65982C4.46723 19.2613 4.28253 19.1848 4.14634 19.0487C4.01016 18.9125 3.93365 18.7278 3.93365 18.5352V10.5474Z\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.97384 10.5475L19.1843 6.53276L18.4436 3.80964C18.3925 3.62786 18.2717 3.47357 18.1076 3.38027C17.9434 3.28697 17.7491 3.26219 17.5667 3.3113L3.73965 6.95938C3.64928 6.98239 3.56439 7.02312 3.48988 7.0792C3.41538 7.13528 3.35275 7.20559 3.30564 7.28606C3.25852 7.36653 3.22785 7.45556 3.21541 7.54797C3.20296 7.64039 3.20899 7.73436 3.23315 7.82442L3.97384 10.5475Z\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.45007 6.24463L10.788 8.7499\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.796 4.8335L16.1339 7.33786\" stroke=\"#1A2028\" stroke-width=\"1.45233\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_901\">\\n<rect width=\"23.2373\" height=\"23.2373\" fill=\"white\" transform=\"translate(0.303772 0.381348)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Motion graphics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18.98px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Motion graphics\"})}),className:\"framer-yns2t0\",\"data-framer-name\":\"Motion graphics\",fonts:[\"GF;Inter Tight-regular\"],name:\"Motion graphics\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q72g6l\",\"data-framer-name\":\"Video\",id:elementId2,name:\"Video\",ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jpzygv-container\",children:/*#__PURE__*/_jsx(Hand3D,{height:\"100%\",id:\"chDkI69yQ\",layoutId:\"chDkI69yQ\",tf5Vqzbc7:addImageAlt({src:\"https://framerusercontent.com/images/aJLWHOEO246q2viaPjw0hhKeab0.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1844qh\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 193, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"Watch how \"}),\"easy managing \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"design tasks can be.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"Watch how \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(51, 193, 255, 1)\"},children:\"easy managing \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"44px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"design tasks can be.\"})})]}),className:\"framer-1dvn51e\",\"data-framer-name\":\"Watch how easy managing design tasks can be.\",fonts:[\"GF;Inter Tight-600\"],name:\"Watch how easy managing design tasks can be.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u7v2zy\",\"data-border\":true,\"data-framer-name\":\"Wrap Image\",id:elementId3,name:\"Wrap Image\",ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"min(100vw - 32px, 1440px)\"},XFxkSVo3y:{width:\"min(100vw - 80px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:571,width:\"min(100vw - 200px, 1440px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-dp51n8-container\",\"data-framer-cursor\":\"c1pt1w\",children:/*#__PURE__*/_jsx(VideoCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"fMrNBlFKy\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"f_RtuPU4X\",layoutId:\"f_RtuPU4X\",style:{height:\"100%\",width:\"100%\"},variant:\"LmPcmZ85n\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1vat6-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"ADE6YijbB\",layoutId:\"ADE6YijbB\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12qo1mi\",\"data-framer-name\":\"Benefits\",id:elementId5,name:\"Benefits\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdee5z\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6cnzr\",\"data-framer-name\":\"Frame 48098633\",name:\"Frame 48098633\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"38px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"From task to final result without \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"38px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"bottlenecks or back-and-forths. \"})})]}),className:\"framer-1iggzat\",\"data-framer-name\":\"From task to final result without bottlenecks or back-and-forths.\",fonts:[\"GF;Inter Tight-600\"],name:\"From task to final result without bottlenecks or back-and-forths.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.600000381469727px\",\"--framer-line-height\":\"140%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18.6px\",\"--framer-text-color\":\"rgba(25, 26, 35, 1)\"},children:\"We take the stress out of managing tasks. Let us handle your day-to-day design work so you can focus on the big picture.\"})})}),className:\"framer-11tds36\",\"data-framer-name\":\"We take the stress out of managing tasks. Let us handle your day-to-day design work so you can focus on the big picture.\",fonts:[\"GF;Inter Tight-regular\"],name:\"We take the stress out of managing tasks. Let us handle your day-to-day design work so you can focus on the big picture.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s0z03g\",\"data-framer-name\":\"Frame 48098631\",name:\"Frame 48098631\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g2z01p\",\"data-framer-name\":\"Feature 1\",name:\"Feature 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xt48gk\",\"data-framer-name\":\"Feature Item\",name:\"Feature Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pk1a1i\",\"data-framer-name\":\"Frame 48098683\",name:\"Frame 48098683\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/a5K7Ibk6THaf7r3zNxaVVxIks.png\"},className:\"framer-1vxj1h6\",\"data-framer-name\":\"Lightbulb\",name:\"Lightbulb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ryxkug\",\"data-framer-name\":\"Frame 48098684\",name:\"Frame 48098684\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0o6pp\",\"data-framer-name\":\"Frame 48098632\",name:\"Frame 48098632\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.600000381469727px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18.6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"01\"})})}),className:\"framer-1ewqzzi\",\"data-framer-name\":\"01\",fonts:[\"GF;Inter Tight-500\"],name:\"01\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smooth workflow, no agency hassle.\"})}),className:\"framer-2uegjd\",\"data-framer-name\":\"Smooth workflow, no agency hassle.\",fonts:[\"GF;Inter Tight-regular\"],name:\"Smooth workflow, no agency hassle.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7vt66n\",\"data-framer-name\":\"Vector 1378\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:249,name:\"Vector 1378\",svg:'<svg width=\"249\" height=\"4\" viewBox=\"-1 -1 249 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.19116H247\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"16.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We simplify the design process, making collaboration seamless. Just plug and play.\"})}),className:\"framer-11o9335\",\"data-framer-name\":\"We simplify the design process, making collaboration seamless .\",fonts:[\"GF;Inter Tight-regular\"],name:\"We simplify the design process, making collaboration seamless .\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2l0n15\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1apu7ti\",\"data-framer-name\":\"Feature Item\",name:\"Feature Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11f0tdl\",\"data-framer-name\":\"Frame 48098683\",name:\"Frame 48098683\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2B0RHpy706wzyd1EhpIinmoVwF4.png\"},className:\"framer-qjaj05\",\"data-framer-name\":\"Pentool\",name:\"Pentool\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmg0wg\",\"data-framer-name\":\"Frame 48098684\",name:\"Frame 48098684\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tp3t1r\",\"data-framer-name\":\"Frame 48098632\",name:\"Frame 48098632\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.600000381469727px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18.6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"02\"})})}),className:\"framer-78y4fr\",\"data-framer-name\":\"02\",fonts:[\"GF;Inter Tight-500\"],name:\"02\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scalable design solutions.\"})}),className:\"framer-1uda4lb\",\"data-framer-name\":\"Scalable design solutions.\",fonts:[\"GF;Inter Tight-regular\"],name:\"Scalable design solutions.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h936xe\",\"data-framer-name\":\"Vector 1378\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:249,name:\"Vector 1378\",svg:'<svg width=\"249\" height=\"4\" viewBox=\"-1 -1 249 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.19116H247\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"16.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adapt your design needs as your business needs. We handle the details, you focus on growing.\"})}),className:\"framer-1qr104d\",\"data-framer-name\":\"Adapt your design needs as your business grows. We handle the details, so you can focus on scaling.\",fonts:[\"GF;Inter Tight-regular\"],name:\"Adapt your design needs as your business grows. We handle the details, so you can focus on scaling.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kj338y\",\"data-framer-name\":\"Feature 3\",name:\"Feature 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1labhgy\",\"data-framer-name\":\"Feature Item\",name:\"Feature Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5wdbr\",\"data-framer-name\":\"Frame 48098684\",name:\"Frame 48098684\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png\",srcSet:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png 1024w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png\",srcSet:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"79.0476px\",src:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png\",srcSet:\"https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dpL86hjShQBxL9hKEJRYj9Es.png 1024w\"},className:\"framer-1dg1lv5\",\"data-framer-name\":\"1F970_SmilingFaceWithHearts_1024px_01_02 1\",name:\"1F970_SmilingFaceWithHearts_1024px_01_02 1\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s38wct\",\"data-framer-name\":\"Frame 48098685\",name:\"Frame 48098685\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovfwvr\",\"data-framer-name\":\"Frame 48098632\",name:\"Frame 48098632\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.600000381469727px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18.6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"03\"})})}),className:\"framer-1rxfsyg\",\"data-framer-name\":\"03\",fonts:[\"GF;Inter Tight-500\"],name:\"03\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Like an in-house team. \"})}),className:\"framer-10y4ob0\",\"data-framer-name\":\"Like an in-house team.\",fonts:[\"GF;Inter Tight-regular\"],name:\"Like an in-house team.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ldrdww\",\"data-framer-name\":\"Vector 1378\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:249,name:\"Vector 1378\",svg:'<svg width=\"249\" height=\"4\" viewBox=\"-1 -1 249 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.19116H247\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"16.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We integrate seamlessly with your team, making you feel like we\u2019re just down the hall.\"})}),className:\"framer-dbpgo7\",\"data-framer-name\":\"We integrate seamlessly with your team, making you feel like we\u2019re just down the hall, ready to assist.\",fonts:[\"GF;Inter Tight-regular\"],name:\"We integrate seamlessly with your team, making you feel like we\u2019re just down the hall, ready to assist.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1rhc0\",\"data-framer-name\":\"Feature 4\",name:\"Feature 4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d6v0x\",\"data-framer-name\":\"Feature Item\",name:\"Feature Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-21dre4\",\"data-framer-name\":\"Frame 48098684\",name:\"Frame 48098684\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:201,pixelWidth:200,src:\"https://framerusercontent.com/images/BeGTeRR7J1XVAtUBVOEMTPIL2FE.png\"},className:\"framer-1rakeyp\",\"data-framer-name\":\"Rocket\",name:\"Rocket\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5mrw1\",\"data-framer-name\":\"Frame 48098624\",name:\"Frame 48098624\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d9pkwj\",\"data-framer-name\":\"Frame 48098632\",name:\"Frame 48098632\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.600000381469727px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18.6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"04\"})})}),className:\"framer-1qylzv7\",\"data-framer-name\":\"04\",fonts:[\"GF;Inter Tight-500\"],name:\"04\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fast turnaround times.\"})}),className:\"framer-gm4qv8\",\"data-framer-name\":\"Fast turnaround times.\",fonts:[\"GF;Inter Tight-regular\"],name:\"Fast turnaround times.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1amxdkb\",\"data-framer-name\":\"Vector 1378\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:249,name:\"Vector 1378\",svg:'<svg width=\"249\" height=\"4\" viewBox=\"-1 -1 249 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.19116H247\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"16.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We deliver design tasks quickly, keeping your projects on track without unnecessary delays.\"})}),className:\"framer-pydb6e\",\"data-framer-name\":\"We deliver your design tasks quickly, keeping your projects on track without unnecessary delays.\",fonts:[\"GF;Inter Tight-regular\"],name:\"We deliver your design tasks quickly, keeping your projects on track without unnecessary delays.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a69b1x\",\"data-framer-name\":\"Benefits\",id:elementId6,name:\"Benefits\",ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a48yv9\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdgew\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157ns8d\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fmd6o6\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1571\",name:\"Ellipse 1571\",style:{rotate:-23}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:\"A faster, simpler way to \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c7e59a8d-e893-40a4-bf56-9f4ff0e25b69, rgb(52, 193, 255))\"},children:\"manage design\"})]}),className:\"framer-9d6rzs\",\"data-framer-name\":\"Lorem ipsum dolor it!\",fonts:[\"GF;Inter Tight-600\"],name:\"Lorem ipsum dolor it!\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:undefined},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",pixelHeight:1177,pixelWidth:2640,sizes:\"min(100vw - 48px, 1440px)\",src:\"https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png\",srcSet:\"https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=512 512w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png 2640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1177,pixelWidth:2640,sizes:\"min(100vw - 200px, 1440px)\",src:\"https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png\",srcSet:\"https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=512 512w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DPgGQO2yWz7XmpaB01Fp60.png 2640w\"},className:\"framer-1r604re\",\"data-framer-name\":\"Graphic\",name:\"Graphic\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{height:661,width:\"min(100vw - 48px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kpdyoy-container hidden-72rtr7 hidden-ulvhoq hidden-11e9574\",children:/*#__PURE__*/_jsx(GraphicMobile,{height:\"100%\",id:\"gXIOoOsMl\",layoutId:\"gXIOoOsMl\",style:{width:\"100%\"},variant:\"msH9JL1zX\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jhj7ij-container hidden-oacmt8\",children:/*#__PURE__*/_jsx(ButtonPrimarySmall,{height:\"100%\",id:\"zIR0nvHPi\",layoutId:\"zIR0nvHPi\",PO8c2nZNj:\"Book a Call to Clear All Your Doubts\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7qcnr\",\"data-framer-name\":\"Gallery\",id:elementId7,name:\"Gallery\",ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqj9bl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezfzj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn1zod-container\",children:/*#__PURE__*/_jsx(Hand3D,{height:\"100%\",id:\"lBpnEu5bA\",layoutId:\"lBpnEu5bA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[\"See \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(51, 193, 255)\"},children:\"our work\"}),\" in action\"]})}),className:\"framer-13ep515\",\"data-framer-name\":\"See our work in action\",fonts:[\"GF;Inter Tight-600\"],name:\"See our work in action\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111ypw8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c03k3z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png\",srcSet:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png\",srcSet:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png\",srcSet:\"https://framerusercontent.com/images/p7tUFleyzTZ3W6afUU9RYHSczSk.png 590w\"},className:\"framer-12l7a2a\",\"data-framer-name\":\"Frame_48098764\",name:\"Frame_48098764\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png\",srcSet:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png\",srcSet:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png\",srcSet:\"https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/K0dg92D8EsfE3wVf5vrGu1y8FDc.png 590w\"},className:\"framer-10oal9d\",\"data-framer-name\":\"Frame_48098762_1\",name:\"Frame_48098762_1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png\",srcSet:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png\",srcSet:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png\",srcSet:\"https://framerusercontent.com/images/exyHLtcH1Ff68B4ISwE2dBWdLU.png 590w\"},className:\"framer-136n58h\",\"data-framer-name\":\"Frame_48098771\",name:\"Frame_48098771\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png\",srcSet:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png\",srcSet:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png\",srcSet:\"https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8bvMN5jWjvsYhEGhWKpWyPxhIU.png 590w\"},className:\"framer-26qm7u\",\"data-framer-name\":\"Frame_48098768\",name:\"Frame_48098768\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xv3o65\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png\",srcSet:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png\",srcSet:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png\",srcSet:\"https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/acrh4YuwnWNRq2tPLuDjlZy1gSk.png 590w\"},className:\"framer-1zfrid\",\"data-framer-name\":\"Frame_48098761\",name:\"Frame_48098761\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png\",srcSet:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png\",srcSet:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png\",srcSet:\"https://framerusercontent.com/images/TLtEBIGrglLwZkwASR5UoWXzwyE.png 590w\"},className:\"framer-144q580\",\"data-framer-name\":\"Frame_48098760\",name:\"Frame_48098760\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png\",srcSet:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png?scale-down-to=512 512w,https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png\",srcSet:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png?scale-down-to=512 512w,https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png\",srcSet:\"https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png?scale-down-to=512 512w,https://framerusercontent.com/images/DGpnjGYlUrQCFTexMwNW9G90J0.png 590w\"},className:\"framer-p6xa0h\",\"data-framer-name\":\"Frame_48098759\",name:\"Frame_48098759\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png\",srcSet:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png\",srcSet:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png\",srcSet:\"https://framerusercontent.com/images/D0nVCZFn8U7vLeDb00nS0lpuTnw.png 590w\"},className:\"framer-1dxqbvr\",\"data-framer-name\":\"Frame_48098772\",name:\"Frame_48098772\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gdbbyw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png\",srcSet:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png\",srcSet:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png\",srcSet:\"https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUOaGnrb9C1TmfYd7mBgXXP2v8.png 590w\"},className:\"framer-1kuj8ls\",\"data-framer-name\":\"Frame_48098766\",name:\"Frame_48098766\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png\",srcSet:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png\",srcSet:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png\",srcSet:\"https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png?scale-down-to=512 512w,https://framerusercontent.com/images/axjgABpsjumbXYisGzb32KQqgs.png 590w\"},className:\"framer-tkzz6w\",\"data-framer-name\":\"Frame_48098767\",name:\"Frame_48098767\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png\",srcSet:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png\",srcSet:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png\",srcSet:\"https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CT5YmYt7H8PVhpshBadu16dtJrM.png 590w\"},className:\"framer-hjmjqj\",\"data-framer-name\":\"Frame_48098773\",name:\"Frame_48098773\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png\",srcSet:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png\",srcSet:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:567,intrinsicWidth:590,pixelHeight:567,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png\",srcSet:\"https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dRD6BgOpIcOhAvxljxomGFUlp5w.png 590w\"},className:\"framer-1nc1wz2\",\"data-framer-name\":\"Frame_48098774\",name:\"Frame_48098774\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w6rm6z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png\",srcSet:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png\",srcSet:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png\",srcSet:\"https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ddlOXzs8r8mZLAY3D83glEFLoyw.png 590w\"},className:\"framer-1simb6p\",\"data-framer-name\":\"Frame_48098762\",name:\"Frame_48098762\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png\",srcSet:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png\",srcSet:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png\",srcSet:\"https://framerusercontent.com/images/ZRAQBspvNLURgmwdZ9uvGSvYGkY.png 590w\"},className:\"framer-tq8ijz\",\"data-framer-name\":\"Frame_48098763\",name:\"Frame_48098763\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png\",srcSet:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png\",srcSet:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:590,pixelHeight:365,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png\",srcSet:\"https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wQrCnxFVKhuQJ6d5CUTf8wnSM.png 590w\"},className:\"framer-1o1xg1u\",\"data-framer-name\":\"Frame_48098769\",name:\"Frame_48098769\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 32px, 1440px) - 10px) / 2, 50px)\",src:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png\",srcSet:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png 590w\"}},XFxkSVo3y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 80px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png\",srcSet:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png 590w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:590,pixelHeight:769,pixelWidth:590,sizes:\"max((min(100vw - 200px, 1440px) - 30px) / 4, 1px)\",src:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png\",srcSet:\"https://framerusercontent.com/images/WQ98XTYn1unkO1b3S4ehpowwZE.png 590w\"},className:\"framer-70zu5p\",\"data-framer-name\":\"Frame_48098770\",name:\"Frame_48098770\"})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wte2nc\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11b450g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6xm7b\",\"data-framer-name\":\"Frame 48098633\",name:\"Frame 48098633\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"Why manage more when you can do less? \"}),\"Our team handles your design needs without the headaches.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"Why manage more when you can do less? \"}),\"Our team handles your design needs without the headaches.\"]})}),className:\"framer-1mk33hw\",\"data-framer-name\":\"Why manage more when you can do less? Our team handles your design needs without the headaches.\\u2028\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Why manage more when you can do less? Our team handles your design needs without the headaches.\\u2028\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lm686PWbj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lm686PWbj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lm686PWbj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":lm686PWbj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"calc(min(max(100vw, 1px), 1440px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8qkpu1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{RrJc8r4zT:resolvedLinks1[3],style:{width:\"100%\"}},kSJlyQlrY:{RrJc8r4zT:resolvedLinks1[2]},XFxkSVo3y:{RrJc8r4zT:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"SKg6y0HsB\",layoutId:\"SKg6y0HsB\",RrJc8r4zT:resolvedLinks1[0],variant:\"FDkEcKa48\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ai64h\",\"data-framer-name\":\"FAQS\",id:elementId8,name:\"FAQS\",ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-byxtsj\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1edlbaz\",\"data-framer-name\":\"Frame 80\",name:\"Frame 80\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 193, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(25, 29, 35)\"},children:\"You got \"}),\"questions?\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(25, 29, 35)\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(25, 29, 35)\"},children:\"We\u2019ve got answers\"})]}),className:\"framer-inrnvx\",\"data-framer-name\":\"You got questions? We\u2019ve got answers\",fonts:[\"GF;Inter Tight-600\"],name:\"You got questions? We\u2019ve got answers\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[\"Here you can find the info you need, and if not, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"we\u2019re just a message away.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"Here you can find the info you need, and if not, \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(26, 32, 40, 1)\"},children:\"we\u2019re just a message away.\"})})]}),className:\"framer-1x6tg93\",\"data-framer-name\":\"Main \u2192 Strong \u2192 Get everyone working in a single platform\",fonts:[\"GF;Inter Tight-300\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Strong \u2192 Get everyone working in a single platform\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ze9a3c\",\"data-framer-name\":\"Frame 48098678\",name:\"Frame 48098678\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmwg41\",\"data-framer-name\":\"Frame 48098631\",name:\"Frame 48098631\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"min(100vw - 32px, 1440px)\"},XFxkSVo3y:{width:\"min(100vw - 80px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:677,width:\"max((min(100vw - 200px, 1440px) - 60px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nhfrem-container\",children:/*#__PURE__*/_jsx(FAQS,{height:\"100%\",id:\"OvJ_F2cbw\",layoutId:\"OvJ_F2cbw\",style:{width:\"100%\"},variant:\"TsdAEZZhJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4f5tsb\",\"data-framer-name\":\"Frame 48098679\",name:\"Frame 48098679\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xaktxr\",\"data-framer-name\":\"Frame 48098680\",name:\"Frame 48098680\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jqledi\",\"data-framer-name\":\"Frame 48098681\",name:\"Frame 48098681\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g9nvps\",\"data-framer-name\":\"Ellipse 1571\",name:\"Ellipse 1571\",style:{rotate:-23}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bdkkgi\",\"data-framer-name\":\"Vector 34 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:281,intrinsicWidth:341,name:\"Vector 34 (Stroke)\",svg:'<svg width=\"341\" height=\"281\" viewBox=\"0 0 341 281\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M340.419 224.54L284.267 280.691L266.111 262.535L291.269 237.378L260.614 237.378C241.397 237.378 223.916 226.26 215.767 208.857L164.536 39.5848C160.613 31.2053 152.195 25.8523 142.943 25.8523L99.0369 25.8523C85.8691 25.8523 75.1944 36.5269 75.1944 49.6948L75.1944 173.798C75.1944 201.147 53.024 223.317 25.6754 223.317L0.61025 223.317L0.610251 197.64L25.6754 197.64C38.8433 197.64 49.5179 186.966 49.5179 173.798L49.5179 49.6948C49.5179 22.3462 71.6883 0.17577 99.0369 0.175771L142.943 0.175778C162.16 0.175779 179.641 11.2936 187.79 28.6972L239.021 197.969C242.944 206.348 251.361 211.701 260.614 211.701L291.269 211.701L266.111 186.544L284.267 168.388L340.419 224.54Z\" fill=\"url(#paint0_linear_1_2011)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1_2011\" x1=\"-4.80105\" y1=\"205.216\" x2=\"352.257\" y2=\"202.695\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#34C2FF\"/>\\n<stop offset=\"1\" stop-color=\"#34C2FF\" stop-opacity=\"0.15\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/Cv6yPNBMJC4rdeNu1DfzTqDYs.png\",srcSet:\"https://framerusercontent.com/images/Cv6yPNBMJC4rdeNu1DfzTqDYs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cv6yPNBMJC4rdeNu1DfzTqDYs.png 524w\"},className:\"framer-1f1nwxd\",\"data-framer-name\":\"12\",name:\"12\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uigjuw\",\"data-framer-name\":\"Group 481441\",layout:\"position\",name:\"Group 481441\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 65\"><g transform=\"translate(0.833 0.984)\" id=\"ss11617586110_1\"><path d=\"M 21.352 8.213 L 6.832 0 L 6.832 17.096 C 2.576 22.01 0 28.42 0 35.431 C 0 50.903 12.543 63.446 28.015 63.446 L 82.997 63.446 C 98.469 63.446 111.012 50.903 111.012 35.431 C 111.012 19.959 98.469 7.416 82.997 7.416 L 28.015 7.416 C 25.719 7.416 23.487 7.692 21.352 8.213 Z\" fill=\"rgb(250,250,250)\"></path><path d=\"M 41.114 34.951 C 41.114 32.12 43.457 29.824 46.347 29.824 C 49.237 29.824 51.58 32.12 51.58 34.951 C 51.58 37.783 49.237 40.078 46.347 40.078 C 43.457 40.078 41.114 37.783 41.114 34.951 Z\" fill=\"rgba(25,29,35,0.2)\"></path><path d=\"M 23.548 34.951 C 23.548 32.12 25.891 29.824 28.781 29.824 C 31.671 29.824 34.014 32.12 34.014 34.951 C 34.014 37.783 31.671 40.078 28.781 40.078 C 25.891 40.078 23.548 37.783 23.548 34.951 Z\" fill=\"rgba(25,29,35,0.2)\"></path><path d=\"M 59.433 28.496 C 59.433 25.665 61.775 23.369 64.665 23.369 C 67.556 23.369 69.898 25.665 69.898 28.496 C 69.898 31.328 67.556 33.623 64.665 33.623 C 61.775 33.623 59.433 31.328 59.433 28.496 Z\" fill=\"rgba(25,29,35,0.2)\"></path><path d=\"M 77.744 34.951 C 77.744 32.12 80.087 29.824 82.977 29.824 C 85.867 29.824 88.21 32.12 88.21 34.951 C 88.21 37.783 85.867 40.078 82.977 40.078 C 80.087 40.078 77.744 37.783 77.744 34.951 Z\" fill=\"rgba(25,29,35,0.2)\"></path></g></svg>',svgContentId:11617586110,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n2z0t\",\"data-framer-name\":\"Rectangle 4237\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:50,name:\"Rectangle 4237\",svg:'<svg width=\"50\" height=\"51\" viewBox=\"0 0 50 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M49.9189 25.377V25.377C37.5249 28.0976 27.8447 37.7778 25.1241 50.1718V50.1718V50.1718C22.4035 37.7778 12.7233 28.0976 0.329259 25.3769V25.3769L0.90831 25.2357C13.0078 22.2846 22.3903 12.7325 25.1241 0.582108V0.582108V0.582108C27.8579 12.7325 37.2404 22.2846 49.3399 25.2357L49.9189 25.377Z\" fill=\"#34C2FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16i08uc\",\"data-framer-name\":\"Rectangle 4238\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"Rectangle 4238\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.3293 11.1914V11.1914C16.0328 12.354 11.8961 16.4907 10.7335 21.7872V21.7872V21.7872C9.57085 16.4907 5.43414 12.354 0.137703 11.1914V11.1914L0.385149 11.1311C5.55572 9.86994 9.5652 5.78797 10.7335 0.59563V0.59563V0.59563C11.9018 5.78797 15.9112 9.86994 21.0818 11.1311L21.3293 11.1914Z\" fill=\"#34C2FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kl8trk\",\"data-framer-name\":\"Frame 13\",name:\"Frame 13\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15.470691680908203px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"15.47px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(254, 253, 253, 1)\"},children:\"Manager\"})})}),className:\"framer-19r4isb\",\"data-framer-name\":\"Manager\",fonts:[\"Inter-SemiBold\"],name:\"Manager\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uvagqg\",\"data-framer-name\":\"Frame 48098682\",name:\"Frame 48098682\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"26.600000381469727px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"26.6px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(25, 29, 35, 1)\"},children:\"Still wondering?\"})})}),className:\"framer-sobse3\",\"data-framer-name\":\"Still wondering?\",fonts:[\"GF;Inter Tight-500\"],name:\"Still wondering?\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.550000011920929)\"},children:\"Drop us a line anytime!\"})})}),className:\"framer-jdqpgm\",\"data-framer-name\":\"Drop us a line anytime!\",fonts:[\"GF;Inter Tight-300\"],name:\"Drop us a line anytime!\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{width:\"min(100vw - 32px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vcryov-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"LrP1VXqz3\",layoutId:\"LrP1VXqz3\",width:\"100%\"})})})})})]})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tiq2kx\",\"data-framer-name\":\"Testmonials\",id:elementId9,name:\"Testmonials\",ref:ref11,children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8jkvv-container hidden-oacmt8\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:0,id:\"lyxJe8hO3\",layoutId:\"lyxJe8hO3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v28rih\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fff1op\",\"data-border\":true,\"data-framer-name\":\"Testimonial \",name:\"Testimonial \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mp9yrx\",\"data-framer-name\":\"Frame 1437254791\",name:\"Frame 1437254791\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zsr1xd\",\"data-framer-name\":\"Frame 1437254788\",name:\"Frame 1437254788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Speed and Quality in Every Delivery!\"})}),className:\"framer-1kx09zh\",\"data-framer-name\":\"Speed and Quality in Every Delivery!\",fonts:[\"GF;Inter Tight-500\"],name:\"Speed and Quality in Every Delivery!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19oxwt7\",\"data-framer-name\":\"Frame 48099867\",name:\"Frame 48099867\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18uk2g1\",\"data-framer-name\":\"Frame 48098627\",name:\"Frame 48098627\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13jx0w9\",\"data-framer-name\":\"Frame 1437254791\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:27,name:\"Frame 1437254791\",svg:'<svg width=\"27\" height=\"26\" viewBox=\"0 0 27 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.551392\" y=\"0.697266\" width=\"25.4758\" height=\"25\" rx=\"12.5\" fill=\"#1A2028\" fill-opacity=\"0.04\"/>\\n<path d=\"M19.6875 12.6468L16.9788 14.9842L17.804 18.4797C17.8496 18.6695 17.8378 18.8685 17.7703 19.0516C17.7028 19.2347 17.5826 19.3936 17.4248 19.5084C17.2669 19.6232 17.0787 19.6886 16.8837 19.6965C16.6887 19.7043 16.4958 19.6542 16.3293 19.5524L13.2894 17.6815L10.2478 19.5524C10.0813 19.6536 9.88859 19.7032 9.69394 19.6951C9.49929 19.687 9.31139 19.6215 9.15391 19.5068C8.99643 19.3921 8.8764 19.2334 8.80893 19.0506C8.74147 18.8679 8.7296 18.6692 8.7748 18.4797L9.60308 14.9842L6.89431 12.6468C6.74702 12.5195 6.64049 12.3517 6.58803 12.1642C6.53558 11.9767 6.53952 11.7779 6.59937 11.5926C6.65922 11.4074 6.77232 11.2438 6.92455 11.1225C7.07678 11.0011 7.26139 10.9273 7.45533 10.9102L11.0068 10.6237L12.3769 7.30816C12.451 7.12747 12.5772 6.9729 12.7395 6.86413C12.9017 6.75535 13.0926 6.69727 13.2879 6.69727C13.4832 6.69727 13.6741 6.75535 13.8364 6.86413C13.9986 6.9729 14.1248 7.12747 14.199 7.30816L15.5684 10.6237L19.1199 10.9102C19.3142 10.9267 19.4994 11.0001 19.6521 11.1213C19.8049 11.2425 19.9185 11.4061 19.9788 11.5915C20.039 11.777 20.0431 11.9762 19.9907 12.164C19.9382 12.3518 19.8315 12.52 19.6839 12.6474L19.6875 12.6468Z\" fill=\"#FFD200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14.09px\",\"--framer-line-height\":\"18.11px\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"5\"}),\"/5\"]})}),className:\"framer-i27l4b\",\"data-framer-name\":\"Main \u2192 Rated #1\\xa0\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Rated #1\\xa0\",verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"\u201CVery responsive, fast, and great creative instincts! Great at bringing our design concepts to life.\u201D\"})}),className:\"framer-115o9ul\",\"data-framer-name\":\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",fonts:[\"GF;Inter Tight-300\"],name:\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u6hvqi\",\"data-framer-name\":\"Frame 48098612\",name:\"Frame 48098612\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v0qwn0\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"data:framer/asset-reference,TG2p0DEcFfvBCQ1mMsZNMg5TCY.png?originalFilename=jake.png&preferredSize=auto\"},className:\"framer-q1byw\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1naco7i\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Jake Orlando\"})}),className:\"framer-1qzqgzu\",\"data-framer-name\":\"Lindsay Hanzlik\",fonts:[\"GF;Inter Tight-500\"],name:\"Lindsay Hanzlik\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.45)\"},children:\"Content Marketing Manager\"})}),className:\"framer-1nosolc\",\"data-framer-name\":\"Senior Content Marketing Manager\",fonts:[\"GF;Inter Tight-regular\"],name:\"Senior Content Marketing Manager\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"data:framer/asset-reference,L2Dd1rntwo8Lhe8cAMhPXmWPek.svg?originalFilename=pErmitflow.svg&preferredSize=auto\"},className:\"framer-1ntz8gm\"})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16qn3bf\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvchod\",\"data-border\":true,\"data-framer-name\":\"Testimonial \",name:\"Testimonial \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1koo20h\",\"data-framer-name\":\"Frame 1437254791\",name:\"Frame 1437254791\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xe0amw\",\"data-framer-name\":\"Frame 1437254788\",name:\"Frame 1437254788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Speed and Quality in Every Delivery!\"})}),className:\"framer-2gyqum\",\"data-framer-name\":\"Speed and Quality in Every Delivery!\",fonts:[\"GF;Inter Tight-500\"],name:\"Speed and Quality in Every Delivery!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tu1jsf\",\"data-framer-name\":\"Frame 48099867\",name:\"Frame 48099867\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ke9ewo\",\"data-framer-name\":\"Frame 48098627\",name:\"Frame 48098627\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fqncv0\",\"data-framer-name\":\"Frame 1437254791\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:27,name:\"Frame 1437254791\",svg:'<svg width=\"27\" height=\"26\" viewBox=\"0 0 27 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.551392\" y=\"0.697266\" width=\"25.4758\" height=\"25\" rx=\"12.5\" fill=\"#1A2028\" fill-opacity=\"0.04\"/>\\n<path d=\"M19.6875 12.6468L16.9788 14.9842L17.804 18.4797C17.8496 18.6695 17.8378 18.8685 17.7703 19.0516C17.7028 19.2347 17.5826 19.3936 17.4248 19.5084C17.2669 19.6232 17.0787 19.6886 16.8837 19.6965C16.6887 19.7043 16.4958 19.6542 16.3293 19.5524L13.2894 17.6815L10.2478 19.5524C10.0813 19.6536 9.88859 19.7032 9.69394 19.6951C9.49929 19.687 9.31139 19.6215 9.15391 19.5068C8.99643 19.3921 8.8764 19.2334 8.80893 19.0506C8.74147 18.8679 8.7296 18.6692 8.7748 18.4797L9.60308 14.9842L6.89431 12.6468C6.74702 12.5195 6.64049 12.3517 6.58803 12.1642C6.53558 11.9767 6.53952 11.7779 6.59937 11.5926C6.65922 11.4074 6.77232 11.2438 6.92455 11.1225C7.07678 11.0011 7.26139 10.9273 7.45533 10.9102L11.0068 10.6237L12.3769 7.30816C12.451 7.12747 12.5772 6.9729 12.7395 6.86413C12.9017 6.75535 13.0926 6.69727 13.2879 6.69727C13.4832 6.69727 13.6741 6.75535 13.8364 6.86413C13.9986 6.9729 14.1248 7.12747 14.199 7.30816L15.5684 10.6237L19.1199 10.9102C19.3142 10.9267 19.4994 11.0001 19.6521 11.1213C19.8049 11.2425 19.9185 11.4061 19.9788 11.5915C20.039 11.777 20.0431 11.9762 19.9907 12.164C19.9382 12.3518 19.8315 12.52 19.6839 12.6474L19.6875 12.6468Z\" fill=\"#FFD200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14.09px\",\"--framer-line-height\":\"18.11px\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"5\"}),\"/5\"]})}),className:\"framer-1ld4aa8\",\"data-framer-name\":\"Main \u2192 Rated #1\\xa0\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Rated #1\\xa0\",verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:'\"I like how quickly your team adapted to our brand and communication. You have created assets in line with our creative guidelines but with a playful and functional proposal. Communication is very good. You are also very good at receiving feedback and applying it to the projects.\"'})}),className:\"framer-7ffg64\",\"data-framer-name\":\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",fonts:[\"GF;Inter Tight-300\"],name:\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-97p0zo\",\"data-framer-name\":\"Frame 48098612\",name:\"Frame 48098612\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yvkb1u\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"data:framer/asset-reference,CPYRw3HsqtQcJLJKd0JJ8TaHE.png?originalFilename=yisus.png&preferredSize=auto\"},className:\"framer-1mx0juc\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1764ac9\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Yisus Elias\"})}),className:\"framer-1iwnorj\",\"data-framer-name\":\"Lindsay Hanzlik\",fonts:[\"GF;Inter Tight-500\"],name:\"Lindsay Hanzlik\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.45)\"},children:\"Brand Manager\"})}),className:\"framer-c7mxs6\",\"data-framer-name\":\"Senior Content Marketing Manager\",fonts:[\"GF;Inter Tight-regular\"],name:\"Senior Content Marketing Manager\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"data:framer/asset-reference,WkcGMcCE8iFqaLZUVmOwyZoAJ0.svg?originalFilename=Sofia.svg&preferredSize=auto\"},className:\"framer-3piqap\"})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sdgvbd\",\"data-border\":true,\"data-framer-name\":\"Testimonial \",name:\"Testimonial \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15xcrv1\",\"data-framer-name\":\"Frame 1437254791\",name:\"Frame 1437254791\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l7jpa8\",\"data-framer-name\":\"Frame 1437254788\",name:\"Frame 1437254788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Speed and Quality in Every Delivery!\"})}),className:\"framer-km63im\",\"data-framer-name\":\"Speed and Quality in Every Delivery!\",fonts:[\"GF;Inter Tight-500\"],name:\"Speed and Quality in Every Delivery!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4ci88\",\"data-framer-name\":\"Frame 48099867\",name:\"Frame 48099867\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15a7w4z\",\"data-framer-name\":\"Frame 48098627\",name:\"Frame 48098627\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ew6587\",\"data-framer-name\":\"Frame 1437254791\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:27,name:\"Frame 1437254791\",svg:'<svg width=\"27\" height=\"26\" viewBox=\"0 0 27 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.551392\" y=\"0.697266\" width=\"25.4758\" height=\"25\" rx=\"12.5\" fill=\"#1A2028\" fill-opacity=\"0.04\"/>\\n<path d=\"M19.6875 12.6468L16.9788 14.9842L17.804 18.4797C17.8496 18.6695 17.8378 18.8685 17.7703 19.0516C17.7028 19.2347 17.5826 19.3936 17.4248 19.5084C17.2669 19.6232 17.0787 19.6886 16.8837 19.6965C16.6887 19.7043 16.4958 19.6542 16.3293 19.5524L13.2894 17.6815L10.2478 19.5524C10.0813 19.6536 9.88859 19.7032 9.69394 19.6951C9.49929 19.687 9.31139 19.6215 9.15391 19.5068C8.99643 19.3921 8.8764 19.2334 8.80893 19.0506C8.74147 18.8679 8.7296 18.6692 8.7748 18.4797L9.60308 14.9842L6.89431 12.6468C6.74702 12.5195 6.64049 12.3517 6.58803 12.1642C6.53558 11.9767 6.53952 11.7779 6.59937 11.5926C6.65922 11.4074 6.77232 11.2438 6.92455 11.1225C7.07678 11.0011 7.26139 10.9273 7.45533 10.9102L11.0068 10.6237L12.3769 7.30816C12.451 7.12747 12.5772 6.9729 12.7395 6.86413C12.9017 6.75535 13.0926 6.69727 13.2879 6.69727C13.4832 6.69727 13.6741 6.75535 13.8364 6.86413C13.9986 6.9729 14.1248 7.12747 14.199 7.30816L15.5684 10.6237L19.1199 10.9102C19.3142 10.9267 19.4994 11.0001 19.6521 11.1213C19.8049 11.2425 19.9185 11.4061 19.9788 11.5915C20.039 11.777 20.0431 11.9762 19.9907 12.164C19.9382 12.3518 19.8315 12.52 19.6839 12.6474L19.6875 12.6468Z\" fill=\"#FFD200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14.09px\",\"--framer-line-height\":\"18.11px\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"5\"}),\"/5\"]})}),className:\"framer-1huwuor\",\"data-framer-name\":\"Main \u2192 Rated #1\\xa0\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Rated #1\\xa0\",verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:'\"What I value most about your team is the trust you convey along with the effectiveness in each request.\u201D'})}),className:\"framer-i7gqae\",\"data-framer-name\":\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",fonts:[\"GF;Inter Tight-300\"],name:\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zaks0l\",\"data-framer-name\":\"Frame 48098612\",name:\"Frame 48098612\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iigeho\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"data:framer/asset-reference,te3su0l1Bzhqw7u1S6xvr8iw.png?originalFilename=javier.png&preferredSize=auto\"},className:\"framer-1htg4tp\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1isrygs\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Javier Marrero\"})}),className:\"framer-vk5yzo\",\"data-framer-name\":\"Lindsay Hanzlik\",fonts:[\"GF;Inter Tight-500\"],name:\"Lindsay Hanzlik\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.45)\"},children:\"Project Manager\"})}),className:\"framer-emngdu\",\"data-framer-name\":\"Senior Content Marketing Manager\",fonts:[\"GF;Inter Tight-regular\"],name:\"Senior Content Marketing Manager\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"data:framer/asset-reference,jpQfbCUTODPIc15ydXCtGMEBh4.svg?originalFilename=Mindset.svg&preferredSize=auto\"},className:\"framer-3r5l65\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rtzcwx\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7lc8jx\",\"data-border\":true,\"data-framer-name\":\"Testimonial \",name:\"Testimonial \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ny4dqh\",\"data-framer-name\":\"Frame 1437254791\",name:\"Frame 1437254791\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-armbv6\",\"data-framer-name\":\"Frame 1437254788\",name:\"Frame 1437254788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Speed and Quality in Every Delivery!\"})}),className:\"framer-9jxxv1\",\"data-framer-name\":\"Speed and Quality in Every Delivery!\",fonts:[\"GF;Inter Tight-500\"],name:\"Speed and Quality in Every Delivery!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2sb9vj\",\"data-framer-name\":\"Frame 48099867\",name:\"Frame 48099867\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17n2bkd\",\"data-framer-name\":\"Frame 48098627\",name:\"Frame 48098627\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gzouzv\",\"data-framer-name\":\"Frame 1437254791\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:27,name:\"Frame 1437254791\",svg:'<svg width=\"27\" height=\"26\" viewBox=\"0 0 27 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.551392\" y=\"0.697266\" width=\"25.4758\" height=\"25\" rx=\"12.5\" fill=\"#1A2028\" fill-opacity=\"0.04\"/>\\n<path d=\"M19.6875 12.6468L16.9788 14.9842L17.804 18.4797C17.8496 18.6695 17.8378 18.8685 17.7703 19.0516C17.7028 19.2347 17.5826 19.3936 17.4248 19.5084C17.2669 19.6232 17.0787 19.6886 16.8837 19.6965C16.6887 19.7043 16.4958 19.6542 16.3293 19.5524L13.2894 17.6815L10.2478 19.5524C10.0813 19.6536 9.88859 19.7032 9.69394 19.6951C9.49929 19.687 9.31139 19.6215 9.15391 19.5068C8.99643 19.3921 8.8764 19.2334 8.80893 19.0506C8.74147 18.8679 8.7296 18.6692 8.7748 18.4797L9.60308 14.9842L6.89431 12.6468C6.74702 12.5195 6.64049 12.3517 6.58803 12.1642C6.53558 11.9767 6.53952 11.7779 6.59937 11.5926C6.65922 11.4074 6.77232 11.2438 6.92455 11.1225C7.07678 11.0011 7.26139 10.9273 7.45533 10.9102L11.0068 10.6237L12.3769 7.30816C12.451 7.12747 12.5772 6.9729 12.7395 6.86413C12.9017 6.75535 13.0926 6.69727 13.2879 6.69727C13.4832 6.69727 13.6741 6.75535 13.8364 6.86413C13.9986 6.9729 14.1248 7.12747 14.199 7.30816L15.5684 10.6237L19.1199 10.9102C19.3142 10.9267 19.4994 11.0001 19.6521 11.1213C19.8049 11.2425 19.9185 11.4061 19.9788 11.5915C20.039 11.777 20.0431 11.9762 19.9907 12.164C19.9382 12.3518 19.8315 12.52 19.6839 12.6474L19.6875 12.6468Z\" fill=\"#FFD200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14.09px\",\"--framer-line-height\":\"18.11px\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"5\"}),\"/5\"]})}),className:\"framer-1wjl8j9\",\"data-framer-name\":\"Main \u2192 Rated #1\\xa0\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Rated #1\\xa0\",verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"\\\"I've never worked with a design team that moves as fast as Ally. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\\\"\"})}),className:\"framer-19vducv\",\"data-framer-name\":\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",fonts:[\"GF;Inter Tight-300\"],name:\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rfjvry\",\"data-framer-name\":\"Frame 48098612\",name:\"Frame 48098612\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k0m3kk\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"data:framer/asset-reference,DqZuTplj0mOYwdXjGq39cWy9La8.png?originalFilename=Lindsay.png&preferredSize=auto\"},className:\"framer-czp3g0\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iyy7ec\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Lindsay Hanzlik\"})}),className:\"framer-13lkouh\",\"data-framer-name\":\"Lindsay Hanzlik\",fonts:[\"GF;Inter Tight-500\"],name:\"Lindsay Hanzlik\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.45)\"},children:\"Senior Content Marketing Manager\"})}),className:\"framer-v9y2fr\",\"data-framer-name\":\"Senior Content Marketing Manager\",fonts:[\"GF;Inter Tight-regular\"],name:\"Senior Content Marketing Manager\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"data:framer/asset-reference,oLeqOZ9A46OnFCQ8SNF9IzXBl74.svg?originalFilename=Emi.svg&preferredSize=auto\"},className:\"framer-yiq5bi\"})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ycgxs2\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wi97gp\",\"data-border\":true,\"data-framer-name\":\"Testimonial \",name:\"Testimonial \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17te7gw\",\"data-framer-name\":\"Frame 1437254791\",name:\"Frame 1437254791\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lm3nwv\",\"data-framer-name\":\"Frame 1437254788\",name:\"Frame 1437254788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Speed and Quality in Every Delivery!\"})}),className:\"framer-1vlnim1\",\"data-framer-name\":\"Speed and Quality in Every Delivery!\",fonts:[\"GF;Inter Tight-500\"],name:\"Speed and Quality in Every Delivery!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yt93rw\",\"data-framer-name\":\"Frame 48099867\",name:\"Frame 48099867\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8z1kzr\",\"data-framer-name\":\"Frame 48098627\",name:\"Frame 48098627\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-na8w51\",\"data-framer-name\":\"Frame 1437254791\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:27,name:\"Frame 1437254791\",svg:'<svg width=\"27\" height=\"26\" viewBox=\"0 0 27 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.551392\" y=\"0.697266\" width=\"25.4758\" height=\"25\" rx=\"12.5\" fill=\"#1A2028\" fill-opacity=\"0.04\"/>\\n<path d=\"M19.6875 12.6468L16.9788 14.9842L17.804 18.4797C17.8496 18.6695 17.8378 18.8685 17.7703 19.0516C17.7028 19.2347 17.5826 19.3936 17.4248 19.5084C17.2669 19.6232 17.0787 19.6886 16.8837 19.6965C16.6887 19.7043 16.4958 19.6542 16.3293 19.5524L13.2894 17.6815L10.2478 19.5524C10.0813 19.6536 9.88859 19.7032 9.69394 19.6951C9.49929 19.687 9.31139 19.6215 9.15391 19.5068C8.99643 19.3921 8.8764 19.2334 8.80893 19.0506C8.74147 18.8679 8.7296 18.6692 8.7748 18.4797L9.60308 14.9842L6.89431 12.6468C6.74702 12.5195 6.64049 12.3517 6.58803 12.1642C6.53558 11.9767 6.53952 11.7779 6.59937 11.5926C6.65922 11.4074 6.77232 11.2438 6.92455 11.1225C7.07678 11.0011 7.26139 10.9273 7.45533 10.9102L11.0068 10.6237L12.3769 7.30816C12.451 7.12747 12.5772 6.9729 12.7395 6.86413C12.9017 6.75535 13.0926 6.69727 13.2879 6.69727C13.4832 6.69727 13.6741 6.75535 13.8364 6.86413C13.9986 6.9729 14.1248 7.12747 14.199 7.30816L15.5684 10.6237L19.1199 10.9102C19.3142 10.9267 19.4994 11.0001 19.6521 11.1213C19.8049 11.2425 19.9185 11.4061 19.9788 11.5915C20.039 11.777 20.0431 11.9762 19.9907 12.164C19.9382 12.3518 19.8315 12.52 19.6839 12.6474L19.6875 12.6468Z\" fill=\"#FFD200\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14.09px\",\"--framer-line-height\":\"18.11px\",\"--framer-text-color\":\"rgb(26, 32, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"5\"}),\"/5\"]})}),className:\"framer-1eqjrj4\",\"data-framer-name\":\"Main \u2192 Rated #1\\xa0\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],name:\"Main \u2192 Rated #1\\xa0\",verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"\\\"You've blown us away with every design you've done for us! Thank you again for all your hard work, it really paid off!\u201D\"})}),className:\"framer-1tazn43\",\"data-framer-name\":\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",fonts:[\"GF;Inter Tight-300\"],name:\"\u201CI've never worked with a design agency that moves as fast as Lupa. This is so essential to us as a startup that experiences changes frequently. I'm consistently impressed by the team's ability to deliver quality products within a short deadline.\u201D\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-155cpt0\",\"data-framer-name\":\"Frame 48098612\",name:\"Frame 48098612\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e14paj\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"data:framer/asset-reference,0bhe5VT4GiAG5ZZMPzJJpFzxOUs.png?originalFilename=Kevin.png&preferredSize=auto\"},className:\"framer-ewxkow\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10u33z3\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(25, 26, 35)\"},children:\"Kevin Lance\"})}),className:\"framer-3iydwj\",\"data-framer-name\":\"Lindsay Hanzlik\",fonts:[\"GF;Inter Tight-500\"],name:\"Lindsay Hanzlik\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12.6px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"rgba(25, 29, 35, 0.45)\"},children:\"VP of Operations & Co-Founder\"})}),className:\"framer-f1gv93\",\"data-framer-name\":\"Senior Content Marketing Manager\",fonts:[\"GF;Inter Tight-regular\"],name:\"Senior Content Marketing Manager\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"data:framer/asset-reference,7Itms9z9LxYSeDSUNKiAIL0Uj0.svg?originalFilename=CAryhealth.svg&preferredSize=auto\"},className:\"framer-1jcn6tg\"})]})]})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yp2yia-container hidden-72rtr7 hidden-ulvhoq hidden-11e9574\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-c7e59a8d-e893-40a4-bf56-9f4ff0e25b69, rgb(52, 193, 255))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-50,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:36,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"vwnZmLgxn\",intervalControl:4,itemAmount:1,layoutId:\"vwnZmLgxn\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-c7e59a8d-e893-40a4-bf56-9f4ff0e25b69, rgb(52, 193, 255))\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.4,dotsPadding:0,dotsRadius:50,showProgressDots:true},slots:[],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:.2,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bzpk6-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:300,zIndex:10}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-c7e59a8d-e893-40a4-bf56-9f4ff0e25b69, rgb(52, 193, 255))\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-58VQBDKJ\",height:\"100%\",id:\"kY1eADvnu\",layoutId:\"kY1eADvnu\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconImage:addImageAlt({src:\"https://framerusercontent.com/images/oxgMvTavhyxV2cnlZe3IrWEpqs.jpg\",srcSet:\"https://framerusercontent.com/images/oxgMvTavhyxV2cnlZe3IrWEpqs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxgMvTavhyxV2cnlZe3IrWEpqs.jpg 612w\"},\"\"),iconSize:24,iconType:\"custom\",text:\"Cookie Settings\",textFont:{},type:\"none\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jo8mhx\",\"data-framer-name\":\"Footer\",id:elementId10,name:\"Footer\",ref:ref12,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:841,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qkfww7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENYJHm5Bs:{variant:\"tCGTpEYel\"},XFxkSVo3y:{variant:\"uppe4lX8K\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Jvznz2TvY\",layoutId:\"Jvznz2TvY\",style:{width:\"100%\"},variant:\"cV42qXKFb\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-BR1Vw { background: rgb(249, 249, 249); }`,\".framer-BR1Vw.framer-lux5qc, .framer-BR1Vw .framer-lux5qc { display: block; }\",\".framer-BR1Vw.framer-72rtr7 { align-content: center; align-items: center; background-color: #f9f9f9; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-BR1Vw .framer-1m3jvf2, .framer-BR1Vw .framer-1ezfzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-am839t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 112px; justify-content: flex-start; overflow: visible; padding: 40px 100px 0px 100px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-BR1Vw .framer-68m5di-container { flex: none; height: auto; max-width: 1140px; position: relative; width: 100%; z-index: 10; }\",\".framer-BR1Vw .framer-1w67yrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-oisk6j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 1px; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-pus1lu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1ff4mmq { 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-BR1Vw .framer-13l3b49 { --border-bottom-width: 1px; --border-color: #33c1ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 113px; left: calc(55.08064516129034% - 229px / 2); position: absolute; top: calc(13.218390804597725% - 113px / 2); width: 229px; z-index: 0; }\",\".framer-BR1Vw .framer-krryyy { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 780px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-1rgemxh { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 680px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-1kpewm { flex: none; height: 76px; left: calc(74.51612903225808% - 96px / 2); overflow: visible; position: absolute; top: calc(5.5970149253731565% - 76px / 2); width: 96px; }\",\".framer-BR1Vw .framer-7h7edt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; left: 73%; overflow: visible; padding: 0px; position: absolute; top: 13%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-BR1Vw .framer-1vq579t { align-content: center; align-items: center; background-color: #c287e8; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 6.019999980926514px 5px 6.019999980926514px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-1ea03m1, .framer-BR1Vw .framer-12bqe34, .framer-BR1Vw .framer-1obkz73, .framer-BR1Vw .framer-s6slnd, .framer-BR1Vw .framer-12k7xou, .framer-BR1Vw .framer-1ta62pu, .framer-BR1Vw .framer-1yt3njw, .framer-BR1Vw .framer-93imzg, .framer-BR1Vw .framer-64ntbd, .framer-BR1Vw .framer-1ycht97, .framer-BR1Vw .framer-19zj1ud, .framer-BR1Vw .framer-yns2t0, .framer-BR1Vw .framer-19r4isb, .framer-BR1Vw .framer-sobse3, .framer-BR1Vw .framer-jdqpgm, .framer-BR1Vw .framer-i27l4b, .framer-BR1Vw .framer-1qzqgzu, .framer-BR1Vw .framer-1nosolc, .framer-BR1Vw .framer-1ld4aa8, .framer-BR1Vw .framer-1iwnorj, .framer-BR1Vw .framer-c7mxs6, .framer-BR1Vw .framer-1huwuor, .framer-BR1Vw .framer-vk5yzo, .framer-BR1Vw .framer-emngdu, .framer-BR1Vw .framer-1wjl8j9, .framer-BR1Vw .framer-13lkouh, .framer-BR1Vw .framer-v9y2fr, .framer-BR1Vw .framer-1eqjrj4, .framer-BR1Vw .framer-3iydwj, .framer-BR1Vw .framer-f1gv93 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BR1Vw .framer-93euh5 { flex: none; height: 60px; left: calc(31.25000000000002% - 60px / 2); position: absolute; top: calc(60.526315789473706% - 60px / 2); width: 60px; }\",\".framer-BR1Vw .framer-ypw17e { align-content: flex-start; align-items: flex-start; bottom: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-BR1Vw .framer-10vo0tt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 60px; min-width: 1px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-muikax { align-content: center; align-items: center; background-color: #33c1ff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; left: 44px; overflow: hidden; padding: 5px 6.019999980926514px 5px 6.019999980926514px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BR1Vw .framer-ug41dx { flex: none; height: 56px; left: calc(7.600000000000022% - 81px / 2); overflow: visible; position: absolute; top: calc(64.92537313432838% - 56px / 2); width: 81px; }\",\".framer-BR1Vw .framer-3j3hiu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-5v779n-container, .framer-BR1Vw .framer-1p1vat6-container, .framer-BR1Vw .framer-kpdyoy-container, .framer-BR1Vw .framer-1nhfrem-container, .framer-BR1Vw .framer-1qkfww7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1rkgnja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-14iwmia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 1px 0px 1px 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-116c2de, .framer-BR1Vw .framer-17eqzyh { --border-bottom-width: 0.5930905938148499px; --border-color: #33c1ff; --border-left-width: 0.5930905938148499px; --border-right-width: 0.5930905938148499px; --border-style: solid; --border-top-width: 0.5930905938148499px; align-content: center; align-items: center; background-color: #33c1ff; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 13.047993659973145px 24.909805297851562px 13.047993659973145px 22.537443161010742px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-4qgjii, .framer-BR1Vw .framer-grb0i3, .framer-BR1Vw .framer-lnc1si, .framer-BR1Vw .framer-1h6i4sy, .framer-BR1Vw .framer-12ni56c, .framer-BR1Vw .framer-3fqa06, .framer-BR1Vw .framer-a106sm { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-BR1Vw .framer-1c9afyh { --border-bottom-width: 0.5930905938148499px; --border-color: #ca054d; --border-left-width: 0.5930905938148499px; --border-right-width: 0.5930905938148499px; --border-style: solid; --border-top-width: 0.5930905938148499px; align-content: center; align-items: center; background-color: #ca054d; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 13.047993659973145px 24.909805297851562px 13.047993659973145px 22.537443161010742px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-1ss2zrm, .framer-BR1Vw .framer-14zykwf, .framer-BR1Vw .framer-1u04etl, .framer-BR1Vw .framer-3bkb39 { --border-bottom-width: 0.5930905938148499px; --border-color: #33c1ff; --border-left-width: 0.5930905938148499px; --border-right-width: 0.5930905938148499px; --border-style: solid; --border-top-width: 0.5930905938148499px; align-content: center; align-items: center; background-color: #f9f9f9; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 13.047993659973145px 24.909805297851562px 13.047993659973145px 22.537443161010742px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-16w9i1n, .framer-BR1Vw .framer-6q364a { --border-bottom-width: 0.5930905938148499px; --border-color: #c287e8; --border-left-width: 0.5930905938148499px; --border-right-width: 0.5930905938148499px; --border-style: solid; --border-top-width: 0.5930905938148499px; align-content: center; align-items: center; background-color: #c287e8; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 13.047993659973145px 24.909805297851562px 13.047993659973145px 22.537443161010742px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-1litcqf, .framer-BR1Vw .framer-l0arau, .framer-BR1Vw .framer-1w2lfvc { flex: none; height: 24px; position: relative; width: 25px; }\",\".framer-BR1Vw .framer-1j6y8fi { --border-bottom-width: 0.5930905938148499px; --border-color: #244aff; --border-left-width: 0.5930905938148499px; --border-right-width: 0.5930905938148499px; --border-style: solid; --border-top-width: 0.5930905938148499px; align-content: center; align-items: center; background-color: #244aff; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 13.047993659973145px 24.909805297851562px 13.047993659973145px 22.537443161010742px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-1799aes { 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: 51px; }\",\".framer-BR1Vw .framer-ux85z1, .framer-BR1Vw .framer-1cv5svh { flex: none; height: 50px; position: relative; width: 51px; }\",\".framer-BR1Vw .framer-82xjf3 { flex: none; height: 20px; left: calc(50.98039215686276% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-BR1Vw .framer-15paypu { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-BR1Vw .framer-1pg0eac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 51px; }\",\".framer-BR1Vw .framer-q72g6l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-jpzygv-container { flex: none; height: auto; left: 751px; position: absolute; top: -123px; width: auto; z-index: 0; }\",\".framer-BR1Vw .framer-1844qh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1dvn51e, .framer-BR1Vw .framer-1ewqzzi, .framer-BR1Vw .framer-2uegjd, .framer-BR1Vw .framer-11o9335, .framer-BR1Vw .framer-78y4fr, .framer-BR1Vw .framer-1uda4lb, .framer-BR1Vw .framer-1qr104d, .framer-BR1Vw .framer-1rxfsyg, .framer-BR1Vw .framer-dbpgo7, .framer-BR1Vw .framer-1qylzv7, .framer-BR1Vw .framer-gm4qv8, .framer-BR1Vw .framer-pydb6e { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-u7v2zy { --border-bottom-width: 1px; --border-color: #34c2ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-BR1Vw .framer-dp51n8-container { aspect-ratio: 1.7513134851138354 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 572px); position: relative; width: 100%; }\",\".framer-BR1Vw .framer-12qo1mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-gdee5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-c6cnzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1iggzat { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 680px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-11tds36 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-s0z03g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-g2z01p { align-content: flex-start; align-items: flex-start; background-color: #33c1ff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 360px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-xt48gk, .framer-BR1Vw .framer-1apu7ti, .framer-BR1Vw .framer-1labhgy, .framer-BR1Vw .framer-6d6v0x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-1pk1a1i, .framer-BR1Vw .framer-11f0tdl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1vxj1h6 { aspect-ratio: 0.8437501406738842 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 68px; }\",\".framer-BR1Vw .framer-1ryxkug, .framer-BR1Vw .framer-1mmg0wg, .framer-BR1Vw .framer-s38wct, .framer-BR1Vw .framer-w5mrw1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1g0o6pp, .framer-BR1Vw .framer-1tp3t1r, .framer-BR1Vw .framer-ovfwvr, .framer-BR1Vw .framer-d9pkwj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-7vt66n, .framer-BR1Vw .framer-1h936xe, .framer-BR1Vw .framer-ldrdww, .framer-BR1Vw .framer-1amxdkb { flex: none; height: 4px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-2l0n15 { align-content: flex-start; align-items: flex-start; background-color: #244aff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 360px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-qjaj05 { aspect-ratio: 0.9853417097866842 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 79px; }\",\".framer-BR1Vw .framer-1kj338y { align-content: flex-start; align-items: flex-start; background-color: #c287e8; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 360px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-1c5wdbr, .framer-BR1Vw .framer-21dre4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 120px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1dg1lv5 { aspect-ratio: 0.9880952380952381 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 79px; }\",\".framer-BR1Vw .framer-10y4ob0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 164px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-j1rhc0 { align-content: flex-start; align-items: flex-start; background-color: #ca054d; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 360px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-1rakeyp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 80px; }\",\".framer-BR1Vw .framer-a69b1x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-a48yv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1qdgew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-157ns8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-fmd6o6 { --border-bottom-width: 1px; --border-color: #33c1ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; height: 104px; left: 242px; position: absolute; width: 208px; z-index: 0; }\",\".framer-BR1Vw .framer-9d6rzs { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-BR1Vw .framer-1r604re { align-content: center; align-items: center; aspect-ratio: 2.272727272727273 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 440px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-jhj7ij-container, .framer-BR1Vw .framer-1vcryov-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BR1Vw .framer-1i7qcnr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-zqj9bl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-mn1zod-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-BR1Vw .framer-13ep515 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-111ypw8, .framer-BR1Vw .framer-wte2nc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1c03k3z, .framer-BR1Vw .framer-1xv3o65, .framer-BR1Vw .framer-1gdbbyw, .framer-BR1Vw .framer-w6rm6z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-12l7a2a, .framer-BR1Vw .framer-144q580, .framer-BR1Vw .framer-tq8ijz { aspect-ratio: 0.7672301690507152 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 317px); overflow: visible; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-10oal9d, .framer-BR1Vw .framer-26qm7u, .framer-BR1Vw .framer-1zfrid, .framer-BR1Vw .framer-p6xa0h, .framer-BR1Vw .framer-1simb6p, .framer-BR1Vw .framer-1o1xg1u { aspect-ratio: 1.6164383561643836 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-136n58h, .framer-BR1Vw .framer-1dxqbvr, .framer-BR1Vw .framer-70zu5p { aspect-ratio: 0.7672301690507152 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 316px); overflow: visible; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1kuj8ls { aspect-ratio: 1.0405643738977073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 234px); overflow: visible; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-tkzz6w, .framer-BR1Vw .framer-hjmjqj, .framer-BR1Vw .framer-1nc1wz2 { aspect-ratio: 1.0405643738977073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 233px); overflow: visible; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-11b450g { align-content: center; align-items: center; background-color: #33c1ff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-u6xm7b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-1mk33hw { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 615px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-8qkpu1-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-BR1Vw .framer-13ai64h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-byxtsj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1edlbaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-inrnvx, .framer-BR1Vw .framer-1x6tg93 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-ze9a3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1dmwg41 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-4f5tsb { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-1xaktxr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1jqledi { flex: none; height: 305px; overflow: visible; position: relative; width: 417px; }\",\".framer-BR1Vw .framer-g9nvps { background-color: #f1f1f1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 212px; left: calc(49.880095923261415% - 427px / 2); position: absolute; top: calc(50.49180327868855% - 212px / 2); width: 427px; }\",\".framer-BR1Vw .framer-bdkkgi { flex: none; height: 281px; left: calc(50.83932853717028% - 341px / 2); position: absolute; top: calc(73.11475409836068% - 281px / 2); width: 341px; }\",\".framer-BR1Vw .framer-1f1nwxd { flex: none; height: 128px; left: calc(34.292565947242224% - 131px / 2); position: absolute; top: calc(42.95081967213117% - 128px / 2); width: 131px; }\",\".framer-BR1Vw .framer-uigjuw { flex: none; height: 65px; left: calc(58.033573141486826% - 112px / 2); position: absolute; top: calc(72.78688524590167% - 65px / 2); width: 112px; }\",\".framer-BR1Vw .framer-1n2z0t { flex: none; height: 51px; left: calc(76.25899280575543% - 50px / 2); position: absolute; top: calc(34.75409836065576% - 51px / 2); width: 50px; }\",\".framer-BR1Vw .framer-16i08uc { flex: none; height: 22px; left: calc(67.86570743405278% - 22px / 2); position: absolute; top: calc(50.16393442622953% - 22px / 2); width: 22px; }\",\".framer-BR1Vw .framer-1kl8trk { align-content: center; align-items: center; background-color: #33c1ff; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 57%; overflow: hidden; padding: 8.98734188079834px 10.820758819580078px 8.98734188079834px 10.820758819580078px; position: absolute; top: 20%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BR1Vw .framer-uvagqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1tiq2kx { 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 0px 120px 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1k8jkvv-container { flex: none; height: 350px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-v28rih, .framer-BR1Vw .framer-16qn3bf, .framer-BR1Vw .framer-rtzcwx, .framer-BR1Vw .framer-1ycgxs2 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-1fff1op, .framer-BR1Vw .framer-wvchod, .framer-BR1Vw .framer-7lc8jx, .framer-BR1Vw .framer-1wi97gp { --border-bottom-width: 1px; --border-color: #33c1ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f9f9f9; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 320px; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 440px; }\",\".framer-BR1Vw .framer-mp9yrx, .framer-BR1Vw .framer-1koo20h, .framer-BR1Vw .framer-15xcrv1, .framer-BR1Vw .framer-ny4dqh, .framer-BR1Vw .framer-17te7gw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-zsr1xd, .framer-BR1Vw .framer-1xe0amw, .framer-BR1Vw .framer-l7jpa8, .framer-BR1Vw .framer-armbv6, .framer-BR1Vw .framer-1lm3nwv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-1kx09zh, .framer-BR1Vw .framer-2gyqum, .framer-BR1Vw .framer-km63im, .framer-BR1Vw .framer-9jxxv1, .framer-BR1Vw .framer-1vlnim1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 311px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-19oxwt7, .framer-BR1Vw .framer-tu1jsf, .framer-BR1Vw .framer-f4ci88, .framer-BR1Vw .framer-2sb9vj, .framer-BR1Vw .framer-yt93rw { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 1006px; border-bottom-right-radius: 1006px; border-top-left-radius: 1006px; border-top-right-radius: 1006px; box-shadow: 0px 4.025070667266846px 40.250709533691406px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5.031338691711426px 12.075212478637695px 5.031338691711426px 5.031338691711426px; position: relative; width: 69px; }\",\".framer-BR1Vw .framer-18uk2g1, .framer-BR1Vw .framer-ke9ewo, .framer-BR1Vw .framer-15a7w4z, .framer-BR1Vw .framer-17n2bkd, .framer-BR1Vw .framer-8z1kzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-13jx0w9, .framer-BR1Vw .framer-1fqncv0, .framer-BR1Vw .framer-ew6587, .framer-BR1Vw .framer-1gzouzv, .framer-BR1Vw .framer-na8w51 { flex: none; height: 26px; position: relative; width: 27px; }\",\".framer-BR1Vw .framer-115o9ul, .framer-BR1Vw .framer-7ffg64, .framer-BR1Vw .framer-i7gqae, .framer-BR1Vw .framer-19vducv, .framer-BR1Vw .framer-1tazn43 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-BR1Vw .framer-1u6hvqi, .framer-BR1Vw .framer-97p0zo, .framer-BR1Vw .framer-zaks0l, .framer-BR1Vw .framer-rfjvry, .framer-BR1Vw .framer-155cpt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-v0qwn0, .framer-BR1Vw .framer-yvkb1u, .framer-BR1Vw .framer-iigeho, .framer-BR1Vw .framer-1k0m3kk, .framer-BR1Vw .framer-1e14paj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BR1Vw .framer-q1byw, .framer-BR1Vw .framer-1mx0juc, .framer-BR1Vw .framer-1htg4tp, .framer-BR1Vw .framer-czp3g0, .framer-BR1Vw .framer-ewxkow { --border-bottom-width: 3.25px; --border-color: #33c1ff; --border-left-width: 3.25px; --border-right-width: 3.25px; --border-style: solid; --border-top-width: 3.25px; aspect-ratio: 0.9999996478740986 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 65px; }\",\".framer-BR1Vw .framer-1naco7i, .framer-BR1Vw .framer-1764ac9, .framer-BR1Vw .framer-1isrygs, .framer-BR1Vw .framer-iyy7ec, .framer-BR1Vw .framer-10u33z3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BR1Vw .framer-1ntz8gm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 106px; }\",\".framer-BR1Vw .framer-3piqap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 35px; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 73px; }\",\".framer-BR1Vw .framer-1sdgvbd { --border-bottom-width: 1px; --border-color: #33c1ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f9f9f9; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 320px; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 440px; }\",\".framer-BR1Vw .framer-3r5l65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 94px; }\",\".framer-BR1Vw .framer-yiq5bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 66px; }\",\".framer-BR1Vw .framer-1jcn6tg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 104px; }\",\".framer-BR1Vw .framer-yp2yia-container { flex: none; height: 360px; position: relative; width: 100%; }\",\".framer-BR1Vw .framer-bzpk6-container { bottom: 40px; flex: none; height: auto; position: fixed; right: 40px; width: auto; z-index: 1; }\",\".framer-BR1Vw .framer-1jo8mhx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BR1Vw.framer-72rtr7, .framer-BR1Vw .framer-1m3jvf2, .framer-BR1Vw .framer-am839t, .framer-BR1Vw .framer-1w67yrx, .framer-BR1Vw .framer-oisk6j, .framer-BR1Vw .framer-pus1lu, .framer-BR1Vw .framer-1ff4mmq, .framer-BR1Vw .framer-7h7edt, .framer-BR1Vw .framer-1vq579t, .framer-BR1Vw .framer-ypw17e, .framer-BR1Vw .framer-10vo0tt, .framer-BR1Vw .framer-muikax, .framer-BR1Vw .framer-3j3hiu, .framer-BR1Vw .framer-1rkgnja, .framer-BR1Vw .framer-14iwmia, .framer-BR1Vw .framer-116c2de, .framer-BR1Vw .framer-1c9afyh, .framer-BR1Vw .framer-1ss2zrm, .framer-BR1Vw .framer-16w9i1n, .framer-BR1Vw .framer-1j6y8fi, .framer-BR1Vw .framer-14zykwf, .framer-BR1Vw .framer-1u04etl, .framer-BR1Vw .framer-6q364a, .framer-BR1Vw .framer-17eqzyh, .framer-BR1Vw .framer-1799aes, .framer-BR1Vw .framer-1pg0eac, .framer-BR1Vw .framer-3bkb39, .framer-BR1Vw .framer-q72g6l, .framer-BR1Vw .framer-1844qh, .framer-BR1Vw .framer-u7v2zy, .framer-BR1Vw .framer-12qo1mi, .framer-BR1Vw .framer-gdee5z, .framer-BR1Vw .framer-s0z03g, .framer-BR1Vw .framer-g2z01p, .framer-BR1Vw .framer-xt48gk, .framer-BR1Vw .framer-1pk1a1i, .framer-BR1Vw .framer-1ryxkug, .framer-BR1Vw .framer-1g0o6pp, .framer-BR1Vw .framer-2l0n15, .framer-BR1Vw .framer-1apu7ti, .framer-BR1Vw .framer-11f0tdl, .framer-BR1Vw .framer-1mmg0wg, .framer-BR1Vw .framer-1tp3t1r, .framer-BR1Vw .framer-1kj338y, .framer-BR1Vw .framer-1labhgy, .framer-BR1Vw .framer-1c5wdbr, .framer-BR1Vw .framer-s38wct, .framer-BR1Vw .framer-ovfwvr, .framer-BR1Vw .framer-j1rhc0, .framer-BR1Vw .framer-6d6v0x, .framer-BR1Vw .framer-21dre4, .framer-BR1Vw .framer-w5mrw1, .framer-BR1Vw .framer-d9pkwj, .framer-BR1Vw .framer-a69b1x, .framer-BR1Vw .framer-a48yv9, .framer-BR1Vw .framer-1qdgew, .framer-BR1Vw .framer-157ns8d, .framer-BR1Vw .framer-1r604re, .framer-BR1Vw .framer-1i7qcnr, .framer-BR1Vw .framer-zqj9bl, .framer-BR1Vw .framer-1ezfzj, .framer-BR1Vw .framer-111ypw8, .framer-BR1Vw .framer-1c03k3z, .framer-BR1Vw .framer-1xv3o65, .framer-BR1Vw .framer-1gdbbyw, .framer-BR1Vw .framer-w6rm6z, .framer-BR1Vw .framer-wte2nc, .framer-BR1Vw .framer-11b450g, .framer-BR1Vw .framer-u6xm7b, .framer-BR1Vw .framer-13ai64h, .framer-BR1Vw .framer-byxtsj, .framer-BR1Vw .framer-1edlbaz, .framer-BR1Vw .framer-ze9a3c, .framer-BR1Vw .framer-1dmwg41, .framer-BR1Vw .framer-4f5tsb, .framer-BR1Vw .framer-1xaktxr, .framer-BR1Vw .framer-1kl8trk, .framer-BR1Vw .framer-uvagqg, .framer-BR1Vw .framer-1tiq2kx, .framer-BR1Vw .framer-v28rih, .framer-BR1Vw .framer-mp9yrx, .framer-BR1Vw .framer-zsr1xd, .framer-BR1Vw .framer-19oxwt7, .framer-BR1Vw .framer-18uk2g1, .framer-BR1Vw .framer-1u6hvqi, .framer-BR1Vw .framer-v0qwn0, .framer-BR1Vw .framer-1naco7i, .framer-BR1Vw .framer-1ntz8gm, .framer-BR1Vw .framer-16qn3bf, .framer-BR1Vw .framer-1koo20h, .framer-BR1Vw .framer-1xe0amw, .framer-BR1Vw .framer-tu1jsf, .framer-BR1Vw .framer-ke9ewo, .framer-BR1Vw .framer-97p0zo, .framer-BR1Vw .framer-yvkb1u, .framer-BR1Vw .framer-1764ac9, .framer-BR1Vw .framer-3piqap, .framer-BR1Vw .framer-15xcrv1, .framer-BR1Vw .framer-l7jpa8, .framer-BR1Vw .framer-f4ci88, .framer-BR1Vw .framer-15a7w4z, .framer-BR1Vw .framer-zaks0l, .framer-BR1Vw .framer-iigeho, .framer-BR1Vw .framer-1isrygs, .framer-BR1Vw .framer-3r5l65, .framer-BR1Vw .framer-rtzcwx, .framer-BR1Vw .framer-ny4dqh, .framer-BR1Vw .framer-armbv6, .framer-BR1Vw .framer-2sb9vj, .framer-BR1Vw .framer-17n2bkd, .framer-BR1Vw .framer-rfjvry, .framer-BR1Vw .framer-1k0m3kk, .framer-BR1Vw .framer-iyy7ec, .framer-BR1Vw .framer-yiq5bi, .framer-BR1Vw .framer-1ycgxs2, .framer-BR1Vw .framer-17te7gw, .framer-BR1Vw .framer-1lm3nwv, .framer-BR1Vw .framer-yt93rw, .framer-BR1Vw .framer-8z1kzr, .framer-BR1Vw .framer-155cpt0, .framer-BR1Vw .framer-1e14paj, .framer-BR1Vw .framer-10u33z3, .framer-BR1Vw .framer-1jcn6tg, .framer-BR1Vw .framer-1jo8mhx { gap: 0px; } .framer-BR1Vw.framer-72rtr7 > *, .framer-BR1Vw .framer-1m3jvf2 > *, .framer-BR1Vw .framer-1pk1a1i > *, .framer-BR1Vw .framer-11f0tdl > *, .framer-BR1Vw .framer-1c5wdbr > *, .framer-BR1Vw .framer-21dre4 > *, .framer-BR1Vw .framer-1r604re > *, .framer-BR1Vw .framer-1ezfzj > *, .framer-BR1Vw .framer-1jo8mhx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BR1Vw.framer-72rtr7 > :first-child, .framer-BR1Vw .framer-1m3jvf2 > :first-child, .framer-BR1Vw .framer-am839t > :first-child, .framer-BR1Vw .framer-1w67yrx > :first-child, .framer-BR1Vw .framer-oisk6j > :first-child, .framer-BR1Vw .framer-pus1lu > :first-child, .framer-BR1Vw .framer-1ff4mmq > :first-child, .framer-BR1Vw .framer-7h7edt > :first-child, .framer-BR1Vw .framer-10vo0tt > :first-child, .framer-BR1Vw .framer-3j3hiu > :first-child, .framer-BR1Vw .framer-1rkgnja > :first-child, .framer-BR1Vw .framer-q72g6l > :first-child, .framer-BR1Vw .framer-1844qh > :first-child, .framer-BR1Vw .framer-u7v2zy > :first-child, .framer-BR1Vw .framer-12qo1mi > :first-child, .framer-BR1Vw .framer-gdee5z > :first-child, .framer-BR1Vw .framer-xt48gk > :first-child, .framer-BR1Vw .framer-1pk1a1i > :first-child, .framer-BR1Vw .framer-1ryxkug > :first-child, .framer-BR1Vw .framer-1g0o6pp > :first-child, .framer-BR1Vw .framer-1apu7ti > :first-child, .framer-BR1Vw .framer-11f0tdl > :first-child, .framer-BR1Vw .framer-1mmg0wg > :first-child, .framer-BR1Vw .framer-1tp3t1r > :first-child, .framer-BR1Vw .framer-1labhgy > :first-child, .framer-BR1Vw .framer-1c5wdbr > :first-child, .framer-BR1Vw .framer-s38wct > :first-child, .framer-BR1Vw .framer-ovfwvr > :first-child, .framer-BR1Vw .framer-6d6v0x > :first-child, .framer-BR1Vw .framer-21dre4 > :first-child, .framer-BR1Vw .framer-w5mrw1 > :first-child, .framer-BR1Vw .framer-d9pkwj > :first-child, .framer-BR1Vw .framer-a69b1x > :first-child, .framer-BR1Vw .framer-a48yv9 > :first-child, .framer-BR1Vw .framer-1qdgew > :first-child, .framer-BR1Vw .framer-1r604re > :first-child, .framer-BR1Vw .framer-1i7qcnr > :first-child, .framer-BR1Vw .framer-zqj9bl > :first-child, .framer-BR1Vw .framer-1ezfzj > :first-child, .framer-BR1Vw .framer-1c03k3z > :first-child, .framer-BR1Vw .framer-1xv3o65 > :first-child, .framer-BR1Vw .framer-1gdbbyw > :first-child, .framer-BR1Vw .framer-w6rm6z > :first-child, .framer-BR1Vw .framer-13ai64h > :first-child, .framer-BR1Vw .framer-byxtsj > :first-child, .framer-BR1Vw .framer-1edlbaz > :first-child, .framer-BR1Vw .framer-1dmwg41 > :first-child, .framer-BR1Vw .framer-4f5tsb > :first-child, .framer-BR1Vw .framer-1xaktxr > :first-child, .framer-BR1Vw .framer-uvagqg > :first-child, .framer-BR1Vw .framer-1tiq2kx > :first-child, .framer-BR1Vw .framer-v28rih > :first-child, .framer-BR1Vw .framer-mp9yrx > :first-child, .framer-BR1Vw .framer-19oxwt7 > :first-child, .framer-BR1Vw .framer-1naco7i > :first-child, .framer-BR1Vw .framer-16qn3bf > :first-child, .framer-BR1Vw .framer-1koo20h > :first-child, .framer-BR1Vw .framer-tu1jsf > :first-child, .framer-BR1Vw .framer-1764ac9 > :first-child, .framer-BR1Vw .framer-15xcrv1 > :first-child, .framer-BR1Vw .framer-f4ci88 > :first-child, .framer-BR1Vw .framer-1isrygs > :first-child, .framer-BR1Vw .framer-rtzcwx > :first-child, .framer-BR1Vw .framer-ny4dqh > :first-child, .framer-BR1Vw .framer-2sb9vj > :first-child, .framer-BR1Vw .framer-iyy7ec > :first-child, .framer-BR1Vw .framer-1ycgxs2 > :first-child, .framer-BR1Vw .framer-17te7gw > :first-child, .framer-BR1Vw .framer-yt93rw > :first-child, .framer-BR1Vw .framer-10u33z3 > :first-child, .framer-BR1Vw .framer-1jo8mhx > :first-child { margin-top: 0px; } .framer-BR1Vw.framer-72rtr7 > :last-child, .framer-BR1Vw .framer-1m3jvf2 > :last-child, .framer-BR1Vw .framer-am839t > :last-child, .framer-BR1Vw .framer-1w67yrx > :last-child, .framer-BR1Vw .framer-oisk6j > :last-child, .framer-BR1Vw .framer-pus1lu > :last-child, .framer-BR1Vw .framer-1ff4mmq > :last-child, .framer-BR1Vw .framer-7h7edt > :last-child, .framer-BR1Vw .framer-10vo0tt > :last-child, .framer-BR1Vw .framer-3j3hiu > :last-child, .framer-BR1Vw .framer-1rkgnja > :last-child, .framer-BR1Vw .framer-q72g6l > :last-child, .framer-BR1Vw .framer-1844qh > :last-child, .framer-BR1Vw .framer-u7v2zy > :last-child, .framer-BR1Vw .framer-12qo1mi > :last-child, .framer-BR1Vw .framer-gdee5z > :last-child, .framer-BR1Vw .framer-xt48gk > :last-child, .framer-BR1Vw .framer-1pk1a1i > :last-child, .framer-BR1Vw .framer-1ryxkug > :last-child, .framer-BR1Vw .framer-1g0o6pp > :last-child, .framer-BR1Vw .framer-1apu7ti > :last-child, .framer-BR1Vw .framer-11f0tdl > :last-child, .framer-BR1Vw .framer-1mmg0wg > :last-child, .framer-BR1Vw .framer-1tp3t1r > :last-child, .framer-BR1Vw .framer-1labhgy > :last-child, .framer-BR1Vw .framer-1c5wdbr > :last-child, .framer-BR1Vw .framer-s38wct > :last-child, .framer-BR1Vw .framer-ovfwvr > :last-child, .framer-BR1Vw .framer-6d6v0x > :last-child, .framer-BR1Vw .framer-21dre4 > :last-child, .framer-BR1Vw .framer-w5mrw1 > :last-child, .framer-BR1Vw .framer-d9pkwj > :last-child, .framer-BR1Vw .framer-a69b1x > :last-child, .framer-BR1Vw .framer-a48yv9 > :last-child, .framer-BR1Vw .framer-1qdgew > :last-child, .framer-BR1Vw .framer-1r604re > :last-child, .framer-BR1Vw .framer-1i7qcnr > :last-child, .framer-BR1Vw .framer-zqj9bl > :last-child, .framer-BR1Vw .framer-1ezfzj > :last-child, .framer-BR1Vw .framer-1c03k3z > :last-child, .framer-BR1Vw .framer-1xv3o65 > :last-child, .framer-BR1Vw .framer-1gdbbyw > :last-child, .framer-BR1Vw .framer-w6rm6z > :last-child, .framer-BR1Vw .framer-13ai64h > :last-child, .framer-BR1Vw .framer-byxtsj > :last-child, .framer-BR1Vw .framer-1edlbaz > :last-child, .framer-BR1Vw .framer-1dmwg41 > :last-child, .framer-BR1Vw .framer-4f5tsb > :last-child, .framer-BR1Vw .framer-1xaktxr > :last-child, .framer-BR1Vw .framer-uvagqg > :last-child, .framer-BR1Vw .framer-1tiq2kx > :last-child, .framer-BR1Vw .framer-v28rih > :last-child, .framer-BR1Vw .framer-mp9yrx > :last-child, .framer-BR1Vw .framer-19oxwt7 > :last-child, .framer-BR1Vw .framer-1naco7i > :last-child, .framer-BR1Vw .framer-16qn3bf > :last-child, .framer-BR1Vw .framer-1koo20h > :last-child, .framer-BR1Vw .framer-tu1jsf > :last-child, .framer-BR1Vw .framer-1764ac9 > :last-child, .framer-BR1Vw .framer-15xcrv1 > :last-child, .framer-BR1Vw .framer-f4ci88 > :last-child, .framer-BR1Vw .framer-1isrygs > :last-child, .framer-BR1Vw .framer-rtzcwx > :last-child, .framer-BR1Vw .framer-ny4dqh > :last-child, .framer-BR1Vw .framer-2sb9vj > :last-child, .framer-BR1Vw .framer-iyy7ec > :last-child, .framer-BR1Vw .framer-1ycgxs2 > :last-child, .framer-BR1Vw .framer-17te7gw > :last-child, .framer-BR1Vw .framer-yt93rw > :last-child, .framer-BR1Vw .framer-10u33z3 > :last-child, .framer-BR1Vw .framer-1jo8mhx > :last-child { margin-bottom: 0px; } .framer-BR1Vw .framer-am839t > *, .framer-BR1Vw .framer-1ff4mmq > *, .framer-BR1Vw .framer-u7v2zy > *, .framer-BR1Vw .framer-xt48gk > *, .framer-BR1Vw .framer-1apu7ti > *, .framer-BR1Vw .framer-1labhgy > *, .framer-BR1Vw .framer-6d6v0x > *, .framer-BR1Vw .framer-1c03k3z > *, .framer-BR1Vw .framer-1xv3o65 > *, .framer-BR1Vw .framer-1gdbbyw > *, .framer-BR1Vw .framer-w6rm6z > *, .framer-BR1Vw .framer-13ai64h > *, .framer-BR1Vw .framer-1dmwg41 > *, .framer-BR1Vw .framer-1tiq2kx > *, .framer-BR1Vw .framer-v28rih > *, .framer-BR1Vw .framer-16qn3bf > *, .framer-BR1Vw .framer-rtzcwx > *, .framer-BR1Vw .framer-1ycgxs2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BR1Vw .framer-1w67yrx > *, .framer-BR1Vw .framer-3j3hiu > *, .framer-BR1Vw .framer-1qdgew > *, .framer-BR1Vw .framer-1xaktxr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BR1Vw .framer-oisk6j > *, .framer-BR1Vw .framer-gdee5z > *, .framer-BR1Vw .framer-a69b1x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-BR1Vw .framer-pus1lu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BR1Vw .framer-7h7edt > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-BR1Vw .framer-1vq579t > *, .framer-BR1Vw .framer-muikax > * { margin: 0px; margin-left: calc(8.606934547424316px / 2); margin-right: calc(8.606934547424316px / 2); } .framer-BR1Vw .framer-1vq579t > :first-child, .framer-BR1Vw .framer-ypw17e > :first-child, .framer-BR1Vw .framer-muikax > :first-child, .framer-BR1Vw .framer-14iwmia > :first-child, .framer-BR1Vw .framer-116c2de > :first-child, .framer-BR1Vw .framer-1c9afyh > :first-child, .framer-BR1Vw .framer-1ss2zrm > :first-child, .framer-BR1Vw .framer-16w9i1n > :first-child, .framer-BR1Vw .framer-1j6y8fi > :first-child, .framer-BR1Vw .framer-14zykwf > :first-child, .framer-BR1Vw .framer-1u04etl > :first-child, .framer-BR1Vw .framer-6q364a > :first-child, .framer-BR1Vw .framer-17eqzyh > :first-child, .framer-BR1Vw .framer-1799aes > :first-child, .framer-BR1Vw .framer-1pg0eac > :first-child, .framer-BR1Vw .framer-3bkb39 > :first-child, .framer-BR1Vw .framer-s0z03g > :first-child, .framer-BR1Vw .framer-g2z01p > :first-child, .framer-BR1Vw .framer-2l0n15 > :first-child, .framer-BR1Vw .framer-1kj338y > :first-child, .framer-BR1Vw .framer-j1rhc0 > :first-child, .framer-BR1Vw .framer-157ns8d > :first-child, .framer-BR1Vw .framer-111ypw8 > :first-child, .framer-BR1Vw .framer-wte2nc > :first-child, .framer-BR1Vw .framer-11b450g > :first-child, .framer-BR1Vw .framer-u6xm7b > :first-child, .framer-BR1Vw .framer-ze9a3c > :first-child, .framer-BR1Vw .framer-1kl8trk > :first-child, .framer-BR1Vw .framer-zsr1xd > :first-child, .framer-BR1Vw .framer-18uk2g1 > :first-child, .framer-BR1Vw .framer-1u6hvqi > :first-child, .framer-BR1Vw .framer-v0qwn0 > :first-child, .framer-BR1Vw .framer-1ntz8gm > :first-child, .framer-BR1Vw .framer-1xe0amw > :first-child, .framer-BR1Vw .framer-ke9ewo > :first-child, .framer-BR1Vw .framer-97p0zo > :first-child, .framer-BR1Vw .framer-yvkb1u > :first-child, .framer-BR1Vw .framer-3piqap > :first-child, .framer-BR1Vw .framer-l7jpa8 > :first-child, .framer-BR1Vw .framer-15a7w4z > :first-child, .framer-BR1Vw .framer-zaks0l > :first-child, .framer-BR1Vw .framer-iigeho > :first-child, .framer-BR1Vw .framer-3r5l65 > :first-child, .framer-BR1Vw .framer-armbv6 > :first-child, .framer-BR1Vw .framer-17n2bkd > :first-child, .framer-BR1Vw .framer-rfjvry > :first-child, .framer-BR1Vw .framer-1k0m3kk > :first-child, .framer-BR1Vw .framer-yiq5bi > :first-child, .framer-BR1Vw .framer-1lm3nwv > :first-child, .framer-BR1Vw .framer-8z1kzr > :first-child, .framer-BR1Vw .framer-155cpt0 > :first-child, .framer-BR1Vw .framer-1e14paj > :first-child, .framer-BR1Vw .framer-1jcn6tg > :first-child { margin-left: 0px; } .framer-BR1Vw .framer-1vq579t > :last-child, .framer-BR1Vw .framer-ypw17e > :last-child, .framer-BR1Vw .framer-muikax > :last-child, .framer-BR1Vw .framer-14iwmia > :last-child, .framer-BR1Vw .framer-116c2de > :last-child, .framer-BR1Vw .framer-1c9afyh > :last-child, .framer-BR1Vw .framer-1ss2zrm > :last-child, .framer-BR1Vw .framer-16w9i1n > :last-child, .framer-BR1Vw .framer-1j6y8fi > :last-child, .framer-BR1Vw .framer-14zykwf > :last-child, .framer-BR1Vw .framer-1u04etl > :last-child, .framer-BR1Vw .framer-6q364a > :last-child, .framer-BR1Vw .framer-17eqzyh > :last-child, .framer-BR1Vw .framer-1799aes > :last-child, .framer-BR1Vw .framer-1pg0eac > :last-child, .framer-BR1Vw .framer-3bkb39 > :last-child, .framer-BR1Vw .framer-s0z03g > :last-child, .framer-BR1Vw .framer-g2z01p > :last-child, .framer-BR1Vw .framer-2l0n15 > :last-child, .framer-BR1Vw .framer-1kj338y > :last-child, .framer-BR1Vw .framer-j1rhc0 > :last-child, .framer-BR1Vw .framer-157ns8d > :last-child, .framer-BR1Vw .framer-111ypw8 > :last-child, .framer-BR1Vw .framer-wte2nc > :last-child, .framer-BR1Vw .framer-11b450g > :last-child, .framer-BR1Vw .framer-u6xm7b > :last-child, .framer-BR1Vw .framer-ze9a3c > :last-child, .framer-BR1Vw .framer-1kl8trk > :last-child, .framer-BR1Vw .framer-zsr1xd > :last-child, .framer-BR1Vw .framer-18uk2g1 > :last-child, .framer-BR1Vw .framer-1u6hvqi > :last-child, .framer-BR1Vw .framer-v0qwn0 > :last-child, .framer-BR1Vw .framer-1ntz8gm > :last-child, .framer-BR1Vw .framer-1xe0amw > :last-child, .framer-BR1Vw .framer-ke9ewo > :last-child, .framer-BR1Vw .framer-97p0zo > :last-child, .framer-BR1Vw .framer-yvkb1u > :last-child, .framer-BR1Vw .framer-3piqap > :last-child, .framer-BR1Vw .framer-l7jpa8 > :last-child, .framer-BR1Vw .framer-15a7w4z > :last-child, .framer-BR1Vw .framer-zaks0l > :last-child, .framer-BR1Vw .framer-iigeho > :last-child, .framer-BR1Vw .framer-3r5l65 > :last-child, .framer-BR1Vw .framer-armbv6 > :last-child, .framer-BR1Vw .framer-17n2bkd > :last-child, .framer-BR1Vw .framer-rfjvry > :last-child, .framer-BR1Vw .framer-1k0m3kk > :last-child, .framer-BR1Vw .framer-yiq5bi > :last-child, .framer-BR1Vw .framer-1lm3nwv > :last-child, .framer-BR1Vw .framer-8z1kzr > :last-child, .framer-BR1Vw .framer-155cpt0 > :last-child, .framer-BR1Vw .framer-1e14paj > :last-child, .framer-BR1Vw .framer-1jcn6tg > :last-child { margin-right: 0px; } .framer-BR1Vw .framer-ypw17e > *, .framer-BR1Vw .framer-14iwmia > *, .framer-BR1Vw .framer-1799aes > *, .framer-BR1Vw .framer-1pg0eac > *, .framer-BR1Vw .framer-g2z01p > *, .framer-BR1Vw .framer-2l0n15 > *, .framer-BR1Vw .framer-1kj338y > *, .framer-BR1Vw .framer-j1rhc0 > *, .framer-BR1Vw .framer-157ns8d > *, .framer-BR1Vw .framer-111ypw8 > *, .framer-BR1Vw .framer-wte2nc > *, .framer-BR1Vw .framer-11b450g > *, .framer-BR1Vw .framer-1ntz8gm > *, .framer-BR1Vw .framer-3piqap > *, .framer-BR1Vw .framer-3r5l65 > *, .framer-BR1Vw .framer-yiq5bi > *, .framer-BR1Vw .framer-1jcn6tg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BR1Vw .framer-10vo0tt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BR1Vw .framer-1rkgnja > * { margin: 0px; margin-bottom: calc(180px / 2); margin-top: calc(180px / 2); } .framer-BR1Vw .framer-116c2de > *, .framer-BR1Vw .framer-1c9afyh > *, .framer-BR1Vw .framer-1ss2zrm > *, .framer-BR1Vw .framer-16w9i1n > *, .framer-BR1Vw .framer-1j6y8fi > *, .framer-BR1Vw .framer-14zykwf > *, .framer-BR1Vw .framer-1u04etl > *, .framer-BR1Vw .framer-6q364a > *, .framer-BR1Vw .framer-17eqzyh > *, .framer-BR1Vw .framer-3bkb39 > * { margin: 0px; margin-left: calc(5.8091020584106445px / 2); margin-right: calc(5.8091020584106445px / 2); } .framer-BR1Vw .framer-q72g6l > *, .framer-BR1Vw .framer-12qo1mi > *, .framer-BR1Vw .framer-zqj9bl > *, .framer-BR1Vw .framer-byxtsj > *, .framer-BR1Vw .framer-4f5tsb > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BR1Vw .framer-1844qh > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BR1Vw .framer-s0z03g > *, .framer-BR1Vw .framer-u6xm7b > *, .framer-BR1Vw .framer-zsr1xd > *, .framer-BR1Vw .framer-1xe0amw > *, .framer-BR1Vw .framer-l7jpa8 > *, .framer-BR1Vw .framer-armbv6 > *, .framer-BR1Vw .framer-1lm3nwv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BR1Vw .framer-1ryxkug > *, .framer-BR1Vw .framer-1mmg0wg > *, .framer-BR1Vw .framer-s38wct > *, .framer-BR1Vw .framer-w5mrw1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BR1Vw .framer-1g0o6pp > *, .framer-BR1Vw .framer-1tp3t1r > *, .framer-BR1Vw .framer-ovfwvr > *, .framer-BR1Vw .framer-d9pkwj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BR1Vw .framer-a48yv9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BR1Vw .framer-1i7qcnr > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-BR1Vw .framer-1edlbaz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BR1Vw .framer-ze9a3c > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-BR1Vw .framer-1kl8trk > * { margin: 0px; margin-left: calc(15.470691680908203px / 2); margin-right: calc(15.470691680908203px / 2); } .framer-BR1Vw .framer-uvagqg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BR1Vw .framer-mp9yrx > *, .framer-BR1Vw .framer-1koo20h > *, .framer-BR1Vw .framer-15xcrv1 > *, .framer-BR1Vw .framer-ny4dqh > *, .framer-BR1Vw .framer-17te7gw > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-BR1Vw .framer-19oxwt7 > *, .framer-BR1Vw .framer-tu1jsf > *, .framer-BR1Vw .framer-f4ci88 > *, .framer-BR1Vw .framer-2sb9vj > *, .framer-BR1Vw .framer-yt93rw > * { margin: 0px; margin-bottom: calc(10.062677383422852px / 2); margin-top: calc(10.062677383422852px / 2); } .framer-BR1Vw .framer-18uk2g1 > *, .framer-BR1Vw .framer-ke9ewo > *, .framer-BR1Vw .framer-15a7w4z > *, .framer-BR1Vw .framer-17n2bkd > *, .framer-BR1Vw .framer-8z1kzr > * { margin: 0px; margin-left: calc(6.037606239318848px / 2); margin-right: calc(6.037606239318848px / 2); } .framer-BR1Vw .framer-1u6hvqi > *, .framer-BR1Vw .framer-97p0zo > *, .framer-BR1Vw .framer-zaks0l > *, .framer-BR1Vw .framer-rfjvry > *, .framer-BR1Vw .framer-155cpt0 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-BR1Vw .framer-v0qwn0 > *, .framer-BR1Vw .framer-yvkb1u > *, .framer-BR1Vw .framer-iigeho > *, .framer-BR1Vw .framer-1k0m3kk > *, .framer-BR1Vw .framer-1e14paj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BR1Vw .framer-1naco7i > *, .framer-BR1Vw .framer-1764ac9 > *, .framer-BR1Vw .framer-1isrygs > *, .framer-BR1Vw .framer-iyy7ec > *, .framer-BR1Vw .framer-10u33z3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-BR1Vw { background: rgb(249, 249, 249); } .framer-BR1Vw.framer-72rtr7 { width: 810px; } .framer-BR1Vw .framer-am839t { padding: 40px 40px 0px 40px; } .framer-BR1Vw .framer-oisk6j { padding: 0px 40px 0px 40px; } .framer-BR1Vw .framer-1rkgnja { padding: 80px 40px 100px 40px; } .framer-BR1Vw .framer-dp51n8-container { height: var(--framer-aspect-ratio-supported, 418px); } .framer-BR1Vw .framer-12qo1mi { padding: 100px 40px 100px 40px; } .framer-BR1Vw .framer-s0z03g { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-BR1Vw .framer-g2z01p, .framer-BR1Vw .framer-2l0n15, .framer-BR1Vw .framer-1kj338y, .framer-BR1Vw .framer-j1rhc0 { align-self: start; flex: none; justify-self: start; min-height: unset; width: 100%; } .framer-BR1Vw .framer-1pk1a1i, .framer-BR1Vw .framer-11f0tdl, .framer-BR1Vw .framer-1c5wdbr, .framer-BR1Vw .framer-21dre4 { height: 80px; } .framer-BR1Vw .framer-1vxj1h6 { height: var(--framer-aspect-ratio-supported, 72px); width: 61px; } .framer-BR1Vw .framer-2uegjd { width: 213px; } .framer-BR1Vw .framer-qjaj05 { height: var(--framer-aspect-ratio-supported, 72px); width: 71px; } .framer-BR1Vw .framer-1uda4lb { width: 237px; } .framer-BR1Vw .framer-1dg1lv5 { aspect-ratio: unset; height: 72px; width: 71px; } .framer-BR1Vw .framer-10y4ob0 { width: 221px; } .framer-BR1Vw .framer-1rakeyp { height: var(--framer-aspect-ratio-supported, 72px); width: 72px; } .framer-BR1Vw .framer-gm4qv8 { width: 199px; } .framer-BR1Vw .framer-a69b1x { padding: 100px 24px 120px 24px; } .framer-BR1Vw .framer-1r604re { height: var(--framer-aspect-ratio-supported, 335px); } .framer-BR1Vw .framer-1i7qcnr { padding: 0px 40px 100px 40px; } .framer-BR1Vw .framer-12l7a2a, .framer-BR1Vw .framer-136n58h, .framer-BR1Vw .framer-144q580, .framer-BR1Vw .framer-1dxqbvr, .framer-BR1Vw .framer-tq8ijz, .framer-BR1Vw .framer-70zu5p { aspect-ratio: unset; height: 261px; } .framer-BR1Vw .framer-10oal9d, .framer-BR1Vw .framer-26qm7u, .framer-BR1Vw .framer-1zfrid, .framer-BR1Vw .framer-p6xa0h, .framer-BR1Vw .framer-1simb6p, .framer-BR1Vw .framer-1o1xg1u { aspect-ratio: unset; height: 124px; } .framer-BR1Vw .framer-1kuj8ls, .framer-BR1Vw .framer-tkzz6w, .framer-BR1Vw .framer-hjmjqj, .framer-BR1Vw .framer-1nc1wz2 { aspect-ratio: unset; height: 192px; } .framer-BR1Vw .framer-u6xm7b { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 0; padding: 120px 40px 120px 40px; } .framer-BR1Vw .framer-1mk33hw, .framer-BR1Vw .framer-1dmwg41 { flex: none; width: 100%; } .framer-BR1Vw .framer-13ai64h { padding: 100px 40px 120px 40px; } .framer-BR1Vw .framer-ze9a3c { flex-direction: column; } .framer-BR1Vw .framer-4f5tsb { align-self: unset; flex: none; height: min-content; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BR1Vw .framer-s0z03g, .framer-BR1Vw .framer-u6xm7b, .framer-BR1Vw .framer-ze9a3c { gap: 0px; } .framer-BR1Vw .framer-s0z03g > *, .framer-BR1Vw .framer-s0z03g > :first-child, .framer-BR1Vw .framer-s0z03g > :last-child { margin: 0px; } .framer-BR1Vw .framer-u6xm7b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BR1Vw .framer-u6xm7b > :first-child, .framer-BR1Vw .framer-ze9a3c > :first-child { margin-top: 0px; } .framer-BR1Vw .framer-u6xm7b > :last-child, .framer-BR1Vw .framer-ze9a3c > :last-child { margin-bottom: 0px; } .framer-BR1Vw .framer-ze9a3c > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (min-width: 1440px) { .${metadata.bodyClassName}-framer-BR1Vw { background: rgb(249, 249, 249); } .framer-BR1Vw.framer-72rtr7 { width: 1440px; } .framer-BR1Vw .framer-ug41dx { left: calc(16.290322580645185% - 81px / 2); } .framer-BR1Vw .framer-dp51n8-container { height: var(--framer-aspect-ratio-supported, 710px); } .framer-BR1Vw .framer-1uda4lb { width: 247px; } .framer-BR1Vw .framer-10y4ob0 { width: 212px; } .framer-BR1Vw .framer-gm4qv8 { width: 205px; } .framer-BR1Vw .framer-1r604re { height: var(--framer-aspect-ratio-supported, 546px); } .framer-BR1Vw .framer-12l7a2a, .framer-BR1Vw .framer-136n58h, .framer-BR1Vw .framer-144q580, .framer-BR1Vw .framer-tq8ijz { height: var(--framer-aspect-ratio-supported, 394px); } .framer-BR1Vw .framer-10oal9d, .framer-BR1Vw .framer-1zfrid, .framer-BR1Vw .framer-p6xa0h, .framer-BR1Vw .framer-1simb6p, .framer-BR1Vw .framer-1o1xg1u { height: var(--framer-aspect-ratio-supported, 187px); } .framer-BR1Vw .framer-26qm7u { height: var(--framer-aspect-ratio-supported, 188px); } .framer-BR1Vw .framer-1dxqbvr, .framer-BR1Vw .framer-70zu5p { height: var(--framer-aspect-ratio-supported, 395px); } .framer-BR1Vw .framer-1kuj8ls { height: var(--framer-aspect-ratio-supported, 290px); } .framer-BR1Vw .framer-tkzz6w, .framer-BR1Vw .framer-hjmjqj, .framer-BR1Vw .framer-1nc1wz2 { height: var(--framer-aspect-ratio-supported, 291px); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-BR1Vw { background: rgb(249, 249, 249); } .framer-BR1Vw.framer-72rtr7 { width: 390px; } .framer-BR1Vw .framer-am839t { order: 0; padding: 24px 16px 0px 16px; } .framer-BR1Vw .framer-1w67yrx { height: 90vh; order: 1; } .framer-BR1Vw .framer-oisk6j { gap: 64px; padding: 0px 16px 0px 16px; } .framer-BR1Vw .framer-13l3b49 { height: 99px; left: calc(55.02793296089388% - 201px / 2); top: calc(13.157894736842128% - 99px / 2); width: 201px; } .framer-BR1Vw .framer-1rgemxh { max-width: unset; } .framer-BR1Vw .framer-1kpewm { left: calc(89.94413407821231% - 96px / 2); top: calc(-0.2898550724637459% - 76px / 2); } .framer-BR1Vw .framer-ug41dx { left: calc(8.938547486033542% - 81px / 2); top: calc(35.6521739130435% - 56px / 2); } .framer-BR1Vw .framer-1rkgnja { gap: 100px; order: 2; padding: 40px 16px 40px 16px; } .framer-BR1Vw .framer-4qgjii, .framer-BR1Vw .framer-grb0i3, .framer-BR1Vw .framer-lnc1si, .framer-BR1Vw .framer-1h6i4sy, .framer-BR1Vw .framer-12ni56c, .framer-BR1Vw .framer-3fqa06 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-BR1Vw .framer-1litcqf, .framer-BR1Vw .framer-l0arau, .framer-BR1Vw .framer-1w2lfvc { aspect-ratio: 1.0416666666666667 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 21px; } .framer-BR1Vw .framer-1dvn51e { max-width: 323px; } .framer-BR1Vw .framer-dp51n8-container { height: var(--framer-aspect-ratio-supported, 205px); } .framer-BR1Vw .framer-1p1vat6-container { order: 3; } .framer-BR1Vw .framer-12qo1mi { order: 4; padding: 80px 16px 80px 16px; } .framer-BR1Vw .framer-gdee5z { gap: 40px; } .framer-BR1Vw .framer-c6cnzr { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-BR1Vw .framer-1iggzat, .framer-BR1Vw .framer-11tds36, .framer-BR1Vw .framer-1mk33hw, .framer-BR1Vw .framer-1dmwg41 { flex: none; width: 100%; } .framer-BR1Vw .framer-s0z03g { flex-direction: column; } .framer-BR1Vw .framer-g2z01p, .framer-BR1Vw .framer-2l0n15, .framer-BR1Vw .framer-1kj338y, .framer-BR1Vw .framer-j1rhc0 { flex: none; min-height: unset; width: 100%; } .framer-BR1Vw .framer-1pk1a1i, .framer-BR1Vw .framer-11f0tdl, .framer-BR1Vw .framer-1c5wdbr, .framer-BR1Vw .framer-21dre4 { height: 80px; } .framer-BR1Vw .framer-1vxj1h6 { height: var(--framer-aspect-ratio-supported, 72px); width: 61px; } .framer-BR1Vw .framer-2uegjd { width: 213px; } .framer-BR1Vw .framer-qjaj05 { height: var(--framer-aspect-ratio-supported, 71px); width: 71px; } .framer-BR1Vw .framer-1uda4lb { width: 297px; } .framer-BR1Vw .framer-1dg1lv5 { aspect-ratio: unset; height: 72px; width: 71px; } .framer-BR1Vw .framer-10y4ob0 { width: 260px; } .framer-BR1Vw .framer-1rakeyp { height: var(--framer-aspect-ratio-supported, 72px); width: 72px; } .framer-BR1Vw .framer-gm4qv8 { width: 248px; } .framer-BR1Vw .framer-a69b1x { order: 5; overflow: hidden; padding: 80px 24px 80px 24px; } .framer-BR1Vw .framer-fmd6o6 { bottom: -13px; left: 152px; } .framer-BR1Vw .framer-9d6rzs { max-width: 310px; } .framer-BR1Vw .framer-1r604re { aspect-ratio: unset; background-color: rgba(250, 250, 250, 0); height: min-content; } .framer-BR1Vw .framer-1i7qcnr { order: 6; padding: 0px 16px 80px 16px; } .framer-BR1Vw .framer-111ypw8 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-BR1Vw .framer-1c03k3z, .framer-BR1Vw .framer-1xv3o65, .framer-BR1Vw .framer-1gdbbyw, .framer-BR1Vw .framer-w6rm6z { align-self: start; flex: none; height: auto; justify-self: start; width: 100%; } .framer-BR1Vw .framer-12l7a2a, .framer-BR1Vw .framer-136n58h, .framer-BR1Vw .framer-144q580, .framer-BR1Vw .framer-1dxqbvr, .framer-BR1Vw .framer-tq8ijz, .framer-BR1Vw .framer-70zu5p { aspect-ratio: unset; height: 220px; } .framer-BR1Vw .framer-10oal9d, .framer-BR1Vw .framer-26qm7u, .framer-BR1Vw .framer-1zfrid, .framer-BR1Vw .framer-p6xa0h, .framer-BR1Vw .framer-1simb6p, .framer-BR1Vw .framer-1o1xg1u { aspect-ratio: unset; height: 124px; } .framer-BR1Vw .framer-1kuj8ls, .framer-BR1Vw .framer-tkzz6w, .framer-BR1Vw .framer-hjmjqj, .framer-BR1Vw .framer-1nc1wz2 { aspect-ratio: unset; height: 192px; } .framer-BR1Vw .framer-wte2nc { order: 7; } .framer-BR1Vw .framer-u6xm7b { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 0; padding: 64px 16px 64px 16px; } .framer-BR1Vw .framer-8qkpu1-container, .framer-BR1Vw .framer-1vcryov-container { width: 100%; } .framer-BR1Vw .framer-13ai64h { order: 9; padding: 80px 16px 80px 16px; } .framer-BR1Vw .framer-ze9a3c { flex-direction: column; gap: 80px; } .framer-BR1Vw .framer-4f5tsb { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-BR1Vw .framer-1jqledi { aspect-ratio: 1.3672131147540985 / 1; height: var(--framer-aspect-ratio-supported, 305px); } .framer-BR1Vw .framer-g9nvps { height: 180px; left: calc(49.880095923261415% - 363px / 2); top: calc(50.49180327868855% - 180px / 2); width: 363px; } .framer-BR1Vw .framer-bdkkgi { height: 259px; left: calc(50.83932853717028% - 314px / 2); top: calc(73.11475409836068% - 259px / 2); width: 314px; } .framer-BR1Vw .framer-1tiq2kx { order: 10; padding: 80px 0px 80px 0px; } .framer-BR1Vw .framer-bzpk6-container { right: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BR1Vw .framer-oisk6j, .framer-BR1Vw .framer-1rkgnja, .framer-BR1Vw .framer-gdee5z, .framer-BR1Vw .framer-c6cnzr, .framer-BR1Vw .framer-s0z03g, .framer-BR1Vw .framer-111ypw8, .framer-BR1Vw .framer-u6xm7b, .framer-BR1Vw .framer-ze9a3c { gap: 0px; } .framer-BR1Vw .framer-oisk6j > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-BR1Vw .framer-oisk6j > :first-child, .framer-BR1Vw .framer-1rkgnja > :first-child, .framer-BR1Vw .framer-gdee5z > :first-child, .framer-BR1Vw .framer-c6cnzr > :first-child, .framer-BR1Vw .framer-s0z03g > :first-child, .framer-BR1Vw .framer-u6xm7b > :first-child, .framer-BR1Vw .framer-ze9a3c > :first-child { margin-top: 0px; } .framer-BR1Vw .framer-oisk6j > :last-child, .framer-BR1Vw .framer-1rkgnja > :last-child, .framer-BR1Vw .framer-gdee5z > :last-child, .framer-BR1Vw .framer-c6cnzr > :last-child, .framer-BR1Vw .framer-s0z03g > :last-child, .framer-BR1Vw .framer-u6xm7b > :last-child, .framer-BR1Vw .framer-ze9a3c > :last-child { margin-bottom: 0px; } .framer-BR1Vw .framer-1rkgnja > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BR1Vw .framer-gdee5z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BR1Vw .framer-c6cnzr > *, .framer-BR1Vw .framer-s0z03g > *, .framer-BR1Vw .framer-u6xm7b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BR1Vw .framer-111ypw8 > *, .framer-BR1Vw .framer-111ypw8 > :first-child, .framer-BR1Vw .framer-111ypw8 > :last-child { margin: 0px; } .framer-BR1Vw .framer-ze9a3c > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`,...sharedStyle.css,'.framer-BR1Vw[data-border=\"true\"]::after, .framer-BR1Vw [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 8030\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XFxkSVo3y\":{\"layout\":[\"fixed\",\"auto\"]},\"kSJlyQlrY\":{\"layout\":[\"fixed\",\"auto\"]},\"ENYJHm5Bs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BR1Vw\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8030,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qWSRToK8EPg.woff2\",weight:\"300\"}]},...NavigationBarFonts,...ButtonPrimaryFonts,...Hand3DFonts,...VideoCardFonts,...LogosFonts,...GraphicMobileFonts,...ButtonPrimarySmallFonts,...ButtonSecondaryFonts,...FAQSFonts,...ContactButtonFonts,...TickerFonts,...SlideshowFonts,...CookieBannerFonts,...FooterFonts,...VideoControlsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XFxkSVo3y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kSJlyQlrY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ENYJHm5Bs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8030\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "_Intl_DateTimeFormat_resolvedOptions_timeZone", "_Intl_DateTimeFormat_resolvedOptions", "_Intl_DateTimeFormat", "_Intl", "isEULocale", "_navigator_languages", "_navigator_language", "locale", "navigator", "country", "_locale_toUpperCase", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "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", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "_settings_hoverOpacity", "_settings_tapOpacity", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "NavigationBarFonts", "getFonts", "qMPT5WPFr_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "ButtonPrimaryFonts", "KzzEnz_um_default", "Hand3DFonts", "pftG3HR3V_default", "VideoCardFonts", "FFgVrC63U_default", "VideoCardWithVariantAppearEffect", "withVariantAppearEffect", "LogosFonts", "mfFcip9DF_default", "GraphicMobileFonts", "DhHMYAZB0_default", "ButtonPrimarySmallFonts", "mS_iNIyWo_default", "ImageWithFX", "withFX", "ButtonSecondaryFonts", "fxKX01zFp_default", "FAQSFonts", "WX7SUM2f5_default", "ContactButtonFonts", "J32wuDOzw_default", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "CookieBannerFonts", "CookieBanner", "FooterFonts", "FPVMhTjmj_default", "VideoControlsFonts", "PlLIzjgV_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "router", "useRouter", "elementId2", "ref4", "elementId3", "ref5", "ref6", "elementId4", "elementId5", "ref7", "elementId6", "ref8", "isDisplayed", "isDisplayed1", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "cx", "ComponentViewportProvider", "Container", "RichText2", "x", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
