{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js", "ssg:https://framerusercontent.com/modules/bEPpU0TAQjAK4e4h5vq9/C01SBDG72a3NvQJq2mDv/augiA20Il.js"],
  "sourcesContent": ["import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window['${dataLayerName}']=window['${dataLayerName}']||[];`+(dataLayer?`window['${dataLayerName}'].push(${JSON.stringify(dataLayer)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=\"\";if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{var _Intl_DateTimeFormat_resolvedOptions_timeZone,_Intl_DateTimeFormat_resolvedOptions,_Intl_DateTimeFormat,_Intl;return(_Intl=Intl)===null||_Intl===void 0?void 0:(_Intl_DateTimeFormat=_Intl.DateTimeFormat())===null||_Intl_DateTimeFormat===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions=_Intl_DateTimeFormat.resolvedOptions())===null||_Intl_DateTimeFormat_resolvedOptions===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions_timeZone=_Intl_DateTimeFormat_resolvedOptions.timeZone)===null||_Intl_DateTimeFormat_resolvedOptions_timeZone===void 0?void 0:_Intl_DateTimeFormat_resolvedOptions_timeZone.startsWith(\"Europe\");};const isEULocale=()=>{var _navigator_languages;var _navigator_language;const locale=(_navigator_language=navigator.language)!==null&&_navigator_language!==void 0?_navigator_language:(_navigator_languages=navigator.languages)===null||_navigator_languages===void 0?void 0:_navigator_languages[0];return countries.some(country=>{var _locale_toUpperCase;return locale===null||locale===void 0?void 0:(_locale_toUpperCase=locale.toUpperCase())===null||_locale_toUpperCase===void 0?void 0:_locale_toUpperCase.includes(country);});};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description===null||description===void 0?void 0:description.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&(policy===null||policy===void 0?void 0:policy.link)?\" \":null,(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}const Button=withCSS(function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;var _settings_hoverOpacity,_settings_tapOpacity;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:(_settings_hoverOpacity=settings.hoverOpacity)!==null&&_settings_hoverOpacity!==void 0?_settings_hoverOpacity:.6},whileTap:{opacity:(_settings_tapOpacity=settings.tapOpacity)!==null&&_settings_tapOpacity!==void 0?_settings_tapOpacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\nexport const __FramerMetadata__ = {\"exports\":{\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import NavigationFixed from\"#framer/local/canvasComponent/G6X3B1Y06/G6X3B1Y06.js\";import GpsArrow from\"#framer/local/canvasComponent/jBjOdLUfK/jBjOdLUfK.js\";import Footer from\"#framer/local/canvasComponent/KE1flUhia/KE1flUhia.js\";import NavigationFixedMobile from\"#framer/local/canvasComponent/l4SSWqqzo/l4SSWqqzo.js\";import LayoutFaq from\"#framer/local/canvasComponent/lgPGsAFip/lgPGsAFip.js\";import BtnPrimary from\"#framer/local/canvasComponent/nh63Sv0P0/nh63Sv0P0.js\";import NavList from\"#framer/local/canvasComponent/TnA1PTb6m/TnA1PTb6m.js\";import Newsletter from\"#framer/local/canvasComponent/yKh5O1RwG/yKh5O1RwG.js\";import*as sharedStyle2 from\"#framer/local/css/fqRMIBKNl/fqRMIBKNl.js\";import*as sharedStyle3 from\"#framer/local/css/GgtokGsC6/GgtokGsC6.js\";import*as sharedStyle5 from\"#framer/local/css/gL7YAmK8C/gL7YAmK8C.js\";import*as sharedStyle7 from\"#framer/local/css/LdR1OWvz4/LdR1OWvz4.js\";import*as sharedStyle4 from\"#framer/local/css/o6G0xP52z/o6G0xP52z.js\";import*as sharedStyle1 from\"#framer/local/css/OMISeQdgF/OMISeQdgF.js\";import*as sharedStyle6 from\"#framer/local/css/XUOFob_NJ/XUOFob_NJ.js\";import*as sharedStyle from\"#framer/local/css/ZLLCpIOIc/ZLLCpIOIc.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFixedFonts=getFonts(NavigationFixed);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const NavigationFixedMobileFonts=getFonts(NavigationFixedMobile);const GpsArrowFonts=getFonts(GpsArrow);const NavListFonts=getFonts(NavList);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BtnPrimaryFonts=getFonts(BtnPrimary);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const EmbedFonts=getFonts(Embed);const LayoutFaqFonts=getFonts(LayoutFaq);const ContainerWithFX=withFX(Container);const NewsletterFonts=getFonts(Newsletter);const CookieBannerFonts=getFonts(CookieBanner);const FooterFonts=getFonts(Footer);const breakpoints={kVlNXoo9a:\"(min-width: 810px) and (max-width: 1439px)\",lnAMMi6wa:\"(max-width: 809px)\",UNuwbcT5o:\"(min-width: 1728px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1727px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-c8U0H\";const variantClassNames={kVlNXoo9a:\"framer-v-w71ttr\",lnAMMi6wa:\"framer-v-1rsygn9\",UNuwbcT5o:\"framer-v-131uvg1\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const transition3={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.8,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"UNuwbcT5o\",Desktop:\"WQLkyLRf1\",Phone:\"lnAMMi6wa\",Tablet:\"kVlNXoo9a\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"lnAMMi6wa\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"lnAMMi6wa\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"kVlNXoo9a\",\"lnAMMi6wa\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"kVlNXoo9a\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"kVlNXoo9a\",\"lnAMMi6wa\"].includes(baseVariant))return true;return false;};useCustomCursors({});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),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1g3yfwc-container hidden-1rsygn9\",\"data-framer-appear-id\":\"1g3yfwc\",initial:animation1,layoutScroll:true,nodeId:\"ZW_6L9p7B\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{variant:\"dkMO9dAMG\"}},children:/*#__PURE__*/_jsx(NavigationFixed,{height:\"100%\",id:\"ZW_6L9p7B\",l6UIO318e:\"rgb(255, 255, 255)\",layoutId:\"ZW_6L9p7B\",style:{width:\"100%\"},variant:\"KXOT7dX76\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnAMMi6wa:{height:100,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hz5vr3-container hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",layoutScroll:true,nodeId:\"lit5Q_XSE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationFixedMobile,{height:\"100%\",id:\"lit5Q_XSE\",layoutId:\"lit5Q_XSE\",style:{width:\"100%\"},variant:\"yvvnjF7Xw\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lto8ty\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nwiodj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ydfos\",\"data-framer-name\":\"Hero\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kmfisg hidden-w71ttr hidden-1rsygn9\",\"data-framer-name\":\"em-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5dhum\",\"data-framer-name\":\"em-group\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9metk3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jsp8mp\",\"data-framer-name\":\"Vector 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:133,intrinsicWidth:846,svg:'<svg width=\"846\" height=\"133\" viewBox=\"-4 -4 846 133\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0V85C0 107.091 17.9086 125 40 125H838\" stroke=\"#FF4027\" stroke-width=\"8\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UNuwbcT5o:{y:(componentViewport?.y||0)+0+0+0+0+0+0+900-210+0+41+99}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"52px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+1e3-210+0+41+99,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p7q35g-container\",nodeId:\"MoWt3qmBr\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-90},children:/*#__PURE__*/_jsx(GpsArrow,{height:\"100%\",id:\"MoWt3qmBr\",layoutId:\"MoWt3qmBr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"Chris Broad using his phone with eSIM active near Mount Fuji, symbolizing reliable eSIM connectivity for travelers in Japan.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0),pixelHeight:1610,pixelWidth:1620,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PznOmVbnIDOoyQx6HS7nSMlEzjU.jpg\",srcSet:\"https://framerusercontent.com/images/PznOmVbnIDOoyQx6HS7nSMlEzjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PznOmVbnIDOoyQx6HS7nSMlEzjU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PznOmVbnIDOoyQx6HS7nSMlEzjU.jpg 1620w\"}},lnAMMi6wa:{background:{alt:\"Chris Broad using his phone with eSIM active near Mount Fuji, symbolizing reliable eSIM connectivity for travelers in Japan.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0),pixelHeight:1610,pixelWidth:780,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yrB9Fg8pFf2Qq7ZkWrHHIBT8w.jpg\",srcSet:\"https://framerusercontent.com/images/yrB9Fg8pFf2Qq7ZkWrHHIBT8w.jpg 780w\"}},UNuwbcT5o:{background:{alt:\"Chris Broad using his phone with eSIM active near Mount Fuji, symbolizing reliable eSIM connectivity for travelers in Japan.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0),pixelHeight:1610,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg\",srcSet:\"https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Chris Broad holding a phone with eSIM in front of Mt. Fuji\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0),pixelHeight:1610,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg\",srcSet:\"https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IKWY03dUb4DkwBZNj40e7Tx6wiY.jpg 2880w\"},className:\"framer-24dpzf\",\"data-framer-name\":\"container-fluid\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mrtzul hidden-1rsygn9\",\"data-framer-name\":\"navigation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmylj7\",\"data-framer-name\":\"nav-left\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"R_Lqf6wTl\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 160 39\"><path d=\"M 24.385 4.33 C 18.828 -1.094 9.787 -1.094 4.227 4.33 C 1.517 6.975 0.015 10.534 0 14.349 C -0.015 18.264 1.515 21.946 4.311 24.719 L 12.915 33.248 C 12.915 33.248 12.927 33.261 12.935 33.266 C 13.314 33.632 13.812 33.815 14.308 33.815 C 14.803 33.815 15.319 33.625 15.701 33.246 L 24.305 24.716 C 27.101 21.944 28.63 18.262 28.615 14.346 C 28.6 10.532 27.098 6.972 24.385 4.328 Z M 23.559 19.117 C 21.238 18.192 18.044 15.931 16.295 12.409 L 12.318 12.409 C 10.753 15.502 8.053 17.893 5.057 19.117 C 4.329 17.708 3.916 16.114 3.916 14.424 C 3.916 8.734 8.569 4.122 14.308 4.122 C 20.047 4.122 24.699 8.734 24.699 14.424 C 24.699 16.116 24.284 17.708 23.559 19.117 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 139.988 28.402 C 140.239 28.559 140.604 28.677 141.074 28.798 C 141.795 28.981 142.504 29.202 143.035 29.579 C 143.546 29.946 143.89 30.462 143.89 31.28 C 143.89 31.951 143.591 32.528 143.066 32.94 C 142.536 33.354 141.765 33.611 140.825 33.611 C 139.598 33.611 138.528 33.202 137.796 32.465 L 138.843 31.529 C 139.381 32.043 140.12 32.295 140.793 32.295 C 141.207 32.295 141.569 32.219 141.84 32.064 C 142.115 31.907 142.306 31.655 142.306 31.33 C 142.306 30.95 142.057 30.717 141.749 30.557 C 141.452 30.405 141.04 30.287 140.576 30.153 C 139.937 29.972 139.27 29.76 138.745 29.346 C 138.289 28.984 137.99 28.486 137.99 27.718 C 137.99 26.486 139.052 25.516 140.73 25.516 C 141.853 25.516 142.693 25.854 143.397 26.452 L 142.385 27.356 C 141.922 26.992 141.346 26.798 140.78 26.798 C 140.465 26.798 140.17 26.874 139.947 27.023 C 139.723 27.175 139.563 27.409 139.563 27.697 C 139.563 27.841 139.068 27.98 139.147 28.103 C 139.225 28.226 139.863 28.323 139.993 28.402 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 135.078 29.634 C 134.85 28.973 134.296 28.452 133.53 28.452 C 132.712 28.452 132.187 28.968 131.975 29.626 L 135.08 29.634 Z M 131.93 30.866 C 132.105 31.592 132.64 32.169 133.527 32.169 C 134.19 32.169 134.848 31.846 135.21 31.383 L 136.301 32.368 C 135.767 33.199 134.736 33.598 133.53 33.598 C 131.546 33.598 130.356 32.127 130.356 30.316 C 130.356 28.504 131.573 27.034 133.52 27.034 C 135.467 27.034 136.72 28.515 136.72 30.316 C 136.72 30.494 136.715 30.677 136.704 30.861 L 131.935 30.861 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 146.137 25.686 L 146.137 33.506 L 144.407 33.506 L 144.407 25.686 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 153.534 26.478 L 153.712 26.654 L 153.887 26.478 C 154.483 25.883 155.358 25.511 156.462 25.511 C 157.568 25.511 158.449 25.888 159.043 26.491 C 159.639 27.097 159.973 27.946 159.973 28.921 L 159.973 33.506 L 158.429 33.506 L 158.429 29.162 C 158.429 28.651 158.272 28.127 157.946 27.726 C 157.615 27.317 157.114 27.047 156.462 27.047 C 155.811 27.047 155.31 27.317 154.974 27.726 C 154.645 28.127 154.483 28.654 154.483 29.162 L 154.483 33.506 L 152.933 33.506 L 152.928 29.162 C 152.928 28.651 152.771 28.127 152.445 27.726 C 152.114 27.317 151.614 27.047 150.962 27.047 C 150.31 27.047 149.809 27.317 149.476 27.726 C 149.147 28.127 148.986 28.654 148.986 29.162 L 148.986 33.506 L 147.438 33.506 L 147.438 28.921 C 147.438 27.946 147.774 27.097 148.373 26.494 C 148.972 25.891 149.847 25.513 150.962 25.513 C 152.077 25.513 152.936 25.886 153.529 26.478 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 122.108 25.07 C 122.108 23.204 120.966 21.306 118.653 21.306 C 116.34 21.306 115.174 23.204 115.174 25.07 L 115.174 33.396 L 111.062 33.396 L 111.062 25.07 C 111.062 20.921 113.926 17.717 118.653 17.717 C 123.38 17.717 126.212 20.921 126.212 25.07 L 126.212 33.396 L 122.106 33.396 L 122.106 25.07 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 73.957 17.888 L 70.086 17.888 L 70.086 18.79 C 68.894 18.108 67.458 17.718 65.834 17.718 C 60.887 17.718 57.806 21.332 57.806 25.723 C 57.806 30.114 60.829 33.726 65.866 33.726 C 67.492 33.726 68.91 33.354 70.086 32.698 L 70.086 33.558 L 73.957 33.558 Z M 65.86 30.237 C 63.057 30.237 61.639 28.059 61.639 25.718 C 61.639 23.377 63.086 21.17 65.86 21.17 C 68.441 21.17 70.078 23.414 70.078 25.718 C 70.078 28.022 68.663 30.237 65.86 30.237 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 109.027 17.888 L 105.156 17.888 L 105.156 18.79 C 103.964 18.108 102.528 17.717 100.904 17.717 C 95.957 17.717 92.875 21.332 92.875 25.723 C 92.875 30.114 95.899 33.726 100.935 33.726 C 102.562 33.726 103.98 33.354 105.156 32.698 L 105.156 33.558 L 109.027 33.558 Z M 100.933 30.237 C 98.129 30.237 96.712 28.059 96.712 25.718 C 96.712 23.377 98.159 21.17 100.933 21.17 C 103.513 21.17 105.151 23.414 105.151 25.718 C 105.151 28.022 103.736 30.237 100.933 30.237 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 83.914 17.717 C 79.031 17.717 75.889 21.282 75.881 25.618 L 75.881 39 L 79.709 39 L 79.709 32.536 C 80.873 33.183 82.275 33.553 83.883 33.553 C 88.866 33.553 91.855 30.009 91.855 25.636 C 91.852 21.293 88.803 17.72 83.912 17.72 Z M 83.886 30.103 C 81.114 30.103 79.712 27.948 79.712 25.634 C 79.712 23.319 81.331 21.136 83.886 21.136 C 86.625 21.136 88.059 23.353 88.059 25.634 C 88.059 27.914 86.654 30.103 83.886 30.103 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 65.823 0 C 70.762 0 73.934 3.61 73.934 7.995 C 73.934 12.381 70.886 15.99 65.852 15.99 C 60.818 15.99 57.803 12.412 57.803 7.995 C 57.803 3.578 60.884 0 65.823 0 Z M 65.855 3.452 C 63.089 3.452 61.642 5.691 61.642 7.995 C 61.642 10.299 63.057 12.506 65.855 12.506 C 68.653 12.506 70.068 10.331 70.068 7.995 C 70.068 5.659 68.433 3.452 65.855 3.452 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 129.664 6.325 C 129.113 4.718 127.762 3.452 125.902 3.452 C 123.913 3.452 122.635 4.71 122.121 6.309 Z M 122.02 9.319 C 122.447 11.08 123.746 12.488 125.902 12.488 C 127.513 12.488 129.108 11.707 129.993 10.58 L 132.64 12.981 C 131.341 15.002 128.832 15.966 125.905 15.966 C 121.083 15.966 118.187 12.396 118.187 7.99 C 118.187 3.583 121.141 0.01 125.873 0.01 C 130.605 0.01 133.647 3.612 133.647 7.987 C 133.647 8.42 133.636 8.865 133.607 9.314 L 122.02 9.314 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 79.458 8.674 C 79.458 10.54 80.605 12.438 82.916 12.438 C 85.226 12.438 86.395 10.54 86.395 8.674 L 86.395 0.346 L 90.507 0.346 L 90.507 8.671 C 90.507 12.821 87.642 16.024 82.916 16.024 C 78.189 16.024 75.356 12.821 75.356 8.671 L 75.356 0.346 L 79.464 0.346 L 79.464 8.671 L 79.46 8.671 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 112.529 7.363 C 112.529 5.497 111.388 3.599 109.075 3.599 C 106.762 3.599 105.596 5.497 105.596 7.363 L 105.596 15.689 L 101.484 15.689 L 101.484 7.363 C 101.486 3.214 104.351 0.01 109.077 0.01 C 113.804 0.01 116.637 3.214 116.637 7.363 L 116.637 15.689 L 112.529 15.689 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 100.739 3.599 C 98.426 3.599 96.27 5.24 96.27 7.363 L 96.27 15.689 L 92.158 15.689 L 92.158 7.363 C 92.158 3.214 96.012 0.01 100.739 0.01 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 144.966 0.168 L 141.474 9.67 L 137.799 0.168 L 133.504 0.168 L 139.743 14.37 L 139.677 14.546 C 139.018 16.506 136.704 18.467 133.731 17.151 L 132.534 20.535 C 136.993 22.082 141.701 20.323 143.09 16.409 L 149.261 0.168 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 56.354 0 L 56.354 24.03 C 56.354 29.637 52.753 33.728 46.709 33.728 C 41.103 33.726 37.094 30.413 37.094 24.276 L 41.166 24.276 C 41.166 27.993 42.984 29.883 46.709 29.883 C 50.435 29.883 52.22 27.312 52.22 24.027 L 52.22 3.811 L 45.612 3.811 L 45.612 0 Z\" fill=\"rgb(25,45,42)\"></path></svg>',svgContentId:12405451064}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1at52yp framer-lux5qc\",\"data-framer-name\":\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 207 51\"><path d=\"M 31.549 5.663 C 24.359 -1.431 12.662 -1.431 5.469 5.663 C 1.963 9.121 0.02 13.775 0 18.764 C -0.019 23.884 1.959 28.699 5.577 32.324 L 16.708 43.479 C 16.708 43.479 16.725 43.495 16.734 43.502 C 17.225 43.98 17.869 44.22 18.511 44.22 C 19.152 44.22 19.819 43.971 20.313 43.475 L 31.444 32.321 C 35.062 28.696 37.041 23.881 37.021 18.761 C 37.001 13.772 35.058 9.117 31.549 5.659 Z M 30.479 24.999 C 27.476 23.789 23.345 20.832 21.082 16.227 L 15.936 16.227 C 13.912 20.272 10.418 23.399 6.542 24.999 C 5.6 23.156 5.067 21.072 5.067 18.862 C 5.067 11.422 11.086 5.391 18.511 5.391 C 25.936 5.391 31.954 11.422 31.954 18.862 C 31.954 21.075 31.418 23.156 30.479 24.999 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 181.109 37.141 C 181.434 37.347 181.907 37.501 182.514 37.659 C 183.447 37.899 184.365 38.187 185.051 38.68 C 185.712 39.16 186.158 39.836 186.158 40.905 C 186.158 41.782 185.771 42.537 185.092 43.075 C 184.406 43.616 183.409 43.952 182.192 43.952 C 180.605 43.952 179.22 43.418 178.274 42.454 L 179.628 41.231 C 180.324 41.903 181.28 42.232 182.151 42.232 C 182.686 42.232 183.155 42.132 183.505 41.93 C 183.861 41.724 184.108 41.395 184.108 40.97 C 184.108 40.473 183.786 40.168 183.388 39.959 C 183.004 39.76 182.47 39.606 181.87 39.431 C 181.044 39.194 180.18 38.917 179.501 38.375 C 178.911 37.902 178.524 37.251 178.524 36.246 C 178.524 34.635 179.899 33.367 182.069 33.367 C 183.522 33.367 184.609 33.809 185.52 34.591 L 184.211 35.773 C 183.611 35.297 182.867 35.043 182.134 35.043 C 181.726 35.043 181.345 35.143 181.057 35.338 C 180.766 35.537 180.56 35.842 180.56 36.219 C 180.56 36.408 179.919 36.589 180.022 36.75 C 180.122 36.911 180.948 37.038 181.116 37.141 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 174.757 38.752 C 174.462 37.888 173.746 37.206 172.755 37.206 C 171.696 37.206 171.017 37.882 170.743 38.742 L 174.76 38.752 Z M 170.684 40.363 C 170.911 41.313 171.603 42.067 172.751 42.067 C 173.608 42.067 174.459 41.645 174.928 41.039 L 176.34 42.328 C 175.648 43.414 174.315 43.935 172.755 43.935 C 170.187 43.935 168.648 42.012 168.648 39.644 C 168.648 37.275 170.222 35.352 172.741 35.352 C 175.261 35.352 176.882 37.288 176.882 39.644 C 176.882 39.877 176.875 40.117 176.861 40.356 L 170.691 40.356 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 189.065 33.59 L 189.065 43.815 L 186.826 43.815 L 186.826 33.59 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 198.635 34.625 L 198.865 34.855 L 199.091 34.625 C 199.862 33.847 200.994 33.36 202.423 33.36 C 203.853 33.36 204.994 33.854 205.762 34.642 C 206.533 35.434 206.965 36.545 206.965 37.82 L 206.965 43.815 L 204.967 43.815 L 204.967 38.135 C 204.967 37.467 204.764 36.781 204.343 36.257 C 203.914 35.722 203.266 35.369 202.423 35.369 C 201.58 35.369 200.932 35.722 200.497 36.257 C 200.072 36.781 199.862 37.47 199.862 38.135 L 199.862 43.815 L 197.857 43.815 L 197.85 38.135 C 197.85 37.467 197.648 36.781 197.226 36.257 C 196.798 35.722 196.15 35.369 195.307 35.369 C 194.464 35.369 193.816 35.722 193.384 36.257 C 192.959 36.781 192.75 37.47 192.75 38.135 L 192.75 43.815 L 190.748 43.815 L 190.748 37.82 C 190.748 36.545 191.183 35.434 191.958 34.646 C 192.732 33.857 193.864 33.364 195.307 33.364 C 196.75 33.364 197.861 33.85 198.628 34.625 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 157.977 32.784 C 157.977 30.343 156.5 27.862 153.507 27.862 C 150.515 27.862 149.007 30.343 149.007 32.784 L 149.007 43.671 L 143.687 43.671 L 143.687 32.784 C 143.687 27.358 147.392 23.169 153.507 23.169 C 159.623 23.169 163.287 27.358 163.287 32.784 L 163.287 43.671 L 157.974 43.671 L 157.974 32.784 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 95.682 23.392 L 90.674 23.392 L 90.674 24.571 C 89.132 23.68 87.274 23.169 85.172 23.169 C 78.772 23.169 74.786 27.896 74.786 33.638 C 74.786 39.38 78.697 44.103 85.213 44.103 C 87.318 44.103 89.152 43.616 90.674 42.759 L 90.674 43.884 L 95.682 43.884 Z M 85.207 39.541 C 81.58 39.541 79.746 36.692 79.746 33.631 C 79.746 30.57 81.618 27.684 85.207 27.684 C 88.545 27.684 90.664 30.618 90.664 33.631 C 90.664 36.644 88.833 39.541 85.207 39.541 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 141.054 23.392 L 136.046 23.392 L 136.046 24.571 C 134.503 23.68 132.645 23.169 130.544 23.169 C 124.144 23.169 120.157 27.896 120.157 33.638 C 120.157 39.379 124.069 44.103 130.585 44.103 C 132.69 44.103 134.524 43.616 136.046 42.759 L 136.046 43.884 L 141.054 43.884 Z M 130.582 39.541 C 126.955 39.541 125.121 36.692 125.121 33.631 C 125.121 30.57 126.993 27.684 130.582 27.684 C 133.92 27.684 136.039 30.618 136.039 33.631 C 136.039 36.644 134.208 39.541 130.582 39.541 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 108.564 23.169 C 102.247 23.169 98.181 27.831 98.171 33.501 L 98.171 51 L 103.124 51 L 103.124 42.547 C 104.629 43.394 106.443 43.877 108.523 43.877 C 114.971 43.877 118.838 39.242 118.838 33.525 C 118.834 27.845 114.889 23.172 108.561 23.172 Z M 108.527 39.366 C 104.941 39.366 103.128 36.548 103.128 33.521 C 103.128 30.494 105.222 27.639 108.527 27.639 C 112.071 27.639 113.926 30.539 113.926 33.521 C 113.926 36.503 112.109 39.366 108.527 39.366 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 85.159 0 C 91.548 0 95.651 4.72 95.651 10.455 C 95.651 16.19 91.709 20.91 85.197 20.91 C 78.683 20.91 74.783 16.231 74.783 10.455 C 74.783 4.679 78.769 0 85.159 0 Z M 85.2 4.515 C 81.621 4.515 79.75 7.442 79.75 10.455 C 79.75 13.468 81.58 16.354 85.2 16.354 C 88.82 16.354 90.65 13.509 90.65 10.455 C 90.65 7.401 88.535 4.515 85.2 4.515 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 167.753 8.271 C 167.04 6.17 165.292 4.514 162.886 4.514 C 160.312 4.514 158.659 6.16 157.994 8.251 Z M 157.864 12.186 C 158.416 14.49 160.096 16.33 162.886 16.33 C 164.97 16.33 167.034 15.309 168.179 13.835 L 171.603 16.975 C 169.923 19.618 166.677 20.879 162.889 20.879 C 156.651 20.879 152.904 16.21 152.904 10.448 C 152.904 4.686 156.726 0.014 162.848 0.014 C 168.97 0.014 172.906 4.724 172.906 10.445 C 172.906 11.01 172.892 11.593 172.854 12.179 L 157.864 12.179 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 102.799 11.343 C 102.799 13.784 104.283 16.265 107.272 16.265 C 110.261 16.265 111.773 13.784 111.773 11.343 L 111.773 0.452 L 117.093 0.452 L 117.093 11.339 C 117.093 16.766 113.387 20.955 107.272 20.955 C 101.157 20.955 97.492 16.766 97.492 11.339 L 97.492 0.452 L 102.806 0.452 L 102.806 11.339 L 102.802 11.339 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 145.585 9.629 C 145.585 7.188 144.108 4.706 141.116 4.706 C 138.123 4.706 136.615 7.188 136.615 9.629 L 136.615 20.516 L 131.295 20.516 L 131.295 9.629 C 131.298 4.203 135.004 0.014 141.119 0.014 C 147.234 0.014 150.899 4.203 150.899 9.629 L 150.899 20.516 L 145.585 20.516 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 130.331 4.706 C 127.339 4.706 124.549 6.852 124.549 9.629 L 124.549 20.516 L 119.229 20.516 L 119.229 9.629 C 119.229 4.203 124.216 0.014 130.331 0.014 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 187.55 0.219 L 183.032 12.645 L 178.277 0.219 L 172.721 0.219 L 180.793 18.792 L 180.707 19.021 C 179.854 21.585 176.861 24.149 173.015 22.429 L 171.466 26.854 C 177.235 28.876 183.326 26.576 185.123 21.459 L 193.106 0.219 Z\" fill=\"rgb(25,45,42)\"></path><path d=\"M 72.908 0 L 72.908 31.423 C 72.908 38.756 68.249 44.106 60.43 44.106 C 53.177 44.103 47.99 39.77 47.99 31.746 L 53.259 31.746 C 53.259 36.606 55.611 39.078 60.43 39.078 C 65.25 39.078 67.56 35.715 67.56 31.42 L 67.56 4.984 L 59.011 4.984 L 59.011 0 Z\" fill=\"rgb(25,45,42)\"></path></svg>',svgContentId:11203366813,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-bln7x5\",\"data-framer-appear-id\":\"bln7x5\",\"data-framer-name\":\"nav-right\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+0+0+22.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1161f4g-container\",nodeId:\"YjRvqRMva\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavList,{height:\"100%\",id:\"YjRvqRMva\",layoutId:\"YjRvqRMva\",variant:\"yatWKKulN\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddnkgh\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sw4vhi\",\"data-framer-name\":\"hero-text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-bcqzjy\",\"data-styles-preset\":\"OMISeQdgF\",children:\"Stay Connected in Japan\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1tfpnkg\",\"data-styles-preset\":\"fqRMIBKNl\",children:\"Stay Connected in Japan\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-buw45w\",\"data-styles-preset\":\"ZLLCpIOIc\",children:\"Stay Connected in Japan\"})}),className:\"framer-13f9vvb\",\"data-framer-appear-id\":\"13f9vvb\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",children:\"With Journey Japan eSIM, enjoy stress-free travel and fast, reliable data on Japan\u2019s top network.\"})}),className:\"framer-3rklwf\",\"data-framer-appear-id\":\"3rklwf\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+135+120+0+0+241},lnAMMi6wa:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+80+0+10+239.5+0+231},UNuwbcT5o:{y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+135+0+264+0+231}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+0+0+135+0+324+0+251,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-4f1bdb-container\",\"data-framer-appear-id\":\"4f1bdb\",initial:animation4,nodeId:\"voyoCt1Lv\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{Pa0hNWdfl:resolvedLinks[1]},lnAMMi6wa:{Pa0hNWdfl:resolvedLinks[2]},UNuwbcT5o:{Pa0hNWdfl:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"rgb(199, 221, 220)\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Get Your eSIM Now\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"voyoCt1Lv\",layoutId:\"voyoCt1Lv\",Pa0hNWdfl:resolvedLinks[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\"},variant:\"d5hwHDW83\",width:\"100%\"})})})})})})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zi4u2b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Best 30-Day \",/*#__PURE__*/_jsx(\"br\",{}),\"Japan eSIM Plans\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",children:\"Best 30-Day Japan eSIM Plans\"})}),className:\"framer-1m65kg\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tuib81\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mpk14n\",\"data-border\":true,\"data-framer-name\":\"pricing-card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w89u9n\",\"data-framer-name\":\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18nt202\",\"data-framer-name\":\"Frame 401\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eh5xux\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zfjgsq\",\"data-framer-name\":\"Frame 400\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ikwwb2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3pweb1\",\"data-framer-name\":\"Frame 398\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"10GB Data\"})}),className:\"framer-pqn9ph\",\"data-framer-name\":\"10 GB\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w9hvcd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b2c2b84-8b02-4d22-a69c-c42458a7cab2, rgb(114, 120, 119))\"},children:\"Coverage: 30 days\"})}),className:\"framer-1uy1qkh\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10uei2d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w15psa\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhmkvv\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5zq3f\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1um1wrf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i81tp9\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oz7tub\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3bii1w\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10mieta\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9i6h5\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13pswo2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzp0xz\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lixxrt\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzb5li\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ur949\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1po9jy3\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t4i2nf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b2c2b84-8b02-4d22-a69c-c42458a7cab2, rgb(114, 120, 119))\"},children:\"4.72\"})}),className:\"framer-1qdy8fa\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b76dvc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4grfx\",\"data-framer-name\":\"Frame 399\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"USD\"})}),className:\"framer-1835yr7\",\"data-framer-name\":\"$17\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"$19\"})}),className:\"framer-21rrmf\",\"data-framer-name\":\"$17\",fonts:[\"FS;Poppins-extrabold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(114, 120, 119)\",\"--framer-text-decoration\":\"line-through\"},children:\"$28\"})}),className:\"framer-g0lhmh\",\"data-framer-name\":\"$20\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3jw1gr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"$1.90 per GB\"})}),className:\"framer-ckqcuv\",\"data-framer-name\":\"of data\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:`max(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+30+70+0+30+30+0+386},lnAMMi6wa:{width:\"280px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+62+0+0+30+0+386},UNuwbcT5o:{y:(componentViewport?.y||0)+0+0+0+0+0+910+0+70+0+20+30+0+386}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"260px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+70+0+20+30+0+386,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11g8zo2-container\",nodeId:\"ntvTgeOIY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Buy Now\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"ntvTgeOIY\",layoutId:\"ntvTgeOIY\",Pa0hNWdfl:\"https://order.jjesim.com/product-review?esim=10\",qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"Hp1qGjazE\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bt2iae\",\"data-border\":true,\"data-framer-name\":\"pricing-card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lzhc3j\",\"data-framer-name\":\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110vw83\",\"data-framer-name\":\"Frame 401\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgs584\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jol169\",\"data-framer-name\":\"Frame 400\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8iqs7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6l6yu\",\"data-framer-name\":\"Frame 398\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"20GB Data\"})}),className:\"framer-uu3yvj\",\"data-framer-name\":\"10 GB\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p790kf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\"},children:\"Coverage: 30 days\"})}),className:\"framer-dedbzb\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yi05u9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f0xd56\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ipeg8\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4rz5z4\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lqikj3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14o8rms\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xcoot6\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-szg7n3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htqjd1\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-57eck4\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rynq4b\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1nmk4\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h8kfr3\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f364z5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ttaqgo\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ukefu9\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j2bqpv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\"},children:\"4.89\"})}),className:\"framer-1p2is28\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3f52i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111x7mx\",\"data-framer-name\":\"Frame 399\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"USD\"})}),className:\"framer-133o9a5\",\"data-framer-name\":\"$17\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"$29\"})}),className:\"framer-12kzino\",\"data-framer-name\":\"$17\",fonts:[\"FS;Poppins-extrabold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",\"--framer-text-decoration\":\"line-through\"},children:\"$36\"})}),className:\"framer-f4wlxq\",\"data-framer-name\":\"$20\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10r1pcc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"$1.45 per GB\"})}),className:\"framer-1id6k8h\",\"data-framer-name\":\"of data\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:`max(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+30+70+0+0+60+0+386},lnAMMi6wa:{width:\"280px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+62+0+529+60+0+386},UNuwbcT5o:{y:(componentViewport?.y||0)+0+0+0+0+0+910+0+70+0+0+50+0+386}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"260px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+70+0+0+50+0+386,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2n3cv0-container\",nodeId:\"E0N10Sm8W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Buy Now\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"E0N10Sm8W\",layoutId:\"E0N10Sm8W\",Pa0hNWdfl:\"https://order.jjesim.com/product-review?esim=20\",qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"z36ejN6mX\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h82dex\",\"data-framer-name\":\"label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(69, 122, 120)\"},children:\"Bestseller\"})}),className:\"framer-1yvbm80\",\"data-framer-name\":\"Recommended\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vf08ei\",\"data-border\":true,\"data-framer-name\":\"pricing-card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4f7rt\",\"data-framer-name\":\"Frame 402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10teogf\",\"data-framer-name\":\"Frame 401\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s2k4cc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j3nux1\",\"data-framer-name\":\"Frame 400\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-129m29k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11by9am\",\"data-framer-name\":\"Frame 398\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"50GB Data\"})}),className:\"framer-jmvdyw\",\"data-framer-name\":\"10 GB\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-carkd5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b2c2b84-8b02-4d22-a69c-c42458a7cab2, rgb(114, 120, 119))\"},children:\"Coverage: 30 days\"})}),className:\"framer-btflre\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sc01h0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3d5l4\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3ewf1\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eoukil\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nw24jv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exraja\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i3ni8\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m27q5s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eke36l\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kqo5dw\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pm0wgg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2tr1d8\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16aitn9\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m090jq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aaxf87\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ssbw8\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bkl48g\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b2c2b84-8b02-4d22-a69c-c42458a7cab2, rgb(114, 120, 119))\"},children:\"4.81\"})}),className:\"framer-1ouvmse\",\"data-framer-name\":\"Coverage: 30 days\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5hibl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdsgsh\",\"data-framer-name\":\"Frame 399\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"USD\"})}),className:\"framer-15wdve5\",\"data-framer-name\":\"$17\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1leHRyYWJvbGQ=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"$49\"})}),className:\"framer-1p8udm2\",\"data-framer-name\":\"$17\",fonts:[\"FS;Poppins-extrabold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(114, 120, 119)\",\"--framer-text-decoration\":\"line-through\"},children:\"$64\"})}),className:\"framer-1ph1dd2\",\"data-framer-name\":\"$20\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lid5aj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"$0.98 per GB\"})}),className:\"framer-12md5ar\",\"data-framer-name\":\"of data\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:`max(max((${componentViewport?.width||\"100vw\"} - 80px) / 3, 1px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1e3+30+70+0+30+30+0+386},lnAMMi6wa:{width:\"280px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+62+0+1088+30+0+386},UNuwbcT5o:{y:(componentViewport?.y||0)+0+0+0+0+0+910+0+70+0+20+30+0+386}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"260px\",y:(componentViewport?.y||0)+0+0+0+0+0+1e3+0+70+0+20+30+0+386,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iw2dao-container\",nodeId:\"Q_EqU5wZB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Buy Now\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"Q_EqU5wZB\",layoutId:\"Q_EqU5wZB\",Pa0hNWdfl:\"https://order.jjesim.com/product-review?esim=50\",qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"Hp1qGjazE\",width:\"100%\"})})})})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hfd3q4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6sut6\",\"data-framer-name\":\"USPs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11umr0g\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w3kafi\",\"data-framer-name\":\"laurel-left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:201,intrinsicWidth:159,svg:'<svg width=\"159\" height=\"201\" viewBox=\"0 0 159 201\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M53.1842 52.413C50.6255 48.382 47.2778 41.3811 48.5693 33.2756C48.9558 30.738 49.7149 28.1242 50.5834 25.5398C51.86 20.7757 55.1501 14.849 57.8944 10.3021C59.8191 7.0616 61.1873 5.02187 61.1873 5.02187C63.6494 7.44233 66.957 14.3738 67.8426 18.9543C70.4953 32.9293 66.962 46.7729 55.8604 56.006C54.9266 55.1102 53.986 53.8017 53.1842 52.413ZM48.9471 86.8447C48.9471 86.8447 47.9066 86.5659 46.2248 85.1762C43.2914 82.9816 40.3629 79.6732 39.2405 77.7291C37.5969 74.8824 36.2164 71.93 35.0735 68.7479C32.6078 63.2745 32.0665 57.8473 32.463 53.0821L32.4747 52.381C32.6708 47.2686 33.6782 44.604 35.245 41.385C36.3513 38.5707 37.3684 36.9651 37.3684 36.9651C40.6901 38.1486 45.8831 44.1767 47.2246 46.1795C49.5028 49.7245 51.3067 52.849 52.6557 57.671C53.9031 61.9963 54.4014 66.7078 53.9864 71.7614C53.6271 75.9496 51.6932 83.8243 49.0165 86.8046L48.9471 86.8447ZM52.5537 118.507C52.5537 118.507 39.6497 117.162 30.5204 104.797C25.9082 98.5724 24.6464 91.0152 24.5951 85.0737L24.5883 84.661C24.4301 82.6231 25.0739 78.6872 24.8892 77.4052L25.5641 74.8862C40.0755 78.7745 49.8484 90.4903 52.6811 103.575C53.513 107.26 54.1363 114.353 52.5684 118.452L52.5537 118.507ZM26.5571 114.769C26.5571 114.769 26.3721 129.04 40.8761 139.089C44.2143 141.744 47.8088 143.881 51.2361 145.328C54.8825 146.833 63.2579 148.432 66.3892 147.04C66.1138 142.154 64.0264 137.897 62.4201 134.473C56.9049 123.077 41.4982 113.549 26.6667 114.798L26.5571 114.769ZM40.9032 153.006C40.8886 153.061 42.9078 165.458 61.49 170.143C66.2062 171.818 71.1492 173.084 75.9369 172.958L76.0611 172.933C77.4634 172.956 78.6065 172.852 79.7389 172.568C83.1176 172.006 85.4196 170.862 88.5831 170.008C87.9692 167.261 83.8782 161.939 81.1277 159.5C77.5782 156.319 74.1666 153.937 69.0858 151.871C58.5955 147.652 48.3472 148.662 40.6011 152.162C40.6011 152.162 40.7722 152.619 40.9032 153.006ZM106.784 190.79C103.226 192.243 98.7256 193.268 93.1859 193.133C88.1792 193.2 82.5339 192.803 77.409 190.901C75.7007 190.267 73.6825 189.257 71.7777 188.042C67.6864 186.007 65.4248 183.934 65.9079 183.007C67.3495 180.693 74.2047 177.013 76.5028 176.103C85.5563 172.542 95.5591 172.229 105.068 175.951C111.926 178.61 115.719 182.855 116.89 183.521L116.67 184.342C113.859 187.169 110.591 189.287 106.799 190.735L106.784 190.79Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34fu3d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rgq7wn\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"5,000+\"}),/*#__PURE__*/_jsx(\"br\",{}),\"travelers\"]})}),className:\"framer-9xngaj hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[\"Trusted by   \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"29px\"},children:\"5,000+  \"}),\"travelers\"]})}),fonts:[\"GF;Poppins-800\"]},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Trusted by\"})}),fonts:[\"GF;Poppins-800\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[\"Trusted by    \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"5,000+\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"   \"}),\"travelers\"]})}),className:\"framer-12f53ao\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cbsgnn\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hnmagl\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19zyyzt\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s4px8n\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbwhpm\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mz67ic\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-md32z4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1il25vk\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7rhr6\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xd2tf4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i487cy\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s0cwye\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-47nng5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btl8h6\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1og6tgc\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15bs0de\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"27\" viewBox=\"0 0 28 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.2862 12.3563L21.6612 17.21L23.3749 24.4688C23.4695 24.8628 23.4451 25.2761 23.305 25.6563C23.1648 26.0365 22.9151 26.3666 22.5873 26.605C22.2596 26.8433 21.8686 26.9792 21.4637 26.9955C21.0588 27.0117 20.6582 26.9076 20.3124 26.6963L13.9999 22.8113L7.68367 26.6963C7.33796 26.9064 6.9378 27.0095 6.5336 26.9927C6.12939 26.9758 5.7392 26.8398 5.41217 26.6016C5.08514 26.3634 4.83589 26.0339 4.6958 25.6543C4.55571 25.2748 4.53105 24.8623 4.62492 24.4688L6.34492 17.21L0.719922 12.3563C0.414045 12.0919 0.192828 11.7433 0.0839002 11.354C-0.0250279 10.9646 -0.0168401 10.5518 0.107441 10.1671C0.231722 9.78242 0.466588 9.44284 0.782708 9.19082C1.09883 8.93879 1.48219 8.78549 1.88492 8.75004L9.25992 8.15504L12.1049 1.27004C12.2589 0.894813 12.521 0.573852 12.8579 0.347964C13.1948 0.122076 13.5912 0.00146484 13.9968 0.00146484C14.4024 0.00146484 14.7988 0.122076 15.1357 0.347964C15.4726 0.573852 15.7347 0.894813 15.8887 1.27004L18.7324 8.15504L26.1074 8.75004C26.511 8.78417 26.8954 8.93662 27.2127 9.1883C27.53 9.43997 27.7659 9.77968 27.891 10.1649C28.016 10.55 28.0246 10.9636 27.9157 11.3536C27.8068 11.7436 27.5852 12.0929 27.2787 12.3575L27.2862 12.3563Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l9e82z\",\"data-framer-name\":\"laurel-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:201,intrinsicWidth:159,svg:'<svg width=\"159\" height=\"201\" viewBox=\"0 0 159 201\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.64 52.413C108.199 48.382 111.546 41.3811 110.255 33.2756C109.868 30.738 109.109 28.1242 108.241 25.5398C106.964 20.7757 103.674 14.849 100.93 10.3021C99.0051 7.06161 97.6369 5.02187 97.6369 5.02187C95.1748 7.44233 91.8672 14.3738 90.9817 18.9543C88.3289 32.9293 91.8622 46.7729 102.964 56.006C103.898 55.1102 104.838 53.8017 105.64 52.413ZM109.877 86.8447C109.877 86.8447 110.918 86.5659 112.599 85.1762C115.533 82.9816 118.461 79.6732 119.584 77.7291C121.227 74.8824 122.608 71.93 123.751 68.7479C126.216 63.2745 126.758 57.8473 126.361 53.0821L126.349 52.381C126.153 47.2686 125.146 44.604 123.579 41.385C122.473 38.5707 121.456 36.9651 121.456 36.9651C118.134 38.1486 112.941 44.1767 111.6 46.1795C109.321 49.7245 107.518 52.849 106.168 57.671C104.921 61.9963 104.423 66.7078 104.838 71.7614C105.197 75.9496 107.131 83.8243 109.808 86.8046L109.877 86.8447ZM106.271 118.507C106.271 118.507 119.174 117.162 128.304 104.797C132.916 98.5724 134.178 91.0153 134.229 85.0737L134.236 84.661C134.394 82.6231 133.75 78.6872 133.935 77.4052L133.26 74.8862C118.749 78.7745 108.976 90.4903 106.143 103.575C105.311 107.26 104.688 114.353 106.256 118.452L106.271 118.507ZM132.267 114.769C132.267 114.769 132.452 129.04 117.948 139.089C114.61 141.744 111.015 143.881 107.588 145.328C103.942 146.833 95.5663 148.432 92.435 147.04C92.7104 142.154 94.7978 137.897 96.4041 134.473C101.919 123.077 117.326 113.549 132.158 114.798L132.267 114.769ZM117.921 153.006C117.936 153.061 115.916 165.458 97.3342 170.143C92.6181 171.818 87.675 173.084 82.8873 172.958L82.7631 172.933C81.3608 172.956 80.2177 172.852 79.0853 172.568C75.7067 172.006 73.4046 170.862 70.2411 170.008C70.855 167.261 74.946 161.939 77.6966 159.5C81.246 156.319 84.6576 153.937 89.7384 151.871C100.229 147.652 110.477 148.662 118.223 152.162C118.223 152.162 118.052 152.619 117.921 153.006ZM52.0397 190.79C55.5984 192.243 60.0986 193.268 65.6383 193.133C70.645 193.2 76.2903 192.803 81.4152 190.901C83.1235 190.267 85.1417 189.257 87.0465 188.042C91.1378 186.007 93.3994 183.934 92.9163 183.007C91.4747 180.693 84.6195 177.013 82.3214 176.103C73.2679 172.542 63.2651 172.229 53.7566 175.951C46.898 178.61 43.1052 182.855 41.9337 183.521L42.1538 184.342C44.9655 187.169 48.2327 189.287 52.0251 190.735L52.0397 190.79Z\" fill=\"#F2BA22\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-169puy4\",\"data-framer-name\":\"Rectangle 76\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bj3g14\",\"data-framer-name\":\"USPs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqgcgr\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ywih1t\",\"data-framer-name\":\"item-2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r9flhk\",\"data-framer-name\":\"Group 385\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-irqpym\",\"data-framer-name\":\"Group 379\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zgdjxy\",\"data-framer-name\":\"Ellipse 2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n76umd\",\"data-framer-name\":\"Lightning\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14p91i0\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1190a24\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"30\" viewBox=\"-1 -1 22 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14 0L12 10L20 13L6 28L8 18L0 15L14 0Z\" stroke=\"#FF4027\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yza7h\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Fastest Internet Speeds\"})}),className:\"framer-nq8gh6\",\"data-framer-name\":\"Best Data Coverage\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:\"Experience lightning-fast 4G/5G data speeds on Japan\u2019s private, high-performance network. No slowdowns. No throttling.\"})}),className:\"framer-ws69dz\",\"data-framer-name\":\"Travel under the largest network in Japan covering from Hokkaido down to Okinawa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pe217k\",\"data-framer-name\":\"item-1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14n6cyk\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12ok7g7\",\"data-framer-name\":\"icon-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"100\" viewBox=\"0 0 100 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"50\" cy=\"50\" r=\"50\" fill=\"#DAF2F1\"/>\\n<g clip-path=\"url(#clip0_6476_3126)\">\\n<path d=\"M48.3335 50C48.3335 50.4421 48.5091 50.866 48.8217 51.1786C49.1342 51.4911 49.5581 51.6667 50.0002 51.6667C50.4422 51.6667 50.8661 51.4911 51.1787 51.1786C51.4912 50.866 51.6668 50.4421 51.6668 50C51.6668 49.558 51.4912 49.1341 51.1787 48.8215C50.8661 48.509 50.4422 48.3334 50.0002 48.3334C49.5581 48.3334 49.1342 48.509 48.8217 48.8215C48.5091 49.1341 48.3335 49.558 48.3335 50Z\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.6935 53.2066C58.2214 51.9402 58.4285 50.5631 58.2964 49.1974C58.1643 47.8317 57.697 46.5198 56.936 45.3782C56.1751 44.2365 55.144 43.3003 53.9343 42.6529C52.7246 42.0054 51.3738 41.6666 50.0018 41.6666C48.6298 41.6666 47.2789 42.0054 46.0693 42.6529C44.8596 43.3003 43.8285 44.2365 43.0676 45.3782C42.3066 46.5198 41.8393 47.8317 41.7072 49.1974C41.5751 50.5631 41.7822 51.9402 42.3101 53.2066\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M63.8449 55.7817C64.7948 53.5022 65.1672 51.0235 64.9291 48.5655C64.6911 46.1075 63.8498 43.7463 62.48 41.6916C61.1102 39.6368 59.2544 37.952 57.0771 36.7867C54.8998 35.6214 52.4685 35.0117 49.999 35.0117C47.5295 35.0117 45.0982 35.6214 42.921 36.7867C40.7437 37.952 38.8878 39.6368 37.518 41.6916C36.1483 43.7463 35.307 46.1075 35.0689 48.5655C34.8308 51.0235 35.2033 53.5022 36.1532 55.7817\" stroke=\"#FF4027\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M45 65L50 50L55 65\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M46.6665 61.6666H53.3332\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6476_3126\">\\n<rect width=\"40\" height=\"40\" fill=\"white\" transform=\"translate(30 30)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdx5m4\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Best Data Coverage\"})}),className:\"framer-14ttf42\",\"data-framer-name\":\"30-Day Plans\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:\"Enjoy 30 days of reliable, uninterrupted data connection with 99% coverage across all of Japan\u2019s 47 prefectures.\"})}),className:\"framer-okz4yt\",\"data-framer-name\":\"Stay connected while you travel across Japan\u2019s 47 prefectures with all eSIM plans valid for 30 days\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rjuthm\",\"data-framer-name\":\"item-3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ytipf9\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3fvwxg\",\"data-framer-name\":\"icon-3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 100\"><path d=\"M 0 50 C 0 22.386 22.386 0 50 0 C 77.614 0 100 22.386 100 50 C 100 77.614 77.614 100 50 100 C 22.386 100 0 77.614 0 50 Z\" fill=\"rgb(218,242,241)\"></path><g transform=\"translate(30 30)\"><path d=\"M 0 40 L 0 0 L 40 0 L 40 40 Z\" fill=\"transparent\"></path><path d=\"M 6.666 8.333 C 6.666 7.891 6.842 7.467 7.155 7.155 C 7.467 6.842 7.891 6.667 8.333 6.667 L 15 6.667 C 15.442 6.667 15.866 6.842 16.178 7.155 C 16.491 7.467 16.666 7.891 16.666 8.333 L 16.666 15 C 16.666 15.442 16.491 15.866 16.178 16.178 C 15.866 16.491 15.442 16.667 15 16.667 L 8.333 16.667 C 7.891 16.667 7.467 16.491 7.155 16.178 C 6.842 15.866 6.666 15.442 6.666 15 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.666 28.333 L 11.666 28.35\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 23.334 8.333 C 23.334 7.891 23.509 7.467 23.822 7.155 C 24.134 6.842 24.558 6.667 25 6.667 L 31.667 6.667 C 32.109 6.667 32.533 6.842 32.845 7.155 C 33.158 7.467 33.334 7.891 33.334 8.333 L 33.334 15 C 33.334 15.442 33.158 15.866 32.845 16.178 C 32.533 16.491 32.109 16.667 31.667 16.667 L 25 16.667 C 24.558 16.667 24.134 16.491 23.822 16.178 C 23.509 15.866 23.334 15.442 23.334 15 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.666 11.667 L 11.666 11.683\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 6.666 25 C 6.666 24.558 6.842 24.134 7.155 23.822 C 7.467 23.509 7.891 23.333 8.333 23.333 L 15 23.333 C 15.442 23.333 15.866 23.509 16.178 23.822 C 16.491 24.134 16.666 24.558 16.666 25 L 16.666 31.667 C 16.666 32.109 16.491 32.533 16.178 32.845 C 15.866 33.158 15.442 33.333 15 33.333 L 8.333 33.333 C 7.891 33.333 7.467 33.158 7.155 32.845 C 6.842 32.533 6.666 32.109 6.666 31.667 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 28.334 11.667 L 28.334 11.683\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(25,45,42)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 23.334 23.333 L 28.334 23.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 33.334 23.333 L 33.334 23.35\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 23.334 23.333 L 23.334 28.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 23.334 33.333 L 28.334 33.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 28.334 28.333 L 33.334 28.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 33.334 28.333 L 33.334 33.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255,64,39)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:12163332678,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebxf92\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Worry-Free Setup\"})}),className:\"framer-1642z11\",\"data-framer-name\":\"Easy Installation\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:\"Quick & easy activation. Get your code by email in minutes, and connect instantly with just a few clicks.\"})}),className:\"framer-siz5tf\",\"data-framer-name\":\"Worry-free setup with a QR code sent to you within minutes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bd3pu3\",\"data-framer-name\":\"Rectangle 76\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ax8gh5\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-132ff1g-container\",isModuleExternal:true,nodeId:\"yX8WM2m5g\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{z:-70},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"yX8WM2m5g\",isMixedBorderRadius:false,isRed:true,layoutId:\"yX8WM2m5g\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=KPWJClQQGp0\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r3onbc\",\"data-framer-name\":\"heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"left\"},children:\"What is Journey Japan eSIM?\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"What is Journey Japan eSIM?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-em077t\",\"data-styles-preset\":\"LdR1OWvz4\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"What is Journey Japan eSIM?\"})}),className:\"framer-s18oos\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:\"Stay connected across Japan with Journey Japan eSIM, the fastest, most reliable digital SIM designed by travelers, for travelers. Enjoy a private dedicated connection, 99% nationwide coverage, and instant activation, all without the need for a physical SIM card.\"})}),className:\"framer-q45m27\",\"data-framer-name\":\"Travel under the largest network in Japan covering from Hokkaido down to Okinawa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msrqev\",\"data-framer-name\":\"How It Works\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tjo9ra\",\"data-framer-name\":\"container-fluid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"Shrine Torii in a forest in Japan\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2956+0+0+0),pixelHeight:710,pixelWidth:2680,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg\",srcSet:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg 2680w\"}},lnAMMi6wa:{background:{alt:\"Shrine Torii in a forest in Japan\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+0+0+0),pixelHeight:310,pixelWidth:706,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,src:\"https://framerusercontent.com/images/JLjjCHQkvIb4UtlTiHsT4tFBtlc.jpg\",srcSet:\"https://framerusercontent.com/images/JLjjCHQkvIb4UtlTiHsT4tFBtlc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JLjjCHQkvIb4UtlTiHsT4tFBtlc.jpg 706w\"}},UNuwbcT5o:{background:{alt:\"Traditional Japanese torii gate surrounded by misty forest, symbolizing Japan's cultural heritage\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2616+0+0+0),pixelHeight:710,pixelWidth:2680,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg\",srcSet:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg 2680w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Shrine Torii in a forest in Japan\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2706+0+0+0),pixelHeight:710,pixelWidth:2680,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,src:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg\",srcSet:\"https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0ET9r2JXsqySSPl9LtRd7SZemIk.jpeg 2680w\"},className:\"framer-b960dr\",\"data-framer-name\":\"banner\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w9zwdr hidden-1rsygn9\",\"data-framer-name\":\"column-left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How does Journey Japan eSIM work? \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-em077t\",\"data-styles-preset\":\"LdR1OWvz4\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How does Journey Japan eSIM work? \"})}),className:\"framer-1q86eao\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wo2q67 hidden-1rsygn9\",\"data-framer-name\":\"column-right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"Japanese snow monkey sitting and eating, representing Japan's unique wildlife\",fit:\"fill\",intrinsicHeight:329.5,intrinsicWidth:364,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2956+0+0+0+0+0+0),pixelHeight:659,pixelWidth:728,sizes:\"287.2231px\",src:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png 728w\"}},UNuwbcT5o:{background:{alt:\"Japanese snow monkey sitting and eating, representing Japan's unique wildlife\",fit:\"fill\",intrinsicHeight:329.5,intrinsicWidth:364,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2616+0+0+0+0+0+0),pixelHeight:659,pixelWidth:728,sizes:\"353.5053px\",src:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png 728w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Japanese snow monkey sitting and eating, representing Japan's unique wildlife\",fit:\"fill\",intrinsicHeight:329.5,intrinsicWidth:364,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2706+0+0+0+0+0+0),pixelHeight:659,pixelWidth:728,sizes:\"353.5053px\",src:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png 728w\"},className:\"framer-18ta99p\",\"data-framer-name\":\"home-sticker-1\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnAMMi6wa:{background:{alt:\"Japanese snow monkey sitting and eating, representing Japan's unique wildlife\",fit:\"fill\",intrinsicHeight:329.5,intrinsicWidth:364,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4522+0+0+0),pixelHeight:659,pixelWidth:728,sizes:\"221px\",src:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png 728w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Japanese snow monkey sitting and eating, representing Japan's unique wildlife\",fit:\"fill\",intrinsicHeight:329.5,intrinsicWidth:364,pixelHeight:659,pixelWidth:728,src:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9h0QiMoemb3cMxKhvrE1cLkcM.png 728w\"},className:\"framer-12z5htt hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"home_sticker_1\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c19my0 hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"section-title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"How does Journey Japan eSIM work? \"})}),className:\"framer-1i0znoq\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kx9xyz\",\"data-framer-name\":\"container-fluid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1buugz2\",\"data-framer-name\":\"how-it-works-detail\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16vlz6a\",\"data-framer-name\":\"how-item-1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0ed3f\",\"data-framer-name\":\"Frame 362\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-92e1vo\",\"data-framer-name\":\"Frame 361\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p3tirv\",\"data-framer-name\":\"Frame 360\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"1\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"1\"})})},UNuwbcT5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"1\"})}),className:\"framer-1myytps\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1izvw76\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yvx3ib\",\"data-framer-name\":\"Frame 360\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"Check Your Device Compatibility\"})}),className:\"framer-1q4j7zt\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Make sure your phone is unlocked and eSIM-compatible. Check below to confirm your device.\"})}),className:\"framer-145ivit\",\"data-framer-name\":\"Your phone must be able to use eSIMs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined},{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined},{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined},{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:\"656px\",y:(componentViewport?.y||0)+0+2956+0+300+0+0+0+30+0+212},lnAMMi6wa:{width:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+4522+0+252+0+0+0+30+0+274},UNuwbcT5o:{width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+2616+0+480+0+0+40+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+2706+0+380+0+0+30+0+372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgwbv6-container\",nodeId:\"LLq88FGtE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{Pa0hNWdfl:resolvedLinks1[1]},lnAMMi6wa:{Pa0hNWdfl:resolvedLinks1[2]},UNuwbcT5o:{Pa0hNWdfl:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Check Compatibility\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"LLq88FGtE\",layoutId:\"LLq88FGtE\",Pa0hNWdfl:resolvedLinks1[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"cwmEfZ_pl\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wouwex\",\"data-framer-name\":\"how-item-2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oz1nxd\",\"data-framer-name\":\"Frame 366\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10cb84m\",\"data-framer-name\":\"Frame 365\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wbiopj\",\"data-framer-name\":\"Frame 360\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"2\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"2\"})})},UNuwbcT5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"2\"})}),className:\"framer-15n4p1k\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-696sh9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tqvmnq\",\"data-framer-name\":\"Frame 364\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"Buy Your eSIM\"})}),className:\"framer-1eq84rc\",\"data-framer-name\":\"Check your trip start date and buy your data plan.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Get the plan that best suits you! \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Our plans are made specifically for Japan travelers, all with data coverage valid for 30 days.\"})]}),className:\"framer-7uc5f8\",\"data-framer-name\":\"You can select when to activate your eSIM within 14 days from the purchase date.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:`max(max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+2956+0+300+0+0+333+30+0+452},lnAMMi6wa:{width:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+4522+0+252+0+0+70+30+0+514},UNuwbcT5o:{width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+2616+0+480+0+0+40+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+2706+0+380+0+0+30+0+372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xsmr1l-container\",nodeId:\"M17vR8__n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{Pa0hNWdfl:resolvedLinks2[1]},lnAMMi6wa:{Pa0hNWdfl:resolvedLinks2[2]},UNuwbcT5o:{Pa0hNWdfl:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"View Data Plans\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"M17vR8__n\",layoutId:\"M17vR8__n\",Pa0hNWdfl:resolvedLinks2[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"Hp1qGjazE\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s17992\",\"data-framer-name\":\"how-item-4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10f9oa0\",\"data-framer-name\":\"Frame 373\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-af4wmu\",\"data-framer-name\":\"Frame 372\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn56tf\",\"data-framer-name\":\"Frame 360\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"3\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"3\"})})},UNuwbcT5o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"3\"})}),className:\"framer-1ktozp1\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3gquqb\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7wc7t\",\"data-framer-name\":\"Frame 371\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"Activate and Enjoy!\"})}),className:\"framer-kpb9rx\",\"data-framer-name\":\"Enjoy your journey in Japan.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Receive your code via email after your purchase. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Once installed, activate your eSIM and connect automatically after arrival.\"})]}),className:\"framer-11alfay\",\"data-framer-name\":\"When you land, your phone will automatically connect to the network so you can focus on more important matters like going to your hotel and indulging in the finest sushi.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:`max(max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+2956+0+300+0+0+906+30+0+352},lnAMMi6wa:{width:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+4522+0+252+0+0+140+30+0+414},UNuwbcT5o:{width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+2616+0+480+0+0+40+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(max((max(${componentViewport?.width||\"100vw\"} - 100px, 1px) - 2px) / 3, 1px) - 54px, 1px)`,y:(componentViewport?.y||0)+0+2706+0+380+0+0+30+0+372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yp521i-container\",nodeId:\"j_SFDQ0Sm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{Pa0hNWdfl:resolvedLinks3[1]},lnAMMi6wa:{Pa0hNWdfl:resolvedLinks3[2]},UNuwbcT5o:{Pa0hNWdfl:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Get Your eSIM Now\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"j_SFDQ0Sm\",layoutId:\"j_SFDQ0Sm\",Pa0hNWdfl:resolvedLinks3[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"d5hwHDW83\",width:\"100%\"})})})})})})]})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"Beautiful mountain range in Japan shot from top of mountain overlooking valleys and town below, highlighting the conenction and data coverage of our eSIM\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4694),pixelHeight:1592,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg\",srcSet:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg 2880w\"}},lnAMMi6wa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7652),pixelHeight:1592,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg\",srcSet:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg 2880w\"}},UNuwbcT5o:{background:{alt:\"Beautiful mountain range in Japan shot from top of mountain overlooking valleys and town below, highlighting the conenction and data coverage of our eSIM\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3688),pixelHeight:1592,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg\",srcSet:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3678),pixelHeight:1592,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg\",srcSet:\"https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q1pV92nqJgfw5cYFFb6D5M87Yk.jpeg 2880w\"},className:\"framer-1i5bfs4\",\"data-framer-name\":\"Benefits\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nm2w2 hidden-w71ttr hidden-1rsygn9\",\"data-framer-name\":\"em-traveler\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UNuwbcT5o:{background:{alt:\"A traveler capturing the autumn foliage in Japan with a camera, enjoying a seamless journey with a reliable eSIM.\",fit:\"fill\",intrinsicHeight:553,intrinsicWidth:452,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3688+746-531.5+532-503),pixelHeight:1106,pixelWidth:904,sizes:\"435px\",src:\"https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png?scale-down-to=1024 836w,https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png 904w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:553,intrinsicWidth:452,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3678+746-531.5+532-503),pixelHeight:1106,pixelWidth:904,sizes:\"435px\",src:\"https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png?scale-down-to=1024 836w,https://framerusercontent.com/images/x1fgPqcpT0Jsz4I1tx4HK5LppM.png 904w\"},className:\"framer-ihx5ut\",\"data-framer-name\":\"home_traveler_1_2x\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfx0kt\",\"data-framer-name\":\"container\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jk76f hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"Reliable. Speedy. Affordable.\"})}),className:\"framer-189o5br\",\"data-framer-name\":\"Reliable. Speedy. Affordable.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n2ejr7 hidden-1rsygn9\",\"data-framer-name\":\"btn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtODAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Get your eSIM\"})}),className:\"framer-p9mye0\",\"data-framer-name\":\"Access Japan\",fonts:[\"GF;Nunito Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r86vq7\",\"data-framer-name\":\"btn-icon-style-1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvrfdu\",\"data-framer-name\":\"Ellipse 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j4acrn\",\"data-framer-name\":\"icon-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6483_2026)\">\\n<path d=\"M5 12H19\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13 18L19 12\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13 6L19 12\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6483_2026\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yd3ggb\",\"data-framer-name\":\"icon-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6483_2031)\">\\n<path d=\"M5 12H19\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13 18L19 12\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M13 6L19 12\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6483_2031\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j99cfh\",\"data-framer-name\":\"content-1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qhi6ou\",\"data-framer-name\":\"item1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1enz5xu\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24/7 customer support\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24/7 customer support\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28.43px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24/7 customer support\"})}),className:\"framer-1pf4rk1\",\"data-framer-name\":\"24/7 customer support\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Need help? Our 24/7 chat is always ready to help you get connected\"})}),className:\"framer-lh4yes\",\"data-framer-name\":\"Need help? Our 24/7 chat is always ready to help you get connected\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5hx6op\",\"data-framer-name\":\"item2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ex2vj\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Keep your physical SIM\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Keep your physical SIM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28.43000030517578px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"28.43px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Keep your physical SIM\"})})}),className:\"framer-jxou74\",\"data-framer-name\":\"Keep your physical SIM\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Benefit from the convenience of having both physical and eSIM cards at your disposal\"})}),className:\"framer-mmicgv\",\"data-framer-name\":\"Benefit from the convenience of having both physical and eSIM cards at your disposal\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-szei18\",\"data-framer-name\":\"item3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9zaz45\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"English and Japanese support\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"English and Japanese support\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"28.43000030517578px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"28.43px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"English and Japanese support\"})})}),className:\"framer-ij800o\",\"data-framer-name\":\"English and Japanese support\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"No need to fumble through language apps; our team speaks your language!\"})}),className:\"framer-1wa2ae\",\"data-framer-name\":\"No need to fumble through language apps; our team speaks your language!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfp3g1\",\"data-framer-name\":\"content-2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-47fd6a\",\"data-framer-name\":\"top\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c421mx hidden-1rsygn9\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reliable. Speedy. Affordable.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50.52px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reliable. Speedy. Affordable.\"})}),className:\"framer-11z2mmp\",\"data-framer-name\":\"Reliable. Speedy. Affordable.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-myxkzk\",\"data-framer-name\":\"cta\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined},{href:{webPageId:\"YfBVXQxvF\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{y:(componentViewport?.y||0)+0+4694+80+0+0+320+0+0+0+40+0},lnAMMi6wa:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+0+7652+0+0+0+810+0+0+0+0},UNuwbcT5o:{y:(componentViewport?.y||0)+0+3688+80+0+0+400+0+0+0+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3678+80+0+0+400+0+0+0+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gmb2wu-container\",nodeId:\"Sl7tYIduJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{Pa0hNWdfl:resolvedLinks4[1]},lnAMMi6wa:{Pa0hNWdfl:resolvedLinks4[2],style:{height:\"100%\",width:\"100%\"}},UNuwbcT5o:{Pa0hNWdfl:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Get your eSIM\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"Sl7tYIduJ\",layoutId:\"Sl7tYIduJ\",Pa0hNWdfl:resolvedLinks4[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\"},variant:\"z36ejN6mX\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t4k4lc\",\"data-framer-name\":\"bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d9eywt\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Secure Payments\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"21.329999923706055px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Secure Payments\"})})}),className:\"framer-tb3yac\",\"data-framer-name\":\"Secure Payments\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amkwfk\",\"data-framer-name\":\"card-icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4argo2\",\"data-border\":true,\"data-framer-name\":\"visa\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vp14hf\",\"data-framer-name\":\"visa-mono\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-myujmo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:60,svg:'<svg width=\"60\" height=\"22\" viewBox=\"0 0 60 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.6195 1.76691C42.6608 1.37272 41.1402 0.9375 39.2601 0.9375C34.4602 0.9375 31.0802 3.59017 31.0595 7.38268C31.0196 10.1808 33.4795 11.7349 35.3193 12.6679C37.1997 13.6213 37.8389 14.2435 37.8389 15.0933C37.8198 16.3984 36.3194 17 34.9201 17C32.9795 17 31.9398 16.6899 30.3597 15.9638L29.7197 15.6525L29.0395 20.0257C30.1795 20.5639 32.2797 21.0416 34.4602 21.0625C39.5601 21.0625 42.8803 18.4509 42.9197 14.4094C42.9391 12.1916 41.6402 10.4923 38.8399 9.10374C37.1399 8.21236 36.0988 7.61131 36.0988 6.69927C36.1188 5.87014 36.9794 5.0209 38.8983 5.0209C40.4784 4.9793 41.6394 5.37293 42.5189 5.76684L42.9585 5.97371L43.6195 1.76691Z\" fill=\"white\"/>\\n<path d=\"M26 20.7722H21.1396L24.1797 1.29065H29.0398L26 20.7722Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.0789 1.29065H52.3194C51.16 1.29065 50.2792 1.64268 49.779 2.90704L42.5595 20.7719H47.6594C47.6594 20.7719 48.499 18.3674 48.6795 17.8495H54.9198C55.0594 18.5335 55.4998 20.7719 55.4998 20.7719H60L56.0789 1.29065ZM50.0793 13.8706C50.4796 12.7514 52.0198 8.41978 52.0198 8.41978C52.0117 8.43658 52.0753 8.25387 52.1698 7.98228L52.1704 7.98047C52.31 7.57965 52.5165 6.98631 52.6593 6.55465L52.999 8.2333C52.999 8.2333 53.9194 12.8965 54.1193 13.8706H50.0793Z\" fill=\"white\"/>\\n<path d=\"M17.0799 1.29065L12.32 14.5752L11.7998 11.8809L11.7993 11.8793L10.0999 2.92825C9.81998 1.684 8.9599 1.33169 7.89995 1.29065H0.0800011L0 1.68428C1.90725 2.18975 3.61312 2.91813 5.10781 3.82378L9.43991 20.7515H14.5797L22.2194 1.29065H17.0799Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dos01l hidden-1rsygn9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oyu5jv\",\"data-border\":true,\"data-framer-name\":\"amex\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19au7fe\",\"data-framer-name\":\"amex-mono\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x6grin\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"27\" viewBox=\"0 0 80 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M59.0379 3.19991L57.49 6.63357H60.5942L59.0379 3.19991ZM41.176 5.32768C41.4678 5.18833 41.6396 4.88523 41.6396 4.50883C41.6396 4.13998 41.4591 3.87285 41.1674 3.74731C40.9016 3.60816 40.4928 3.59209 40.1008 3.59209H37.3315V5.50525H40.0636C40.5012 5.50535 40.8668 5.49947 41.176 5.32768ZM5.6911 3.19991L4.16071 6.63357H7.23072L5.6911 3.19991ZM76.9439 25.1969H72.6009V23.3495H76.9264C77.3552 23.3495 77.6555 23.298 77.8364 23.1361C78.0073 22.9917 78.104 22.7877 78.1022 22.5743C78.1022 22.3233 77.9933 22.124 77.8273 22.0047C77.6645 21.8732 77.4266 21.8133 77.0349 21.8133C74.9233 21.7477 72.2889 21.873 72.2889 19.1468C72.2889 17.8973 73.1556 16.582 75.5157 16.582H79.9955V14.8679H75.8334C74.5773 14.8679 73.6647 15.1433 73.0186 15.5716V14.8679H66.8624C65.8781 14.8679 64.7225 15.0912 64.1761 15.5716V14.8679H53.182V15.5716C52.3072 14.9937 50.8306 14.8679 50.1496 14.8679H42.898V15.5716C42.2059 14.958 40.6663 14.8679 39.7285 14.8679H31.6127L29.7558 16.7078L28.0164 14.8679H15.8931V26.89H27.7877L29.7011 25.0206L31.5037 26.89L38.8355 26.8958V24.0678H39.5566C40.5293 24.0821 41.6766 24.0459 42.6891 23.6453V26.8896H48.7367V23.7561H49.0284C49.4005 23.7561 49.4374 23.7704 49.4374 24.1109V26.8889H67.8091C68.9755 26.8889 70.1948 26.6159 70.8698 26.1193V26.8889H76.6973C77.9098 26.8889 79.0941 26.7333 79.9952 26.3349V24.0954C79.4491 24.8267 78.3844 25.1969 76.9439 25.1969ZM39.6529 22.3583H36.8467V25.2479H32.4755L29.7062 22.3961L26.8284 25.2479H17.9201V16.6328H26.9654L29.7322 19.4568L32.5928 16.6328H39.779C41.5638 16.6328 43.5691 17.0852 43.5691 19.471C43.5691 21.8643 41.6187 22.3583 39.6529 22.3583ZM53.1465 21.9677C53.4641 22.3882 53.51 22.7807 53.5192 23.5402V25.248H51.2611V24.1703C51.2611 23.652 51.3158 22.8845 50.8976 22.4839C50.5694 22.1754 50.0683 22.1017 49.2475 22.1017H46.8442V25.248H44.5846V16.6329H49.7765C50.9155 16.6329 51.7445 16.6792 52.4826 17.0394C53.1923 17.4319 53.639 17.9697 53.639 18.9525C53.6388 20.3275 52.637 21.029 52.045 21.2445C52.5454 21.4136 52.9544 21.7167 53.1465 21.9677ZM62.4364 18.4145H57.1701V19.9807H62.3077V21.7385H57.1701V23.4527L62.4364 23.4603V25.2479H54.9304V16.6328H62.4364V18.4145ZM68.2154 25.2478H63.8353V23.4004H68.198C68.6247 23.4004 68.9271 23.3488 69.1167 23.187C69.2713 23.0538 69.3824 22.8601 69.3824 22.6255C69.3824 22.3742 69.262 22.1749 69.108 22.0554C68.9359 21.924 68.6984 21.8646 68.307 21.8646C66.2038 21.7985 63.5699 21.9239 63.5699 19.1978C63.5699 17.9482 64.4277 16.6329 66.7854 16.6329H71.2942V18.4663H67.1684C66.7595 18.4663 66.4937 18.4806 66.2676 18.6223C66.0209 18.7618 65.9296 18.9687 65.9296 19.2418C65.9296 19.5668 66.1389 19.788 66.4217 19.8836C66.659 19.9591 66.9137 19.9812 67.2969 19.9812L68.5077 20.0115C69.7281 20.0382 70.5665 20.232 71.0759 20.7041C71.5135 21.1188 71.7486 21.6427 71.7486 22.5293C71.7484 24.3826 70.4835 25.2478 68.2154 25.2478ZM50.773 18.5535C50.5013 18.4057 50.1003 18.3979 49.7001 18.3979H46.9307V20.3327H49.663C50.1005 20.3327 50.4725 20.3185 50.773 20.1551C51.0645 19.9938 51.239 19.6967 51.239 19.3283C51.239 18.9598 51.0645 18.693 50.773 18.5535ZM75.9007 18.3977C75.4917 18.3977 75.2196 18.4119 74.9907 18.5533C74.7533 18.693 74.6623 18.8999 74.6623 19.1732C74.6623 19.498 74.8626 19.7193 75.1539 19.815C75.3914 19.8906 75.6459 19.9126 76.0204 19.9126L77.2396 19.9423C78.4694 19.9702 79.2908 20.164 79.7914 20.6361C79.8826 20.7016 79.9373 20.7753 80 20.8491V18.3979L75.9007 18.3977ZM39.7307 18.3977H36.7983V20.5919H39.7047C40.5687 20.5919 41.106 20.1993 41.1064 19.4541C41.106 18.7007 40.5426 18.3977 39.7307 18.3977ZM20.16 18.3977V19.964H25.0972V21.7219H20.16V23.4358H25.6893L28.2583 20.9084L25.7984 18.3977H20.16ZM34.5983 24.4223V17.5154L31.1455 20.9133L34.5983 24.4223ZM20.3488 10.5903V12.0747H39.1379L39.1292 8.9344H39.4928C39.7474 8.94253 39.8215 8.96399 39.8215 9.34882V12.0748H49.5394V11.3437C50.3233 11.7282 51.5423 12.0748 53.1465 12.0748H57.2348L58.1098 10.1618H60.0496L60.9052 12.0748H68.7834V10.2576L69.9762 12.0747H76.2897V0.0625H70.0418V1.48118L69.1669 0.0625H62.7558V1.48118L61.9524 0.0625H53.2923C51.8426 0.0625 50.5687 0.247711 49.5393 0.763949V0.0625H43.563V0.763949C42.9079 0.231835 42.0154 0.0625 41.0233 0.0625H19.19L17.7251 3.16522L16.2207 0.0625H9.3439V1.48118L8.58829 0.0625H2.72355L0.000102566 5.77405V10.3427L4.02727 1.7295H7.36878L11.1935 9.88436V1.7295H14.8642L17.8074 7.57246L20.5112 1.7295H24.2556V10.3427H21.9504L21.942 3.59699L18.6808 10.3427H16.7062L13.4367 3.59101V10.3427H8.86224L7.99812 8.42149H3.31556L2.44251 10.3427H0.000102566L0 12.0754H3.84275L4.70913 10.1623H6.64907L7.51319 12.0754H15.0737V10.6127L15.7484 12.0815H19.6733L20.3488 10.5903ZM49.9566 2.73346C50.6833 2.04602 51.8221 1.72901 53.3718 1.72901H55.549V3.57455H53.4175C52.5972 3.57455 52.1332 3.68626 51.6871 4.08491C51.3035 4.44749 51.0405 5.13306 51.0405 6.0358C51.0405 6.95862 51.241 7.62391 51.6588 8.05851C52.005 8.39934 52.6345 8.50273 53.2263 8.50273H54.2367L57.4062 1.7293H60.7758L64.5835 9.87603V1.7294H68.0077L71.961 7.72798V1.7294H74.2646V10.3423H71.0777L66.8148 3.87775V10.3423H62.2346L61.3595 8.4211H56.6876L55.8386 10.3423H53.2067C52.1137 10.3423 50.7296 10.121 49.9458 9.38958C49.1553 8.65834 48.7445 7.66771 48.7445 6.10155C48.744 4.82399 48.9895 3.65628 49.9566 2.73346ZM45.3307 1.7291H47.6253V10.3423H45.3307V1.7291ZM34.9849 1.7291H40.1575C41.3065 1.7291 42.1538 1.75703 42.8809 2.14166C43.5923 2.52639 44.0189 3.0881 44.0189 4.04865C44.0189 5.42205 43.0176 6.13144 42.4345 6.34458C42.9264 6.51607 43.3469 6.81897 43.5472 7.06984C43.8648 7.49828 43.9194 7.88095 43.9194 8.65011V10.3422H41.6512L41.6427 9.25602C41.6427 8.73762 41.6968 7.99227 41.2877 7.57814C40.9592 7.27534 40.4581 7.20938 39.6484 7.20938H37.2341V10.3423H34.9852L34.9849 1.7291ZM25.9187 1.7291H33.4316V3.52271H28.1679V5.07525H33.3052V6.84083H28.1679V8.56094H33.4316V10.3422H25.9187V1.7291Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79ujb6\",\"data-border\":true,\"data-framer-name\":\"mastercard\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14yz3os\",\"data-framer-name\":\"mastercard-mono\",children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9rctti hidden-1rsygn9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"26\" viewBox=\"0 0 44 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.9319 2.83362C21.7614 2.96417 21.5953 3.09894 21.432 3.23792C18.6502 5.61035 16.8897 9.10162 16.8897 13C16.8897 16.897 18.6502 20.3882 21.432 22.7607C21.5953 22.8997 21.7614 23.0344 21.9319 23.1664C22.1009 23.0344 22.2685 22.8997 22.4318 22.7607C25.2122 20.3882 26.9741 16.897 26.9741 13C26.9741 9.10162 25.2122 5.61035 22.4318 3.23792C22.2685 3.09894 22.1009 2.96417 21.9319 2.83362ZM30.0896 0.0625C27.3881 0.0625 24.8741 0.85846 22.7828 2.22437C22.8888 2.31 22.9976 2.39423 23.1008 2.48267C26.212 5.13446 27.9954 8.96826 27.9954 13C27.9954 17.0303 26.212 20.8641 23.1022 23.5159C22.9976 23.603 22.8888 23.6886 22.7828 23.7742C24.8741 25.1401 27.3881 25.9375 30.0896 25.9375C37.3808 25.9375 43.291 20.144 43.291 13C43.291 5.85461 37.3808 0.0625 30.0896 0.0625ZM20.7616 23.5159C20.8647 23.603 20.9736 23.6886 21.081 23.7742C18.9882 25.1401 16.4757 25.9375 13.7727 25.9375C6.48155 25.9375 0.571289 20.144 0.571289 13C0.571289 5.85461 6.48155 0.0625 13.7727 0.0625C16.4757 0.0625 18.9882 0.85846 21.081 2.22437C20.9736 2.31 20.8647 2.39423 20.7616 2.48267C17.6517 5.13446 15.8683 8.96826 15.8683 13C15.8683 17.0317 17.6517 20.8641 20.7616 23.5159Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-onlijo hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"26\" viewBox=\"0 0 44 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.9319 2.83362C21.7614 2.96417 21.5953 3.09894 21.432 3.23792C18.6502 5.61035 16.8897 9.10162 16.8897 13C16.8897 16.897 18.6502 20.3882 21.432 22.7607C21.5953 22.8997 21.7614 23.0344 21.9319 23.1664C22.1009 23.0344 22.2685 22.8997 22.4318 22.7607C25.2122 20.3882 26.9741 16.897 26.9741 13C26.9741 9.10162 25.2122 5.61035 22.4318 3.23792C22.2685 3.09894 22.1009 2.96417 21.9319 2.83362ZM30.0896 0.0625C27.3881 0.0625 24.8741 0.85846 22.7828 2.22437C22.8888 2.31 22.9976 2.39423 23.1008 2.48267C26.212 5.13446 27.9954 8.96826 27.9954 13C27.9954 17.0303 26.212 20.8641 23.1022 23.5159C22.9976 23.603 22.8888 23.6886 22.7828 23.7742C24.8741 25.1401 27.3881 25.9375 30.0896 25.9375C37.3808 25.9375 43.291 20.144 43.291 13C43.291 5.85461 37.3808 0.0625 30.0896 0.0625ZM20.7616 23.5159C20.8647 23.603 20.9736 23.6886 21.081 23.7742C18.9882 25.1401 16.4757 25.9375 13.7727 25.9375C6.48155 25.9375 0.571289 20.144 0.571289 13C0.571289 5.85461 6.48155 0.0625 13.7727 0.0625C16.4757 0.0625 18.9882 0.85846 21.081 2.22437C20.9736 2.31 20.8647 2.39423 20.7616 2.48267C17.6517 5.13446 15.8683 8.96826 15.8683 13C15.8683 17.0317 17.6517 20.8641 20.7616 23.5159Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxlvv0 hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-border\":true,\"data-framer-name\":\"mastercard\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19r672q\",\"data-framer-name\":\"mastercard-mono\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17pznl7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"27\" viewBox=\"0 0 80 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M59.0379 3.19991L57.49 6.63357H60.5942L59.0379 3.19991ZM41.176 5.32768C41.4678 5.18833 41.6396 4.88523 41.6396 4.50883C41.6396 4.13998 41.4591 3.87285 41.1674 3.74731C40.9016 3.60816 40.4928 3.59209 40.1008 3.59209H37.3315V5.50525H40.0636C40.5012 5.50535 40.8668 5.49947 41.176 5.32768ZM5.6911 3.19991L4.16071 6.63357H7.23072L5.6911 3.19991ZM76.9439 25.1969H72.6009V23.3495H76.9264C77.3552 23.3495 77.6555 23.298 77.8364 23.1361C78.0073 22.9917 78.104 22.7877 78.1022 22.5743C78.1022 22.3233 77.9933 22.124 77.8273 22.0047C77.6645 21.8732 77.4266 21.8133 77.0349 21.8133C74.9233 21.7477 72.2889 21.873 72.2889 19.1468C72.2889 17.8973 73.1556 16.582 75.5157 16.582H79.9955V14.8679H75.8334C74.5773 14.8679 73.6647 15.1433 73.0186 15.5716V14.8679H66.8624C65.8781 14.8679 64.7225 15.0912 64.1761 15.5716V14.8679H53.182V15.5716C52.3072 14.9937 50.8306 14.8679 50.1496 14.8679H42.898V15.5716C42.2059 14.958 40.6663 14.8679 39.7285 14.8679H31.6127L29.7558 16.7078L28.0164 14.8679H15.8931V26.89H27.7877L29.7011 25.0206L31.5037 26.89L38.8355 26.8958V24.0678H39.5566C40.5293 24.0821 41.6766 24.0459 42.6891 23.6453V26.8896H48.7367V23.7561H49.0284C49.4005 23.7561 49.4374 23.7704 49.4374 24.1109V26.8889H67.8091C68.9755 26.8889 70.1948 26.6159 70.8698 26.1193V26.8889H76.6973C77.9098 26.8889 79.0941 26.7333 79.9952 26.3349V24.0954C79.4491 24.8267 78.3844 25.1969 76.9439 25.1969ZM39.6529 22.3583H36.8467V25.2479H32.4755L29.7062 22.3961L26.8284 25.2479H17.9201V16.6328H26.9654L29.7322 19.4568L32.5928 16.6328H39.779C41.5638 16.6328 43.5691 17.0852 43.5691 19.471C43.5691 21.8643 41.6187 22.3583 39.6529 22.3583ZM53.1465 21.9677C53.4641 22.3882 53.51 22.7807 53.5192 23.5402V25.248H51.2611V24.1703C51.2611 23.652 51.3158 22.8845 50.8976 22.4839C50.5694 22.1754 50.0683 22.1017 49.2475 22.1017H46.8442V25.248H44.5846V16.6329H49.7765C50.9155 16.6329 51.7445 16.6792 52.4826 17.0394C53.1923 17.4319 53.639 17.9697 53.639 18.9525C53.6388 20.3275 52.637 21.029 52.045 21.2445C52.5454 21.4136 52.9544 21.7167 53.1465 21.9677ZM62.4364 18.4145H57.1701V19.9807H62.3077V21.7385H57.1701V23.4527L62.4364 23.4603V25.2479H54.9304V16.6328H62.4364V18.4145ZM68.2154 25.2478H63.8353V23.4004H68.198C68.6247 23.4004 68.9271 23.3488 69.1167 23.187C69.2713 23.0538 69.3824 22.8601 69.3824 22.6255C69.3824 22.3742 69.262 22.1749 69.108 22.0554C68.9359 21.924 68.6984 21.8646 68.307 21.8646C66.2038 21.7985 63.5699 21.9239 63.5699 19.1978C63.5699 17.9482 64.4277 16.6329 66.7854 16.6329H71.2942V18.4663H67.1684C66.7595 18.4663 66.4937 18.4806 66.2676 18.6223C66.0209 18.7618 65.9296 18.9687 65.9296 19.2418C65.9296 19.5668 66.1389 19.788 66.4217 19.8836C66.659 19.9591 66.9137 19.9812 67.2969 19.9812L68.5077 20.0115C69.7281 20.0382 70.5665 20.232 71.0759 20.7041C71.5135 21.1188 71.7486 21.6427 71.7486 22.5293C71.7484 24.3826 70.4835 25.2478 68.2154 25.2478ZM50.773 18.5535C50.5013 18.4057 50.1003 18.3979 49.7001 18.3979H46.9307V20.3327H49.663C50.1005 20.3327 50.4725 20.3185 50.773 20.1551C51.0645 19.9938 51.239 19.6967 51.239 19.3283C51.239 18.9598 51.0645 18.693 50.773 18.5535ZM75.9007 18.3977C75.4917 18.3977 75.2196 18.4119 74.9907 18.5533C74.7533 18.693 74.6623 18.8999 74.6623 19.1732C74.6623 19.498 74.8626 19.7193 75.1539 19.815C75.3914 19.8906 75.6459 19.9126 76.0204 19.9126L77.2396 19.9423C78.4694 19.9702 79.2908 20.164 79.7914 20.6361C79.8826 20.7016 79.9373 20.7753 80 20.8491V18.3979L75.9007 18.3977ZM39.7307 18.3977H36.7983V20.5919H39.7047C40.5687 20.5919 41.106 20.1993 41.1064 19.4541C41.106 18.7007 40.5426 18.3977 39.7307 18.3977ZM20.16 18.3977V19.964H25.0972V21.7219H20.16V23.4358H25.6893L28.2583 20.9084L25.7984 18.3977H20.16ZM34.5983 24.4223V17.5154L31.1455 20.9133L34.5983 24.4223ZM20.3488 10.5903V12.0747H39.1379L39.1292 8.9344H39.4928C39.7474 8.94253 39.8215 8.96399 39.8215 9.34882V12.0748H49.5394V11.3437C50.3233 11.7282 51.5423 12.0748 53.1465 12.0748H57.2348L58.1098 10.1618H60.0496L60.9052 12.0748H68.7834V10.2576L69.9762 12.0747H76.2897V0.0625H70.0418V1.48118L69.1669 0.0625H62.7558V1.48118L61.9524 0.0625H53.2923C51.8426 0.0625 50.5687 0.247711 49.5393 0.763949V0.0625H43.563V0.763949C42.9079 0.231835 42.0154 0.0625 41.0233 0.0625H19.19L17.7251 3.16522L16.2207 0.0625H9.3439V1.48118L8.58829 0.0625H2.72355L0.000102566 5.77405V10.3427L4.02727 1.7295H7.36878L11.1935 9.88436V1.7295H14.8642L17.8074 7.57246L20.5112 1.7295H24.2556V10.3427H21.9504L21.942 3.59699L18.6808 10.3427H16.7062L13.4367 3.59101V10.3427H8.86224L7.99812 8.42149H3.31556L2.44251 10.3427H0.000102566L0 12.0754H3.84275L4.70913 10.1623H6.64907L7.51319 12.0754H15.0737V10.6127L15.7484 12.0815H19.6733L20.3488 10.5903ZM49.9566 2.73346C50.6833 2.04602 51.8221 1.72901 53.3718 1.72901H55.549V3.57455H53.4175C52.5972 3.57455 52.1332 3.68626 51.6871 4.08491C51.3035 4.44749 51.0405 5.13306 51.0405 6.0358C51.0405 6.95862 51.241 7.62391 51.6588 8.05851C52.005 8.39934 52.6345 8.50273 53.2263 8.50273H54.2367L57.4062 1.7293H60.7758L64.5835 9.87603V1.7294H68.0077L71.961 7.72798V1.7294H74.2646V10.3423H71.0777L66.8148 3.87775V10.3423H62.2346L61.3595 8.4211H56.6876L55.8386 10.3423H53.2067C52.1137 10.3423 50.7296 10.121 49.9458 9.38958C49.1553 8.65834 48.7445 7.66771 48.7445 6.10155C48.744 4.82399 48.9895 3.65628 49.9566 2.73346ZM45.3307 1.7291H47.6253V10.3423H45.3307V1.7291ZM34.9849 1.7291H40.1575C41.3065 1.7291 42.1538 1.75703 42.8809 2.14166C43.5923 2.52639 44.0189 3.0881 44.0189 4.04865C44.0189 5.42205 43.0176 6.13144 42.4345 6.34458C42.9264 6.51607 43.3469 6.81897 43.5472 7.06984C43.8648 7.49828 43.9194 7.88095 43.9194 8.65011V10.3422H41.6512L41.6427 9.25602C41.6427 8.73762 41.6968 7.99227 41.2877 7.57814C40.9592 7.27534 40.4581 7.20938 39.6484 7.20938H37.2341V10.3423H34.9852L34.9849 1.7291ZM25.9187 1.7291H33.4316V3.52271H28.1679V5.07525H33.3052V6.84083H28.1679V8.56094H33.4316V10.3422H25.9187V1.7291Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jr280r\",\"data-framer-name\":\"Content Creator\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hwb6ac\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Loved by your favorite Content Creators in Japan\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",children:\"Loved by your favorite Content Creators in Japan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-em077t\",\"data-styles-preset\":\"LdR1OWvz4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Loved by your favorite Content Creators in Japan\"})}),className:\"framer-l48657\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-84umo6\",\"data-framer-name\":\"container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"Chris Broad from Abroad in Japan joined by Sharla and Natsuki, with landmarks like Tokyo Tower, Fushimi Inari Torii gate, and Mount Fuji\u2014showcasing reliable eSIM coverage across Japan.\",fit:\"fit\",intrinsicHeight:634,intrinsicWidth:1160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5420+0+70+0),pixelHeight:634,pixelWidth:1266,positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg\",srcSet:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg 1266w\"}},UNuwbcT5o:{background:{alt:\"Chris Broad from Abroad in Japan enjoying tea, with landmarks like Tokyo Tower, Fushimi Inari Torii gate, and Mount Fuji\u2014showcasing reliable eSIM coverage across Japan.\",fit:\"fit\",intrinsicHeight:634,intrinsicWidth:1160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4534+0+86+0),pixelHeight:634,pixelWidth:1266,positionX:\"center\",positionY:\"center\",sizes:\"1160px\",src:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg\",srcSet:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg 1266w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Chris Broad from Abroad in Japan joined by Sharla and Natsuki, with landmarks like Tokyo Tower, Fushimi Inari Torii gate, and Mount Fuji\u2014showcasing reliable eSIM coverage across Japan.\",fit:\"fit\",intrinsicHeight:634,intrinsicWidth:1160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4524+0+86+0),pixelHeight:634,pixelWidth:1266,positionX:\"center\",positionY:\"center\",sizes:\"1160px\",src:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg\",srcSet:\"https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RZhneyLFIm0AUrAu6JzwSgNjc.jpg 1266w\"},className:\"framer-bqfc5j hidden-1rsygn9\",\"data-framer-name\":\"abroad_in_japan_artwork_2x\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnAMMi6wa:{background:{alt:\"Chris Broad from Abroad in Japan enjoying tea, with landmarks like Tokyo Tower, Fushimi Inari Torii gate, and Mount Fuji\u2014showcasing reliable eSIM coverage across Japan.\",fit:\"fit\",intrinsicHeight:294,intrinsicWidth:353,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5014+0+62+0),pixelHeight:294,pixelWidth:353,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/t19zSUaGv5P9WCsjXmWDLx4FpbY.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Chris Broad from Abroad in Japan enjoying tea, with landmarks like Tokyo Tower, Fushimi Inari Torii gate, and Mount Fuji\u2014showcasing reliable eSIM coverage across Japan.\",fit:\"fit\",intrinsicHeight:294,intrinsicWidth:353,pixelHeight:294,pixelWidth:353,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/t19zSUaGv5P9WCsjXmWDLx4FpbY.jpg\"},className:\"framer-1ibhxd1 hidden-72rtr7 hidden-w71ttr hidden-131uvg1\",\"data-framer-name\":\"abroad_in_japan_artwork_2x\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvibsu\",\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-90rf83\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Reviews for Journey Japan eSIM\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[\"Reviews for \",/*#__PURE__*/_jsx(\"br\",{}),\"Journey Japan eSIM\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-em077t\",\"data-styles-preset\":\"LdR1OWvz4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Reviews for Journey Japan eSIM\"})}),className:\"framer-1gyfsv4\",\"data-framer-name\":\"How does Journey Japan eSIM work?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-diee9\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlwzbo\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-byasdc\",\"data-framer-name\":\"col-3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ocb1k2\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bce7ce\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q71dyl\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16g3dnt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wudso9\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-133mdxs\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gpcr1w\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvgtl1\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q68eg6\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u5a9f4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gznnx\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ctm9s\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1guh81e\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bax1c9\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5o2t\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c513en\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"It just works!\"})}),className:\"framer-f07ic6\",\"data-framer-name\":\"Install via a QR code.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"Everything just worked? Mom and I traveled to Japan and I decided we'd try two different eSims and my phone had the JJ eSim and it just... worked. We had to jump through hoops and the other sim didn't get fully setup for a couple of days. I did have consistent 4g in both Tokyo, Osaka and Kawaguchiko. I had never dealt with eSims prior to this and enjoyed this experience greatly.\"})}),className:\"framer-qm4n7o\",\"data-framer-name\":\"Just scan the code and you\u2019re clicks away from your journey to Japan.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Scott M.\"})}),className:\"framer-4flzdy\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-36inxk\",\"data-framer-name\":\"col-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qnodj\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x29kf1\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-odmxrd\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6vk8ex\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3p98p\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xj2akk\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xt061q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ioaac\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-134dlw3\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eg16oh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15k1g1e\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16xz9se\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b2isrx\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wcain\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5yefd9\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7pui14\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Cheaper than roaming plans\"})}),className:\"framer-1ukulfw\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"It was so easy to setup. Once setup it just worked so I didn't have to worry about not having access to data. It was cheaper than using roaming and definitely more reliable. I was using it on forest walks in Furano to streets of Kamakura. I will definitely use again on our next trip to Japan. I used it for 18 days and didn't use up the 20GB. Thanks for creating Chris and team.\"})}),className:\"framer-161xs70\",\"data-framer-name\":\"Find out if your phone can use eSIMs here.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Jellete E.\"})}),className:\"framer-14vw6ul\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6qy1a\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tg921g\",\"data-framer-name\":\"col-2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ps8f2c\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vs0yn\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r7wr3s\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wrgilb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xs7epx\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o6k1yf\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e1tvea\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nr7xr\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d05dot\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-102bg3h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k339sf\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6qlx1\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13ns5t5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otfpnd\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y91xq5\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12pi1b9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"I will just be buying JJESIM every time I go to Japan\"})}),className:\"framer-18quyhp\",\"data-framer-name\":\"Buy your eSIM within 14 days of your trip.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"Great eSIM. I used to buy the portable wifi at the airport and have to go through the hassle of getting it at the airport and returning it. Now I will just be buying JJESIM every time I go to Japan. Can't recommend it enough.\"})}),className:\"framer-1j1u8b4\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Gordon W.\"})}),className:\"framer-2qi324\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ug402 hidden-w71ttr hidden-1rsygn9\",\"data-framer-name\":\"col-2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a7r389\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rzoakq\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-callfz\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13njjq9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfospa\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-isg42w\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hbch9r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cutcax\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lnads\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n60u4i\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nytczx\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tvapxk\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nuwy1s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vizycb\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-szuxq7\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-msqcdm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"Had my first sim run out after 30 days, had 4 days left, saw Chris Broad shilling his e-sim, bought into it, was very satisfied.\"})}),className:\"framer-6eji4s\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Alexander B.\"})}),className:\"framer-18vyry9\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i61gld hidden-w71ttr hidden-1rsygn9\",\"data-framer-name\":\"col-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h3nv8z\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162f401\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-157cffg\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eei4gh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tp7nb\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnw1i5\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eg9epk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cdhab2\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n1ilb0\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cqtjr0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aux1fa\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ynx1qo\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xy5jvr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ro4ncw\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nofr4b\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e2kx2w\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Great!\"})}),className:\"framer-ztixpf\",\"data-framer-name\":\"Check that your phone is eSIM compatible.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"Would recommend \uD83C\uDF38\"})}),className:\"framer-9lvjgi\",\"data-framer-name\":\"Find out if your phone can use eSIMs here.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Caroline S.\"})}),className:\"framer-17oa63a\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19402e2 hidden-72rtr7 hidden-1rsygn9 hidden-131uvg1\",\"data-framer-name\":\"col-3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xq2qtl\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujvf33\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18v0p3g\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5vh00g\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tkcgc0\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ms5vor\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tv5yqv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3oi27\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9u2348\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-srqayy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfwfkf\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3iuagx\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1awafor\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r40lha\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yo8a5f\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17lbeqe\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Highly Recommended\"})}),className:\"framer-15tzecc\",\"data-framer-name\":\"Install via a QR code.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"We had a full 3 week trip in mostly rural areas of Kyushu and the beaches of Okinawa. this worked very well for our whole trip! I would wholeheartedly recommend this sim to anyone interested in travelling to Japan.\"})}),className:\"framer-1onuixc\",\"data-framer-name\":\"Just scan the code and you\u2019re clicks away from your journey to Japan.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Scott M.\"})}),className:\"framer-1ivfv3i\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dckdkr hidden-w71ttr hidden-1rsygn9\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dgge0p\",\"data-framer-name\":\"col-3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ym8rzb\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mc8pzz\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ab79yl\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uusa9l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1ebih\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cbbpm7\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lwb698\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r5qw2a\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rxmd3p\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n47y8f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-91afqo\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rriz85\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c19wdk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vt9qtx\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bu1okz\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fdy1bt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Highly Recommended\"})}),className:\"framer-13ho6uv\",\"data-framer-name\":\"Install via a QR code.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"We had a full 3 week trip in mostly rural areas of Kyushu and the beaches of Okinawa. this worked very well for our whole trip! I would wholeheartedly recommend this sim to anyone interested in travelling to Japan.\"})}),className:\"framer-z0x3k4\",\"data-framer-name\":\"Just scan the code and you\u2019re clicks away from your journey to Japan.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Scott M.\"})}),className:\"framer-1oc8jia\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18jfucl\",\"data-framer-name\":\"col-2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfhovu\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0swnu\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ykpk5x\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jjijtv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5yurc7\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rypjse\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-usvkvl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y8h3dy\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ispdtx\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kzmrtu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjymjc\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-175dtmn\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jptyv6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jza3tq\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bv62fk\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11x9xf3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21.33px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(25, 45, 42)\"},children:\"Transparent Pricing\"})}),className:\"framer-1f4a76a\",\"data-framer-name\":\"Buy your eSIM within 14 days of your trip.\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"I like how transparent the website about what to expect. Very prescriptive on the plan descriptions. More power to JJ eSim team!\"})}),className:\"framer-1rm10v1\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Kyle L.\"})}),className:\"framer-2ifpt7\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1okf0d9\",\"data-framer-name\":\"col-1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1anmoyb\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w78oc4\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tp19uq\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sl53xn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2j24n7\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gc4avt\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1stw1x9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzpg96\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-124exzo\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-am0mcu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uxc4d7\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12a3qbp\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y12ni5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avdxid\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jo6bo0\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xcaiko\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.3039 7.97274L13.7882 11.0063L14.8593 15.5431C14.9184 15.7893 14.9032 16.0476 14.8156 16.2852C14.728 16.5229 14.5719 16.7292 14.3671 16.8782C14.1623 17.0272 13.9179 17.1121 13.6648 17.1222C13.4118 17.1324 13.1614 17.0673 12.9453 16.9352L8.99995 14.5071L5.0523 16.9352C4.83622 17.0666 4.58613 17.131 4.3335 17.1205C4.08087 17.11 3.837 17.0249 3.63261 16.8761C3.42822 16.7272 3.27243 16.5212 3.18488 16.284C3.09732 16.0468 3.08191 15.789 3.14058 15.5431L4.21558 11.0063L0.699951 7.97274C0.508778 7.80752 0.370518 7.58963 0.302438 7.34629C0.234358 7.10296 0.239475 6.84496 0.317151 6.60452C0.394826 6.36407 0.541618 6.15184 0.739193 5.99432C0.936768 5.83681 1.17637 5.74099 1.42808 5.71884L6.03745 5.34696L7.81558 1.04384C7.91182 0.809319 8.07563 0.608718 8.28618 0.467538C8.49673 0.326358 8.7445 0.250977 8.998 0.250977C9.2515 0.250977 9.49927 0.326358 9.70982 0.467538C9.92036 0.608718 10.0842 0.809319 10.1804 1.04384L11.9578 5.34696L16.5671 5.71884C16.8193 5.74017 17.0596 5.83545 17.2579 5.99275C17.4562 6.15005 17.6037 6.36236 17.6819 6.6031C17.76 6.84383 17.7654 7.10228 17.6973 7.34606C17.6292 7.58984 17.4907 7.80811 17.2992 7.97352L17.3039 7.97274Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"Worked everywhere we went and never experienced slow down\"})}),className:\"framer-tmjus1\",\"data-framer-name\":\"Find out if your phone can use eSIMs here.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(114, 120, 119)\"},children:\"\u2014 Adam S.\"})}),className:\"framer-78y322\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k30kl7-container\",isModuleExternal:true,nodeId:\"YBqtcjkUF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"/reviews\" onclick=\"window.location.href=\\'/reviews\\'; return false;\" style=\"  padding: 16px 20px 16px 20px;\\n  border: 1px solid #C8DCDC;\\n  border-radius: 999px;\\n  text-decoration: none;\\n  font-size: 16px;\\n  font-weight: 700;\\n  color: #1B2B2B;\\nfont-family: Nunito Sans;\\n\">\\nRead more reviews\\n</a>',id:\"YBqtcjkUF\",layoutId:\"YBqtcjkUF\",radius:\"0px\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7884},lnAMMi6wa:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8765},UNuwbcT5o:{y:(componentViewport?.y||0)+0+7510}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:767,width:\"1440px\",y:(componentViewport?.y||0)+0+7500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kkjd9t-container\",nodeId:\"jxlakae8w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{variant:\"svGDXdDzw\"},lnAMMi6wa:{variant:\"BxalsQutz\"}},children:/*#__PURE__*/_jsx(LayoutFaq,{height:\"100%\",id:\"jxlakae8w\",layoutId:\"jxlakae8w\",style:{width:\"100%\"},variant:\"dx1_27c3r\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8711),pixelHeight:1300,pixelWidth:2880,positionX:\"88.1%\",positionY:\"34.6%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg\",srcSet:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg 2880w\"}},lnAMMi6wa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9572),pixelHeight:1300,pixelWidth:2880,positionX:\"67.4%\",positionY:\"50%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg\",srcSet:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg 2880w\"}},UNuwbcT5o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8377),pixelHeight:1300,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg\",srcSet:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg 2880w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8367),pixelHeight:1300,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg\",srcSet:\"https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RflAOF7CqpyYG7QXCPyLX4A0.jpg 2880w\"},className:\"framer-1eflgr\",\"data-framer-name\":\"lost-bar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ks7b2\",\"data-framer-name\":\"Frame 409\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"\\xa5500 Off Your First Cocktail or Mocktail at LOST in Shibuya!\"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"\\xa5500 Off Your First Cocktail or Mocktail at LOST in Shibuya!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-em077t\",\"data-styles-preset\":\"LdR1OWvz4\",style:{\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"\\xa5500 Off Your First Cocktail or Mocktail at LOST in Shibuya!\"})}),className:\"framer-1crv2a\",\"data-framer-name\":\"Discover Lost Japan & Enjoy 25% Off Your First Drink!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"Journey through Tokyo and unwind at LOST, the hidden bar in the heart of Shibuya by Chris and Sharla. Got a Journey Japan eSIM? Just show your purchase confirmation email for a sweet \\xa5500 off your first cocktail or mocktail! \"})})},lnAMMi6wa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"Journey through Tokyo and unwind at LOST, the hidden bar in the heart of Shibuya by Chris and Sharla. Got a Journey Japan eSIM? Just show your purchase confirmation email for a sweet \\xa5500 off your first cocktail or mocktail! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"Journey through Tokyo and unwind at LOST, the hidden bar in the heart of Shibuya by Chris and Sharla. Got a Journey Japan eSIM? Just show your purchase confirmation email for a sweet \\xa5500 off your first cocktail or mocktail! \"})}),className:\"framer-1crnh8p\",\"data-framer-name\":\"Journey through Tokyo and unwind at Lost Japan, the hidden bar by Chris Broad and Sharla in the heart of Shibuya. As a Journey Japan eSIM user, enjoy 25% off your first drink! Just show your purchase confirmation email!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{y:(componentViewport?.y||0)+0+8711+0+340+0+220},lnAMMi6wa:{y:(componentViewport?.y||0)+0+9572+0+248+0+212},UNuwbcT5o:{y:(componentViewport?.y||0)+0+8377+150+0+340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+8367+140+0+340,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uxpiq4-container\",nodeId:\"IymA3BGUP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UNuwbcT5o:{B41YvuhTY:\"Experience Lost Japan!\"}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, rgb(199, 221, 220))\",borderStyle:\"solid\",borderWidth:1},AUsIHiE6c:false,B41YvuhTY:\"Experience LOST\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"IymA3BGUP\",layoutId:\"IymA3BGUP\",Pa0hNWdfl:\"https://maps.app.goo.gl/igyYti4xRwso2n8KA\",qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\"},variant:\"d5hwHDW83\",width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5uvyi9 hidden-w71ttr hidden-1rsygn9\",\"data-framer-name\":\"overlay\",style:{rotate:90}}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0i4ao hidden-72rtr7 hidden-131uvg1\",\"data-framer-name\":\"overlay-mobile\",style:{rotate:90}}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647.5,intrinsicWidth:435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8711+680-647.5),pixelHeight:1295,pixelWidth:870,sizes:\"435px\",src:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024 687w,https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png 870w\"}},UNuwbcT5o:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647.5,intrinsicWidth:435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8377+700-647.5),pixelHeight:1295,pixelWidth:870,sizes:\"435px\",src:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024 687w,https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png 870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:647.5,intrinsicWidth:435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8367+680-647.5),pixelHeight:1295,pixelWidth:870,sizes:\"435px\",src:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png?scale-down-to=1024 687w,https://framerusercontent.com/images/MfjakWJNwGDIRx8M5gkPQHCSuIw.png 870w\"},className:\"framer-193c1pc hidden-1rsygn9\",\"data-framer-name\":\"Chris-with-a-cocktail\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{y:(componentViewport?.y||0)+0+9451},lnAMMi6wa:{y:(componentViewport?.y||0)+0+10162},UNuwbcT5o:{y:(componentViewport?.y||0)+0+9177}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9147,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f5yphc-container\",nodeId:\"bTqWgCa7s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{variant:\"X9iLhWviD\"},lnAMMi6wa:{variant:\"IrrAHeEQK\"},UNuwbcT5o:{variant:\"xxthcQWlA\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"bTqWgCa7s\",layoutId:\"bTqWgCa7s\",style:{width:\"100%\"},variant:\"zBAPzmhO3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9yy8pr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"aivaac38h\",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:\"GTM-MR4H2V2J\",height:\"100%\",id:\"aivaac38h\",layoutId:\"aivaac38h\",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:\"none\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{y:(componentViewport?.y||0)+0+9931},lnAMMi6wa:{y:(componentViewport?.y||0)+0+10622},UNuwbcT5o:{y:(componentViewport?.y||0)+0+9697}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9667,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kc24ur-container\",nodeId:\"HNaJL_TPr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kVlNXoo9a:{variant:\"CD9D3wCNJ\"},lnAMMi6wa:{oDsbd69CF:\"20px\",variant:\"Xuv9BVzyY\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"HNaJL_TPr\",layoutId:\"HNaJL_TPr\",oDsbd69CF:\"0px 0px 0px 0px\",style:{width:\"100%\"},variant:\"asD2JUS6M\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c8U0H.framer-lux5qc, .framer-c8U0H .framer-lux5qc { display: block; }\",\".framer-c8U0H.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-c8U0H .framer-1g3yfwc-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-c8U0H .framer-hz5vr3-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-c8U0H .framer-lto8ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1nwiodj, .framer-c8U0H .framer-v6sut6, .framer-c8U0H .framer-1bj3g14 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-19ydfos { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-c8U0H .framer-1kmfisg { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 210px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px 160px 0px 160px; position: absolute; width: 100%; z-index: 1; }\",\".framer-c8U0H .framer-1d5dhum { flex: none; height: 169px; overflow: visible; position: relative; width: 864px; }\",\".framer-c8U0H .framer-9metk3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 133px; justify-content: flex-end; left: -4px; overflow: hidden; padding: 0px; position: absolute; top: -4px; width: 846px; }\",\".framer-c8U0H .framer-jsp8mp { flex: none; height: 133px; position: relative; width: 846px; }\",\".framer-c8U0H .framer-1p7q35g-container { flex: none; height: 52px; left: 812px; position: absolute; top: 99px; width: 52px; }\",\".framer-c8U0H .framer-24dpzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 95vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-mrtzul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 125px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-c8U0H .framer-dmylj7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; padding: 0px 0px 0px 50px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-1at52yp { flex: none; height: 51px; position: relative; text-decoration: none; width: 207px; }\",\".framer-c8U0H .framer-bln7x5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; padding: 0px 50px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c8U0H .framer-1161f4g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-c8U0H .framer-1ddnkgh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 0px 140px 180px 140px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1sw4vhi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-13f9vvb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-3rklwf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 40%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-4f1bdb-container { flex: none; height: 60px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c8U0H .framer-zi4u2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-1m65kg, .framer-c8U0H .framer-pqn9ph, .framer-c8U0H .framer-1qdy8fa, .framer-c8U0H .framer-1835yr7, .framer-c8U0H .framer-21rrmf, .framer-c8U0H .framer-g0lhmh, .framer-c8U0H .framer-uu3yvj, .framer-c8U0H .framer-1p2is28, .framer-c8U0H .framer-133o9a5, .framer-c8U0H .framer-12kzino, .framer-c8U0H .framer-f4wlxq, .framer-c8U0H .framer-jmvdyw, .framer-c8U0H .framer-1ouvmse, .framer-c8U0H .framer-15wdve5, .framer-c8U0H .framer-1p8udm2, .framer-c8U0H .framer-1ph1dd2, .framer-c8U0H .framer-9xngaj, .framer-c8U0H .framer-12f53ao, .framer-c8U0H .framer-1myytps, .framer-c8U0H .framer-15n4p1k, .framer-c8U0H .framer-1ktozp1, .framer-c8U0H .framer-p9mye0, .framer-c8U0H .framer-tb3yac { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c8U0H .framer-1tuib81 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; z-index: 1; }\",\".framer-c8U0H .framer-1mpk14n { --border-bottom-width: 1px; --border-color: var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, #c7dddc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #daf2f1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 300px; }\",\".framer-c8U0H .framer-w89u9n, .framer-c8U0H .framer-1i4f7rt, .framer-c8U0H .framer-1yvx3ib, .framer-c8U0H .framer-tqvmnq, .framer-c8U0H .framer-q7wc7t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-18nt202, .framer-c8U0H .framer-110vw83, .framer-c8U0H .framer-10teogf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-eh5xux, .framer-c8U0H .framer-cgs584, .framer-c8U0H .framer-1s2k4cc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-zfjgsq, .framer-c8U0H .framer-jol169, .framer-c8U0H .framer-j3nux1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1ikwwb2, .framer-c8U0H .framer-1v8iqs7, .framer-c8U0H .framer-129m29k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-3pweb1, .framer-c8U0H .framer-6l6yu, .framer-c8U0H .framer-11by9am { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-w9hvcd, .framer-c8U0H .framer-3jw1gr, .framer-c8U0H .framer-p790kf, .framer-c8U0H .framer-10r1pcc, .framer-c8U0H .framer-carkd5, .framer-c8U0H .framer-1lid5aj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1uy1qkh, .framer-c8U0H .framer-ckqcuv, .framer-c8U0H .framer-dedbzb, .framer-c8U0H .framer-1id6k8h, .framer-c8U0H .framer-btflre, .framer-c8U0H .framer-12md5ar, .framer-c8U0H .framer-nq8gh6, .framer-c8U0H .framer-ws69dz, .framer-c8U0H .framer-14ttf42, .framer-c8U0H .framer-okz4yt, .framer-c8U0H .framer-1642z11, .framer-c8U0H .framer-siz5tf, .framer-c8U0H .framer-s18oos, .framer-c8U0H .framer-q45m27, .framer-c8U0H .framer-1i0znoq, .framer-c8U0H .framer-1q4j7zt, .framer-c8U0H .framer-145ivit, .framer-c8U0H .framer-7uc5f8, .framer-c8U0H .framer-kpb9rx, .framer-c8U0H .framer-11alfay, .framer-c8U0H .framer-f07ic6, .framer-c8U0H .framer-qm4n7o, .framer-c8U0H .framer-4flzdy, .framer-c8U0H .framer-1ukulfw, .framer-c8U0H .framer-161xs70, .framer-c8U0H .framer-14vw6ul, .framer-c8U0H .framer-18quyhp, .framer-c8U0H .framer-1j1u8b4, .framer-c8U0H .framer-2qi324, .framer-c8U0H .framer-6eji4s, .framer-c8U0H .framer-18vyry9, .framer-c8U0H .framer-ztixpf, .framer-c8U0H .framer-9lvjgi, .framer-c8U0H .framer-17oa63a, .framer-c8U0H .framer-15tzecc, .framer-c8U0H .framer-1onuixc, .framer-c8U0H .framer-1ivfv3i, .framer-c8U0H .framer-13ho6uv, .framer-c8U0H .framer-z0x3k4, .framer-c8U0H .framer-1oc8jia, .framer-c8U0H .framer-1f4a76a, .framer-c8U0H .framer-1rm10v1, .framer-c8U0H .framer-2ifpt7, .framer-c8U0H .framer-tmjus1, .framer-c8U0H .framer-78y322 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-10uei2d, .framer-c8U0H .framer-yi05u9, .framer-c8U0H .framer-1sc01h0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-w15psa, .framer-c8U0H .framer-f0xd56, .framer-c8U0H .framer-1r3d5l4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-1rhmkvv, .framer-c8U0H .framer-i81tp9, .framer-c8U0H .framer-10mieta, .framer-c8U0H .framer-hzp0xz, .framer-c8U0H .framer-19ur949, .framer-c8U0H .framer-1ipeg8, .framer-c8U0H .framer-14o8rms, .framer-c8U0H .framer-1htqjd1, .framer-c8U0H .framer-i1nmk4, .framer-c8U0H .framer-ttaqgo, .framer-c8U0H .framer-1s3ewf1, .framer-c8U0H .framer-1exraja, .framer-c8U0H .framer-1eke36l, .framer-c8U0H .framer-2tr1d8, .framer-c8U0H .framer-aaxf87, .framer-c8U0H .framer-hnmagl, .framer-c8U0H .framer-1sbwhpm, .framer-c8U0H .framer-1il25vk, .framer-c8U0H .framer-i487cy, .framer-c8U0H .framer-1btl8h6 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-c8U0H .framer-b5zq3f, .framer-c8U0H .framer-oz7tub, .framer-c8U0H .framer-1b9i6h5, .framer-c8U0H .framer-1lixxrt, .framer-c8U0H .framer-1po9jy3, .framer-c8U0H .framer-4rz5z4, .framer-c8U0H .framer-1xcoot6, .framer-c8U0H .framer-57eck4, .framer-c8U0H .framer-1h8kfr3, .framer-c8U0H .framer-1ukefu9, .framer-c8U0H .framer-1eoukil, .framer-c8U0H .framer-2i3ni8, .framer-c8U0H .framer-kqo5dw, .framer-c8U0H .framer-16aitn9, .framer-c8U0H .framer-17ssbw8, .framer-c8U0H .framer-19zyyzt, .framer-c8U0H .framer-mz67ic, .framer-c8U0H .framer-1a7rhr6, .framer-c8U0H .framer-s0cwye, .framer-c8U0H .framer-1og6tgc, .framer-c8U0H .framer-14p91i0, .framer-c8U0H .framer-12ok7g7, .framer-c8U0H .framer-1x6grin, .framer-c8U0H .framer-1q71dyl, .framer-c8U0H .framer-133mdxs, .framer-c8U0H .framer-1q68eg6, .framer-c8U0H .framer-6ctm9s, .framer-c8U0H .framer-j5o2t, .framer-c8U0H .framer-odmxrd, .framer-c8U0H .framer-1xj2akk, .framer-c8U0H .framer-134dlw3, .framer-c8U0H .framer-16xz9se, .framer-c8U0H .framer-5yefd9, .framer-c8U0H .framer-1r7wr3s, .framer-c8U0H .framer-o6k1yf, .framer-c8U0H .framer-1d05dot, .framer-c8U0H .framer-g6qlx1, .framer-c8U0H .framer-y91xq5, .framer-c8U0H .framer-callfz, .framer-c8U0H .framer-isg42w, .framer-c8U0H .framer-13lnads, .framer-c8U0H .framer-1tvapxk, .framer-c8U0H .framer-szuxq7, .framer-c8U0H .framer-157cffg, .framer-c8U0H .framer-cnw1i5, .framer-c8U0H .framer-n1ilb0, .framer-c8U0H .framer-ynx1qo, .framer-c8U0H .framer-1nofr4b, .framer-c8U0H .framer-18v0p3g, .framer-c8U0H .framer-1ms5vor, .framer-c8U0H .framer-9u2348, .framer-c8U0H .framer-3iuagx, .framer-c8U0H .framer-1yo8a5f, .framer-c8U0H .framer-1ab79yl, .framer-c8U0H .framer-cbbpm7, .framer-c8U0H .framer-rxmd3p, .framer-c8U0H .framer-1rriz85, .framer-c8U0H .framer-1bu1okz, .framer-c8U0H .framer-ykpk5x, .framer-c8U0H .framer-rypjse, .framer-c8U0H .framer-1ispdtx, .framer-c8U0H .framer-175dtmn, .framer-c8U0H .framer-bv62fk, .framer-c8U0H .framer-1tp19uq, .framer-c8U0H .framer-gc4avt, .framer-c8U0H .framer-124exzo, .framer-c8U0H .framer-12a3qbp, .framer-c8U0H .framer-jo6bo0 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-c8U0H .framer-1um1wrf, .framer-c8U0H .framer-3bii1w, .framer-c8U0H .framer-13pswo2, .framer-c8U0H .framer-1yzb5li, .framer-c8U0H .framer-t4i2nf, .framer-c8U0H .framer-lqikj3, .framer-c8U0H .framer-szg7n3, .framer-c8U0H .framer-1rynq4b, .framer-c8U0H .framer-f364z5, .framer-c8U0H .framer-j2bqpv, .framer-c8U0H .framer-nw24jv, .framer-c8U0H .framer-m27q5s, .framer-c8U0H .framer-pm0wgg, .framer-c8U0H .framer-m090jq, .framer-c8U0H .framer-bkl48g, .framer-c8U0H .framer-s4px8n, .framer-c8U0H .framer-md32z4, .framer-c8U0H .framer-1xd2tf4, .framer-c8U0H .framer-47nng5, .framer-c8U0H .framer-15bs0de { bottom: 3px; flex: none; left: 2px; position: absolute; right: 2px; top: 2px; }\",\".framer-c8U0H .framer-b76dvc, .framer-c8U0H .framer-1c3f52i, .framer-c8U0H .framer-i5hibl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1e4grfx, .framer-c8U0H .framer-111x7mx, .framer-c8U0H .framer-qdsgsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-11g8zo2-container, .framer-c8U0H .framer-iw2dao-container, .framer-c8U0H .framer-xsmr1l-container, .framer-c8U0H .framer-yp521i-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1bt2iae { --border-bottom-width: 1px; --border-color: var(--token-bb118380-c950-482e-917c-521dff63ad96, #457a78); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-bb118380-c950-482e-917c-521dff63ad96, #457a78); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 30px 20px; position: relative; width: 300px; }\",\".framer-c8U0H .framer-1lzhc3j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-2n3cv0-container { flex: none; height: 60px; position: relative; width: 260px; }\",\".framer-c8U0H .framer-h82dex { background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); border-bottom-right-radius: 20px; border-top-left-radius: 20px; flex: none; height: 40px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 119px; z-index: 1; }\",\".framer-c8U0H .framer-1yvbm80 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 24px; position: absolute; top: 8px; white-space: pre; width: auto; }\",\".framer-c8U0H .framer-1vf08ei { --border-bottom-width: 1px; --border-color: #c7dddc; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #daf2f1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 300px; }\",\".framer-c8U0H .framer-1hfd3q4, .framer-c8U0H .framer-c19my0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-11umr0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-w3kafi, .framer-c8U0H .framer-1l9e82z { aspect-ratio: 0.7910447761194029 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 63px; }\",\".framer-c8U0H .framer-34fu3d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-1rgq7wn { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-c8U0H .framer-cbsgnn, .framer-c8U0H .framer-ocb1k2, .framer-c8U0H .framer-1qnodj, .framer-c8U0H .framer-1ps8f2c, .framer-c8U0H .framer-1a7r389, .framer-c8U0H .framer-1h3nv8z, .framer-c8U0H .framer-xq2qtl, .framer-c8U0H .framer-ym8rzb, .framer-c8U0H .framer-1rfhovu, .framer-c8U0H .framer-1anmoyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-169puy4, .framer-c8U0H .framer-1bd3pu3 { background-color: #c7dddc; flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1iqgcgr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-ywih1t, .framer-c8U0H .framer-1pe217k, .framer-c8U0H .framer-1rjuthm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-r9flhk { flex: none; height: 100px; overflow: visible; position: relative; width: 100px; }\",\".framer-c8U0H .framer-irqpym { flex: none; height: 100px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100px; }\",\".framer-c8U0H .framer-zgdjxy { background-color: #daf2f1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 100px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-c8U0H .framer-1n76umd { flex: none; gap: 0px; height: 32px; left: 34px; overflow: visible; position: absolute; top: 34px; width: 32px; }\",\".framer-c8U0H .framer-1190a24 { bottom: 3px; flex: none; left: 5px; position: absolute; right: 7px; top: 1px; }\",\".framer-c8U0H .framer-12yza7h, .framer-c8U0H .framer-1vdx5m4, .framer-c8U0H .framer-1ebxf92 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 270px; }\",\".framer-c8U0H .framer-14n6cyk, .framer-c8U0H .framer-1ytipf9 { flex: none; height: 100px; overflow: hidden; position: relative; width: 100px; }\",\".framer-c8U0H .framer-3fvwxg { flex: none; height: 100px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-c8U0H .framer-1ax8gh5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-132ff1g-container { aspect-ratio: 1.7318435754189945 / 1; flex: 1.25 0 0px; height: var(--framer-aspect-ratio-supported, 404px); position: relative; width: 1px; }\",\".framer-c8U0H .framer-1r3onbc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-msrqev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-tjo9ra { 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-c8U0H .framer-b960dr { align-content: center; align-items: center; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c8U0H .framer-1w9zwdr { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 50%; }\",\".framer-c8U0H .framer-1q86eao { --framer-paragraph-spacing: 0px; flex: none; height: 154px; position: relative; white-space: pre-wrap; width: 418px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-1wo2q67 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 50%; }\",\".framer-c8U0H .framer-18ta99p { aspect-ratio: 1.1047040971168438 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 320px); overflow: visible; position: relative; width: 354px; z-index: 1; }\",\".framer-c8U0H .framer-12z5htt { aspect-ratio: 1.1047040971168438 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 201px); overflow: visible; position: absolute; right: 20px; top: 0px; width: 221px; z-index: 1; }\",\".framer-c8U0H .framer-1kx9xyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1buugz2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 492px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-16vlz6a { -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); background-color: #ebfffe; border-bottom-left-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 30px 27px 30px 27px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c8U0H .framer-1t0ed3f, .framer-c8U0H .framer-1oz1nxd, .framer-c8U0H .framer-10f9oa0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-92e1vo, .framer-c8U0H .framer-10cb84m, .framer-c8U0H .framer-af4wmu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-p3tirv, .framer-c8U0H .framer-1wbiopj, .framer-c8U0H .framer-yn56tf { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 80px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80px; }\",\".framer-c8U0H .framer-1izvw76, .framer-c8U0H .framer-696sh9, .framer-c8U0H .framer-3gquqb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-fgwbv6-container, .framer-c8U0H .framer-f5yphc-container, .framer-c8U0H .framer-kc24ur-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-c8U0H .framer-wouwex { align-content: flex-start; align-items: flex-start; background-color: #ddf4f3; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 30px 27px 30px 27px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-1eq84rc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 275px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-s17992 { align-content: center; align-items: center; background-color: #cee6e5; border-bottom-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 30px 27px 30px 27px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-1i5bfs4 { 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: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-10nm2w2 { aspect-ratio: 0.8173598553345389 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 533px); left: 50px; overflow: hidden; position: absolute; width: 435px; }\",\".framer-c8U0H .framer-ihx5ut { aspect-ratio: 0.8173598553345389 / 1; bottom: -50px; flex: none; height: var(--framer-aspect-ratio-supported, 533px); left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-c8U0H .framer-vfx0kt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1160px; }\",\".framer-c8U0H .framer-4jk76f { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-189o5br { --framer-paragraph-spacing: 0px; align-self: stretch; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-1n2ejr7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 10px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-c8U0H .framer-r86vq7 { flex: none; gap: 0px; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-c8U0H .framer-kvrfdu { aspect-ratio: 1 / 1; background-color: #ff4027; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 40px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-c8U0H .framer-j4acrn { bottom: 8px; flex: none; left: 8px; position: absolute; right: 8px; top: 8px; }\",\".framer-c8U0H .framer-1yd3ggb { bottom: 8px; flex: none; left: -32px; position: absolute; right: 48px; top: 8px; }\",\".framer-c8U0H .framer-j99cfh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-qhi6ou { align-content: center; align-items: center; background-color: #727877; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-1enz5xu, .framer-c8U0H .framer-10ex2vj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-c8U0H .framer-1pf4rk1, .framer-c8U0H .framer-jxou74 { --framer-paragraph-spacing: 0px; flex: none; height: 70px; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-lh4yes, .framer-c8U0H .framer-mmicgv, .framer-c8U0H .framer-1wa2ae { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-5hx6op { align-content: center; align-items: center; background-color: #457a78; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-szei18 { align-content: center; align-items: center; background-color: #fe9284; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-9zaz45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 275px; }\",\".framer-c8U0H .framer-ij800o { --framer-paragraph-spacing: 0px; flex: none; height: 70px; position: relative; white-space: pre-wrap; width: 275px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-1xfp3g1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-47fd6a { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1c421mx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-11z2mmp { --framer-paragraph-spacing: 0px; flex: none; height: 100px; position: relative; white-space: pre-wrap; width: 463px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-myxkzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 20%; }\",\".framer-c8U0H .framer-gmb2wu-container, .framer-c8U0H .framer-uxpiq4-container { flex: none; height: 60px; position: relative; width: auto; }\",\".framer-c8U0H .framer-t4k4lc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-d9eywt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 195px; }\",\".framer-c8U0H .framer-amkwfk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c8U0H .framer-4argo2, .framer-c8U0H .framer-79ujb6, .framer-c8U0H .framer-1jxlvv0 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; gap: 0px; height: 46px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c8U0H .framer-1vp14hf { aspect-ratio: 2.981366459627329 / 1; bottom: var(--framer-aspect-ratio-supported, 13px); flex: none; gap: 0px; height: 20px; left: 10px; overflow: visible; position: absolute; right: 10px; top: 13px; }\",\".framer-c8U0H .framer-myujmo { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: -1px; }\",\".framer-c8U0H .framer-dos01l { flex: none; height: 46px; overflow: hidden; position: relative; width: 80px; }\",\".framer-c8U0H .framer-oyu5jv { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c8U0H .framer-19au7fe { aspect-ratio: 2.981366600906969 / 1; bottom: var(--framer-aspect-ratio-supported, 9px); flex: none; gap: 0px; height: 27px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 10px; }\",\".framer-c8U0H .framer-14yz3os { aspect-ratio: 1.6581462178253321 / 1; bottom: var(--framer-aspect-ratio-supported, 10px); flex: none; gap: 0px; height: 26px; left: 19px; overflow: visible; position: absolute; right: 19px; top: 10px; }\",\".framer-c8U0H .framer-9rctti { bottom: 0px; flex: none; left: -1px; position: absolute; right: 1px; top: 0px; }\",\".framer-c8U0H .framer-onlijo { flex: none; height: 26px; left: calc(47.50000000000002% - 42px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 42px; }\",\".framer-c8U0H .framer-19r672q { aspect-ratio: 1.6581462178253321 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 43px); left: 53%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: 72px; }\",\".framer-c8U0H .framer-17pznl7 { flex: none; height: 31px; position: absolute; right: 0px; top: calc(50.00000000000002% - 31px / 2); width: 79px; }\",\".framer-c8U0H .framer-1jr280r, .framer-c8U0H .framer-hwb6ac, .framer-c8U0H .framer-90rf83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-l48657, .framer-c8U0H .framer-1gyfsv4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-84umo6 { 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: 1160px; }\",\".framer-c8U0H .framer-bqfc5j { aspect-ratio: 1.8296529968454258 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 634px); overflow: visible; position: relative; width: 1px; }\",\".framer-c8U0H .framer-1ibhxd1 { aspect-ratio: 1.2006802721088434 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 167px); overflow: visible; position: relative; width: 1px; }\",\".framer-c8U0H .framer-kvibsu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-diee9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-zlwzbo, .framer-c8U0H .framer-1l6qy1a, .framer-c8U0H .framer-1dckdkr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c8U0H .framer-byasdc, .framer-c8U0H .framer-36inxk, .framer-c8U0H .framer-1tg921g, .framer-c8U0H .framer-3ug402, .framer-c8U0H .framer-i61gld, .framer-c8U0H .framer-1dgge0p, .framer-c8U0H .framer-18jfucl, .framer-c8U0H .framer-1okf0d9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-bce7ce, .framer-c8U0H .framer-1wudso9, .framer-c8U0H .framer-pvgtl1, .framer-c8U0H .framer-5gznnx, .framer-c8U0H .framer-bax1c9, .framer-c8U0H .framer-1x29kf1, .framer-c8U0H .framer-1y3p98p, .framer-c8U0H .framer-2ioaac, .framer-c8U0H .framer-15k1g1e, .framer-c8U0H .framer-9wcain, .framer-c8U0H .framer-6vs0yn, .framer-c8U0H .framer-xs7epx, .framer-c8U0H .framer-1nr7xr, .framer-c8U0H .framer-1k339sf, .framer-c8U0H .framer-1otfpnd, .framer-c8U0H .framer-rzoakq, .framer-c8U0H .framer-cfospa, .framer-c8U0H .framer-1cutcax, .framer-c8U0H .framer-1nytczx, .framer-c8U0H .framer-vizycb, .framer-c8U0H .framer-162f401, .framer-c8U0H .framer-tp7nb, .framer-c8U0H .framer-1cdhab2, .framer-c8U0H .framer-1aux1fa, .framer-c8U0H .framer-1ro4ncw, .framer-c8U0H .framer-1ujvf33, .framer-c8U0H .framer-tkcgc0, .framer-c8U0H .framer-a3oi27, .framer-c8U0H .framer-rfwfkf, .framer-c8U0H .framer-r40lha, .framer-c8U0H .framer-1mc8pzz, .framer-c8U0H .framer-1d1ebih, .framer-c8U0H .framer-1r5qw2a, .framer-c8U0H .framer-91afqo, .framer-c8U0H .framer-vt9qtx, .framer-c8U0H .framer-c0swnu, .framer-c8U0H .framer-5yurc7, .framer-c8U0H .framer-1y8h3dy, .framer-c8U0H .framer-yjymjc, .framer-c8U0H .framer-jza3tq, .framer-c8U0H .framer-1w78oc4, .framer-c8U0H .framer-2j24n7, .framer-c8U0H .framer-kzpg96, .framer-c8U0H .framer-uxc4d7, .framer-c8U0H .framer-1avdxid { flex: none; gap: 0px; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-c8U0H .framer-16g3dnt, .framer-c8U0H .framer-1gpcr1w, .framer-c8U0H .framer-u5a9f4, .framer-c8U0H .framer-1guh81e, .framer-c8U0H .framer-1c513en, .framer-c8U0H .framer-6vk8ex, .framer-c8U0H .framer-xt061q, .framer-c8U0H .framer-1eg16oh, .framer-c8U0H .framer-1b2isrx, .framer-c8U0H .framer-7pui14, .framer-c8U0H .framer-1wrgilb, .framer-c8U0H .framer-e1tvea, .framer-c8U0H .framer-102bg3h, .framer-c8U0H .framer-13ns5t5, .framer-c8U0H .framer-12pi1b9, .framer-c8U0H .framer-13njjq9, .framer-c8U0H .framer-1hbch9r, .framer-c8U0H .framer-1n60u4i, .framer-c8U0H .framer-nuwy1s, .framer-c8U0H .framer-msqcdm, .framer-c8U0H .framer-eei4gh, .framer-c8U0H .framer-eg9epk, .framer-c8U0H .framer-1cqtjr0, .framer-c8U0H .framer-1xy5jvr, .framer-c8U0H .framer-e2kx2w, .framer-c8U0H .framer-5vh00g, .framer-c8U0H .framer-tv5yqv, .framer-c8U0H .framer-srqayy, .framer-c8U0H .framer-1awafor, .framer-c8U0H .framer-17lbeqe, .framer-c8U0H .framer-1uusa9l, .framer-c8U0H .framer-1lwb698, .framer-c8U0H .framer-1n47y8f, .framer-c8U0H .framer-1c19wdk, .framer-c8U0H .framer-1fdy1bt, .framer-c8U0H .framer-jjijtv, .framer-c8U0H .framer-usvkvl, .framer-c8U0H .framer-1kzmrtu, .framer-c8U0H .framer-jptyv6, .framer-c8U0H .framer-11x9xf3, .framer-c8U0H .framer-1sl53xn, .framer-c8U0H .framer-1stw1x9, .framer-c8U0H .framer-am0mcu, .framer-c8U0H .framer-1y12ni5, .framer-c8U0H .framer-1xcaiko { bottom: 2px; flex: none; left: 1px; position: absolute; right: 2px; top: 1px; }\",\".framer-c8U0H .framer-19402e2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-1k30kl7-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-c8U0H .framer-1kkjd9t-container { flex: none; height: auto; position: relative; width: 1440px; }\",\".framer-c8U0H .framer-1eflgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 680px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 140px; position: relative; width: 100%; }\",\".framer-c8U0H .framer-5ks7b2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-c8U0H .framer-1crv2a { --framer-paragraph-spacing: 0px; flex: none; height: 160px; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-1crnh8p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 544px; word-break: break-word; word-wrap: break-word; }\",\".framer-c8U0H .framer-5uvyi9 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 145%; justify-content: center; left: 98px; overflow: hidden; padding: 0px; position: absolute; top: -167px; width: 750px; z-index: 1; }\",\".framer-c8U0H .framer-1g0i4ao { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 145%; justify-content: center; left: 98px; overflow: hidden; padding: 0px; position: absolute; top: -167px; width: 750px; z-index: 1; }\",\".framer-c8U0H .framer-193c1pc { aspect-ratio: 0.6718146718146718 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 647px); overflow: visible; position: absolute; right: 10px; width: 435px; z-index: 1; }\",\".framer-c8U0H .framer-9yy8pr-container { bottom: 0px; flex: none; height: auto; position: fixed; right: 1050px; width: auto; z-index: 3; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-c8U0H[data-border=\"true\"]::after, .framer-c8U0H [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: 1439px) { .framer-c8U0H.framer-72rtr7 { gap: 60px; padding: 0px 0px 60px 0px; width: 810px; } .framer-c8U0H .framer-1g3yfwc-container { left: 0px; right: 0px; transform: unset; width: unset; } .framer-c8U0H .framer-19ydfos, .framer-c8U0H .framer-24dpzf { height: 100vh; } .framer-c8U0H .framer-dmylj7 { padding: 0px 0px 0px 30px; } .framer-c8U0H .framer-1at52yp { height: 39px; width: 160px; } .framer-c8U0H .framer-bln7x5 { padding: 0px 30px 0px 0px; } .framer-c8U0H .framer-1ddnkgh { justify-content: flex-start; padding: 120px 40px 100px 40px; z-index: 1; } .framer-c8U0H .framer-13f9vvb, .framer-c8U0H .framer-3rklwf { width: 70%; } .framer-c8U0H .framer-zi4u2b { padding: 30px 0px 0px 0px; width: 100%; } .framer-c8U0H .framer-1tuib81 { gap: 20px; padding: 0px 20px 0px 20px; width: 100%; } .framer-c8U0H .framer-1mpk14n, .framer-c8U0H .framer-1vf08ei, .framer-c8U0H .framer-1izvw76, .framer-c8U0H .framer-696sh9, .framer-c8U0H .framer-3gquqb { flex: 1 0 0px; width: 1px; } .framer-c8U0H .framer-1bt2iae { flex: 1 0 0px; padding: 60px 20px 30px 20px; width: 1px; } .framer-c8U0H .framer-2n3cv0-container, .framer-c8U0H .framer-12yza7h, .framer-c8U0H .framer-1vdx5m4, .framer-c8U0H .framer-1ebxf92, .framer-c8U0H .framer-lh4yes, .framer-c8U0H .framer-mmicgv, .framer-c8U0H .framer-9zaz45, .framer-c8U0H .framer-1wa2ae, .framer-c8U0H .framer-1gyfsv4, .framer-c8U0H .framer-1kkjd9t-container, .framer-c8U0H .framer-1crnh8p { width: 100%; } .framer-c8U0H .framer-v6sut6, .framer-c8U0H .framer-1bj3g14 { padding: 0px 50px 0px 50px; } .framer-c8U0H .framer-11umr0g { padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-cbsgnn { gap: 2px; } .framer-c8U0H .framer-1iqgcgr { gap: 35px; } .framer-c8U0H .framer-ywih1t, .framer-c8U0H .framer-1pe217k, .framer-c8U0H .framer-1rjuthm { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-c8U0H .framer-1ax8gh5 { flex-direction: column; gap: 40px; } .framer-c8U0H .framer-132ff1g-container { flex: none; height: var(--framer-aspect-ratio-supported, 410px); order: 1; width: 100%; } .framer-c8U0H .framer-1r3onbc { flex: none; order: 0; width: 100%; } .framer-c8U0H .framer-s18oos, .framer-c8U0H .framer-l48657 { width: 80%; } .framer-c8U0H .framer-b960dr { padding: 0px 30px 0px 30px; } .framer-c8U0H .framer-1w9zwdr, .framer-c8U0H .framer-1wo2q67 { padding: 0px 0px 40px 0px; } .framer-c8U0H .framer-1q86eao, .framer-c8U0H .framer-11z2mmp { flex: 1 0 0px; height: auto; width: 1px; } .framer-c8U0H .framer-18ta99p { height: var(--framer-aspect-ratio-supported, 260px); width: 287px; } .framer-c8U0H .framer-1buugz2 { flex-direction: column; height: min-content; order: 1; } .framer-c8U0H .framer-16vlz6a { border-bottom-left-radius: unset; flex: none; height: min-content; width: 100%; will-change: unset; } .framer-c8U0H .framer-1t0ed3f, .framer-c8U0H .framer-1oz1nxd, .framer-c8U0H .framer-10f9oa0 { gap: 40px; height: min-content; justify-content: center; } .framer-c8U0H .framer-92e1vo, .framer-c8U0H .framer-10cb84m, .framer-c8U0H .framer-af4wmu { flex-direction: row; } .framer-c8U0H .framer-fgwbv6-container { width: 656px; } .framer-c8U0H .framer-wouwex { flex: none; height: min-content; width: 100%; } .framer-c8U0H .framer-s17992 { border-bottom-right-radius: unset; flex: none; height: min-content; width: 100%; } .framer-c8U0H .framer-vfx0kt { padding: 0px 40px 0px 40px; width: 100%; } .framer-c8U0H .framer-j99cfh { align-content: flex-start; align-items: flex-start; gap: 5px; } .framer-c8U0H .framer-qhi6ou, .framer-c8U0H .framer-5hx6op, .framer-c8U0H .framer-szei18 { height: 240px; padding: 20px; } .framer-c8U0H .framer-1enz5xu, .framer-c8U0H .framer-10ex2vj { align-content: center; align-items: center; width: 100%; } .framer-c8U0H .framer-1pf4rk1, .framer-c8U0H .framer-jxou74, .framer-c8U0H .framer-ij800o { height: auto; width: 100%; } .framer-c8U0H .framer-47fd6a { gap: unset; justify-content: space-between; } .framer-c8U0H .framer-1c421mx, .framer-c8U0H .framer-t4k4lc, .framer-c8U0H .framer-d9eywt { justify-content: flex-start; } .framer-c8U0H .framer-myxkzk { width: 32%; } .framer-c8U0H .framer-amkwfk { flex: 1 0 0px; gap: 10px; justify-content: flex-end; width: 1px; } .framer-c8U0H .framer-84umo6 { width: 730px; } .framer-c8U0H .framer-bqfc5j { height: var(--framer-aspect-ratio-supported, 399px); } .framer-c8U0H .framer-diee9 { max-width: unset; padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-1l6qy1a { align-self: stretch; height: auto; } .framer-c8U0H .framer-1tg921g { flex: 1 0 0px; height: 1px; order: 0; } .framer-c8U0H .framer-19402e2 { order: 3; } .framer-c8U0H .framer-1eflgr { align-content: flex-end; align-items: flex-end; justify-content: center; padding: 0px 290px 60px 0px; } .framer-c8U0H .framer-5ks7b2 { flex: 1 0 0px; padding: 0px 0px 0px 40px; width: 1px; } .framer-c8U0H .framer-1crv2a { height: auto; width: 504px; } .framer-c8U0H .framer-1g0i4ao { background-color: rgba(0, 0, 0, 0.3); height: 108%; left: -8px; top: -30px; width: 93%; } .framer-c8U0H .framer-193c1pc { height: var(--framer-aspect-ratio-supported, 648px); right: -100px; } .framer-c8U0H .framer-9yy8pr-container { bottom: 9px; right: 450px; }}\",\"@media (max-width: 809px) { .framer-c8U0H.framer-72rtr7 { gap: 40px; padding: 0px 0px 60px 0px; width: 390px; } .framer-c8U0H .framer-hz5vr3-container { order: 4; } .framer-c8U0H .framer-lto8ty { gap: 0px; order: 0; padding: 0px 0px 20px 0px; } .framer-c8U0H .framer-19ydfos { height: 92vh; } .framer-c8U0H .framer-24dpzf { height: 92vh; padding: 80px 0px 0px 0px; } .framer-c8U0H .framer-1ddnkgh { background: linear-gradient(145deg, #ffffff 0%, rgba(252, 252, 252, 0) 60.00000000000001%); justify-content: center; padding: 10px 20px 60px 20px; z-index: 1; } .framer-c8U0H .framer-1sw4vhi { order: 0; width: 84%; } .framer-c8U0H .framer-13f9vvb, .framer-c8U0H .framer-2n3cv0-container, .framer-c8U0H .framer-ywih1t, .framer-c8U0H .framer-1pe217k, .framer-c8U0H .framer-1rjuthm, .framer-c8U0H .framer-l48657, .framer-c8U0H .framer-1gyfsv4, .framer-c8U0H .framer-1crnh8p { width: 100%; } .framer-c8U0H .framer-3rklwf { width: 80%; } .framer-c8U0H .framer-zi4u2b { padding: 0px 20px 0px 20px; width: 100%; } .framer-c8U0H .framer-1m65kg { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-c8U0H .framer-1tuib81 { align-content: center; align-items: center; flex-direction: column; width: 100%; } .framer-c8U0H .framer-1mpk14n { order: 0; width: 320px; } .framer-c8U0H .framer-1bt2iae { order: 1; padding: 60px 20px 30px 20px; width: 320px; } .framer-c8U0H .framer-1vf08ei { order: 2; width: 320px; } .framer-c8U0H .framer-v6sut6 { padding: 0px 20px 40px 20px; } .framer-c8U0H .framer-11umr0g { align-content: flex-start; align-items: flex-start; order: 0; padding: 40px 20px 10px 20px; } .framer-c8U0H .framer-1rgq7wn { gap: 5px; } .framer-c8U0H .framer-9xngaj, .framer-c8U0H .framer-siz5tf, .framer-c8U0H .framer-c19my0 { order: 1; } .framer-c8U0H .framer-12f53ao, .framer-c8U0H .framer-1642z11, .framer-c8U0H .framer-tb3yac { order: 0; } .framer-c8U0H .framer-cbsgnn { gap: 2px; } .framer-c8U0H .framer-1bj3g14 { padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-1iqgcgr { flex-direction: column; order: 0; } .framer-c8U0H .framer-12yza7h, .framer-c8U0H .framer-1vdx5m4, .framer-c8U0H .framer-1ebxf92, .framer-c8U0H .framer-myxkzk, .framer-c8U0H .framer-gmb2wu-container { flex: 1 0 0px; width: 1px; } .framer-c8U0H .framer-1ax8gh5 { background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); flex-direction: column; gap: 40px; order: 2; padding: 30px 20px 30px 20px; } .framer-c8U0H .framer-132ff1g-container { flex: none; height: var(--framer-aspect-ratio-supported, 202px); order: 0; width: 100%; } .framer-c8U0H .framer-1r3onbc { flex: none; order: 1; width: 100%; } .framer-c8U0H .framer-msrqev { gap: 20px; order: 3; padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-tjo9ra { align-content: flex-start; align-items: flex-start; height: 180px; order: 0; } .framer-c8U0H .framer-b960dr { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; flex: 1 0 0px; height: 160px; order: 1; width: 1px; } .framer-c8U0H .framer-12z5htt { height: var(--framer-aspect-ratio-supported, 200px); order: 0; } .framer-c8U0H .framer-1kx9xyz { order: 2; } .framer-c8U0H .framer-1buugz2 { flex-direction: column; gap: 10px; height: min-content; } .framer-c8U0H .framer-16vlz6a { align-content: center; align-items: center; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: min-content; justify-content: center; padding: 30px; width: 100%; } .framer-c8U0H .framer-1t0ed3f, .framer-c8U0H .framer-1oz1nxd, .framer-c8U0H .framer-10f9oa0 { align-self: stretch; gap: 40px; height: auto; justify-content: flex-start; } .framer-c8U0H .framer-wouwex { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: min-content; justify-content: center; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-c8U0H .framer-s17992 { border-bottom-left-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: min-content; justify-content: center; width: 100%; } .framer-c8U0H .framer-1i5bfs4 { order: 10; padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-vfx0kt { gap: 20px; width: 100%; } .framer-c8U0H .framer-j99cfh { flex-direction: column; gap: 10px; } .framer-c8U0H .framer-qhi6ou, .framer-c8U0H .framer-5hx6op, .framer-c8U0H .framer-szei18 { flex: none; height: min-content; padding: 20px; width: 100%; } .framer-c8U0H .framer-1enz5xu, .framer-c8U0H .framer-10ex2vj { align-content: center; align-items: center; justify-content: center; width: 100%; } .framer-c8U0H .framer-9zaz45 { justify-content: center; width: 100%; } .framer-c8U0H .framer-1xfp3g1 { align-content: flex-start; align-items: flex-start; justify-content: center; } .framer-c8U0H .framer-47fd6a { align-content: center; align-items: center; justify-content: center; } .framer-c8U0H .framer-t4k4lc { flex-direction: column; gap: 29px; justify-content: flex-start; } .framer-c8U0H .framer-d9eywt { align-content: flex-start; align-items: flex-start; height: min-content; order: 0; width: 100%; } .framer-c8U0H .framer-amkwfk { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; order: 1; width: 100%; } .framer-c8U0H .framer-4argo2 { align-self: start; justify-self: start; order: 0; } .framer-c8U0H .framer-79ujb6 { align-self: start; justify-self: start; order: 1; } .framer-c8U0H .framer-1jxlvv0 { align-self: start; justify-self: start; order: 2; } .framer-c8U0H .framer-1jr280r { order: 7; } .framer-c8U0H .framer-hwb6ac { align-content: flex-start; align-items: flex-start; order: 0; padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-84umo6 { order: 1; padding: 0px 20px 0px 20px; width: 100%; } .framer-c8U0H .framer-1ibhxd1 { height: var(--framer-aspect-ratio-supported, 292px); } .framer-c8U0H .framer-kvibsu { gap: 30px; order: 8; padding: 40px 0px 40px 0px; } .framer-c8U0H .framer-diee9 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-c8U0H .framer-zlwzbo, .framer-c8U0H .framer-1l6qy1a { flex: none; width: 100%; } .framer-c8U0H .framer-1kkjd9t-container { order: 11; width: 100%; } .framer-c8U0H .framer-1eflgr { align-content: flex-end; align-items: flex-end; height: 550px; order: 12; padding: 0px 60px 30px 60px; } .framer-c8U0H .framer-5ks7b2 { align-content: center; align-items: center; flex: 1 0 0px; width: 1px; } .framer-c8U0H .framer-1crv2a { height: auto; width: 100%; } .framer-c8U0H .framer-1g0i4ao { background-color: rgba(0, 0, 0, 0.3); height: 550px; left: calc(50.00000000000002% - 550px / 2); top: 0px; width: 550px; } .framer-c8U0H .framer-f5yphc-container { order: 13; } .framer-c8U0H .framer-9yy8pr-container { bottom: 518px; left: 50%; order: 15; right: unset; transform: translateX(-50%); } .framer-c8U0H .framer-kc24ur-container { order: 14; }}\",\"@media (min-width: 1728px) { .framer-c8U0H.framer-72rtr7 { width: 1728px; } .framer-c8U0H .framer-1g3yfwc-container, .framer-c8U0H .framer-3rklwf, .framer-c8U0H .framer-1hfd3q4, .framer-c8U0H .framer-696sh9, .framer-c8U0H .framer-3gquqb, .framer-c8U0H .framer-4argo2, .framer-c8U0H .framer-f07ic6, .framer-c8U0H .framer-1ukulfw, .framer-c8U0H .framer-18quyhp, .framer-c8U0H .framer-6eji4s, .framer-c8U0H .framer-ztixpf, .framer-c8U0H .framer-13ho6uv, .framer-c8U0H .framer-1f4a76a, .framer-c8U0H .framer-tmjus1 { order: 1; } .framer-c8U0H .framer-lto8ty, .framer-c8U0H .framer-13f9vvb, .framer-c8U0H .framer-1wbiopj, .framer-c8U0H .framer-yn56tf, .framer-c8U0H .framer-tb3yac, .framer-c8U0H .framer-dos01l, .framer-c8U0H .framer-ocb1k2, .framer-c8U0H .framer-1qnodj, .framer-c8U0H .framer-1ps8f2c, .framer-c8U0H .framer-1a7r389, .framer-c8U0H .framer-1h3nv8z, .framer-c8U0H .framer-ym8rzb, .framer-c8U0H .framer-1rfhovu, .framer-c8U0H .framer-1anmoyb { order: 0; } .framer-c8U0H .framer-1nwiodj { gap: 10px; order: 0; } .framer-c8U0H .framer-19ydfos { min-height: 90vh; } .framer-c8U0H .framer-24dpzf { height: 85vh; } .framer-c8U0H .framer-1ddnkgh { padding: 0px 140px 160px 140px; } .framer-c8U0H .framer-1sw4vhi { gap: 20px; order: 0; } .framer-c8U0H .framer-4f1bdb-container, .framer-c8U0H .framer-79ujb6, .framer-c8U0H .framer-qm4n7o, .framer-c8U0H .framer-161xs70, .framer-c8U0H .framer-1j1u8b4, .framer-c8U0H .framer-18vyry9, .framer-c8U0H .framer-9lvjgi, .framer-c8U0H .framer-z0x3k4, .framer-c8U0H .framer-1rm10v1, .framer-c8U0H .framer-78y322 { order: 2; } .framer-c8U0H .framer-1tuib81 { gap: 30px; } .framer-c8U0H .framer-1mpk14n { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-c8U0H .framer-1ax8gh5 { order: 2; padding: 0px; width: 1440px; } .framer-c8U0H .framer-132ff1g-container { height: var(--framer-aspect-ratio-supported, 436px); } .framer-c8U0H .framer-msrqev, .framer-c8U0H .framer-4flzdy, .framer-c8U0H .framer-14vw6ul, .framer-c8U0H .framer-2qi324, .framer-c8U0H .framer-17oa63a, .framer-c8U0H .framer-1oc8jia, .framer-c8U0H .framer-2ifpt7 { order: 3; } .framer-c8U0H .framer-b960dr { padding: 0px 50px 100px 50px; } .framer-c8U0H .framer-1w9zwdr { padding: 0px; } .framer-c8U0H .framer-16vlz6a, .framer-c8U0H .framer-wouwex, .framer-c8U0H .framer-s17992 { padding: 40px; } .framer-c8U0H .framer-1i5bfs4 { order: 7; } .framer-c8U0H .framer-10nm2w2, .framer-c8U0H .framer-ihx5ut { height: var(--framer-aspect-ratio-supported, 532px); } .framer-c8U0H .framer-1jr280r { order: 8; } .framer-c8U0H .framer-kvibsu { order: 9; } .framer-c8U0H .framer-diee9 { max-width: 70%; } .framer-c8U0H .framer-1kkjd9t-container { order: 11; } .framer-c8U0H .framer-1eflgr { gap: unset; height: 700px; justify-content: space-between; order: 12; } .framer-c8U0H .framer-5ks7b2 { order: 2; z-index: 0; } .framer-c8U0H .framer-1crnh8p { width: 552px; } .framer-c8U0H .framer-5uvyi9 { height: 145%; left: 112px; order: 0; top: -168px; z-index: 0; } .framer-c8U0H .framer-193c1pc { order: 3; right: 70px; z-index: 0; } .framer-c8U0H .framer-f5yphc-container { order: 13; } .framer-c8U0H .framer-9yy8pr-container { bottom: 4px; order: 14; right: 1318px; } .framer-c8U0H .framer-kc24ur-container { order: 15; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8630\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kVlNXoo9a\":{\"layout\":[\"fixed\",\"auto\"]},\"lnAMMi6wa\":{\"layout\":[\"fixed\",\"auto\"]},\"UNuwbcT5o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-c8U0H\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8630,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLDD4V15vFP-KUEg.woff2\",weight:\"800\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v18/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\",weight:\"400\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v18/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GVi5nsV8kA_Ykqw.woff2\",weight:\"800\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GCE3CQJHNQPET5GTQTXRVLUNQRTTGRYD/PW7XXFU476CRE7KBIKF63THLLGCBMQ4S/IX2APREQD7NDYAG5A6YIV4Q2246OG5XH.woff2\",weight:\"800\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"}]},...NavigationFixedFonts,...NavigationFixedMobileFonts,...GpsArrowFonts,...NavListFonts,...BtnPrimaryFonts,...YouTubeFonts,...EmbedFonts,...LayoutFaqFonts,...NewsletterFonts,...CookieBannerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kVlNXoo9a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lnAMMi6wa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UNuwbcT5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"8630\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "_Intl_DateTimeFormat_resolvedOptions_timeZone", "_Intl_DateTimeFormat_resolvedOptions", "_Intl_DateTimeFormat", "_Intl", "isEULocale", "_navigator_languages", "_navigator_language", "locale", "navigator", "country", "_locale_toUpperCase", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "_settings_hoverOpacity", "_settings_tapOpacity", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "NavigationFixedFonts", "getFonts", "G6X3B1Y06_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "NavigationFixedMobileFonts", "l4SSWqqzo_default", "GpsArrowFonts", "jBjOdLUfK_default", "NavListFonts", "TnA1PTb6m_default", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "BtnPrimaryFonts", "nh63Sv0P0_default", "MotionDivWithFX", "withFX", "YouTubeFonts", "Youtube", "EmbedFonts", "Embed", "LayoutFaqFonts", "lgPGsAFip_default", "ContainerWithFX", "NewsletterFonts", "yKh5O1RwG_default", "CookieBannerFonts", "CookieBanner", "FooterFonts", "KE1flUhia_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "animation8", "animation9", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "SVG", "getLoadingLazyAtYPosition", "Image2", "Link", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
