{
  "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/2J8Vj16bgt14C10mcUex/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js", "ssg:https://framerusercontent.com/modules/1vCPjQB0kvG8316tMORX/6O9kdj1vwlPsC0XKQc4D/xSTNk53G7.js", "ssg:https://framerusercontent.com/modules/kQEVqJ9Dyap2n9VkBz7B/9IUKgwZFbMMDYaUCVxVp/augiA20Il.js", "ssg:https://framerusercontent.com/modules/yFt3QlQ8i8jdJk5dOeAT/xQOfSKdbGmJJQYiEMka1/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,skipEUCheck}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck?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\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./region.map", "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/2J8Vj16bgt14C10mcUex/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 skipLogic=!preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic});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(()=>{if(skipLogic)return;// 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,skipLogic]);// Check if user should be prompted\nuseEffect(()=>{if(skipLogic)return;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,skipLogic]);useEffect(()=>{if(skipLogic)return;if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes,skipLogic]);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)}),!skipLogic&&/*#__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\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookies.map", "// Generated by Framer (f57d8b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"DMg2VIb3S\",\"wpUROPAQI\"];const serializationHash=\"framer-3gRgk\";const variantClassNames={DMg2VIb3S:\"framer-v-1bxee0f\",wpUROPAQI:\"framer-v-1gcvh9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"DMg2VIb3S\",\"Variant 2\":\"wpUROPAQI\"};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:\"DMg2VIb3S\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DMg2VIb3S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bxee0f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DMg2VIb3S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wpUROPAQI:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-krsr0k\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1044,intrinsicWidth:1122,layoutDependency:layoutDependency,layoutId:\"TS0pVFb5V\",svg:'<svg width=\"1122\" height=\"1044\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><g filter=\"url(#b)\"><path d=\"M1009.64 109.839a284.75 284.75 0 0 0-92.514-62A285.51 285.51 0 0 0 807.82 26c-70.974.012-139.357 26.59-191.608 74.471C563.966 52.581 495.58 26.002 424.603 26a285.705 285.705 0 0 0-109.425 21.905 284.98 284.98 0 0 0-92.588 62.125c-112.827 112.949-112.779 289.614.096 402.085L616.212 904.4l393.528-392.285c112.87-112.471 112.92-289.136-.1-402.276Z\" fill=\"#000\"/><path d=\"M986.44 488.743 616.212 857.804 245.983 488.743l-.005-.005c-99.912-99.555-100.016-255.302-.041-355.386l.024-.024.024-.024a251.977 251.977 0 0 1 81.868-54.93A252.697 252.697 0 0 1 424.619 59c62.728.006 123.148 23.499 169.295 65.797l22.295 20.436 22.298-20.433C684.661 82.506 745.082 59.014 807.813 59a252.502 252.502 0 0 1 96.653 19.314 251.793 251.793 0 0 1 81.796 54.814l23.378-23.289-23.345 23.322c100.185 100.289 100.045 256.037.15 355.577l-.005.005Z\" stroke=\"#fff\" stroke-width=\"66\"/></g></g><defs><filter id=\"a\" x=\".8\" y=\".8\" width=\"1120.8\" height=\"1042.8\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dx=\"-55\" dy=\"57\"/><feGaussianBlur stdDeviation=\"41.1\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1942_9\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1942_9\" result=\"shape\"/></filter><filter id=\"b\" x=\"134\" y=\"22\" width=\"964.4\" height=\"886.4\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"2\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.890196 0 0 0 0 0.0392157 0 0 0 0 0.0901961 0 0 0 0.7 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1942_9\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1942_9\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8in78j\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1044,intrinsicWidth:1122,layoutDependency:layoutDependency,layoutId:\"zsFLbdp8M\",style:{opacity:.01},svg:'<svg width=\"1122\" height=\"1044\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><g filter=\"url(#b)\"><path d=\"M1009.64 109.839a284.75 284.75 0 0 0-92.514-62A285.51 285.51 0 0 0 807.82 26c-70.974.012-139.357 26.59-191.608 74.471C563.966 52.581 495.58 26.002 424.603 26a285.705 285.705 0 0 0-109.425 21.905 284.98 284.98 0 0 0-92.588 62.125c-112.827 112.949-112.779 289.614.096 402.085L616.212 904.4l393.528-392.285c112.87-112.471 112.92-289.136-.1-402.276Z\" fill=\"#E30A17\"/><path d=\"M986.44 488.743 616.212 857.804 245.983 488.743l-.005-.005c-99.912-99.555-100.016-255.302-.041-355.386l.024-.024.024-.024a251.977 251.977 0 0 1 81.868-54.93A252.697 252.697 0 0 1 424.619 59c62.728.006 123.148 23.499 169.295 65.797l22.295 20.436 22.298-20.433C684.661 82.506 745.082 59.014 807.813 59a252.502 252.502 0 0 1 96.653 19.314 251.793 251.793 0 0 1 81.796 54.814l23.378-23.289-23.345 23.322c100.185 100.289 100.045 256.037.15 355.577l-.005.005Z\" stroke=\"#fff\" stroke-width=\"66\"/></g></g><defs><filter id=\"a\" x=\".8\" y=\".8\" width=\"1120.8\" height=\"1042.8\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dx=\"-55\" dy=\"57\"/><feGaussianBlur stdDeviation=\"41.1\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1942_9\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1942_9\" result=\"shape\"/></filter><filter id=\"b\" x=\"134\" y=\"22\" width=\"964.4\" height=\"886.4\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"2\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.890196 0 0 0 0 0.0392157 0 0 0 0 0.0901961 0 0 0 0.7 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1942_9\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1942_9\" result=\"shape\"/></filter></defs></svg>',variants:{wpUROPAQI:{opacity:1}},withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3gRgk.framer-1o6sp6, .framer-3gRgk .framer-1o6sp6 { display: block; }\",\".framer-3gRgk.framer-1bxee0f { height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-3gRgk .framer-krsr0k { aspect-ratio: 1.0747126436781609 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; width: 26px; }\",\".framer-3gRgk .framer-8in78j { aspect-ratio: 1.0747126436781609 / 1; bottom: -4px; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: -3px; position: absolute; right: 0px; }\",\".framer-3gRgk.framer-v-1gcvh9.framer-1bxee0f { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\",\".framer-3gRgk.framer-v-1gcvh9 .framer-krsr0k { bottom: -3px; height: var(--framer-aspect-ratio-supported, 30px); left: -3px; width: 33px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wpUROPAQI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxSTNk53G7=withCSS(Component,css,\"framer-3gRgk\");export default FramerxSTNk53G7;FramerxSTNk53G7.displayName=\"Main Mouse\";FramerxSTNk53G7.defaultProps={height:30,width:30};addPropertyControls(FramerxSTNk53G7,{variant:{options:[\"DMg2VIb3S\",\"wpUROPAQI\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxSTNk53G7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxSTNk53G7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wpUROPAQI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"30\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xSTNk53G7.map", "// Generated by Framer (f030ee3)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={Sl9Xw3b2k:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,Text,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import BarsTopBar from\"#framer/local/canvasComponent/NOVYiOs_v/NOVYiOs_v.js\";import Notch from\"#framer/local/canvasComponent/qVJjJkc7a/qVJjJkc7a.js\";import BottomBar from\"#framer/local/canvasComponent/VoqkrIpAp/VoqkrIpAp.js\";import MainMouse from\"#framer/local/canvasComponent/xSTNk53G7/xSTNk53G7.js\";import*as sharedStyle from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const BarsTopBarFonts=getFonts(BarsTopBar);const BarsTopBarWithVariantAppearEffect=withVariantAppearEffect(BarsTopBar);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const HeroFonts=getFonts(Hero);const MaterialFonts=getFonts(Material);const NotchFonts=getFonts(Notch);const TickerFonts=getFonts(Ticker);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const ImageWithFX=withFX(Image);const SlideshowFonts=getFonts(Slideshow);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionAWithFX=withFX(motion.a);const BottomBarFonts=getFonts(BottomBar);const CookieBannerFonts=getFonts(CookieBanner);const MainMouseFonts=getFonts(MainMouse);const breakpoints={BLnpWF0sf:\"(max-width: 809px)\",ozT6MrKQH:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-go6jg\";const variantClassNames={BLnpWF0sf:\"framer-v-1yqw5g7\",ozT6MrKQH:\"framer-v-kszk7p\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:116,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={delay:0,duration:2.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:10,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:54,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:64};const transition6={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-10,y:0};const transition7={damping:30,delay:1,mass:1,stiffness:39,type:\"spring\"};const animation9={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation10={opacity:.001,rotate:5,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={delay:0,duration:4,ease:[0,0,1,1],type:\"tween\"};const transition9={damping:30,delay:1,mass:1,stiffness:20,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:5,y:14};const transition10={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:-5,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition10};const transition11={damping:30,delay:.5,mass:1,stiffness:116,type:\"spring\"};const animation14={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation15={opacity:.001,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={delay:0,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition12};const animation17={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition10};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition10};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const animation21={opacity:1,rotate:-190,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition13={delay:0,duration:.45,ease:[.44,0,.56,1],type:\"tween\"};const animation23={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition13};const transition14={damping:30,delay:1.5,mass:1,stiffness:97,type:\"spring\"};const animation24={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const animation25={opacity:.001,rotate:-2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition15={delay:0,duration:1.35,ease:[.44,0,.56,1],type:\"tween\"};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition15};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition16={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const animation29={boxShadow:\"5px 8px 88px 9px rgb(252, 145, 151)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const animation30={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:43,y:0};const animation31={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4,x:-54,y:0};const transition17={damping:67,delay:0,mass:6.6,stiffness:167,type:\"spring\"};const animation32={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const animation33={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation34={opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation35={opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"BLnpWF0sf\",Tablet:\"ozT6MrKQH\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:MainMouse,variant:\"DMg2VIb3S\"};const cursor1={component:MainMouse,variant:\"wpUROPAQI\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"aaCaXv2nS\");usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BLnpWF0sf\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"BLnpWF0sf\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ozT6MrKQH\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"ozT6MrKQH\",\"BLnpWF0sf\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ozT6MrKQH\")return true;return false;};useCustomCursors({\"188x8zw\":{...cursor,variant:\"wpUROPAQI\"},\"1vdyplp\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1vdyplp\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cinfb3-container\",layoutScroll:true,nodeId:\"eCuXYSu5P\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{__framer__targets:[{ref:ref1,target:\"AlVhKryce\"}],variant:\"AlVhKryce\"},ozT6MrKQH:{__framer__targets:[{ref:ref1,target:\"PgFqghzS6\"}],variant:\"PgFqghzS6\"}},children:/*#__PURE__*/_jsx(BarsTopBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"x9kIr3xPG\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"eCuXYSu5P\",layoutId:\"eCuXYSu5P\",style:{width:\"100%\"},variant:\"x9kIr3xPG\",width:\"100%\",WTGUwDGNz:\"188x8zw\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a0im86\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kah8q3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lgch0m\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-oem7r3\",\"data-framer-appear-id\":\"oem7r3\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05leGEgQm9sZA==\",\"--framer-font-family\":'\"Nexa Bold\", \"Nexa Bold Placeholder\", sans-serif',\"--framer-font-size\":\"83px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Umut\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05leGEgQm9sZA==\",\"--framer-font-family\":'\"Nexa Bold\", \"Nexa Bold Placeholder\", sans-serif',\"--framer-font-size\":\"83px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ozkan\"})]}),className:\"framer-ss1bqf\",effect:textEffect,fonts:[\"CUSTOM;Nexa Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,animate:animation4,className:\"framer-19wxu22\",\"data-framer-appear-id\":\"19wxu22\",initial:animation5,optimized:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vugiz2\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3aqzm9\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z5kv4u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,pixelHeight:1080,pixelWidth:1080,sizes:\"187.7826px\",src:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png\",srcSet:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png 1080w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,pixelHeight:1080,pixelWidth:1080,sizes:\"304px\",src:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png\",srcSet:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:.5,animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+48+0+209+20),pixelHeight:1080,pixelWidth:1080,sizes:\"304px\",src:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png\",srcSet:\"https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ph9vGPuHZVziBAWIngjPpkwWWLg.png 1080w\"},className:\"framer-17zc3kg\",\"data-framer-appear-id\":\"17zc3kg\",initial:animation10,optimized:true,style:{rotate:5,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,pixelHeight:1142,pixelWidth:1142,sizes:\"188px\",src:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png\",srcSet:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png 1142w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,pixelHeight:1142,pixelWidth:1142,sizes:\"304px\",src:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png\",srcSet:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png 1142w\"}}},children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1142,intrinsicWidth:1142,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+48+0+209+20),pixelHeight:1142,pixelWidth:1142,sizes:\"304px\",src:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png\",srcSet:\"https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDhiSbGR0sfqnUkPHCTRQ9pjdM.png 1142w\"},className:\"framer-1yj4a92\",style:{rotate:5},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:1080,pixelWidth:1080,sizes:\"265px\",src:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png 1080w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:1080,pixelWidth:1080,sizes:\"433px\",src:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:1,animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+48+0+209+20+374-433),pixelHeight:1080,pixelWidth:1080,sizes:\"433px\",src:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FpWyRC1OBZrqbaxq2WSxUJTpXSE.png 1080w\"},className:\"framer-111ytzw\",\"data-framer-appear-id\":\"111ytzw\",\"data-framer-name\":\"pp_back\",initial:animation12,optimized:true,style:{transformPerspective:1200}})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation14,className:\"framer-u64ozv\",\"data-border\":true,\"data-framer-appear-id\":\"u64ozv\",initial:animation15,optimized:true,style:{rotate:-4,transformPerspective:1200},whileHover:animation13,children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u0130leti\u015Fim\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Adresleri\"})]}),className:\"framer-1s18p2i\",fonts:[\"Inter-Bold\"],id:\"1s18p2i\",onTap:onTap3bnx0g({overlay}),verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1p1idkl\"),\"data-framer-portal-id\":\"1s18p2i\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"b3LSstN53\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-piyc37\"),\"data-framer-portal-id\":\"1s18p2i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17jw6ne\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"385.864px\",src:\"https://framerusercontent.com/images/evGYdj6IRVmG9FoqatGeMLvJfbw.png\",srcSet:\"https://framerusercontent.com/images/evGYdj6IRVmG9FoqatGeMLvJfbw.png 685w\"},className:\"framer-vnhb26\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1yZWd1bGFy\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Umut \\xd6zkan\"})}),className:\"framer-mo7ler\",fonts:[\"GF;Instrument Serif-regular\"],verticalAlignment:\"top\",whileHover:animation16,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19yntec\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3fjt1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkmsm5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wca6x9\",children:[/*#__PURE__*/_jsx(Link,{href:\"wa.me/+905434152988\",motionChild:true,nodeId:\"uYaFOypQc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-tswt4v framer-lux5qc\",whileHover:animation17,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11hh6fj\",\"data-framer-name\":\"whatsapp_svgrepo_com\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:800,intrinsicWidth:800,svg:'<svg width=\"800\" height=\"800\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.42 9.49c-.19-.09-1.1-.54-1.27-.61s-.29-.09-.42.1-.48.6-.59.73-.21.14-.4 0a5.13 5.13 0 0 1-1.49-.92 5.25 5.25 0 0 1-1-1.29c-.11-.18 0-.28.08-.38s.18-.21.28-.32a1.39 1.39 0 0 0 .18-.31.38.38 0 0 0 0-.33c0-.09-.42-1-.58-1.37s-.3-.32-.41-.32h-.4a.72.72 0 0 0-.5.23 2.1 2.1 0 0 0-.65 1.55A3.59 3.59 0 0 0 5 8.2 8.32 8.32 0 0 0 8.19 11c.44.19.78.3 1.05.39a2.53 2.53 0 0 0 1.17.07 1.93 1.93 0 0 0 1.26-.88 1.67 1.67 0 0 0 .11-.88c-.05-.07-.17-.12-.36-.21z\"/><path d=\"M13.29 2.68A7.36 7.36 0 0 0 8 .5a7.44 7.44 0 0 0-6.41 11.15l-1 3.85 3.94-1a7.4 7.4 0 0 0 3.55.9H8a7.44 7.44 0 0 0 5.29-12.72zM8 14.12a6.12 6.12 0 0 1-3.15-.87l-.22-.13-2.34.61.62-2.28-.14-.23a6.18 6.18 0 0 1 9.6-7.65 6.12 6.12 0 0 1 1.81 4.37A6.19 6.19 0 0 1 8 14.12z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMjAw\",\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mesaj\"})}),className:\"framer-rxofvx\",fonts:[\"GF;Inter-200\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"callto:905434152988\",motionChild:true,nodeId:\"szduzcEEO\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-99b4rq framer-lux5qc\",whileHover:animation17,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1371589-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LxD_CEZnQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"phone\",iconSelection:\"Home\",id:\"LxD_CEZnQ\",layoutId:\"LxD_CEZnQ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMjAw\",\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"ara\"})}),className:\"framer-qbevbg\",fonts:[\"GF;Inter-200\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"instagram.com/umuuttozkan\",motionChild:true,nodeId:\"h_FvJ9kE8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5tp9ty framer-lux5qc\",whileHover:animation17,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8onys-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RgYC4RHxB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"insta\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RgYC4RHxB\",layoutId:\"RgYC4RHxB\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMjAw\",\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"instagram\"})}),className:\"framer-7tmn04\",fonts:[\"GF;Inter-200\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:mehmetumut2005@gmail.com\",motionChild:true,nodeId:\"d8FzaI236\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-pwhnsd framer-lux5qc\",whileHover:animation17,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wurjsi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jJG9QBuxN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"mail\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"jJG9QBuxN\",layoutId:\"jJG9QBuxN\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItMjAw\",\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mail\"})}),className:\"framer-jf0ohx\",fonts:[\"GF;Inter-200\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-101c9sj\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-175r8fr\",whileTap:animation18,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"00:28\"})}),className:\"framer-14b802n\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345.864px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eniszp-container\",nodeId:\"zM6Pm1bBj\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileTap:animation18,children:/*#__PURE__*/_jsx(Notch,{height:\"100%\",id:\"zM6Pm1bBj\",layoutId:\"zM6Pm1bBj\",style:{height:\"100%\",width:\"100%\"},variant:\"N4IzvAY1H\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-och18a\",whileTap:animation18,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/46JWUL5iLgiXAgldNGHdRXQ9qE.png\"},className:\"framer-9w0wrp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cnw4u9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4G\"})}),className:\"framer-zn7rv6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h8imgb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vn4doe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VJLBEpV7P\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:90},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"battery\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"VJLBEpV7P\",layoutId:\"VJLBEpV7P\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hd7x10\",onTap:onTap1wnntms({overlay}),whileHover:animation19,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"7px\",\"--framer-text-alignment\":\"center\"},children:\"iPhone'u kapat\"})}),className:\"framer-1fi7j70\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{animate:animation21,className:\"framer-131sica\",exit:animation20,initial:animation22,style:{rotate:-190},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ldgo63\",\"data-framer-name\":\"Arrow Right\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 182 51\"><path d=\"M 3.28 25.45 C 29.225 13.545 97.142 -1.462 161.257 33.759\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(255, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 150.821 48.074 C 155.625 47.696 160.704 47.645 165.522 47.817 C 166.678 47.859 178.861 48.701 178.726 47.922 C 178.075 44.182 175.806 40.453 174.51 36.906 C 171.862 29.653 169.661 22.529 168.904 14.82 C 168.526 10.962 168.554 7.118 168.336 3.29\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(255, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11795288239,withExternalLayout:true})})]})]}),getContainer())})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6ow74\",children:[/*#__PURE__*/_jsx(Link,{href:\"callto:+905434152988\",motionChild:true,nodeId:\"jeRUtPDEx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14jv14b framer-lux5qc\",\"data-framer-cursor\":\"188x8zw\",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-src0vr\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"instagram.com/umuuttozkan\",motionChild:true,nodeId:\"HTKaMuG2W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fzw7bv framer-lux5qc\",\"data-framer-cursor\":\"188x8zw\",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-171hvjt\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"#000\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M4 8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4z\"/><path d=\"M9 12a3 3 0 1 0 6 0 3 3 0 1 0-6 0m7.5-4.5v.01\"/></g></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/umuozkan/\",motionChild:true,nodeId:\"YkGHtl7dW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ctdvef framer-lux5qc\",\"data-framer-cursor\":\"188x8zw\",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l46y94\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6zM2 9h4v12H2z\"/><circle cx=\"4\" cy=\"4\" r=\"2\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"wa.me/905434152988\",motionChild:true,nodeId:\"WRBFkv5_c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1aphztq framer-lux5qc\",\"data-framer-cursor\":\"188x8zw\",whileHover:animation23,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ebcitb\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"#000\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"m3 21 1.65-3.8a9 9 0 1 1 3.4 2.9L3 21\"/><path d=\"M9 10a.5.5 0 0 0 1 0V9a.5.5 0 0 0-1 0v1a5 5 0 0 0 5 5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0 0 1\"/></g></svg>',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nmorYYsLg\"},motionChild:true,nodeId:\"iycX_SfRy\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation24,className:\"framer-1viggyt framer-lux5qc\",\"data-border\":true,\"data-framer-appear-id\":\"1viggyt\",initial:animation25,optimized:true,style:{rotate:-2,transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Active Projects\"})}),className:\"framer-8msvrg\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kp7lw1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"z0vwt8hGK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:.5,id:\"z0vwt8hGK\",layoutId:\"z0vwt8hGK\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{hash:\":GU7OUrTaN\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"ThePC6X8t\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gu0bbs framer-lux5qc\",\"data-framer-name\":\"OZK\",whileHover:animation26,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ff1k4y\",whileHover:animation26,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"99.46px\",src:\"https://framerusercontent.com/images/u9HSgHxp4YmMx24Di5e4ejDRSI.png\",srcSet:\"https://framerusercontent.com/images/u9HSgHxp4YmMx24Di5e4ejDRSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/u9HSgHxp4YmMx24Di5e4ejDRSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u9HSgHxp4YmMx24Di5e4ejDRSI.png 1920w\"},className:\"framer-1gfnd5j\",\"data-framer-name\":\"Untitled_2\",transformTemplate:transformTemplate3,whileHover:animation26}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1395,intrinsicWidth:2480,pixelHeight:1395,pixelWidth:2480,sizes:\"128.23px\",src:\"https://framerusercontent.com/images/IvOPM5TPPwY67Dn9k4d5V5cv3TU.png\",srcSet:\"https://framerusercontent.com/images/IvOPM5TPPwY67Dn9k4d5V5cv3TU.png?scale-down-to=512 512w,https://framerusercontent.com/images/IvOPM5TPPwY67Dn9k4d5V5cv3TU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IvOPM5TPPwY67Dn9k4d5V5cv3TU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IvOPM5TPPwY67Dn9k4d5V5cv3TU.png 2480w\"},className:\"framer-1sylh99\",\"data-framer-name\":\"Untitled_3\",whileHover:animation26})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1565zrg\",whileHover:animation26,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:326,pixelWidth:1080,sizes:\"93.7px\",src:\"https://framerusercontent.com/images/r56ZweNuGO08aiRs3d20XdRQmc.png\",srcSet:\"https://framerusercontent.com/images/r56ZweNuGO08aiRs3d20XdRQmc.png?scale-down-to=512 512w,https://framerusercontent.com/images/r56ZweNuGO08aiRs3d20XdRQmc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r56ZweNuGO08aiRs3d20XdRQmc.png 1080w\"},className:\"framer-j3nsfw\",\"data-framer-name\":\"logo_trans\",whileHover:animation26})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"99.46px\",src:\"https://framerusercontent.com/images/qsg0HwSQBv3w8y3ihC1p5TR9O0k.png\",srcSet:\"https://framerusercontent.com/images/qsg0HwSQBv3w8y3ihC1p5TR9O0k.png?scale-down-to=512 512w,https://framerusercontent.com/images/qsg0HwSQBv3w8y3ihC1p5TR9O0k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qsg0HwSQBv3w8y3ihC1p5TR9O0k.png 1920w\"},className:\"framer-1chr425\",\"data-framer-name\":\"SM_WATCH_6\",transformTemplate:transformTemplate3,whileHover:animation26})]})}),/*#__PURE__*/_jsx(Link,{href:\"talkyonline.com\",motionChild:true,nodeId:\"OSUFTEihU\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-45ma8h framer-lux5qc\",\"data-framer-name\":\"TALKY\",whileHover:animation26,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ksxtnv\",whileHover:animation26,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(35, 157, 89)\"},children:\"English Course\"})}),className:\"framer-mfum19\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(35, 157, 89)\"},children:\"Marketing director\"})}),className:\"framer-e70tru\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a6ue48\",whileHover:animation26,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:950,intrinsicWidth:950,pixelHeight:950,pixelWidth:950,sizes:\"59.18px\",src:\"https://framerusercontent.com/images/NlMFagFb1fL9dHiMjHVYkCxlCY.png\",srcSet:\"https://framerusercontent.com/images/NlMFagFb1fL9dHiMjHVYkCxlCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/NlMFagFb1fL9dHiMjHVYkCxlCY.png 950w\"},className:\"framer-1doyry6\",\"data-framer-name\":\"$3\",transformTemplate:transformTemplate2,whileHover:animation26})})]})}),/*#__PURE__*/_jsx(Link,{href:\"agentedarik.com\",motionChild:true,nodeId:\"ndPClE9PB\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lugvj6 framer-lux5qc\",\"data-framer-name\":\"AGEN\",whileHover:animation26,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c2lsv6\",whileHover:animation26,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(0, 174, 239)\"},children:\"End Milling Dealer\"})}),className:\"framer-u8g5q1\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(0, 174, 239)\"},children:\"Sales Manager\"})}),className:\"framer-1qq14b7\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1htwyfi\",whileHover:animation26,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-u7b7af\",\"data-framer-name\":\"AGEN_LOGO\",fill:\"black\",intrinsicHeight:332,intrinsicWidth:1123,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1122.52\" height=\"332.252\" viewBox=\"0 0 841.89 249.189\"><defs><clipPath id=\"a\"><path transform=\"matrix(1 0 0 -1 0 249.189)\" d=\"M0 249.189h841.89V0H0Z\"/></clipPath></defs><g clip-path=\"url(#a)\" fill=\"#00aeef\" data-name=\"Layer 1\"><path d=\"M51.13 227.43h7.465v-28.443h10.182v-6.446H40.949v6.446H51.13Zm32.022 0h25.783v-6.444h-18.32v-8.56h16.464v-5.956H90.616v-7.483h17.938v-6.446H83.152Zm41.3 0h7.464v-11.238l4.282-4.447 10.23 15.686h9.373l-14.56-21.11 13.276-13.78h-9.326l-13.275 14.464V192.54h-7.464Zm44.82 0h6.988v-23.36h.095l14.137 23.36h7.465v-34.89h-6.99v23.412h-.094l-14.184-23.411h-7.417Zm45.724 0h7.464v-34.89h-7.464Zm.57-38.511h6.418v-5.712h-6.417ZM239.5 227.43h7.464v-11.24l4.282-4.446 10.23 15.686h9.373l-14.56-21.11 13.276-13.78h-9.326l-13.275 14.464V192.54H239.5Zm90.063 0h8.279l-6.9-8.257c1.904-2.491 2.95-5.472 3.284-8.598h-5.852c-.19 1.417-.523 2.834-1.236 4.153l-4.373-5.523c3.422-1.906 6.036-4.595 6.036-8.703 0-5.472-4.182-8.352-9.323-8.352-4.568 0-8.847 3.124-8.847 7.962 0 3.08 1.379 5.133 3.233 7.43-3.997 1.909-7.61 5.232-7.61 10.119 0 6.596 4.849 10.454 10.988 10.454 3.856 0 6.854-1.416 9.563-4.151Zm-6.323-8.11c-1.57 1.81-3.284 3.082-5.713 3.082-2.522 0-4.855-2.052-4.855-4.594 0-2.835 2.333-4.74 4.76-5.767Zm-.333-19.208c0 2.542-1.57 3.764-3.475 4.987-1.287-1.614-2.668-3.032-2.668-5.232 0-1.81 1.38-3.081 3.048-3.081 1.667 0 3.095 1.516 3.095 3.326m59.38 27.318h7.465v-28.444h10.182v-6.446h-27.83v6.446h10.184Zm32.022 0h25.782v-6.445h-18.318v-8.56h16.463v-5.956h-16.463v-7.483h17.938v-6.446h-25.402Zm48.764-28.444h5.33c7.379 0 9.806 4.498 9.806 11.537 0 7.724-4.141 10.462-8.473 10.462h-6.663Zm-7.465 28.444h14.652c10.373 0 15.413-7.521 15.413-17.641 0-11.536-6.608-17.25-15.413-17.25h-14.652Zm58.71-26.288h.097l4.282 12.805h-8.803Zm-16.604 26.288h7.565l2.665-7.771h12.703l2.569 7.77h7.756l-12.704-34.89h-7.66Zm54.143-28.933h8.188c3.379 0 5.14 1.467 5.14 4.84 0 3.523-1.761 4.989-5.14 4.989h-8.188Zm-7.464 28.933h7.464v-13.636h7.474c3.759 0 5.14 1.614 5.664 5.279.38 2.786.333 6.158 1.188 8.357h7.466c-1.38-1.906-1.284-6.061-1.428-8.26-.237-3.567-1.283-7.134-4.944-8.158v-.098c3.804-1.562 5.372-4.641 5.372-8.75 0-5.278-3.851-9.624-9.94-9.624h-18.316Zm44.82 0h7.464v-34.89h-7.464Zm.57-38.512h6.419v-5.712h-6.418Zm23.933 38.512h7.464v-11.24l4.283-4.446 10.23 15.686h9.373l-14.56-21.11 13.275-13.78h-9.325l-13.276 14.464V192.54h-7.464Zm81.5-26.288h.097l4.282 12.805h-8.802Zm-16.604 26.288h7.565l2.665-7.771h12.705l2.569 7.77h7.755l-12.704-34.89h-7.661Zm46.25 0h7.466v-7.521h-7.465Zm30.209 9.533c1.81.683 2.856 1.072 5.903 1.072 2.713 0 5.57-1.072 5.57-4.881 0-2.395-2.238-3.421-4.38-3.421-.524 0-1.095.097-1.666.342l-.048-.098 1.237-1.716c2.143-.05 4.047-.294 5.713-.83 5.325-1.758 8.035-5.518 8.035-10.356 0-7.872-7.56-9.583-10.082-10.17-8.521-2.201-10.14-2.591-10.14-5.28 0-2.932 2.76-3.96 5.14-3.96 3.62 0 6.476 1.125 6.714 5.28h7.227c0-8.062-6.514-11.235-13.606-11.235-6.14 0-12.701 3.368-12.701 10.55 0 6.454 5.087 8.654 10.13 9.926 4.95 1.418 10.092 1.956 10.092 5.768-.001 3.568-3.998 4.35-6.617 4.35-3.998 0-7.52-1.808-7.52-6.451h-7.227c-.094 6.402 3.899 10.26 8.988 11.676 1.19.34 2.38.537 3.618.634l-2.285 3.277.999 1.174a5.049 5.049 0 0 1 1.905-.342c1.095 0 1.903.342 1.903 1.564 0 1.175-.761 1.664-1.903 1.664-1.667 0-3-.44-4-.881Zm34.834-9.533h7.464v-7.521h-7.464ZM176.008 44.23l86.97 129.606-143.01-.55 19.867-30.129c2.038.386 4.136.594 6.282.594 19.057 0 34.505-16.073 34.505-35.9 0-5.705-1.279-11.095-3.553-15.883L160.28 115.29l-19.155-2.218-7.627-18.546L149.62 72.13a33.759 33.759 0 0 0-3.502-.182c-19.057 0-34.505 16.073-34.505 35.902a37.015 37.015 0 0 0 3.004 14.673l-33.99 50.61-51.667-.199L115.931 44.23c6.32-11.539 17.272-18.166 30.037-18.166s22.735 7.28 30.04 18.166m600.209 131.84a25.23 25.23 0 0 1-8.329-1.426c-2.74-.95-5.799-3.11-9.175-6.474l-86.476-80.757v86.244h-39.65V51.861c0-4.826.666-8.997 2.001-12.507 1.335-3.512 3.094-6.365 5.274-8.559a20 20 0 0 1 7.592-4.829 26.615 26.615 0 0 1 8.965-1.535c2.67 0 5.377.473 8.12 1.426 2.741.951 5.87 3.11 9.386 6.474l86.476 80.757V26.844h39.862v121.574c0 4.83-.668 9-2.004 12.51-1.335 3.512-3.094 6.401-5.272 8.67a19.327 19.327 0 0 1-7.699 4.935 27.493 27.493 0 0 1-9.07 1.536M618.24 135.913l-28.05 37.744H454.363V26.844h163.458l-28.263 38.184h-91.327v17.557h111.785l-25.099 33.355h-86.686v19.973ZM338.99 81.925h90.271v91.732h-96.81c-12.233 0-23.552-1.9-33.958-5.706-10.403-3.806-19.367-9.034-26.892-15.69-7.522-6.658-13.426-14.559-17.716-23.7-4.289-9.145-6.433-19.057-6.433-29.737s2.144-20.446 6.433-29.297c4.29-8.852 10.194-16.459 17.716-22.82 7.525-6.366 16.49-11.269 26.892-14.705 10.406-3.439 21.725-5.158 33.957-5.158h101.03l-28.262 38.184H332.45c-5.903 0-11.387.877-16.45 2.633-5.06 1.756-9.457 4.243-13.183 7.461-3.725 3.221-6.643 6.987-8.75 11.303-2.11 4.317-3.166 9.105-3.166 14.375 0 5.264 1.018 10.058 3.058 14.374 2.04 4.313 4.923 8.007 8.648 11.082 3.726 3.071 8.12 5.448 13.183 7.13 5.06 1.682 10.616 2.527 16.66 2.527h53.363v-21.289h-72.978Z\"/></g></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:\"ratelajans.com\",motionChild:true,nodeId:\"xLWnC2Re2\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yvzgk3 framer-lux5qc\",\"data-framer-name\":\"RATEL\",whileHover:animation26,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-121eq1t\",whileHover:animation26,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(2, 2, 3)\"},children:\"Ratel Agency\"})}),className:\"framer-19kp3xn\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(2, 2, 3)\"},children:\"Software Engineer\"})}),className:\"framer-2ekuo0\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",whileHover:animation26,withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hm9lm\",whileHover:animation26,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17g0uk0\",\"data-framer-name\":\"Varl\u0131k 1\",fill:\"black\",intrinsicHeight:494,intrinsicWidth:949,svg:'<svg id=\"katman_2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 949.18 494.09\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"katman_1\"><path d=\"M139.31 192.82c-2.05-.66-4.09-1.32-6.13-1.98v2.3c2.03-.03 4.07-.12 6.13-.31m82.66 3.85c12.97-.54 25.89-.48 39.2 1.12v-8.91c-13.18 1.36-26.27 3.7-39.41 5.57l.21 2.22\" style=\"fill:#535252\"/><path d=\"M88.16 183.98c-.23.58-.45 1.16-.68 1.74 5.57 3.09 10.82 7.19 16.77 9.04 9.49 2.96 19.16 6.02 28.93 7.59v-9.23c-15.54.25-30.36-3.96-45.02-9.15m187.72 17.96c.52-.03 1.02-.32 3.15-1.03-6.06-1.41-11.99-2.39-17.86-3.1v4.99c4.9-.31 9.81-.61 14.71-.87M869.33 42.35c2.55 2.13 4.92 5.73 7.68 6.06 4.34.52 6.05-3.59 5.93-7.6-.11-3.75-1.65-7.07-6.01-7.19-4.84-.14-5.55 3.89-7.6 8.73\" style=\"fill:#ecebeb\"/><path class=\"cls-1\" d=\"M869.53 42.32c2.55 2.14 4.93 5.74 7.7 6.07 4.35.52 6.06-3.59 5.94-7.61-.11-3.76-1.66-7.08-6.02-7.21-4.85-.14-5.56 3.9-7.62 8.75\"/><path d=\"M935.96 13.89c-4.62.18-9.2 1.35-13.82 1.83-12.76 1.35-24.43-2.44-36.04-7.28-17.1-7.13-34.98-10.42-53.44-7.21-12.35 2.14-25.08 3.83-36.65 8.29-16.64 6.42-32.76 14.5-48.45 23.09-25.24 13.81-49.52 29.42-74.99 42.76-15.35 8.04-31.56 12.25-48.33 13.06 0-.09.01-.18.02-.27-8.8.43-17.73-.03-26.79-1.48-24.88-3.98-49.83-7.6-74.73-11.46-37.96-5.89-76.11-5.81-114.06-1.42-34.96 4.04-69.07 12.24-101.84 25.93-15.79 6.59-30.88 14.38-45.68 22.7-13.09 7.36-25.95 15.14-38.82 22.94-14.56 8.83-30.25 14.6-47.28 15.96-12.36.99-24.83 2.5-37.15 1.82-1.58-.09-3.15-.24-4.73-.36-20.81-1.66-41.03-6.63-60.56-14.53-9.86-3.99-19.25-8.67-28.27-13.97-15.54-9.13-29.92-20.11-43.47-32.72.64 16.17 4.03 31.65 8.83 46.83 4.82 15.25 12.19 29.07 23.47 40.71-13.6-6.79-23.73-17.32-31.82-30.1-.46.22-.92.43-1.37.64 1.63 6.49 2.89 13.09 4.95 19.44 7.49 23.11 20.84 39.91 39.41 51.24 8.27 5.05 17.56 9.02 27.84 11.97 20.09 5.77 40.48 7.05 60.99 6.58 4.31-.1 8.61-.25 12.93-.48 13.17-.71 26.29-2.37 40.7-3.73-.65 6.81-1.03 13.49-1.96 20.1-3.07 21.67-3.16 42.8-14.52 61.75-1.89 3.15-4.05 6.14-6.31 9.07h120.13c9.79-6.6 17.08-15.21 28.44-21.78 11.76-6.8 23.54-14.15 36.23-18.6 14.35-5.02 29.81-4.77 45.04-2.56 6.34.92 12.8.97 19.2 1.51 19.22 1.62 37.27 8.3 55.87 12.65 10.01 2.34 20.34 3.29 30.66 4.29v.26c3.82.37 7.64.75 11.43 1.2 1.91.23 3.87.03 6.59.03 0 1.01.04 1.94.05 2.86.02.92.01 1.81-.07 2.68-.73 7.46-1.08 14.89-1.12 22.31-.16 22.1 2.44 44.03 6.12 65.93 3.13 18.66 7.51 36.94 14.51 54.54 6.34 15.93 16.85 25.92 34.87 28.2 12.49 1.58 24.52.9 36.44-1.86 17.85-4.14 23.98-14.39 23.52-28.39-.09-3.3-.54-6.81-1.3-10.5-.68-3.29-3.12-7.15-5.9-8.91-10.65-6.75-14.63-17.46-17.1-28.59-1.55-6.98-2.36-13.88-2.49-20.68-.31-20.36 5.59-39.78 16.72-57.42 9.72-15.41 23.75-28.13 36.07-41.86 14.9-16.6 30.43-32.66 44.87-49.66 4.99-5.87 7.23-14.02 11.22-20.84 8.44-14.45 21.23-24.75 34.55-34.2 23.07-16.37 44.19-34.72 60.78-57.79 6.3-8.76 14.93-13.64 24.73-15.86 18.27-4.14 35.11-11.56 51.82-19.71 9.83-4.79 20.38-8.1 30.3-12.74 9.9-4.64 20.72-9.07 24.6-20.51 3.48-10.26 5.99-20.94 7.92-31.62 1.87-10.33-2.22-14.44-12.78-14.04m-58.93 34.48c-2.76-.33-5.13-3.93-7.68-6.06 2.05-4.85 2.76-8.87 7.6-8.73 4.35.12 5.9 3.44 6.01 7.19.12 4.02-1.59 8.12-5.93 7.6\"/><path class=\"cls-1\" d=\"M507.11 238.2c-30.23 0-60.38-4.01-89.87-11.94-12.28-3.31-24.56-7.37-36.43-11.29l-1.8-.6c-6.45-2.13-12.86-4.42-19.26-6.71-11.9-4.25-24.21-8.65-36.56-11.87-19.13-4.97-39.03-6.61-59.18-4.85-9.93.87-19.98 2.43-29.71 3.95-.07 0-.13.02-.2.03 13.37-.06 28.47.88 44.42 4.6l6.74 1.57-6.59 2.2c-.83.28-1.41.49-1.84.65-.75.27-1.2.44-1.76.47-6.76.36-13.53.79-20.29 1.21-15.74.99-32.02 2.01-48.07 2.2-24.67.31-47.04-.39-68.37-2.11-11.34-.91-22.56-4.42-33.41-7.81l-2.38-.74c-4.32-1.34-8.26-3.8-12.06-6.17-1.68-1.05-3.36-2.09-5.06-3.04l-1.49-.82 1.97-5.06 1.59.56c12.31 4.36 25.43 8.32 39.16 9-24.3-8.08-46.33-16.99-66.42-32.79l-4.03-3.16 4.97-.36c.74-.06 1.28-.11 1.68-.16.82-.08 1.36-.15 1.98.03l-.49 2.05c22.11 16.76 46.79 25.45 74.33 34.23l9.14 2.91-9.5.9c-15.28 1.44-29.82-1.72-43.45-6.06 2.86 1.73 5.68 3.27 8.68 4.2l2.38.75c10.67 3.33 21.7 6.79 32.67 7.67 21.22 1.71 43.46 2.39 68.06 2.09 15.95-.19 32.19-1.21 47.9-2.2 3.76-.23 7.52-.47 11.28-.7-16.45-2.55-31.67-2.43-44.8-1.88l-1.69.07-.56-5.74 1.72-.44c4.42-.63 8.83-1.32 13.25-2 9.79-1.52 19.9-3.1 29.94-3.98 20.51-1.77 40.8-.12 60.31 4.95 12.5 3.25 24.88 7.68 36.85 11.96 6.38 2.28 12.76 4.56 19.18 6.68l1.81.59c11.83 3.91 24.05 7.94 36.24 11.22 34.64 9.33 70.22 13.18 105.73 11.41 32.31-1.59 63.02-8 91.26-19.03 21.4-8.36 37.15-23.82 51.46-38.95 3.33-3.52 6.63-7.06 9.94-10.6 11.03-11.81 22.43-24.01 34.47-35.18 6.91-6.41 15.35-11.25 23.51-15.92 1.85-1.06 3.7-2.12 5.53-3.2 16.87-9.93 29.68-22.4 39.17-38.14 5.77-9.58 12.77-20 23.91-26.4-3.87.87-7.37 3.28-11.18 5.92l-5.2 3.59 1.81-5.4c3.5-10.44 13.35-18.22 23.95-18.89 4.97-.31 10.72-.58 16.16.44 12.9 2.41 24.17 0 34.47-7.37 3.94-2.81 8.12-5.25 12.55-7.84 2.06-1.2 10.6-6.37 12.78-7.7l3.58 1.4c-2.21 1.34-12.56 8.52-14.64 9.73-4.36 2.54-8.47 4.94-12.27 7.66-11.11 7.94-23.24 10.55-37.08 7.95-5.08-.94-10.58-.69-15.34-.39-6.8.44-13.42 4.42-17.55 10.14 4.75-2.82 9.93-4.64 16.39-2.65l5.67 1.75-5.61 1.97c-14.48 5.09-22.76 17.23-29.37 28.2-9.82 16.29-23.06 29.19-40.47 39.44-1.84 1.08-3.7 2.14-5.57 3.21-7.99 4.58-16.24 9.31-22.84 15.43-11.94 11.08-23.3 23.24-34.28 35-3.32 3.55-6.63 7.09-9.96 10.62-13.95 14.75-30.68 31.21-52.76 39.83-28.59 11.16-59.65 17.64-92.32 19.26-5.64.28-11.27.42-16.91.42\"/><path class=\"cls-1\" d=\"M507.11 238.34c-30.21 0-60.46-4.02-89.91-11.95-12.33-3.32-24.59-7.37-36.44-11.29l-1.8-.6c-6.28-2.07-12.61-4.33-18.74-6.52l-.6-.21c-11.87-4.24-24.15-8.63-36.48-11.84-19.13-4.97-39.02-6.61-59.12-4.85-9.35.82-18.83 2.26-28.03 3.69 15.55.04 29.49 1.55 42.56 4.6l7.24 1.68-7.08 2.36c-.86.29-1.43.5-1.83.64-.78.28-1.23.45-1.8.48-6.65.35-13.41.78-19.95 1.19l-.44.03c-15.71.99-31.96 2.01-47.97 2.2-24.49.31-46.86-.38-68.39-2.11-11.37-.91-22.59-4.43-33.44-7.82l-2.38-.74c-4.33-1.35-8.26-3.8-12.07-6.17l-.15-.09c-1.61-1-3.28-2.04-4.94-2.96l-1.6-.88.04-.12 2.03-5.19 1.72.61c11.16 3.95 24.35 8.08 38.03 8.93-25.27-8.46-46.12-17.28-65.44-32.47l-4.32-3.4 5.35-.38c.64-.05 1.21-.1 1.68-.16l.14-.02c.75-.07 1.29-.13 1.9.04l.14.04-.5 2.09c22.12 16.75 46.69 25.38 74.21 34.15l9.82 3.13-10.21.96c-12.76 1.2-25.86-.56-42.32-5.69 2.35 1.38 4.88 2.71 7.57 3.55l2.43.76c10.65 3.33 21.66 6.77 32.59 7.65 21.27 1.71 43.53 2.4 68.05 2.1 16.01-.19 32.22-1.21 47.89-2.2l3.63-.23 6.27-.39c-16.22-2.38-31.02-2.19-43.41-1.67l-1.82.08-.59-6.01 1.84-.47c4.18-.59 8.42-1.25 12.51-1.89l.97-.15c9.72-1.51 19.76-3.07 29.73-3.95 20.57-1.77 40.89-.11 60.36 4.96 12.52 3.26 24.9 7.68 36.87 11.96 5.91 2.11 12.61 4.51 19.18 6.68l1.8.59c11.78 3.89 23.95 7.92 36.24 11.22 34.64 9.33 70.19 13.18 105.69 11.41 32.29-1.59 62.98-7.99 91.22-19.02 21.38-8.35 37.12-23.8 51.4-38.91 3.11-3.28 6.24-6.64 9.27-9.88l.73-.78c11.01-11.79 22.4-23.97 34.41-35.13 6.92-6.43 15.37-11.26 23.54-15.94l.2-.12c1.75-1.01 3.56-2.04 5.32-3.08 16.85-9.92 29.64-22.38 39.12-38.09 5.51-9.14 12.27-19.38 23.06-25.92-3.48 1.03-6.71 3.27-10.12 5.63l-5.56 3.84 1.95-5.82c3.52-10.5 13.42-18.31 24.08-18.99 4.99-.32 10.77-.57 16.2.44 12.86 2.4 24.1 0 34.36-7.34 3.94-2.82 8.13-5.26 12.56-7.85 2.05-1.2 10.55-6.35 12.78-7.7l.06-.04 3.92 1.53-.25.15c-1.03.63-3.84 2.53-6.82 4.54-3.31 2.24-6.73 4.55-7.83 5.2-4.34 2.53-8.44 4.92-12.26 7.65-11.15 7.97-23.31 10.58-37.19 7.98-5.05-.94-10.55-.69-15.3-.39-6.35.41-12.8 4.03-17.02 9.51 3.95-2.25 9.24-4.35 15.9-2.3l6.09 1.88-6.03 2.12c-14.44 5.08-22.7 17.19-29.3 28.14-9.83 16.31-23.09 29.23-40.52 39.49-1.63.96-3.31 1.92-4.93 2.85l-.63.36c-7.99 4.58-16.23 9.3-22.82 15.41-11.92 11.06-23.26 23.2-34.23 34.94l-1.21 1.3c-2.87 3.08-5.85 6.26-8.79 9.36-13.96 14.76-30.7 31.24-52.81 39.87-28.59 11.16-59.67 17.65-92.38 19.27-5.66.28-11.35.42-16.91.42m-227.45-48.17c14.8 0 29.4 1.85 43.59 5.54 12.34 3.21 24.62 7.6 36.5 11.85l.6.21c6.13 2.19 12.46 4.45 18.73 6.52l1.8.6c11.85 3.92 24.1 7.97 36.42 11.28 29.43 7.92 59.65 11.94 89.84 11.94 5.55 0 11.23-.14 16.89-.42 32.67-1.62 63.72-8.1 92.28-19.25 22.05-8.61 38.77-25.06 52.7-39.8 2.94-3.1 5.91-6.29 8.79-9.36l1.21-1.3c10.97-11.74 22.32-23.89 34.25-34.95 6.61-6.13 14.87-10.87 22.85-15.44l.65-.37c1.63-.93 3.3-1.89 4.93-2.85 17.39-10.24 30.61-23.12 40.42-39.38 6.63-11 14.92-23.15 29.45-28.26l5.19-1.83-5.25-1.62c-6.86-2.12-12.07.14-16.28 2.63l-.6.36.41-.57c4.24-5.87 11.01-9.77 17.66-10.2 4.77-.31 10.29-.55 15.37.39 13.8 2.59 25.89 0 36.96-7.93 3.84-2.74 7.94-5.14 12.29-7.67 1.09-.64 4.51-2.95 7.81-5.18 2.76-1.87 5.38-3.64 6.58-4.39l-3.24-1.27c-2.31 1.41-10.69 6.48-12.72 7.67-4.43 2.58-8.61 5.02-12.54 7.83-10.34 7.38-21.65 9.8-34.58 7.39-5.4-1.01-11.15-.76-16.13-.44-10.54.67-20.33 8.4-23.82 18.8l-1.67 4.99 4.84-3.34c3.76-2.6 7.32-5.06 11.23-5.94l.94-.21-.84.48c-11.26 6.47-18.22 16.99-23.86 26.35-9.5 15.75-22.33 28.24-39.22 38.19-1.76 1.04-3.57 2.08-5.32 3.08l-.2.12c-8.15 4.67-16.58 9.5-23.48 15.9-12.01 11.15-23.39 23.33-34.4 35.11l-.73.78c-3.03 3.25-6.17 6.61-9.28 9.89-14.31 15.13-30.08 30.61-51.51 38.98-28.27 11.04-58.98 17.44-91.31 19.04-35.52 1.75-71.11-2.08-105.78-11.42-12.29-3.31-24.47-7.34-36.25-11.23l-1.8-.59c-6.57-2.17-13.27-4.57-19.19-6.68-11.96-4.28-24.33-8.7-36.84-11.95-19.44-5.06-39.72-6.73-60.26-4.95-9.96.87-20 2.43-29.71 3.94l-.96.15c-4.1.63-8.34 1.29-12.5 1.88l-1.59.4.53 5.48 1.55-.07c12.75-.53 28.05-.72 44.83 1.88l1.34.21-1.35.08c-2.55.15-5.1.31-7.65.47l-3.63.23c-15.68.99-31.89 2.01-47.91 2.2-24.53.3-46.79-.39-68.08-2.1-10.97-.88-21.99-4.33-32.66-7.66l-2.43-.76c-3.14-.98-6.04-2.6-8.71-4.21l-1.06-.64 1.17.37c16.98 5.42 30.36 7.28 43.39 6.06l8.79-.83-8.46-2.7c-27.57-8.8-52.2-17.44-74.37-34.25l-.08-.06.47-2c-.51-.12-.98-.07-1.66 0h-.13c-.47.07-1.04.12-1.69.18l-4.59.33 3.73 2.93c19.55 15.37 40.67 24.21 66.38 32.77l1.01.34-1.07-.05c-14.1-.7-27.73-4.94-39.2-9.01l-1.45-.51-1.88 4.81 1.38.76c1.67.93 3.34 1.97 4.95 2.97l.12.07c3.82 2.38 7.74 4.81 12.03 6.15l2.38.74c10.83 3.39 22.04 6.9 33.37 7.81 21.51 1.73 43.87 2.42 68.36 2.11 16-.19 32.25-1.21 47.95-2.19l.44-.03c6.54-.41 13.31-.84 19.95-1.19.53-.03.97-.19 1.69-.45.43-.16 1.01-.36 1.87-.66l6.1-2.03-6.24-1.45c-13.26-3.09-27.42-4.6-43.25-4.6h-1.14l-.02-.29.42-.06c9.66-1.5 19.65-3.05 29.5-3.92 5.23-.46 10.44-.68 15.64-.68\"/><path d=\"M389.69 287.93c-21.68 10.6-42.07 23.07-65.84 30.53-27.76 8.71-48.99 23.82-60.25 47.64-7.18 15.18-11.38 31.02-2.25 46.4 6.37 10.73 14.55 20.91 23.5 30.26 9.34 9.75 13.94 19.7 12.04 32.41-1 6.67-4.75 10.92-10.79 13.54-5.68 2.48-12.26 4.56-18.54 4.76-17.96.58-36.06 1.12-53.92-.21-17.53-1.31-32.36-7.77-41.76-21.81-9.66-14.44-15.58-29.86-19.74-45.89-5.35-20.63-9.37-41.36-8.76-62.65.4-13.95 7.05-25.19 17.45-35.52 7.84-7.78 15.91-15.63 22.09-24.36\"/></g></svg>',withExternalLayout:true})})]})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2243uu\"})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hhqTcT1XK\"},motionChild:true,nodeId:\"O3CalBOg1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",pixelHeight:811,pixelWidth:1435,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png\",srcSet:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png 1435w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",pixelHeight:811,pixelWidth:1435,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png\",srcSet:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png 1435w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:false,__framer__enter:animation27,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1048),pixelHeight:811,pixelWidth:1435,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png\",srcSet:\"https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WZ4pJIrQSeeAwjbkmFl1CR4w.png 1435w\"},className:\"framer-48v7u1 framer-lux5qc\",\"data-framer-name\":\"NexaOS\",whileHover:animation29,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:565.6,intrinsicWidth:2915.2,pixelHeight:707,pixelWidth:3644,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px) - 100px)`,src:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png\",srcSet:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png 3644w\"},transformTemplate:undefined},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:565.6,intrinsicWidth:2915.2,pixelHeight:707,pixelWidth:3644,sizes:\"600px\",src:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png\",srcSet:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png 3644w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:565.6,intrinsicWidth:2915.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1048+150),pixelHeight:707,pixelWidth:3644,sizes:\"600px\",src:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png\",srcSet:\"https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6RRcRVE6G9JukYzjrT8WaGhkiOA.png 3644w\"},className:\"framer-1ozopqe\",\"data-framer-name\":\"image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1068.8,intrinsicWidth:1900.8,pixelHeight:1336,pixelWidth:2376,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png 2376w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1068.8,intrinsicWidth:1900.8,pixelHeight:1336,pixelWidth:2376,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png 2376w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation30,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1068.8,intrinsicWidth:1900.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1048+0),pixelHeight:1336,pixelWidth:2376,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1200px)`,src:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YAcpI0kIWixqZqKsv9eik7KjUeo.png 2376w\"},className:\"framer-17mu0y2\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:561,pixelHeight:92,pixelWidth:1122,sizes:\"561px\",src:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png 1122w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:561,pixelHeight:92,pixelWidth:1122,sizes:\"561px\",src:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png 1122w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:561,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1048+0+1087),pixelHeight:92,pixelWidth:1122,sizes:\"561px\",src:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YJZaEtOQOs5JvFTQ7esDzZYqYo.png 1122w\"},className:\"framer-5kh2vs\",\"data-framer-name\":\"Image\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Yeni NexaOS'in\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Beta Kay\u0131tlar\u0131 A\\xe7\u0131ld\u0131 >\"})]}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"23px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Yeni NexaOS'in Beta Kay\u0131tlar\u0131 A\\xe7\u0131ld\u0131 >\"})}),className:\"framer-bjsdui\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVGhpbg==\",\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"100\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"#BuildTogether\"})}),className:\"framer-vs34ec\",fonts:[\"Inter-Thin\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6m65h1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4ztgq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5j1lx\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation32,className:\"framer-1s4ds6c-container\",\"data-framer-appear-id\":\"1s4ds6c\",initial:animation33,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UnkX0J7uY\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"UnkX0J7uY\",intervalControl:3,itemAmount:1,layoutId:\"UnkX0J7uY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:5,dotsOpacity:.5,dotsPadding:5,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"pronexa\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"na6fSPSYn\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"D3YMtqfHJ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1g0h8a8 framer-lux5qc\",\"data-framer-name\":\"Group 12\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n50hnc\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjywvc\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"209.8586px\",src:\"https://framerusercontent.com/images/12a8OizIg30avnZxfATi1y08gEQ.png\",srcSet:\"https://framerusercontent.com/images/12a8OizIg30avnZxfATi1y08gEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/12a8OizIg30avnZxfATi1y08gEQ.png 840w\"},className:\"framer-1f6ffhq\",\"data-framer-name\":\"mavi 1\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"left\",className:\"framer-1o5p9xf\",\"data-framer-name\":\"ProNexa\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>ProNexa</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-6t4yy9\",\"data-framer-name\":\"Sihirli bir ekran t\\xfcm i\u015Flerinizi yap\u0131yor.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Sihirli bir ekran t\\xfcm i\u015Flerinizi yap\u0131yor.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-u8uuzz\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"pronexa-lite\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"L1oE6V4gu\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"LC4fT_BKi\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-14thyoq framer-lux5qc\",\"data-framer-name\":\"Group 13\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u7lr5y\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wl5szu\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"161.7px\",src:\"https://framerusercontent.com/images/0OUpppWxEFpCXntjeepgGJfSKoo.png\",srcSet:\"https://framerusercontent.com/images/0OUpppWxEFpCXntjeepgGJfSKoo.png 648w\"},className:\"framer-1d4zdv7\",\"data-framer-name\":\"PRONEXA L\u0130TE 2\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-13wgntv\",\"data-framer-name\":\"ProNexa lite\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>ProNexa lite</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1w26r0c\",\"data-framer-name\":\"D\u0131\u015F\u0131 ince, i\\xe7i hepsinden kal\u0131n.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>D\u0131\u015F\u0131 ince, i\\xe7i hepsinden kal\u0131n.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1y74ycs\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"pronexa-plus\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"H45KbPS_L\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"XimMMmUUQ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-bhybzn framer-lux5qc\",\"data-framer-name\":\"Group 14\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8p5ald\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f5gudi\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"182.82px\",src:\"https://framerusercontent.com/images/dPuhe9BGLzfJpf6fRoKmBcXukI.png\",srcSet:\"https://framerusercontent.com/images/dPuhe9BGLzfJpf6fRoKmBcXukI.png 732w\"},className:\"framer-wqd5kp\",\"data-framer-name\":\"pronexa plus 1\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-y8gg08\",\"data-framer-name\":\"ProNexa Plus\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>ProNexa Plus</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-pvhd2l\",\"data-framer-name\":\"A\\xe7amayaca\u011F\u0131n\u0131z kap\u0131 yok.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>A\\xe7amayaca\u011F\u0131n\u0131z kap\u0131 yok.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-cx8j0t\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation32,className:\"framer-16bdzam-container\",\"data-framer-appear-id\":\"16bdzam\",initial:animation33,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tBisJQE_v\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"tBisJQE_v\",intervalControl:3,itemAmount:1,layoutId:\"tBisJQE_v\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o2IOzNHfL\"},motionChild:true,nodeId:\"utYpvtsgF\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1g9p2eg framer-lux5qc\",\"data-framer-name\":\"Group 15\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uims97\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ro5xmn\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"205.92px\",src:\"https://framerusercontent.com/images/MT1t8Kl9pcJ368PtlnMZtpvu3k.png\",srcSet:\"https://framerusercontent.com/images/MT1t8Kl9pcJ368PtlnMZtpvu3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/MT1t8Kl9pcJ368PtlnMZtpvu3k.png 824w\"},className:\"framer-1lwacqn\",\"data-framer-name\":\"nexa 2\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r10vd1\",children:[/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1h6h646\",\"data-framer-name\":\"Nexa\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Nexa</span><br></span></span>\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-v4f0mf\",\"data-framer-name\":\"\u200BTek s\u0131n\u0131r\u0131n hayalg\\xfcc\\xfcn.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\u200BTek s\u0131n\u0131r\u0131n</span><br></span><span style='font-size: 0'><span style=''>hayalg\\xfcc\\xfcn.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-2sl5hb\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"nexa-lite\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"DH0kTaPcX\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"Y87F1CG5X\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1umnxiv framer-lux5qc\",\"data-framer-name\":\"Group 16\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzszgm\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ig3hqe\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"209.22px\",src:\"https://framerusercontent.com/images/BiQUvKH4fHuq7gRnczHPMzCC9Y.png\",srcSet:\"https://framerusercontent.com/images/BiQUvKH4fHuq7gRnczHPMzCC9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/BiQUvKH4fHuq7gRnczHPMzCC9Y.png 840w\"},className:\"framer-1ucuubs\",\"data-framer-name\":\"nexa lite 3 2\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-q6qunr\",\"data-framer-name\":\"Nexa lite\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Nexa lite</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1u1nhx1\",\"data-framer-name\":\"\u0130nce, hafif ve ac\u0131mas\u0131z.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>\u0130nce, hafif ve ac\u0131mas\u0131z.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1s3feun\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"nexa-plus\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"oy1YnoDhP\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"ilccIUUAt\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-v9sjcj framer-lux5qc\",\"data-framer-name\":\"Group 17\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w10ym4\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17qeshz\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"280.5px\",src:\"https://framerusercontent.com/images/i7vjQ1l8Tdi49gVar8zYIcALQ.png\",srcSet:\"https://framerusercontent.com/images/i7vjQ1l8Tdi49gVar8zYIcALQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i7vjQ1l8Tdi49gVar8zYIcALQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i7vjQ1l8Tdi49gVar8zYIcALQ.png 1124w\"},className:\"framer-1lemcog\",\"data-framer-name\":\"nexa plus 2 2\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-dj79rl\",\"data-framer-name\":\"Nexa Plus\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Nexa Plus</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-7zf3fv\",\"data-framer-name\":\"Hayalg\\xfcc\\xfcn\\xfcn \\xf6tesine \\xe7\u0131k.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Hayalg\\xfcc\\xfcn\\xfcn \\xf6tesine \\xe7\u0131k.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxiZXJ0IFNhbnMtMzAw\",\"--framer-font-family\":'\"Albert Sans\", sans-serif',\"--framer-font-size\":\"19.14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 147, 255)\"},children:\"Daha fazla bilgi al >\"})}),className:\"framer-1d4mpka\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation32,className:\"framer-1grpgk2-container\",\"data-framer-appear-id\":\"1grpgk2\",initial:animation33,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yZ_jbOwPB\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"yZ_jbOwPB\",intervalControl:3,itemAmount:1,layoutId:\"yZ_jbOwPB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"nexa-box\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"SRzOEal6E\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"yfK3jKtVa\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1v05g54 framer-lux5qc\",\"data-framer-name\":\"Group 18\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q2uu14\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5c563\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"182.82px\",src:\"https://framerusercontent.com/images/fkB1YdSGRCPxmb9bHEFlOlUAiw.png\",srcSet:\"https://framerusercontent.com/images/fkB1YdSGRCPxmb9bHEFlOlUAiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/fkB1YdSGRCPxmb9bHEFlOlUAiw.png 732w\"},className:\"framer-cbfjhy\",\"data-framer-name\":\"nexa box\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18bxefr\",children:[/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-nt5lm5\",\"data-framer-name\":\"Nexa Box\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Nexa Box</span><br></span></span>\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1jvxme2\",\"data-framer-name\":\"Minik canavar.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Minik </span><br></span><span style='font-size: 0'><span style=''>canavar.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-wvelgp\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"nexa-box-lite\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"s74kMZu7u\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"EXyz0Ex27\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1t4crv2 framer-lux5qc\",\"data-framer-name\":\"Group 19\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6iqt95\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-28d9kd\",\"data-framer-name\":\"Rectangle 21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"156.42px\",src:\"https://framerusercontent.com/images/BFD4T6NaX07o52MDLYDktpVK8g.png\",srcSet:\"https://framerusercontent.com/images/BFD4T6NaX07o52MDLYDktpVK8g.png 628w\"},className:\"framer-1ynmjc1\",\"data-framer-name\":\"nexabox lite\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1b5qy4r\",\"data-framer-name\":\"Nexa Box lite\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Nexa Box lite</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1gb69ld\",\"data-framer-name\":\"Daha minik, hala canavar.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha minik, hala canavar.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1o3wnzt\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eek8jy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i0okjw\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UYMQ78lPg\"},motionChild:true,nodeId:\"ED6ql2ZQk\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nkw7gt framer-lux5qc\",\"data-framer-name\":\"Group 194\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",sizes:\"296px\",src:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png\",srcSet:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png 2252w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"729px\",src:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png\",srcSet:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png 2252w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"563px\",src:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png\",srcSet:\"https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IVl6oMwDxgLsWJcTQ1mvJuFLCJc.png 2252w\"},className:\"framer-1b5d3ik\",\"data-framer-name\":\"Rectangle 32\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-jlezds\",\"data-framer-name\":\"US 2nd serisi\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>US 2nd serisi</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1or4g96\",\"data-framer-name\":\"OZK Silikon ekibinin son harikalar\u0131...\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>OZK Silikon ekibinin son harikalar\u0131...</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-11ve3so\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"nexaos-2-0\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"sN7BZjENe\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"xbQo3KCFk\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-prhlw2 framer-lux5qc\",\"data-framer-name\":\"Group 195\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b75vb0\",\"data-framer-name\":\"Group 33\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png\",srcSet:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=512 512w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png 1040w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"729px\",src:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png\",srcSet:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=512 512w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png 1040w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1581+0+493+0+0+0+1.5+0+.5),positionX:\"center\",positionY:\"center\",sizes:\"260px\",src:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png\",srcSet:\"https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=512 512w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RmE0Xx9iFzfm6864cCplbDJaR18.png 1040w\"},className:\"framer-1jd3vw5\",\"data-framer-name\":\"Rectangle 28\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxiZXJ0IFNhbnMtNzAw\",\"--framer-font-family\":'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',\"--framer-font-size\":\"49.65px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(127deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.53) 100%)\"},children:\"NexaOS\"})})}),className:\"framer-1ch7u2x\",\"data-framer-name\":\"NexaOS\",fonts:[\"GF;Albert Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"left\",className:\"framer-1rrbq2l\",\"data-framer-name\":\"Istanbul\",fonts:[\"GF;Alex Brush-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Istanbul</span><br></span></span>\",style:{rotate:-13},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmmix5\",children:[/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1v1lebg\",\"data-framer-name\":\"NexaOS\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>NexaOS</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11mzbt7\",\"data-framer-name\":\"Frame 4\",children:/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"left\",className:\"framer-t7cvco\",\"data-framer-name\":\"Istanbul\",fonts:[\"GF;Alex Brush-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Istanbul</span><br></span></span>\",style:{rotate:-13},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWxiZXJ0IFNhbnMtMTAw\",\"--framer-font-family\":'\"Albert Sans\", sans-serif',\"--framer-font-size\":\"19.21px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"0.19px\",\"--framer-text-alignment\":\"center\"},children:\"Gelece\u011Fin i\u015Fletim sistemini g\\xf6r.\"})}),className:\"framer-11ko2ye\",\"data-framer-name\":\"Gelece\u011Fin i\u015Fletim sistemini g\\xf6r.\",fonts:[\"GF;Albert Sans-100\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1dssc4n\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://companyozk.wixsite.com/home/exgi-exgi\",motionChild:true,nodeId:\"i6Jo5ypGB\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t0yhuz framer-lux5qc\",\"data-framer-name\":\"Group 196\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"682px\",src:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png\",srcSet:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png 3460w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"865px\",src:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png\",srcSet:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png 3460w\"},className:\"framer-1s2zrvg hidden-1yqw5g7\",\"data-framer-name\":\"Rectangle 29\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",sizes:\"260px\",src:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png\",srcSet:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png 3460w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png\",srcSet:\"https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gVmGA6Ixifvo8urNZOms9FA.png 3460w\"},className:\"framer-45ney1 hidden-72rtr7 hidden-kszk7p\",\"data-framer-name\":\"Rectangle 29\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1u6dnx8\",\"data-framer-name\":\"EXGI & EXGI +\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>EXGI &amp; EXGI +</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-gdfob2\",\"data-framer-name\":\"B\\xfct\\xfcn kalbimizle tasarlad\u0131k \u2764\uFE0F\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>B\\xfct\\xfcn kalbimizle tasarlad\u0131k \u2764\uFE0F\\r</span><br></span><span><span style='width: auto'><br></span></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1p51nub\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hqxbv1\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"sm-6c\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"B4UHgSzgy\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"vogf_TFjV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sx5o90 framer-lux5qc\",\"data-framer-name\":\"SM 6C\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"251px\",src:\"https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png\",srcSet:\"https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"266px\",src:\"https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png\",srcSet:\"https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZSUOkI32bwo3VKcx1qoyK0o54.png 1920w\"},className:\"framer-1yq6vxw\",\"data-framer-name\":\"Rectangle 31\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-2autpm\",\"data-framer-name\":\"SM 6C\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM 6C</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-kau0us\",\"data-framer-name\":\"A\\xe7-kapa, kapa-a\\xe7 Pop-up kamera!\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>A\\xe7-kapa, kapa-a\\xe7\\r</span><br></span><span style='font-size: 0'><span style=''>Pop-up kamera!</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-12u5viw\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"sm-6\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"JpgNCIS8q\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"Z0yLs0GW3\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p3on9t framer-lux5qc\",\"data-framer-name\":\"SM 6\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ozT6MrKQH:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"251px\",src:\"https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png\",srcSet:\"https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png?scale-down-to=512 512w,https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png 1040w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"267px\",src:\"https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png\",srcSet:\"https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png?scale-down-to=512 512w,https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SYAEk1iW2G9mxFgtNO9gSkoiM.png 1040w\"},className:\"framer-zlvjp6\",\"data-framer-name\":\"Rectangle 23\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1xten0f\",\"data-framer-name\":\"SM 6\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM 6</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-34pc1w\",\"data-framer-name\":\"Beklentilerinizi y\\xfckseltin.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Beklentilerinizi y\\xfckseltin.\\r</span><br></span><span><span style='width: auto'><br></span></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1ifem4d\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EJgGDkE89:\"sm-6-plus\"},unresolvedPathSlugs:{EJgGDkE89:{collectionId:\"uy4zEvGaN\",collectionItemId:\"QB8GN8qha\"}},webPageId:\"ll7fGnmdx\"},motionChild:true,nodeId:\"xBV7EPiUE\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b3mvi3 framer-lux5qc\",\"data-framer-name\":\"SM 6 PLUS\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"251px\",src:\"https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png\",srcSet:\"https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png 2442w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"267px\",src:\"https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png\",srcSet:\"https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HX9uqf32YTiUkAwCAHjefxYT1o.png 2442w\"},className:\"framer-1xk07lz\",\"data-framer-name\":\"Rectangle 27\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-zhfauv\",\"data-framer-name\":\"SM 6+\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM 6+</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-msiau2\",\"data-framer-name\":\"Zirvedeki yaln\u0131zl\u0131k.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Zirvedeki </span><br></span><span style='font-size: 0'><span style=''>yaln\u0131zl\u0131k.</span><br></span><span><span style='width: auto'><br></span></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-11jxsrb\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://companyozk.wixsite.com/home/sm-os\",motionChild:true,nodeId:\"ZBtEyHJNV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rbkpu5 framer-lux5qc\",\"data-framer-name\":\"Group 200\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11r1e2f hidden-1yqw5g7\",\"data-framer-name\":\"Frame 40\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-de9g17 hidden-kszk7p\",\"data-framer-name\":\"Rectangle 16\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"690px\",src:\"https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png\",srcSet:\"https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png 1731w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"867px\",src:\"https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png\",srcSet:\"https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WJSAGGlcL2CyN5cHOTzcZ5DALVE.png 1731w\"},className:\"framer-17k3rny\",\"data-framer-name\":\"image 35\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1731,intrinsicWidth:520,pixelHeight:1731,pixelWidth:520,sizes:\"257px\",src:\"https://framerusercontent.com/images/JY5CRpThsyPWrClQXkH4P9lqbAo.png\",srcSet:\"https://framerusercontent.com/images/JY5CRpThsyPWrClQXkH4P9lqbAo.png 520w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1731,intrinsicWidth:520,pixelHeight:1731,pixelWidth:520,src:\"https://framerusercontent.com/images/JY5CRpThsyPWrClQXkH4P9lqbAo.png\",srcSet:\"https://framerusercontent.com/images/JY5CRpThsyPWrClQXkH4P9lqbAo.png 520w\"},className:\"framer-870dzq hidden-72rtr7 hidden-kszk7p\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-11jkx1o\",\"data-framer-name\":\"SM OS\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM OS</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1kn6y1\",\"data-framer-name\":\"B\\xfct\\xfcn SM telefonlara g\\xfc\\xe7 veren i\u015Fletim sistemi.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>B\\xfct\\xfcn SM telefonlara g\\xfc\\xe7 veren i\u015Fletim sistemi.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-15oej5b\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2h6hil\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://companyozk.wixsite.com/home/sm-watches\",motionChild:true,nodeId:\"UE6sote9n\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-evj2j framer-lux5qc\",\"data-framer-name\":\"Group 201\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",sizes:\"257px\",src:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png\",srcSet:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png 1080w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"292px\",src:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png\",srcSet:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"411px\",src:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png\",srcSet:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png 1080w\"},className:\"framer-1098m3h\",\"data-framer-name\":\"Rectangle 25\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-6w875q\",\"data-framer-name\":\"SM WATCH 6\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM WATCH 6</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-148ssku\",\"data-framer-name\":\"Bir ak\u0131ll\u0131 saatten fazlas\u0131, ki\u015Fisel asistan\u0131n\u0131z.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Bir ak\u0131ll\u0131 saatten fazlas\u0131,\\r</span><br></span><span style='font-size: 0'><span style=''>ki\u015Fisel asistan\u0131n\u0131z.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1enznab\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://companyozk.wixsite.com/home/assistantos\",motionChild:true,nodeId:\"Th5UtBk9a\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v1413v framer-lux5qc\",\"data-framer-name\":\"Group 202\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dgqh0c\",\"data-framer-name\":\"Frame 41\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"411.2583px\",src:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png\",srcSet:\"https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4wFSRtr2GNoTVpJRGtVoVSdeTq4.png 1080w\"},className:\"framer-f5kkgr hidden-kszk7p hidden-1yqw5g7\",\"data-framer-name\":\"Rectangle 33\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pjby8y\",\"data-framer-name\":\"Plugin / file cover - 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",sizes:\"258px\",src:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png\",srcSet:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png 1646w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"fill\",sizes:\"292px\",src:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png\",srcSet:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png 1646w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"412.2583px\",src:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png\",srcSet:\"https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lVjmZQDI2UyWYvuSnWgmF8ESw0.png 1646w\"},className:\"framer-hyfwn7\",\"data-framer-name\":\"Group 178\",children:/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"left\",className:\"framer-cgxv9c\",\"data-framer-name\":\"AssistantOS\",fonts:[\"CUSTOM;Nexa Light\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>AssistantOS</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-7k7ggz\",\"data-framer-name\":\"AssistantOS\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>AssistantOS</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1240emp\",\"data-framer-name\":\"SM Watch\u2019unuzun i\\xe7indeki sihir.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>SM Watch\u2019unuzun i\\xe7indeki sihir.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-s92cf8\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1s4fc\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://companyozk.wixsite.com/home/heph-3\",motionChild:true,nodeId:\"UcRSZZ1KL\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fn3khg framer-lux5qc\",\"data-framer-name\":\"Group 203\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"fill\",sizes:\"342px\",src:\"https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png\",srcSet:\"https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"410.596px\",src:\"https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png\",srcSet:\"https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xhOo35A8WrhxenbewnkPL4JFE.png 3840w\"},className:\"framer-hebbuo\",\"data-framer-name\":\"Rectangle 24\"})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-bzgtgt\",\"data-framer-name\":\"HePh 3\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>HePh 3</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-lve93x\",\"data-framer-name\":\"Kulaklar\u0131n\u0131z\u0131n pas\u0131n\u0131 silelim.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Kulaklar\u0131n\u0131z\u0131n pas\u0131n\u0131 silelim.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1hxvmea\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gusk9e\",\"data-framer-name\":\"Group 204\",id:\"gusk9e\",onTap:onTap3bnx0g({overlay:overlay1}),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cn9qs2\",\"data-framer-name\":\"Group 179\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ayspoy\",\"data-framer-name\":\"Rectangle 33\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"155px\",src:\"https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png\",srcSet:\"https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png 620w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png\",srcSet:\"https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/hXFWWAYqaaESKZGc8k3xq6TiaP0.png 620w\"},className:\"framer-uahq4z\",\"data-framer-name\":\"image 3\",transformTemplate:transformTemplate2})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vrw2dy hidden-kszk7p hidden-1yqw5g7\",\"data-framer-name\":\"Group 21\"})]}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-gow7bm\",\"data-framer-name\":\"OConnect\",fonts:[\"GF;Albert Sans-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>OConnect</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-drl64n\",\"data-framer-name\":\"B\\xfct\\xfcn OZK cihazlar\u0131 birbirine ba\u011Fl\u0131yoruz.\",fonts:[\"GF;Albert Sans-100\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>B\\xfct\\xfcn OZK cihazlar\u0131 birbirine ba\u011Fl\u0131yoruz.</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1v11i1g\",\"data-framer-name\":\"Daha fazla bilgi al >\",fonts:[\"GF;Albert Sans-300\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='font-size: 0'><span style=''>Daha fazla bilgi al &gt;</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:cx(scopingClassNames,\"framer-1geg78k\"),\"data-framer-portal-id\":\"gusk9e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"wyzLITje7\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-ivwleg\"),\"data-framer-portal-id\":\"gusk9e\"}),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-6aar2r\"),\"data-framer-portal-id\":\"gusk9e\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/jL7ROJxbbyUMlUBQK0oySdbNSY8.png\"},className:\"framer-qbfo67\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"OCONNECT bir \\xe7e\u015Fit \\xf6zel a\u011F. T\\xfcm OZK cihazlar\u0131 birbirine ba\u011Flayabilen bluetoothdan kat kat daha h\u0131zl\u0131 bir a\u011F. Bu a\u011F ile birlikte saniyede 50 megabayt veri aktar\u0131mlar\u0131 yapabiliyorduk. Bu inan\u0131lmaz bir de\u011Fer. Fakat bu y\u0131l OCONNECT 2.0 ile kar\u015F\u0131n\u0131zday\u0131z. Art\u0131k saniyede 150 megabayt veri aktar\u0131m\u0131 yapabiliyoruz. OCONNECT \\xe7ipini \\xe7ok g\\xfc\\xe7lendirdik. \u0130\u015Flemciden \\xe7\u0131kar\u0131p yeni bir mod\\xfcl olarak 2020 serisi cihazlara ekledik.\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"OCONNECT bir \\xe7e\u015Fit \\xf6zel a\u011F. T\\xfcm OZK cihazlar\u0131 birbirine ba\u011Flayabilen bluetoothdan kat kat daha h\u0131zl\u0131 bir a\u011F. Bu a\u011F ile birlikte saniyede 50 megabayt veri aktar\u0131mlar\u0131 yapabiliyorduk. Bu inan\u0131lmaz bir de\u011Fer. Fakat bu y\u0131l OCONNECT 2.0 ile kar\u015F\u0131n\u0131zday\u0131z. Art\u0131k saniyede 150 megabayt veri aktar\u0131m\u0131 yapabiliyoruz. OCONNECT \\xe7ipini \\xe7ok g\\xfc\\xe7lendirdik. \u0130\u015Flemciden \\xe7\u0131kar\u0131p yeni bir mod\\xfcl olarak 2020 serisi cihazlara ekledik.\"})}),className:\"framer-1o9g896\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sckijf\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Kapat\"})}),className:\"framer-1i4azk8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),getContainer())})})]})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:false,__framer__enter:animation34,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nhe8l8\",\"data-framer-name\":\"Group 22\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation32,className:\"framer-1qzjqd2\",\"data-framer-appear-id\":\"1qzjqd2\",\"data-framer-name\":\"Rectangle 18\",initial:animation33,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"141.0596px\",src:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png\",srcSet:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png 568w\"}},ozT6MrKQH:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"141.0596px\",src:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png\",srcSet:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png 568w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1581+0+3634+25.8281),positionX:\"center\",positionY:\"center\",sizes:\"141.0596px\",src:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png\",srcSet:\"https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wrMXB4ywTEuRKcwKjedls3FuQ.png 568w\"},className:\"framer-bv7bda\",\"data-framer-name\":\"image 3\"})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-f9n23b hidden-72rtr7 hidden-1yqw5g7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cca1f9\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{y:undefined},ozT6MrKQH:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5433,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t19j3r-container\",nodeId:\"zJzdIlH5z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BLnpWF0sf:{variant:\"qgyHly8sX\"},ozT6MrKQH:{variant:\"tKEua2mfP\"}},children:/*#__PURE__*/_jsx(BottomBar,{height:\"100%\",id:\"zJzdIlH5z\",layoutId:\"zJzdIlH5z\",style:{width:\"100%\"},variant:\"kZSsniR71\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1whlk8b hidden-72rtr7 hidden-kszk7p\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ytr09-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"sf2qv0m0W\",scopeId:\"augiA20Il\",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:\"rgb(0, 0, 0)\"},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:\"\",height:\"100%\",id:\"sf2qv0m0W\",layoutId:\"sf2qv0m0W\",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)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"text\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-go6jg.framer-lux5qc, .framer-go6jg .framer-lux5qc { display: block; }\",\".framer-go6jg.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-go6jg .framer-1cinfb3-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-go6jg .framer-1a0im86 { background-color: rgba(255, 255, 255, 0.41); flex: none; height: 48px; overflow: hidden; position: relative; width: 92px; }\",\".framer-go6jg .framer-kah8q3 { align-content: center; align-items: center; background: linear-gradient(180deg, #dadae3 0%, rgb(255, 255, 255) 100%); 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-go6jg .framer-1lgch0m { flex: 1 0 0px; height: 100vh; overflow: hidden; position: relative; width: 1px; }\",\".framer-go6jg .framer-oem7r3 { flex: none; height: 166px; left: calc(50.00000000000002% - 250px / 2); overflow: hidden; position: absolute; top: 100px; width: 250px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-ss1bqf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-go6jg .framer-19wxu22 { background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 8px; left: 24px; overflow: hidden; position: absolute; top: 67px; width: 20px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1vugiz2 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background: radial-gradient(75% 75% at 50% 50%, #4dc1ff 39.189189189189186%, rgb(117, 0, 163) 100%); border-bottom-left-radius: 210px; border-bottom-right-radius: 210px; border-top-left-radius: 210px; border-top-right-radius: 210px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 420px); left: 50%; overflow: hidden; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 420px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-3aqzm9 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(138, 99, 255, 0.65); border-bottom-left-radius: 210px; border-bottom-right-radius: 210px; border-top-left-radius: 210px; border-top-right-radius: 210px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 288px); left: 34%; overflow: hidden; position: absolute; top: 66%; transform: translate(-50%, -50%); width: 288px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-z5kv4u { flex: none; height: 414px; left: calc(68.16666666666669% - 345px / 2); overflow: hidden; position: absolute; top: 209px; width: 345px; }\",\".framer-go6jg .framer-17zc3kg { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0.3010936508871964px 0.48174984141951427px 1.2498252014388136px -1.4166666666666665px rgba(0, 0, 0, 0.2), 1.1442666516217286px 1.8308266425947657px 4.7497956006340285px -2.833333333333333px rgba(0, 0, 0, 0.17245), 5px 8px 20.754758490524527px -4.25px rgba(0, 0, 0, 0.0375); flex: none; height: 374px; left: calc(51.30434782608698% - 304px / 2); opacity: 0.5; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 374px / 2); width: 304px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1yj4a92 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: 374px; left: calc(51.30434782608698% - 304px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 374px / 2); width: 304px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-111ytzw { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 433px); left: -46px; overflow: hidden; position: absolute; right: -83px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-u64ozv { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); align-content: center; align-items: center; backdrop-filter: blur(8px); background-color: rgba(255, 255, 255, 0.25); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0.3010936508871964px 0.48174984141951427px 1.2498252014388136px -1.4166666666666665px rgba(0, 0, 0, 0.2), 1.1442666516217286px 1.8308266425947657px 4.7497956006340285px -2.833333333333333px rgba(0, 0, 0, 0.17245), 5px 8px 20.754758490524527px -4.25px rgba(0, 0, 0, 0.0375); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 219px; justify-content: center; left: calc(34.83333333333336% - 206px / 2); overflow: visible; padding: 0px; position: absolute; top: 216px; width: 206px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1s18p2i { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-go6jg.framer-1p1idkl { background-color: rgba(0, 0, 0, 0.16); inset: 0px; position: fixed; user-select: none; }\",\".framer-go6jg.framer-piyc37 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; }\",\".framer-go6jg .framer-17jw6ne { --border-bottom-width: 6px; --border-color: #222222; --border-left-width: 6px; --border-right-width: 6px; --border-style: solid; --border-top-width: 6px; align-content: flex-start; align-items: flex-start; aspect-ratio: 0.49642857142857144 / 1; background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0.5175247177903657px 0.4777151241141837px 0.704303608773537px -0.9375px rgba(0, 0, 0, 0.18), 1.5694289930179366px 1.4487036858627107px 2.1358487150445598px -1.875px rgba(0, 0, 0, 0.17241), 4.1487247889649px 3.829592112890677px 5.646033397500083px -2.8125px rgba(0, 0, 0, 0.14761), 13px 12px 17.69180601295413px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 99px); will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-vnhb26 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-go6jg .framer-mo7ler { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 12px 1px 13px rgba(0, 0, 0, 0.57); white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-19yntec { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(51, 170, 255, 0) 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-go6jg .framer-t3fjt1 { bottom: 10px; flex: none; height: 4px; left: calc(50.00000000000002% - 100px / 2); overflow: hidden; position: absolute; width: 100px; }\",\".framer-go6jg .framer-1nkmsm5 { background-color: #000000; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; bottom: 0px; box-shadow: 0.12043746035487857px 0.6021873017743928px 1.8423388815512498px -1.4166666666666665px rgba(0, 0, 0, 0.62), 0.4577066606486914px 2.288533303243457px 7.001565582447205px -2.833333333333333px rgba(0, 0, 0, 0.53115), 2px 10px 30.59411708155671px -4.25px rgba(0, 0, 0, 0.1155); flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-go6jg .framer-wca6x9 { 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-go6jg .framer-tswt4v, .framer-go6jg .framer-99b4rq, .framer-go6jg .framer-5tp9ty, .framer-go6jg .framer-pwhnsd { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.2); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 43px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-11hh6fj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 13px; }\",\".framer-go6jg .framer-rxofvx, .framer-go6jg .framer-qbevbg, .framer-go6jg .framer-7tmn04, .framer-go6jg .framer-jf0ohx, .framer-go6jg .framer-8msvrg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-go6jg .framer-1371589-container, .framer-go6jg .framer-1j8onys-container, .framer-go6jg .framer-1wurjsi-container { flex: none; height: 13px; position: relative; width: 13px; }\",\".framer-go6jg .framer-101c9sj { flex: none; height: 50px; overflow: hidden; position: relative; width: 5px; }\",\".framer-go6jg .framer-175r8fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 23px; justify-content: center; left: 22px; overflow: hidden; padding: 0px; position: absolute; top: 15px; width: 80px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-go6jg .framer-14b802n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-go6jg .framer-1eniszp-container { flex: none; height: 76px; left: 20px; position: absolute; right: 20px; top: 4px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-go6jg .framer-och18a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 23px; justify-content: center; left: calc(79.7385620915033% - 80px / 2); overflow: hidden; padding: 0px; position: absolute; top: 15px; width: 80px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-go6jg .framer-9w0wrp { flex: none; height: 12px; overflow: hidden; position: relative; width: 12px; }\",\".framer-go6jg .framer-1cnw4u9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; }\",\".framer-go6jg .framer-zn7rv6, .framer-go6jg .framer-1fi7j70, .framer-go6jg .framer-1i4azk8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-go6jg .framer-h8imgb { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-go6jg .framer-1vn4doe-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-go6jg .framer-hd7x10 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; box-shadow: -0.24087492070975713px 0.6021873017743928px 0.6485755729637491px -1.25px rgba(0, 0, 0, 0.18), -0.9154133212973828px 2.288533303243457px 2.464825800916388px -2.5px rgba(0, 0, 0, 0.15889), -4px 10px 10.770329614269007px -3.75px rgba(0, 0, 0, 0.0625); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-131sica { bottom: 148px; flex: none; height: 51px; left: calc(72.50000000000001% - 182px / 2); overflow: hidden; position: absolute; width: 182px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-go6jg .framer-ldgo63 { flex: none; height: 51px; left: calc(50.00000000000002% - 182px / 2); position: absolute; top: calc(49.01960784313727% - 51px / 2); width: 182px; }\",\".framer-go6jg .framer-1h6ow74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-go6jg .framer-14jv14b { flex: none; height: 25px; overflow: hidden; position: relative; text-decoration: none; width: 24px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-src0vr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 52%; transform: translateY(-50%); }\",\".framer-go6jg .framer-1fzw7bv { 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; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-171hvjt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-go6jg .framer-ctdvef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1l46y94 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-go6jg .framer-1aphztq { flex: none; height: 28px; overflow: hidden; position: relative; text-decoration: none; width: 28px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1ebcitb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 27px; }\",\".framer-go6jg .framer-1viggyt { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(8px); background-color: rgba(255, 255, 255, 0.25); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 119px; box-shadow: 0.3010936508871964px 0.48174984141951427px 1.2498252014388136px -1.4166666666666665px rgba(0, 0, 0, 0.2), 1.1442666516217286px 1.8308266425947657px 4.7497956006340285px -2.833333333333333px rgba(0, 0, 0, 0.17245), 5px 8px 20.754758490524527px -4.25px rgba(0, 0, 0, 0.0375); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 158px; justify-content: center; left: calc(48.91666666666669% - 555px / 2); overflow: hidden; padding: 18px; position: absolute; text-decoration: none; width: 555px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1kp7lw1-container { flex: none; height: 92px; position: relative; width: 100%; }\",\".framer-go6jg .framer-gu0bbs { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 81px; overflow: hidden; position: relative; text-decoration: none; width: 401px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1ff1k4y { background-color: rgba(255, 255, 255, 0.47); bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 291px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1gfnd5j { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 40px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 99px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1sylh99 { aspect-ratio: 1.7777777777777777 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 108px; overflow: visible; position: absolute; width: 128px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1565zrg { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 136px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-j3nsfw { flex: none; height: 33px; overflow: visible; position: relative; width: 94px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1chr425 { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); width: 99px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-45ma8h, .framer-go6jg .framer-1lugvj6, .framer-go6jg .framer-yvzgk3 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 81px; overflow: hidden; position: relative; text-decoration: none; width: 314px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1ksxtnv, .framer-go6jg .framer-c2lsv6, .framer-go6jg .framer-121eq1t { background-color: rgba(255, 255, 255, 0.47); bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 258px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-mfum19, .framer-go6jg .framer-u8g5q1, .framer-go6jg .framer-19kp3xn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 47px; position: absolute; top: 20px; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-e70tru, .framer-go6jg .framer-1qq14b7, .framer-go6jg .framer-2ekuo0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 21px; flex: none; height: auto; left: 47px; position: absolute; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1a6ue48 { background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 81px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1doyry6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 59px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1htwyfi, .framer-go6jg .framer-2hm9lm { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 81px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-u7b7af { aspect-ratio: 3.3825301204819276 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 62px; }\",\".framer-go6jg .framer-17g0uk0 { aspect-ratio: 1.9210526315789473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 56px; }\",\".framer-go6jg .framer-2243uu { background: linear-gradient(180deg, rgba(69, 205, 255, 0) 0%, rgb(255, 255, 255) 100%); bottom: 0px; flex: none; height: 59px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-go6jg .framer-48v7u1 { border-bottom-left-radius: 49px; border-bottom-right-radius: 49px; border-top-left-radius: 49px; border-top-right-radius: 49px; flex: none; height: 500px; max-width: 1200px; overflow: hidden; position: relative; text-decoration: none; width: 90%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-go6jg .framer-1ozopqe { aspect-ratio: 5.154172560113154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 117px); left: 50%; overflow: visible; position: absolute; top: 150px; transform: translateX(-50%); width: 600px; }\",\".framer-go6jg .framer-17mu0y2 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-go6jg .framer-5kh2vs { aspect-ratio: 12.195652173913043 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: absolute; right: -89px; top: 1087px; width: 561px; }\",\".framer-go6jg .framer-bjsdui { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 100px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-go6jg .framer-vs34ec { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 50px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-go6jg .framer-6m65h1 { flex: none; height: 33px; overflow: hidden; position: relative; width: 39px; }\",\".framer-go6jg .framer-c4ztgq { 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: min-content; }\",\".framer-go6jg .framer-h5j1lx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-go6jg .framer-1s4ds6c-container, .framer-go6jg .framer-16bdzam-container, .framer-go6jg .framer-1grpgk2-container { flex: none; height: 393px; position: relative; width: 266px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-1g0h8a8 { height: 392px; overflow: visible; position: relative; text-decoration: none; width: 258px; }\",\".framer-go6jg .framer-1n50hnc { background-color: #ffffff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.319865345954895px 2.63973069190979px 20.45791244506836px 0px rgba(0, 0, 0, 0.05); flex: none; height: 259px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-rjywvc { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.319865345954895px 2.63973069190979px 20.45791244506836px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1f6ffhq { -webkit-filter: drop-shadow(0px 2.63973069190979px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.458715814294666 / 1; filter: drop-shadow(0px 2.63973069190979px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 144px); left: 24px; overflow: hidden; position: absolute; top: 57px; width: 210px; }\",'.framer-go6jg .framer-1o5p9xf { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 70px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }','.framer-go6jg .framer-6t4yy9, .framer-go6jg .framer-1w26r0c, .framer-go6jg .framer-pvhd2l, .framer-go6jg .framer-1u1nhx1, .framer-go6jg .framer-7zf3fv, .framer-go6jg .framer-1gb69ld { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; left: 38px; overflow: hidden; position: absolute; top: 312px; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }','.framer-go6jg .framer-u8uuzz, .framer-go6jg .framer-1y74ycs, .framer-go6jg .framer-cx8j0t, .framer-go6jg .framer-1s3feun, .framer-go6jg .framer-1o3wnzt { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #0093ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 23px; left: 38px; overflow: hidden; position: absolute; top: 369px; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-14thyoq, .framer-go6jg .framer-bhybzn, .framer-go6jg .framer-1g9p2eg, .framer-go6jg .framer-1umnxiv, .framer-go6jg .framer-v9sjcj, .framer-go6jg .framer-1v05g54, .framer-go6jg .framer-1t4crv2 { height: 392px; overflow: visible; position: relative; text-decoration: none; width: 259px; }\",\".framer-go6jg .framer-u7lr5y, .framer-go6jg .framer-8p5ald, .framer-go6jg .framer-1uims97, .framer-go6jg .framer-1rzszgm, .framer-go6jg .framer-w10ym4, .framer-go6jg .framer-1q2uu14, .framer-go6jg .framer-6iqt95 { background-color: #ffffff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3200000524520874px 2.640000104904175px 20.46000099182129px 0px rgba(0, 0, 0, 0.05); flex: none; height: 259px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1wl5szu, .framer-go6jg .framer-ro5xmn, .framer-go6jg .framer-ig3hqe, .framer-go6jg .framer-1i5c563, .framer-go6jg .framer-28d9kd { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3200000524520874px 2.640000104904175px 20.46000099182129px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1d4zdv7 { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 0.86267602882042 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 187px); left: 48px; overflow: hidden; position: absolute; top: 36px; width: 162px; }\",'.framer-go6jg .framer-13wgntv { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 45px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }',\".framer-go6jg .framer-f5gudi, .framer-go6jg .framer-17qeshz { aspect-ratio: 1 / 1; background: linear-gradient(-40.83978101716744deg, #000000 0%, rgba(44, 44, 44, 1) 100%); border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3200000524520874px 2.640000104904175px 20.46000099182129px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-wqd5kp { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 0.8849840531695448 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 207px); left: 38px; overflow: hidden; position: absolute; top: 26px; width: 183px; }\",'.framer-go6jg .framer-y8gg08 { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 38px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }',\".framer-go6jg .framer-1lwacqn { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.8571428866318596 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 111px); left: 26px; overflow: hidden; position: absolute; top: 74px; width: 206px; }\",\".framer-go6jg .framer-1r10vd1, .framer-go6jg .framer-18bxefr { bottom: 0px; flex: none; height: 119px; left: calc(49.80694980694983% - 182px / 2); overflow: hidden; position: absolute; width: 182px; }\",'.framer-go6jg .framer-1h6h646 { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 51%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }','.framer-go6jg .framer-v4f0mf, .framer-go6jg .framer-1jvxme2 { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.42016806722691% - 43px / 2); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }','.framer-go6jg .framer-2sl5hb, .framer-go6jg .framer-wvelgp { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #0093ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; bottom: 0px; flex: none; height: 23px; left: 0px; overflow: hidden; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-1ucuubs { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.7709497401524046 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 118px); left: 24px; overflow: hidden; position: absolute; top: 70px; width: 209px; }\",'.framer-go6jg .framer-q6qunr { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 69px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }',\".framer-go6jg .framer-1lemcog { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.9953051383303968 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 140px); left: 18px; overflow: hidden; position: absolute; top: 59px; width: 281px; }\",'.framer-go6jg .framer-dj79rl { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 60px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }',\".framer-go6jg .framer-1d4mpka { flex: none; height: 23px; left: 38px; overflow: hidden; position: absolute; top: 369px; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }\",\".framer-go6jg .framer-cbfjhy { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 1.1888412587816426 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 154px); left: 38px; overflow: hidden; position: absolute; top: 52px; width: 183px; }\",'.framer-go6jg .framer-nt5lm5 { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 49%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }',\".framer-go6jg .framer-1ynmjc1 { -webkit-filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); aspect-ratio: 0.9479999889026989 / 1; filter: drop-shadow(0px 2.640000104904175px 16px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 165px); left: 51px; overflow: hidden; position: absolute; top: 47px; width: 156px; }\",'.framer-go6jg .framer-1b5qy4r { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.38px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 40px; overflow: visible; position: absolute; top: 273px; white-space: pre; width: auto; }',\".framer-go6jg .framer-eek8jy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-go6jg .framer-i0okjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 833px; }\",\".framer-go6jg .framer-nkw7gt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-go6jg .framer-1b5d3ik { border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: 260px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-go6jg .framer-jlezds { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.48px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }','.framer-go6jg .framer-1or4g96, .framer-go6jg .framer-gdfob2, .framer-go6jg .framer-kau0us, .framer-go6jg .framer-34pc1w, .framer-go6jg .framer-msiau2 { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; overflow: hidden; position: relative; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }','.framer-go6jg .framer-11ve3so, .framer-go6jg .framer-1p51nub, .framer-go6jg .framer-12u5viw, .framer-go6jg .framer-1ifem4d, .framer-go6jg .framer-11jxsrb, .framer-go6jg .framer-15oej5b, .framer-go6jg .framer-1enznab, .framer-go6jg .framer-s92cf8, .framer-go6jg .framer-1hxvmea { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #0093ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 23px; overflow: hidden; position: relative; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-prhlw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 260px; }\",\".framer-go6jg .framer-b75vb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-go6jg .framer-1jd3vw5 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 260px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1ch7u2x { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",'.framer-go6jg .framer-1rrbq2l { --framer-font-family: \"Alex Brush\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; left: 72%; overflow: visible; position: absolute; top: 64%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }',\".framer-go6jg .framer-dmmix5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 185px; }\",'.framer-go6jg .framer-1v1lebg, .framer-go6jg .framer-1u6dnx8, .framer-go6jg .framer-2autpm, .framer-go6jg .framer-1xten0f, .framer-go6jg .framer-zhfauv, .framer-go6jg .framer-11jkx1o, .framer-go6jg .framer-6w875q, .framer-go6jg .framer-7k7ggz, .framer-go6jg .framer-bzgtgt, .framer-go6jg .framer-gow7bm { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28.48px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.28px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }',\".framer-go6jg .framer-11mzbt7 { flex: none; height: 35px; overflow: visible; position: absolute; right: 29px; top: 21px; width: 59px; z-index: 1; }\",'.framer-go6jg .framer-t7cvco { --framer-font-family: \"Alex Brush\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 27px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; bottom: -5px; flex: none; height: auto; left: 51%; overflow: visible; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }',\".framer-go6jg .framer-11ko2ye { flex: none; height: 43px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-go6jg .framer-1dssc4n { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #0093ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 23px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-t0yhuz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 576px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 865px; }\",\".framer-go6jg .framer-1s2zrvg { aspect-ratio: 2.0030673910044308 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 432px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-45ney1 { border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: 274px; overflow: hidden; position: relative; width: 260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1hqxbv1, .framer-go6jg .framer-1i1s4fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-go6jg .framer-1sx5o90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 266px; }\",\".framer-go6jg .framer-1yq6vxw { aspect-ratio: 1 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 266px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1p3on9t, .framer-go6jg .framer-b3mvi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 267px; }\",\".framer-go6jg .framer-zlvjp6, .framer-go6jg .framer-1xk07lz { aspect-ratio: 1 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 267px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1rbkpu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 865px; }\",\".framer-go6jg .framer-11r1e2f { border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; flex: none; height: 260px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-de9g17 { aspect-ratio: 3.331632391561435 / 1; background: linear-gradient(90deg, #ffecd2 0%, rgba(252, 182, 159, 1) 100%); border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 865px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-17k3rny { bottom: 0px; flex: none; left: calc(49.94219653179193% - 100.23121387283238% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-go6jg .framer-870dzq { border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; flex: none; height: 390px; overflow: visible; position: relative; width: 257px; }\",'.framer-go6jg .framer-1kn6y1 { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; overflow: hidden; position: relative; white-space: pre-wrap; width: 271px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-2h6hil { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 865px; }\",\".framer-go6jg .framer-evj2j, .framer-go6jg .framer-v1413v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 411px; }\",\".framer-go6jg .framer-1098m3h { aspect-ratio: 1.5841835691093802 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-go6jg .framer-148ssku, .framer-go6jg .framer-1240emp, .framer-go6jg .framer-drl64n { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; overflow: hidden; position: relative; white-space: pre-wrap; width: 222px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-dgqh0c { flex: none; height: 260px; overflow: hidden; position: relative; width: 100%; }\",\".framer-go6jg .framer-f5kkgr { aspect-ratio: 1.5841835691093802 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 411px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1pjby8y { background-color: #ffffff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; flex: none; height: 260px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 411px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-hyfwn7 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: -1px; top: 0px; }\",'.framer-go6jg .framer-cgxv9c { --framer-font-family: \"Nexa Light\", \"Nexa Light Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 53px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -4.62px; --framer-line-height: 77%; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 53%; transform: translate(-50%, -50%); white-space: pre; width: auto; }',\".framer-go6jg .framer-1fn3khg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-go6jg .framer-hebbuo { aspect-ratio: 1.5816326266713374 / 1; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: hidden; position: relative; width: 411px; will-change: var(--framer-will-change-override, transform); }\",'.framer-go6jg .framer-lve93x { --framer-font-family: \"Albert Sans\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 100; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 43px; overflow: hidden; position: relative; white-space: pre-wrap; width: 159px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg .framer-gusk9e { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 393px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-go6jg .framer-1cn9qs2 { flex: none; height: 260px; overflow: visible; position: relative; width: 411px; }\",\".framer-go6jg .framer-ayspoy { aspect-ratio: 1.5816326266713374 / 1; background-color: #01d2ff; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(1, 210, 255, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 411px; }\",\".framer-go6jg .framer-uahq4z { aspect-ratio: 1.500000036924314 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 103px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 154px; }\",\".framer-go6jg .framer-1vrw2dy { flex: none; height: 103px; left: 128px; overflow: visible; position: absolute; top: 78px; width: 155px; }\",'.framer-go6jg .framer-1v11i1g { --framer-font-family: \"Albert Sans\", \"Albert Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19.21px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-letter-spacing: 0.19px; --framer-line-height: 1.2em; --framer-text-alignment: center; --framer-text-color: #0093ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: 23px; overflow: hidden; position: relative; white-space: pre-wrap; width: 184px; word-break: break-word; word-wrap: break-word; }',\".framer-go6jg.framer-1geg78k { inset: 0px; position: fixed; user-select: none; }\",\".framer-go6jg.framer-ivwleg { -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px); background-color: rgba(0, 145, 255, 0.37); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 0px; }\",\".framer-go6jg.framer-6aar2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 52%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-go6jg .framer-qbfo67 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); overflow: hidden; position: relative; width: 142px; }\",\".framer-go6jg .framer-1o9g896 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-go6jg .framer-1sckijf { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.59); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 197px; will-change: var(--framer-will-change-override, transform); }\",\".framer-go6jg .framer-1nhe8l8 { flex: none; height: 109px; overflow: visible; position: relative; width: 259px; }\",\".framer-go6jg .framer-1qzjqd2 { aspect-ratio: 2.3902440874779445 / 1; background-color: #b40c24; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 1.3245033025741577px 2.6490066051483154px 20.529800415039062px 0px rgba(180, 12, 36, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 260px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-go6jg .framer-bv7bda { aspect-ratio: 2.4767440925874626 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 59px; overflow: hidden; position: absolute; top: 26px; width: 141px; }\",\".framer-go6jg .framer-f9n23b { background-color: rgba(255, 255, 255, 0.41); flex: none; height: 39px; overflow: hidden; position: relative; width: 92px; }\",\".framer-go6jg .framer-1cca1f9 { flex: none; height: 109px; overflow: hidden; position: relative; width: 136px; }\",\".framer-go6jg .framer-t19j3r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-go6jg .framer-1whlk8b { flex: none; height: 50px; overflow: hidden; position: relative; width: 100px; }\",\".framer-go6jg .framer-18ytr09-container { bottom: 10px; flex: none; height: auto; left: 10px; position: fixed; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-go6jg.framer-72rtr7, .framer-go6jg .framer-kah8q3, .framer-go6jg .framer-u64ozv, .framer-go6jg.framer-piyc37, .framer-go6jg .framer-17jw6ne, .framer-go6jg .framer-vnhb26, .framer-go6jg .framer-19yntec, .framer-go6jg .framer-wca6x9, .framer-go6jg .framer-tswt4v, .framer-go6jg .framer-99b4rq, .framer-go6jg .framer-5tp9ty, .framer-go6jg .framer-pwhnsd, .framer-go6jg .framer-175r8fr, .framer-go6jg .framer-och18a, .framer-go6jg .framer-1cnw4u9, .framer-go6jg .framer-hd7x10, .framer-go6jg .framer-1fzw7bv, .framer-go6jg .framer-ctdvef, .framer-go6jg .framer-1viggyt, .framer-go6jg .framer-1565zrg, .framer-go6jg .framer-1htwyfi, .framer-go6jg .framer-2hm9lm, .framer-go6jg .framer-c4ztgq, .framer-go6jg .framer-h5j1lx, .framer-go6jg .framer-eek8jy, .framer-go6jg .framer-i0okjw, .framer-go6jg .framer-nkw7gt, .framer-go6jg .framer-prhlw2, .framer-go6jg .framer-b75vb0, .framer-go6jg .framer-1jd3vw5, .framer-go6jg .framer-dmmix5, .framer-go6jg .framer-t0yhuz, .framer-go6jg .framer-1hqxbv1, .framer-go6jg .framer-1sx5o90, .framer-go6jg .framer-1p3on9t, .framer-go6jg .framer-b3mvi3, .framer-go6jg .framer-1rbkpu5, .framer-go6jg .framer-2h6hil, .framer-go6jg .framer-evj2j, .framer-go6jg .framer-v1413v, .framer-go6jg .framer-1i1s4fc, .framer-go6jg .framer-1fn3khg, .framer-go6jg .framer-gusk9e, .framer-go6jg.framer-6aar2r, .framer-go6jg .framer-1sckijf { gap: 0px; } .framer-go6jg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-go6jg.framer-72rtr7 > :first-child, .framer-go6jg .framer-u64ozv > :first-child, .framer-go6jg.framer-piyc37 > :first-child, .framer-go6jg .framer-17jw6ne > :first-child, .framer-go6jg .framer-vnhb26 > :first-child, .framer-go6jg .framer-19yntec > :first-child, .framer-go6jg .framer-tswt4v > :first-child, .framer-go6jg .framer-99b4rq > :first-child, .framer-go6jg .framer-5tp9ty > :first-child, .framer-go6jg .framer-pwhnsd > :first-child, .framer-go6jg .framer-1cnw4u9 > :first-child, .framer-go6jg .framer-ctdvef > :first-child, .framer-go6jg .framer-1viggyt > :first-child, .framer-go6jg .framer-1565zrg > :first-child, .framer-go6jg .framer-c4ztgq > :first-child, .framer-go6jg .framer-nkw7gt > :first-child, .framer-go6jg .framer-prhlw2 > :first-child, .framer-go6jg .framer-b75vb0 > :first-child, .framer-go6jg .framer-dmmix5 > :first-child, .framer-go6jg .framer-t0yhuz > :first-child, .framer-go6jg .framer-1sx5o90 > :first-child, .framer-go6jg .framer-1p3on9t > :first-child, .framer-go6jg .framer-b3mvi3 > :first-child, .framer-go6jg .framer-1rbkpu5 > :first-child, .framer-go6jg .framer-evj2j > :first-child, .framer-go6jg .framer-v1413v > :first-child, .framer-go6jg .framer-1fn3khg > :first-child, .framer-go6jg .framer-gusk9e > :first-child, .framer-go6jg.framer-6aar2r > :first-child { margin-top: 0px; } .framer-go6jg.framer-72rtr7 > :last-child, .framer-go6jg .framer-u64ozv > :last-child, .framer-go6jg.framer-piyc37 > :last-child, .framer-go6jg .framer-17jw6ne > :last-child, .framer-go6jg .framer-vnhb26 > :last-child, .framer-go6jg .framer-19yntec > :last-child, .framer-go6jg .framer-tswt4v > :last-child, .framer-go6jg .framer-99b4rq > :last-child, .framer-go6jg .framer-5tp9ty > :last-child, .framer-go6jg .framer-pwhnsd > :last-child, .framer-go6jg .framer-1cnw4u9 > :last-child, .framer-go6jg .framer-ctdvef > :last-child, .framer-go6jg .framer-1viggyt > :last-child, .framer-go6jg .framer-1565zrg > :last-child, .framer-go6jg .framer-c4ztgq > :last-child, .framer-go6jg .framer-nkw7gt > :last-child, .framer-go6jg .framer-prhlw2 > :last-child, .framer-go6jg .framer-b75vb0 > :last-child, .framer-go6jg .framer-dmmix5 > :last-child, .framer-go6jg .framer-t0yhuz > :last-child, .framer-go6jg .framer-1sx5o90 > :last-child, .framer-go6jg .framer-1p3on9t > :last-child, .framer-go6jg .framer-b3mvi3 > :last-child, .framer-go6jg .framer-1rbkpu5 > :last-child, .framer-go6jg .framer-evj2j > :last-child, .framer-go6jg .framer-v1413v > :last-child, .framer-go6jg .framer-1fn3khg > :last-child, .framer-go6jg .framer-gusk9e > :last-child, .framer-go6jg.framer-6aar2r > :last-child { margin-bottom: 0px; } .framer-go6jg .framer-kah8q3 > *, .framer-go6jg .framer-wca6x9 > *, .framer-go6jg .framer-1fzw7bv > *, .framer-go6jg .framer-h5j1lx > *, .framer-go6jg .framer-eek8jy > *, .framer-go6jg .framer-i0okjw > *, .framer-go6jg .framer-1jd3vw5 > *, .framer-go6jg .framer-1sckijf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-go6jg .framer-kah8q3 > :first-child, .framer-go6jg .framer-wca6x9 > :first-child, .framer-go6jg .framer-175r8fr > :first-child, .framer-go6jg .framer-och18a > :first-child, .framer-go6jg .framer-hd7x10 > :first-child, .framer-go6jg .framer-1fzw7bv > :first-child, .framer-go6jg .framer-1htwyfi > :first-child, .framer-go6jg .framer-2hm9lm > :first-child, .framer-go6jg .framer-h5j1lx > :first-child, .framer-go6jg .framer-eek8jy > :first-child, .framer-go6jg .framer-i0okjw > :first-child, .framer-go6jg .framer-1jd3vw5 > :first-child, .framer-go6jg .framer-1hqxbv1 > :first-child, .framer-go6jg .framer-2h6hil > :first-child, .framer-go6jg .framer-1i1s4fc > :first-child, .framer-go6jg .framer-1sckijf > :first-child { margin-left: 0px; } .framer-go6jg .framer-kah8q3 > :last-child, .framer-go6jg .framer-wca6x9 > :last-child, .framer-go6jg .framer-175r8fr > :last-child, .framer-go6jg .framer-och18a > :last-child, .framer-go6jg .framer-hd7x10 > :last-child, .framer-go6jg .framer-1fzw7bv > :last-child, .framer-go6jg .framer-1htwyfi > :last-child, .framer-go6jg .framer-2hm9lm > :last-child, .framer-go6jg .framer-h5j1lx > :last-child, .framer-go6jg .framer-eek8jy > :last-child, .framer-go6jg .framer-i0okjw > :last-child, .framer-go6jg .framer-1jd3vw5 > :last-child, .framer-go6jg .framer-1hqxbv1 > :last-child, .framer-go6jg .framer-2h6hil > :last-child, .framer-go6jg .framer-1i1s4fc > :last-child, .framer-go6jg .framer-1sckijf > :last-child { margin-right: 0px; } .framer-go6jg .framer-u64ozv > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-go6jg.framer-piyc37 > *, .framer-go6jg .framer-vnhb26 > *, .framer-go6jg .framer-1cnw4u9 > *, .framer-go6jg .framer-ctdvef > *, .framer-go6jg .framer-1viggyt > *, .framer-go6jg .framer-nkw7gt > *, .framer-go6jg .framer-prhlw2 > *, .framer-go6jg .framer-b75vb0 > *, .framer-go6jg .framer-dmmix5 > *, .framer-go6jg .framer-t0yhuz > *, .framer-go6jg .framer-1sx5o90 > *, .framer-go6jg .framer-1p3on9t > *, .framer-go6jg .framer-b3mvi3 > *, .framer-go6jg .framer-1rbkpu5 > *, .framer-go6jg .framer-evj2j > *, .framer-go6jg .framer-v1413v > *, .framer-go6jg .framer-1fn3khg > *, .framer-go6jg .framer-gusk9e > *, .framer-go6jg.framer-6aar2r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-go6jg .framer-17jw6ne > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-go6jg .framer-19yntec > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-go6jg .framer-tswt4v > *, .framer-go6jg .framer-99b4rq > *, .framer-go6jg .framer-5tp9ty > *, .framer-go6jg .framer-pwhnsd > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-go6jg .framer-175r8fr > *, .framer-go6jg .framer-och18a > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-go6jg .framer-hd7x10 > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-go6jg .framer-1565zrg > * { margin: 0px; margin-bottom: calc(8.22px / 2); margin-top: calc(8.22px / 2); } .framer-go6jg .framer-1htwyfi > *, .framer-go6jg .framer-2hm9lm > * { margin: 0px; margin-left: calc(8.22px / 2); margin-right: calc(8.22px / 2); } .framer-go6jg .framer-c4ztgq > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-go6jg .framer-1hqxbv1 > *, .framer-go6jg .framer-2h6hil > *, .framer-go6jg .framer-1i1s4fc > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",...sharedStyle.css,'.framer-go6jg[data-border=\"true\"]::after, .framer-go6jg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-go6jg.framer-72rtr7 { width: 810px; } .framer-go6jg .framer-1cinfb3-container { order: 9; } .framer-go6jg .framer-1a0im86 { height: 0px; order: 4; } .framer-go6jg .framer-kah8q3 { order: 5; } .framer-go6jg .framer-u64ozv { left: 125px; } .framer-go6jg .framer-131sica { left: unset; right: -33px; } .framer-go6jg .framer-1viggyt { bottom: 100px; left: calc(49.01234567901237% - 555px / 2); } .framer-go6jg .framer-48v7u1 { order: 7; } .framer-go6jg .framer-6m65h1 { order: 15; } .framer-go6jg .framer-c4ztgq { order: 10; width: 810px; } .framer-go6jg .framer-h5j1lx { gap: 0px; } .framer-go6jg .framer-eek8jy { flex-direction: column; width: 100%; } .framer-go6jg .framer-i0okjw { flex-direction: column; gap: 37px; height: min-content; width: 90%; } .framer-go6jg .framer-nkw7gt { flex: none; height: min-content; max-width: 1000px; width: 100%; } .framer-go6jg .framer-1b5d3ik { height: 374px; } .framer-go6jg .framer-prhlw2 { height: min-content; width: 100%; } .framer-go6jg .framer-b75vb0 { border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; } .framer-go6jg .framer-1jd3vw5 { aspect-ratio: unset; height: 260px; } .framer-go6jg .framer-1rrbq2l { left: 63%; top: 62%; } .framer-go6jg .framer-dmmix5 { overflow: hidden; } .framer-go6jg .framer-t0yhuz { height: min-content; width: min-content; } .framer-go6jg .framer-1s2zrvg { aspect-ratio: unset; height: 428px; order: 0; width: 682px; } .framer-go6jg .framer-1u6dnx8 { order: 1; } .framer-go6jg .framer-gdfob2, .framer-go6jg .framer-1sckijf { order: 2; } .framer-go6jg .framer-1p51nub, .framer-go6jg .framer-f9n23b { order: 3; } .framer-go6jg .framer-1hqxbv1 { gap: 15px; width: 100%; } .framer-go6jg .framer-1sx5o90, .framer-go6jg .framer-1p3on9t, .framer-go6jg .framer-b3mvi3 { height: 407px; width: 251px; } .framer-go6jg .framer-1yq6vxw, .framer-go6jg .framer-zlvjp6, .framer-go6jg .framer-1xk07lz { height: var(--framer-aspect-ratio-supported, 251px); } .framer-go6jg .framer-11r1e2f { width: 865px; } .framer-go6jg .framer-17k3rny { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -1px; left: 87px; right: 88px; width: unset; will-change: var(--framer-will-change-override, transform); } .framer-go6jg .framer-2h6hil { gap: 106px; } .framer-go6jg .framer-evj2j, .framer-go6jg .framer-v1413v { width: min-content; } .framer-go6jg .framer-1098m3h { aspect-ratio: unset; height: 260px; width: 292px; } .framer-go6jg .framer-dgqh0c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; padding: 0px; width: min-content; } .framer-go6jg .framer-1pjby8y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: min-content; } .framer-go6jg .framer-hyfwn7 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: unset; height: 262px; left: unset; position: relative; right: unset; top: unset; width: 292px; will-change: var(--framer-will-change-override, transform); } .framer-go6jg .framer-1cn9qs2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; } .framer-go6jg .framer-ayspoy { aspect-ratio: unset; height: 259px; left: unset; position: relative; top: unset; width: 251px; } .framer-go6jg.framer-6aar2r { top: 98px; transform: translateX(-50%); width: 794px; } .framer-go6jg .framer-qbfo67 { order: 0; } .framer-go6jg .framer-1o9g896 { order: 1; width: 66%; } .framer-go6jg .framer-1cca1f9 { order: 11; } .framer-go6jg .framer-t19j3r-container { order: 12; } .framer-go6jg .framer-18ytr09-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-go6jg .framer-h5j1lx, .framer-go6jg .framer-eek8jy, .framer-go6jg .framer-i0okjw, .framer-go6jg .framer-1hqxbv1, .framer-go6jg .framer-2h6hil, .framer-go6jg .framer-dgqh0c, .framer-go6jg .framer-1pjby8y, .framer-go6jg .framer-1cn9qs2 { gap: 0px; } .framer-go6jg .framer-h5j1lx > *, .framer-go6jg .framer-dgqh0c > *, .framer-go6jg .framer-1pjby8y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-go6jg .framer-h5j1lx > :first-child, .framer-go6jg .framer-1hqxbv1 > :first-child, .framer-go6jg .framer-2h6hil > :first-child, .framer-go6jg .framer-dgqh0c > :first-child, .framer-go6jg .framer-1pjby8y > :first-child, .framer-go6jg .framer-1cn9qs2 > :first-child { margin-left: 0px; } .framer-go6jg .framer-h5j1lx > :last-child, .framer-go6jg .framer-1hqxbv1 > :last-child, .framer-go6jg .framer-2h6hil > :last-child, .framer-go6jg .framer-dgqh0c > :last-child, .framer-go6jg .framer-1pjby8y > :last-child, .framer-go6jg .framer-1cn9qs2 > :last-child { margin-right: 0px; } .framer-go6jg .framer-eek8jy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-go6jg .framer-eek8jy > :first-child, .framer-go6jg .framer-i0okjw > :first-child { margin-top: 0px; } .framer-go6jg .framer-eek8jy > :last-child, .framer-go6jg .framer-i0okjw > :last-child { margin-bottom: 0px; } .framer-go6jg .framer-i0okjw > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-go6jg .framer-1hqxbv1 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-go6jg .framer-2h6hil > * { margin: 0px; margin-left: calc(106px / 2); margin-right: calc(106px / 2); } .framer-go6jg .framer-1cn9qs2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-go6jg.framer-72rtr7 { width: 390px; } .framer-go6jg .framer-1cinfb3-container { order: 10; } .framer-go6jg .framer-1a0im86 { height: 0px; order: 3; } .framer-go6jg .framer-kah8q3 { order: 4; } .framer-go6jg .framer-oem7r3 { top: 70px; } .framer-go6jg .framer-z5kv4u { height: 245px; left: calc(71.53846153846156% - 204px / 2); top: 250px; width: 204px; } .framer-go6jg .framer-17zc3kg { height: 231px; left: calc(51.47058823529414% - 187.78258240862317px / 2); top: calc(48.57142857142859% - 231.02199283166127px / 2); width: 188px; } .framer-go6jg .framer-1yj4a92 { height: 231px; left: calc(51.47058823529414% - 188px / 2); top: calc(50.204081632653086% - 231px / 2); width: 188px; } .framer-go6jg .framer-111ytzw { bottom: -22px; height: var(--framer-aspect-ratio-supported, 265px); left: -40px; right: -37px; } .framer-go6jg .framer-u64ozv { height: 206px; left: calc(30.256410256410277% - 191px / 2); top: 200px; width: 191px; } .framer-go6jg .framer-131sica { left: unset; right: -147px; } .framer-go6jg .framer-1h6ow74 { padding: 0px 10px 0px 10px; width: 90%; } .framer-go6jg .framer-1viggyt { bottom: 120px; left: calc(49.743589743589766% - 341px / 2); width: 341px; } .framer-go6jg .framer-48v7u1 { height: 576px; order: 6; } .framer-go6jg .framer-1ozopqe { height: var(--framer-aspect-ratio-supported, 49px); left: 50px; right: 50px; top: 230px; transform: unset; width: unset; } .framer-go6jg .framer-bjsdui { left: unset; right: 60px; transform: unset; } .framer-go6jg .framer-6m65h1 { order: 15; } .framer-go6jg .framer-c4ztgq { gap: 85px; order: 9; overflow: hidden; width: 100%; } .framer-go6jg .framer-h5j1lx, .framer-go6jg .framer-2h6hil, .framer-go6jg .framer-1i1s4fc { flex-direction: column; gap: 85px; } .framer-go6jg .framer-i0okjw { flex-direction: column; gap: 85px; height: min-content; width: min-content; } .framer-go6jg .framer-nkw7gt { flex: none; height: min-content; width: min-content; } .framer-go6jg .framer-1b5d3ik { height: 290px; width: 296px; } .framer-go6jg .framer-jlezds { width: 212px; } .framer-go6jg .framer-1or4g96 { height: auto; width: 278px; } .framer-go6jg .framer-11ve3so { height: auto; overflow: visible; white-space: pre; width: auto; } .framer-go6jg .framer-prhlw2 { align-self: stretch; gap: 23px; height: min-content; width: auto; } .framer-go6jg .framer-1jd3vw5 { aspect-ratio: unset; height: 267px; } .framer-go6jg .framer-t0yhuz { height: 416px; width: 391px; } .framer-go6jg .framer-gdfob2 { height: 43px; width: 184px; } .framer-go6jg .framer-1p51nub, .framer-go6jg .framer-15oej5b { height: 23px; width: 184px; } .framer-go6jg .framer-1hqxbv1 { flex-direction: column; gap: 85px; width: 100%; } .framer-go6jg .framer-1yq6vxw, .framer-go6jg .framer-zlvjp6, .framer-go6jg .framer-1xk07lz { height: var(--framer-aspect-ratio-supported, 200px); } .framer-go6jg .framer-1rbkpu5 { height: 530px; width: 391px; } .framer-go6jg .framer-1kn6y1 { height: 43px; width: 271px; } .framer-go6jg .framer-evj2j { height: 371px; width: 393px; } .framer-go6jg .framer-1098m3h { aspect-ratio: unset; height: 217px; width: 257px; } .framer-go6jg .framer-148ssku, .framer-go6jg .framer-1240emp { height: 43px; width: 222px; } .framer-go6jg .framer-1enznab, .framer-go6jg .framer-s92cf8 { height: 23px; width: 183px; } .framer-go6jg .framer-v1413v { height: 355px; width: 393px; } .framer-go6jg .framer-dgqh0c { width: 411px; } .framer-go6jg .framer-1pjby8y { height: 217px; left: calc(49.878345498783474% - 257px / 2); top: calc(50.00000000000002% - 217px / 2); width: 257px; } .framer-go6jg .framer-cgxv9c { --framer-font-size: 40px; } .framer-go6jg .framer-1fn3khg { height: 370px; width: 389px; } .framer-go6jg .framer-hebbuo { height: var(--framer-aspect-ratio-supported, 216px); width: 342px; } .framer-go6jg .framer-gusk9e { height: min-content; } .framer-go6jg .framer-1cn9qs2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-go6jg .framer-ayspoy { aspect-ratio: unset; height: 216px; left: unset; position: relative; top: unset; width: 258px; } .framer-go6jg .framer-uahq4z { left: 50%; width: 155px; } .framer-go6jg.framer-6aar2r { top: 107px; transform: translateX(-50%); width: 322px; } .framer-go6jg .framer-1o9g896 { width: 97%; } .framer-go6jg .framer-1cca1f9 { order: 11; } .framer-go6jg .framer-t19j3r-container { order: 12; } .framer-go6jg .framer-1whlk8b { order: 8; } .framer-go6jg .framer-18ytr09-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-go6jg .framer-c4ztgq, .framer-go6jg .framer-h5j1lx, .framer-go6jg .framer-i0okjw, .framer-go6jg .framer-prhlw2, .framer-go6jg .framer-1hqxbv1, .framer-go6jg .framer-2h6hil, .framer-go6jg .framer-1i1s4fc, .framer-go6jg .framer-1cn9qs2 { gap: 0px; } .framer-go6jg .framer-c4ztgq > *, .framer-go6jg .framer-h5j1lx > *, .framer-go6jg .framer-i0okjw > *, .framer-go6jg .framer-1hqxbv1 > *, .framer-go6jg .framer-2h6hil > *, .framer-go6jg .framer-1i1s4fc > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-go6jg .framer-c4ztgq > :first-child, .framer-go6jg .framer-h5j1lx > :first-child, .framer-go6jg .framer-i0okjw > :first-child, .framer-go6jg .framer-prhlw2 > :first-child, .framer-go6jg .framer-1hqxbv1 > :first-child, .framer-go6jg .framer-2h6hil > :first-child, .framer-go6jg .framer-1i1s4fc > :first-child { margin-top: 0px; } .framer-go6jg .framer-c4ztgq > :last-child, .framer-go6jg .framer-h5j1lx > :last-child, .framer-go6jg .framer-i0okjw > :last-child, .framer-go6jg .framer-prhlw2 > :last-child, .framer-go6jg .framer-1hqxbv1 > :last-child, .framer-go6jg .framer-2h6hil > :last-child, .framer-go6jg .framer-1i1s4fc > :last-child { margin-bottom: 0px; } .framer-go6jg .framer-prhlw2 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-go6jg .framer-1cn9qs2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-go6jg .framer-1cn9qs2 > :first-child { margin-left: 0px; } .framer-go6jg .framer-1cn9qs2 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5579\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ozT6MrKQH\":{\"layout\":[\"fixed\",\"auto\"]},\"BLnpWF0sf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"aaCaXv2nS\":{\"pattern\":\":aaCaXv2nS\",\"name\":\"geri\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-go6jg\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5579,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Nexa Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/MUqTIOQPutG3YKcr2IQKl09XWE.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Instrument Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizBRFtNs2ka5fXjeivQ4LroWlx-2zcZj1bIkNo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyfMZ1rib2Bg-4.woff2\",weight:\"200\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/NXxvFRoY5LDh3yCm7MEP2jqYk.woff2\",weight:\"100\"},{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/5CcgcVyoWSqO1THBiISd6oCog.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/MF544SVCvk3yNpLIz3pwDXFZPKM.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/TNtxudDBkAm2RXdtU3rvTBwoM.woff2\",weight:\"100\"},{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/fIabp4VN5z7iJ3lNOz9qfNeQHc.woff2\",weight:\"100\"},{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/YSOgKh50dqzzsXffetgcarlLHcI.woff2\",weight:\"100\"},{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/9iRSYClnXA0RMygyIn6yjjWXJw.woff2\",weight:\"100\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_qY32TxAj1g.woff2\",weight:\"400\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_qY32TxAj1g.woff2\",weight:\"100\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_qY32TxAj1g.woff2\",weight:\"300\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_qY32TxAj1g.woff2\",weight:\"700\"},{family:\"Alex Brush\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EtUf57DtOmCc.woff2\",weight:\"400\"},{family:\"Nexa Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/DR45pZK2oboqJwo73PSLrhqUc.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...BarsTopBarFonts,...HeroFonts,...MaterialFonts,...NotchFonts,...TickerFonts,...SlideshowFonts,...BottomBarFonts,...CookieBannerFonts,...MainMouseFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ozT6MrKQH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BLnpWF0sf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"aaCaXv2nS\\\":{\\\"pattern\\\":\\\":aaCaXv2nS\\\",\\\"name\\\":\\\"geri\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5579\",\"framerImmutableVariables\":\"true\",\"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", "skipEUCheck", "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", "skipLogic", "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", "_", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerxSTNk53G7", "withCSS", "xSTNk53G7_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "BarsTopBarFonts", "getFonts", "NOVYiOs_v_default", "BarsTopBarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "MotionDivWithFX", "ImageWithFXWithOptimizedAppearEffect", "Image2", "HeroFonts", "Icon", "MaterialFonts", "NotchFonts", "qVJjJkc7a_default", "TickerFonts", "Ticker", "MotionAWithOptimizedAppearEffect", "ImageWithFX", "SlideshowFonts", "Slideshow", "ContainerWithOptimizedAppearEffect", "Container", "MotionAWithFX", "BottomBarFonts", "VoqkrIpAp_default", "CookieBannerFonts", "CookieBanner", "MainMouseFonts", "xSTNk53G7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "animation2", "transition2", "textEffect", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "transformTemplate2", "animation7", "transition6", "animation8", "transition7", "animation9", "animation10", "transition8", "transition9", "animation11", "animation12", "transition10", "animation13", "transition11", "animation14", "animation15", "transition12", "animation16", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition13", "animation23", "transition14", "animation24", "animation25", "transition15", "animation26", "transformTemplate3", "animation27", "transition16", "animation28", "animation29", "animation30", "animation31", "transition17", "animation32", "animation33", "animation34", "animation35", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "props", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "getProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "serializationHash", "ref1", "elementId", "useRouteElementId", "usePreloadLocalizedValues", "isDisplayed", "isBrowser", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "cursor", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "HTMLStyle", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "BarsTopBarWithVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "animation", "animation1", "RichText2", "textEffect", "transformTemplate1", "MotionDivWithFXWithOptimizedAppearEffect", "animation3", "transition3", "animation4", "animation5", "MotionDivWithFX", "animation6", "transition5", "transformTemplate2", "animation7", "ImageWithFXWithOptimizedAppearEffect", "animation8", "transition6", "animation9", "getLoadingLazyAtYPosition", "animation10", "transition8", "animation11", "animation12", "animation14", "animation15", "animation13", "Overlay", "l", "AnimatePresence", "Ga", "Image2", "animation16", "Link", "animation17", "SVG", "Icon", "animation18", "qVJjJkc7a_default", "animation19", "animation21", "animation20", "animation22", "getContainer", "animation23", "MotionAWithOptimizedAppearEffect", "animation24", "animation25", "Ticker", "animation26", "transformTemplate3", "ImageWithFX", "transition16", "animation27", "animation28", "animation29", "transition4", "animation30", "animation31", "ContainerWithOptimizedAppearEffect", "animation32", "animation33", "Slideshow", "Text2", "getLocalizedValue", "MotionAWithFX", "transition17", "animation34", "animation35", "overlay1", "VoqkrIpAp_default", "CookieBanner", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "BarsTopBarFonts", "HeroFonts", "MaterialFonts", "NotchFonts", "TickerFonts", "SlideshowFonts", "BottomBarFonts", "CookieBannerFonts", "MainMouseFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
