{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/xz93bWhsuQV9KHnFi4Ym/X63UknXCSO0HlKGnigNq/YfBVXQxvF.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import NavigationFixed from\"#framer/local/canvasComponent/G6X3B1Y06/G6X3B1Y06.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 HeroBanner from\"#framer/local/canvasComponent/NajtJi18e/NajtJi18e.js\";import BtnPrimary from\"#framer/local/canvasComponent/nh63Sv0P0/nh63Sv0P0.js\";import PricingCard from\"#framer/local/canvasComponent/rqPzs8fkJ/rqPzs8fkJ.js\";import LayoutLetsChat from\"#framer/local/canvasComponent/XAg8vGiAb/XAg8vGiAb.js\";import Newsletter from\"#framer/local/canvasComponent/yKh5O1RwG/yKh5O1RwG.js\";import*as sharedStyle5 from\"#framer/local/css/DRlFqgvwU/DRlFqgvwU.js\";import*as sharedStyle8 from\"#framer/local/css/eldaklQKU/eldaklQKU.js\";import*as sharedStyle4 from\"#framer/local/css/GgtokGsC6/GgtokGsC6.js\";import*as sharedStyle from\"#framer/local/css/gL7YAmK8C/gL7YAmK8C.js\";import*as sharedStyle2 from\"#framer/local/css/LdR1OWvz4/LdR1OWvz4.js\";import*as sharedStyle3 from\"#framer/local/css/o6G0xP52z/o6G0xP52z.js\";import*as sharedStyle1 from\"#framer/local/css/UufOQz3N0/UufOQz3N0.js\";import*as sharedStyle7 from\"#framer/local/css/XUOFob_NJ/XUOFob_NJ.js\";import*as sharedStyle6 from\"#framer/local/css/Zd5WkPKrh/Zd5WkPKrh.js\";import metadataProvider from\"#framer/local/webPageMetadata/YfBVXQxvF/YfBVXQxvF.js\";const NavigationFixedFonts=getFonts(NavigationFixed);const HeroBannerFonts=getFonts(HeroBanner);const NavigationFixedMobileFonts=getFonts(NavigationFixedMobile);const PricingCardFonts=getFonts(PricingCard);const BtnPrimaryFonts=getFonts(BtnPrimary);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const LayoutFaqFonts=getFonts(LayoutFaq);const NewsletterFonts=getFonts(Newsletter);const LayoutLetsChatFonts=getFonts(LayoutLetsChat);const FooterFonts=getFonts(Footer);const breakpoints={eTVO8pwbd:\"(min-width: 1440px)\",S3ntzUOjr:\"(max-width: 809px)\",y8DBcbaNB:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qBQWC\";const variantClassNames={eTVO8pwbd:\"framer-v-1kl314f\",S3ntzUOjr:\"framer-v-1du8krl\",y8DBcbaNB:\"framer-v-1li95uz\"};const transition1={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};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:-20,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transition2={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const transition3={delay:.8,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,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:\"eTVO8pwbd\",Phone:\"S3ntzUOjr\",Tablet:\"y8DBcbaNB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eTVO8pwbd\"};};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,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"S3ntzUOjr\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"S3ntzUOjr\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"bQAC9pIJ4\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eTVO8pwbd\",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-1kl314f\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t36tdy-container hidden-1du8krl\",layoutScroll:true,nodeId:\"eeZZEZpcE\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{variant:\"dkMO9dAMG\"}},children:/*#__PURE__*/_jsx(NavigationFixed,{height:\"100%\",id:\"eeZZEZpcE\",l6UIO318e:\"rgb(255, 255, 255)\",layoutId:\"eeZZEZpcE\",style:{width:\"100%\"},variant:\"KXOT7dX76\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c48fz8-container\",nodeId:\"FlaBl4mzK\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{variant:\"vDMjf6CTk\"},y8DBcbaNB:{variant:\"mNEXcwjCC\"}},children:/*#__PURE__*/_jsx(HeroBanner,{cTtSQAzwE:\"rgb(0, 0, 0)\",fQ7sfV839:\"20px 140px 20px 140px\",height:\"100%\",HuNulSckH:true,id:\"FlaBl4mzK\",jaas26bmr:false,jLXvAXHZW:\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\",l6KeOI4PM:true,layoutId:\"FlaBl4mzK\",LUJbYyEzo:\"rgb(0, 0, 0)\",pfs8p_nlI:\"30-Day Data Plans\",style:{height:\"100%\",width:\"100%\"},TJD8kpBOf:true,variant:\"PRqII_hPP\",width:\"100%\",XrJuR_zww:\"rgb(255, 64, 39)\",YkdsPJQSW:\"Travel like a Local on Japan\u2019s Fastest Network\",YzOR5vS18:false,z1n3k49u3:\"Best Japan eSIMs\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{height:100,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15n98bk-container hidden-1kl314f hidden-1li95uz\",layoutScroll:true,nodeId:\"h4aN3elAD\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(NavigationFixedMobile,{height:\"100%\",id:\"h4aN3elAD\",layoutId:\"h4aN3elAD\",style:{width:\"100%\"},variant:\"yvvnjF7Xw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozot4p\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5u40iw\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},y8DBcbaNB:{width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8xti2g-container\",nodeId:\"oOrVE2_t0\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{variant:\"sYyTe5v4h\"}},children:/*#__PURE__*/_jsx(PricingCard,{a39qJGL3N:\"\",AL33aFrSy:false,height:\"100%\",id:\"oOrVE2_t0\",KE5Lz4XSl:\"$28\",layoutId:\"oOrVE2_t0\",NXlo8hopZ:\"https://order.jjesim.com/product-review?esim=10\",PeZ6VIwPt:\"\",QN_SiZjWU:false,s_9TNRUpf:\"$19\",style:{width:\"100%\"},Sz3rCQ6Dw:\"$1.90 per GB\",variant:\"JOsKJlvM9\",vFMZLzJkw:\"20px 20px 30px 20px\",width:\"100%\",XAhGDjZDX:\"Basic Use\",xXcdFfebM:\"\",YlnU7MYvK:\"Ideal for shorter trips. Stay connected with maps, messaging and light web browsing.\",z_eJDAZf_:\"Coverage: 30 days\",ZufcdtlvD:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},y8DBcbaNB:{width:`max(max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px), 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-phe6mv-container\",nodeId:\"xyd4IEvnZ\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PricingCard,{a39qJGL3N:\"\",AL33aFrSy:true,height:\"100%\",id:\"xyd4IEvnZ\",KE5Lz4XSl:\"$36\",layoutId:\"xyd4IEvnZ\",NXlo8hopZ:\"https://order.jjesim.com/product-review?esim=20\",PeZ6VIwPt:\"\",QN_SiZjWU:false,s_9TNRUpf:\"$29\",style:{width:\"100%\"},Sz3rCQ6Dw:\"$1.45 per GB\",variant:\"Gnzs5wW2b\",vFMZLzJkw:\"40px 20px 30px 20px\",width:\"100%\",XAhGDjZDX:\"Recommended for Daily Use\",xXcdFfebM:\"\",YlnU7MYvK:\"A perfect balance for daily use, covering social media, music streaming, and general web browsing.\",z_eJDAZf_:\"Coverage: 30 days\",ZufcdtlvD:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},y8DBcbaNB:{width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:409,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nm3ae-container\",nodeId:\"aSZN_aNVS\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{variant:\"sYyTe5v4h\"}},children:/*#__PURE__*/_jsx(PricingCard,{a39qJGL3N:\"\",AL33aFrSy:false,height:\"100%\",id:\"aSZN_aNVS\",KE5Lz4XSl:\"$64\",layoutId:\"aSZN_aNVS\",NXlo8hopZ:\"https://order.jjesim.com/product-review?esim=50\",PeZ6VIwPt:\"\",QN_SiZjWU:true,s_9TNRUpf:\"$49\",style:{width:\"100%\"},Sz3rCQ6Dw:\"$0.98 per GB\",variant:\"JOsKJlvM9\",vFMZLzJkw:\"20px 20px 30px 20px\",width:\"100%\",XAhGDjZDX:\"Travel Care Free\",xXcdFfebM:\"\",YlnU7MYvK:\"Perfect for extended trips and power users needing extensive data for videos, streaming, and uploads.\",z_eJDAZf_:\"Coverage: 30 days\",ZufcdtlvD:false})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zcjccv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hv4ii\",\"data-framer-name\":\"Key Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9v3lpa\",\"data-framer-name\":\"Pricing (Features)\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dh02c8\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mk9q0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fv7aan\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oyxcm6\",\"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:\"Key Features\"})}),className:\"framer-1p0wfsz\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1873kd2\",\"data-border\":true,\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i6jotc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nalspz\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fmqhd9\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m114.34 154.34 96-96a8 8 0 0 1 11.32 11.32l-96 96a8 8 0 0 1-11.32-11.32ZM128 88a63.9 63.9 0 0 1 20.44 3.33 8 8 0 1 0 5.11-15.16 80 80 0 0 0-105.06 84.71 8 8 0 0 0 7.94 7.12c.29 0 .59 0 .89-.05a8 8 0 0 0 7.07-8.83A64.92 64.92 0 0 1 64 152a64.07 64.07 0 0 1 64-64Zm99.74 13a8 8 0 0 0-14.24 7.3 96.27 96.27 0 0 1 5 75.71l-181.1-.07A96.24 96.24 0 0 1 128 56h.88a95 95 0 0 1 42.82 10.5 8 8 0 1 0 7.3-14.23 112 112 0 0 0-156.66 137A16.07 16.07 0 0 0 37.46 200h181.07a16 16 0 0 0 15.11-10.71 112.35 112.35 0 0 0-5.9-88.3Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkllfd\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Fastest 5G & 4G LTE Speeds\"})})}),className:\"framer-1bauuc9\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iywi7n\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4nl6e\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M135.16 84.42a8 8 0 0 0-14.32 0l-72 144a8 8 0 0 0 14.31 7.16L77 208h102.1l13.79 27.58A8 8 0 0 0 200 240a8 8 0 0 0 7.15-11.58ZM128 105.89 155.06 160h-54.12ZM85 192l8-16h70.1l8 16Zm74.54-98.26a32 32 0 1 0-63 0 8 8 0 1 1-15.74 2.85 48 48 0 1 1 94.46 0 8 8 0 0 1-7.86 6.58 8.74 8.74 0 0 1-1.43-.13 8 8 0 0 1-6.48-9.3Zm-95.39 42.47a80 80 0 1 1 127.7 0 8 8 0 0 1-12.76-9.65 64 64 0 1 0-102.18 0 8 8 0 0 1-12.76 9.65Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9fe0ic\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Japan\u2019s Best Coverage Network\"})})}),className:\"framer-1vtcra2\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szg4q0\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sl4ogy\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m213.66 82.34-56-56A8 8 0 0 0 152 24H56a16 16 0 0 0-16 16v176a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16V88a8 8 0 0 0-2.34-5.66ZM200 216H56V40h92.69L200 91.31V216Zm-24-104H80a8 8 0 0 0-8 8v72a8 8 0 0 0 8 8h96a8 8 0 0 0 8-8v-72a8 8 0 0 0-8-8Zm-8 72h-16v-32a8 8 0 0 0-16 0v32h-16v-32a8 8 0 0 0-16 0v32H88v-56h80Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jydd7w\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Instant Activation & eSIM Setup\"})})}),className:\"framer-1xqn2to\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21n78g\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-147xuw8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm88 104a87.56 87.56 0 0 1-20.41 56.28L71.72 60.4A88 88 0 0 1 216 128Zm-176 0a87.56 87.56 0 0 1 20.41-56.28L184.28 195.6A88 88 0 0 1 40 128Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-isvzve\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"No Hidden Fees\"})})}),className:\"framer-1ce5t5z\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9f2tyj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6lm0g\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ekezbo\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M213.66 194.34a8 8 0 0 1-11.32 11.32L184 187.31l-18.34 18.35a8 8 0 0 1-11.32-11.32L172.69 176l-18.35-18.34a8 8 0 0 1 11.32-11.32L184 164.69l18.34-18.35a8 8 0 0 1 11.32 11.32L195.31 176ZM160 120a8 8 0 0 0 8-8V72a8 8 0 0 0-16 0v40a8 8 0 0 0 8 8Zm40 0a8 8 0 0 0 8-8V32a8 8 0 0 0-16 0v80a8 8 0 0 0 8 8Zm-80-16a8 8 0 0 0-8 8v88a8 8 0 0 0 16 0v-88a8 8 0 0 0-8-8Zm-40 40a8 8 0 0 0-8 8v48a8 8 0 0 0 16 0v-48a8 8 0 0 0-8-8Zm-40 40a8 8 0 0 0-8 8v8a8 8 0 0 0 16 0v-8a8 8 0 0 0-8-8Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fuubr4\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"No Throttling, No Slowdowns\"})})}),className:\"framer-fzjsku\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hwfju\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w42e4g\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M80 120h96a8 8 0 0 1 0 16H80a8 8 0 0 1 0-16Zm24 48H64a40 40 0 0 1 0-80h40a8 8 0 0 0 0-16H64a56 56 0 0 0 0 112h40a8 8 0 0 0 0-16Zm88-96h-40a8 8 0 0 0 0 16h40a40 40 0 0 1 0 80h-40a8 8 0 0 0 0 16h40a56 56 0 0 0 0-112Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f577r7\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tethering & Hotspot Supported\"})})}),className:\"framer-brbeur\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8rhsu\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-20p6tw\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m185.33 114.21 29.14-27.42.17-.17a32 32 0 0 0-45.26-45.26c0 .06-.11.11-.17.17l-27.42 29.14-83-30.2a8 8 0 0 0-8.39 1.86l-24 24a8 8 0 0 0 1.22 12.31l63.89 42.59L76.69 136H56a8 8 0 0 0-5.65 2.34l-24 24A8 8 0 0 0 29 175.42l36.82 14.73 14.7 36.75.06.16a8 8 0 0 0 13.18 2.47l23.87-23.88A8 8 0 0 0 120 200v-20.69l14.76-14.76 42.59 63.89a8 8 0 0 0 12.31 1.22l24-24a8 8 0 0 0 1.86-8.39Zm-.07 97.23-42.59-63.88a8 8 0 0 0-5.87-3.56h-.79a8 8 0 0 0-5.66 2.35l-24 24A8 8 0 0 0 104 176v20.69l-13.07 13.07L79.43 181a8 8 0 0 0-4.43-4.43l-28.74-11.5L59.32 152H80a8 8 0 0 0 5.66-2.34l24-24a8 8 0 0 0-1.22-12.32l-63.88-42.6 13.5-13.49 83.22 30.26a8 8 0 0 0 8.56-2l30.94-32.91a16 16 0 0 1 22.62 22.63l-32.87 30.93a8 8 0 0 0-2 8.56l30.26 83.22Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-109eiqn\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Japan eSIM for Tourists\"})})}),className:\"framer-19xvqot\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rw1u07\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xx47my\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m247.15 212.42-56-112a8 8 0 0 0-14.31 0l-21.71 43.43A88 88 0 0 1 108 126.93 103.65 103.65 0 0 0 135.69 64H160a8 8 0 0 0 0-16h-56V32a8 8 0 0 0-16 0v16H32a8 8 0 0 0 0 16h87.63A87.76 87.76 0 0 1 96 116.35a87.74 87.74 0 0 1-19-31 8 8 0 1 0-15.08 5.34A103.63 103.63 0 0 0 84 127a87.55 87.55 0 0 1-52 17 8 8 0 0 0 0 16 103.46 103.46 0 0 0 64-22.08 104.18 104.18 0 0 0 51.44 21.31l-26.6 53.19a8 8 0 0 0 14.31 7.16L148.94 192h70.11l13.79 27.58A8 8 0 0 0 240 224a8 8 0 0 0 7.15-11.58ZM156.94 176 184 121.89 211.05 176Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keenrj\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"24/7 English Support\"})})}),className:\"framer-1aqb304\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ubf5t0\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Zui0rauTf\",webPageId:\"CegUbXjYv\"},implicitPathVariables:undefined},{href:{hash:\":Zui0rauTf\",webPageId:\"CegUbXjYv\"},implicitPathVariables:undefined},{href:{hash:\":Zui0rauTf\",webPageId:\"CegUbXjYv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},y8DBcbaNB:{width:`max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 20px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((max(${componentViewport?.width||\"100vw\"} - 480px, 1px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dddk2a-container\",nodeId:\"kRCyQgzp5\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{Pa0hNWdfl:resolvedLinks[2]},y8DBcbaNB:{Pa0hNWdfl:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"rgb(199, 221, 220)\",borderStyle:\"solid\",borderWidth:1},B41YvuhTY:\"Technical Details\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"kRCyQgzp5\",layoutId:\"kRCyQgzp5\",Pa0hNWdfl:resolvedLinks[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"Hp1qGjazE\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined},{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined},{href:{webPageId:\"p55U1rGxS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},y8DBcbaNB:{width:`max((max(${componentViewport?.width||\"100vw\"} - 80px, 1px) - 20px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((max(${componentViewport?.width||\"100vw\"} - 480px, 1px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ll4bib-container\",nodeId:\"N3FXhz2Xb\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{B41YvuhTY:\"Check phone compatibility\",Pa0hNWdfl:resolvedLinks1[2]},y8DBcbaNB:{Pa0hNWdfl:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BtnPrimary,{a2o6qQFNw:{borderColor:\"rgb(199, 221, 220)\",borderStyle:\"solid\",borderWidth:1},B41YvuhTY:\"Check eSIM compatibility\",eiDeOhBde:\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\",height:\"100%\",id:\"N3FXhz2Xb\",layoutId:\"N3FXhz2Xb\",Pa0hNWdfl:resolvedLinks1[0],qBVwkRJMV:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"d5hwHDW83\",width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5hmsm\",\"data-framer-name\":\"Apps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjzbdu\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use Your Data Anywhere You Go\"})})}},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\"},children:\"Use Your Data Anywhere You Go\"})}),className:\"framer-1id1nqh\",\"data-framer-name\":\"Tell us what\u2019s going on. We\u2019d love to help!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Stay connected on your favorite apps, from maps and messaging to streaming and social media.\"})}),className:\"framer-1ejmrsl\",\"data-framer-appear-id\":\"1ejmrsl\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1brihzi-container\",isModuleExternal:true,nodeId:\"PlmW0qBpN\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"PlmW0qBpN\",layoutId:\"PlmW0qBpN\",padding:10,paddingBottom:10,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ihi37\",\"data-framer-name\":\"app-set-1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Google Map app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/2PBkbcX1gaifPuZIYvTmFAxM.jpg\"},className:\"framer-1cvxlbw\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Instagram app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/jrZAeQmOnTfWZ8qewmN9JJYrmUY.jpg\"},className:\"framer-1im17dx\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Youtube app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/gdfw916I9kvm3RQefSooydff42M.jpg\"},className:\"framer-929vrx\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tm6kmk\",\"data-framer-name\":\"Frame 393\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Google Translate app icon\",fit:\"fill\",pixelHeight:1997,pixelWidth:2e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/ltmeDQu1aKqzmzvyRSgR4YTemOQ.png\",srcSet:\"https://framerusercontent.com/images/ltmeDQu1aKqzmzvyRSgR4YTemOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ltmeDQu1aKqzmzvyRSgR4YTemOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ltmeDQu1aKqzmzvyRSgR4YTemOQ.png 2000w\"},className:\"framer-tmohxr\",\"data-framer-name\":\"google-translate-seeklogo 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpjmby\",\"data-framer-name\":\"Frame 394\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Uber app icon\",fit:\"fill\",pixelHeight:868,pixelWidth:2500,sizes:\"44px\",src:\"https://framerusercontent.com/images/8zJCMK20gdvTdR2XWH3YA0MDJrU.svg\",srcSet:\"https://framerusercontent.com/images/8zJCMK20gdvTdR2XWH3YA0MDJrU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/8zJCMK20gdvTdR2XWH3YA0MDJrU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8zJCMK20gdvTdR2XWH3YA0MDJrU.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8zJCMK20gdvTdR2XWH3YA0MDJrU.svg 2500w\"},className:\"framer-590zlq\",\"data-framer-name\":\"uber-seeklogo 1\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Spotify app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/zj1mw7t4jJnS0Z2aMcYff4dS6sc.jpg\"},className:\"framer-gw229z\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Whatsapp app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mwQ8TQdPmW36sN7r81WofiIjYho.jpg\"},className:\"framer-9gwi21\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Gmail app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/KXiooK3rOYY8ORT6rd1w6opMqFc.jpg\"},className:\"framer-sncznv\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Netflix app icon\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/ZpZzQomruj6tTVOF565nsYvGM.jpg\"},className:\"framer-17qi5by\",\"data-framer-name\":\"Apps Logo Set\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Pokemon GO app icon\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/KS2le1QDiE1F9HUn6RgZ3XYo.png\"},className:\"framer-1gofnq7\",\"data-framer-name\":\"Icon-pokemon-go\"})]})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nr9ut1\",\"data-framer-name\":\"Map\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ppfex\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-9xwyae\",\"data-styles-preset\":\"DRlFqgvwU\",children:\"Most Reliable Network 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\",children:\"Most Reliable Network in Japan\"})}),className:\"framer-1p8n3z7\",\"data-framer-name\":\"Tell us what\u2019s going on. We\u2019d love to help!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",children:\"Rest assured knowing we got you covered. Journey Japan eSIM provides 99% data coverage across the region on NTT Docomo's fastest and most reliable network. Using private bandwidth, you can experience speeds like no other.\"})}),className:\"framer-devlbl\",\"data-framer-appear-id\":\"devlbl\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{background:{alt:\"Map of Japan with 99% data coverage\",fit:\"fit\",intrinsicHeight:782,intrinsicWidth:760,pixelHeight:1524,pixelWidth:1423,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 600px)`,src:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024 956w,https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png 1423w\"}},y8DBcbaNB:{background:{alt:\"Map of Japan with 99% data coverage\",fit:\"fit\",intrinsicHeight:782,intrinsicWidth:760,pixelHeight:1524,pixelWidth:1423,positionX:\"center\",positionY:\"center\",sizes:`min((${componentViewport?.width||\"100vw\"} - 80px) * 0.45, 600px)`,src:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024 956w,https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png 1423w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Map of Japan with 99% data coverage\",fit:\"fit\",intrinsicHeight:782,intrinsicWidth:760,pixelHeight:1524,pixelWidth:1423,positionX:\"center\",positionY:\"center\",sizes:`min((${componentViewport?.width||\"100vw\"} - 480px) * 0.45, 600px)`,src:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png?scale-down-to=1024 956w,https://framerusercontent.com/images/GA3tzTz8fjFR5NLurXQ1KgLLPU.png 1423w\"},className:\"framer-x9seh0\",\"data-framer-name\":\"Jjesim-map\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pi50gw\",\"data-framer-name\":\"Comparisons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lb44ba\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-alignment\":\"center\"},children:\"Journey Japan vs Other Providers\"})})},y8DBcbaNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Journey Japan vs Other Providers\"})})}},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\"},children:\"Journey Japan vs Other Providers\"})}),className:\"framer-1v2avg\",\"data-framer-name\":\"Why Journey Japan eSIM?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xywfg\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-htj2gc\",\"data-border\":true,\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bya1i\",\"data-framer-name\":\"column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3s1mvw\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6pgpjg\",\"data-styles-preset\":\"Zd5WkPKrh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Feature\"})}),className:\"framer-84c4oa\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1la3kg7\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Best Cost Performance GB Pricing\"})}),className:\"framer-c13bhj\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qan15x\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Dedicated Network Provider\"})}),className:\"framer-g1fy3u\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5dv9eh\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Speed Limits\"})}),className:\"framer-30bukd\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p7834q\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\"},children:\"eSIM Plan Duration\"})}),className:\"framer-q14v86\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehobl7\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unlimited Tethering & Hotspot\"})}),className:\"framer-ssz5sb\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkaxsw\",\"data-framer-name\":\"column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r62a91\",\"data-framer-name\":\"top\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g8xr5q\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"qM4DidoDf\",openInNewTab:false,scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 138 34\"><path d=\"M 21.032 3.775 C 16.239 -0.954 8.441 -0.954 3.646 3.775 C 1.308 6.08 0.013 9.183 0 12.509 C -0.013 15.923 1.306 19.133 3.718 21.55 L 11.139 28.986 C 11.139 28.986 11.15 28.997 11.156 29.001 C 11.483 29.32 11.913 29.48 12.34 29.48 C 12.768 29.48 13.213 29.314 13.542 28.984 L 20.963 21.547 C 23.374 19.131 24.694 15.921 24.681 12.507 C 24.668 9.181 23.372 6.078 21.032 3.773 Z M 20.319 16.666 C 18.318 15.859 15.563 13.888 14.054 10.818 L 10.624 10.818 C 9.274 13.515 6.945 15.599 4.361 16.666 C 3.733 15.438 3.378 14.048 3.378 12.575 C 3.378 7.615 7.39 3.594 12.34 3.594 C 17.29 3.594 21.303 7.615 21.303 12.575 C 21.303 14.05 20.945 15.438 20.319 16.666 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 120.739 24.761 C 120.956 24.898 121.271 25.001 121.676 25.106 C 122.298 25.266 122.91 25.458 123.367 25.787 C 123.808 26.107 124.105 26.557 124.105 27.27 C 124.105 27.855 123.847 28.358 123.395 28.717 C 122.937 29.078 122.273 29.302 121.461 29.302 C 120.403 29.302 119.48 28.945 118.849 28.303 L 119.752 27.487 C 120.216 27.935 120.853 28.154 121.434 28.154 C 121.791 28.154 122.103 28.088 122.337 27.953 C 122.574 27.816 122.739 27.597 122.739 27.313 C 122.739 26.982 122.524 26.779 122.259 26.639 C 122.003 26.507 121.647 26.404 121.247 26.287 C 120.696 26.13 120.12 25.945 119.667 25.583 C 119.274 25.268 119.016 24.834 119.016 24.164 C 119.016 23.09 119.933 22.245 121.379 22.245 C 122.348 22.245 123.073 22.54 123.68 23.061 L 122.807 23.849 C 122.407 23.531 121.911 23.362 121.423 23.362 C 121.151 23.362 120.897 23.428 120.705 23.559 C 120.511 23.691 120.373 23.895 120.373 24.146 C 120.373 24.272 119.946 24.393 120.015 24.5 C 120.081 24.608 120.632 24.692 120.744 24.761 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 116.505 25.835 C 116.308 25.259 115.831 24.804 115.17 24.804 C 114.464 24.804 114.011 25.254 113.829 25.828 L 116.507 25.835 Z M 113.789 26.909 C 113.941 27.542 114.402 28.045 115.167 28.045 C 115.739 28.045 116.306 27.764 116.619 27.359 L 117.56 28.218 C 117.099 28.943 116.21 29.29 115.17 29.29 C 113.458 29.29 112.432 28.008 112.432 26.429 C 112.432 24.85 113.481 23.568 115.161 23.568 C 116.841 23.568 117.921 24.859 117.921 26.429 C 117.921 26.584 117.917 26.744 117.907 26.904 L 113.794 26.904 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 126.043 22.393 L 126.043 29.21 L 124.551 29.21 L 124.551 22.393 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 132.423 23.083 L 132.577 23.236 L 132.727 23.083 C 133.241 22.565 133.996 22.24 134.949 22.24 C 135.902 22.24 136.663 22.569 137.175 23.095 C 137.689 23.623 137.977 24.363 137.977 25.213 L 137.977 29.21 L 136.645 29.21 L 136.645 25.423 C 136.645 24.978 136.509 24.521 136.229 24.171 C 135.943 23.815 135.511 23.579 134.949 23.579 C 134.387 23.579 133.955 23.815 133.665 24.171 C 133.381 24.521 133.241 24.98 133.241 25.423 L 133.241 29.21 L 131.905 29.21 L 131.9 25.423 C 131.9 24.978 131.765 24.521 131.484 24.171 C 131.199 23.815 130.767 23.579 130.205 23.579 C 129.643 23.579 129.211 23.815 128.923 24.171 C 128.639 24.521 128.5 24.98 128.5 25.423 L 128.5 29.21 L 127.165 29.21 L 127.165 25.213 C 127.165 24.363 127.455 23.623 127.972 23.097 C 128.488 22.571 129.243 22.242 130.205 22.242 C 131.167 22.242 131.907 22.567 132.419 23.083 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 105.318 21.856 C 105.318 20.229 104.333 18.574 102.338 18.574 C 100.343 18.574 99.338 20.229 99.338 21.856 L 99.338 29.114 L 95.791 29.114 L 95.791 21.856 C 95.791 18.239 98.261 15.446 102.338 15.446 C 106.415 15.446 108.858 18.239 108.858 21.856 L 108.858 29.114 L 105.316 29.114 L 105.316 21.856 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 63.788 15.595 L 60.449 15.595 L 60.449 16.381 C 59.421 15.787 58.182 15.446 56.782 15.446 C 52.515 15.446 49.857 18.597 49.857 22.425 C 49.857 26.253 52.465 29.402 56.809 29.402 C 58.212 29.402 59.435 29.078 60.449 28.506 L 60.449 29.256 L 63.788 29.256 Z M 56.804 26.36 C 54.387 26.36 53.164 24.461 53.164 22.421 C 53.164 20.38 54.412 18.456 56.804 18.456 C 59.03 18.456 60.443 20.412 60.443 22.421 C 60.443 24.429 59.222 26.36 56.804 26.36 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 94.036 15.595 L 90.697 15.595 L 90.697 16.381 C 89.669 15.786 88.43 15.446 87.029 15.446 C 82.763 15.446 80.105 18.597 80.105 22.425 C 80.105 26.253 82.713 29.402 87.057 29.402 C 88.46 29.402 89.683 29.078 90.697 28.506 L 90.697 29.256 L 94.036 29.256 Z M 87.055 26.36 C 84.637 26.36 83.414 24.461 83.414 22.421 C 83.414 20.38 84.662 18.456 87.055 18.456 C 89.28 18.456 90.693 20.412 90.693 22.421 C 90.693 24.429 89.472 26.36 87.055 26.36 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 72.376 15.446 C 68.165 15.446 65.454 18.554 65.447 22.334 L 65.447 34 L 68.749 34 L 68.749 28.365 C 69.753 28.929 70.962 29.251 72.349 29.251 C 76.647 29.251 79.225 26.162 79.225 22.35 C 79.223 18.563 76.593 15.448 72.374 15.448 Z M 72.351 26.244 C 69.961 26.244 68.752 24.365 68.752 22.347 C 68.752 20.33 70.148 18.426 72.351 18.426 C 74.714 18.426 75.951 20.359 75.951 22.347 C 75.951 24.336 74.739 26.244 72.351 26.244 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 56.773 0 C 61.032 0 63.768 3.147 63.768 6.97 C 63.768 10.793 61.14 13.94 56.798 13.94 C 52.456 13.94 49.855 10.821 49.855 6.97 C 49.855 3.119 52.513 0 56.773 0 Z M 56.8 3.01 C 54.414 3.01 53.166 4.961 53.166 6.97 C 53.166 8.979 54.387 10.903 56.8 10.903 C 59.213 10.903 60.433 9.006 60.433 6.97 C 60.433 4.934 59.023 3.01 56.8 3.01 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 111.835 5.514 C 111.36 4.113 110.195 3.01 108.591 3.01 C 106.875 3.01 105.773 4.107 105.329 5.501 Z M 105.243 8.124 C 105.611 9.66 106.731 10.887 108.591 10.887 C 109.98 10.887 111.356 10.206 112.119 9.223 L 114.402 11.317 C 113.282 13.078 111.118 13.919 108.593 13.919 C 104.434 13.919 101.936 10.807 101.936 6.965 C 101.936 3.124 104.484 0.009 108.565 0.009 C 112.647 0.009 115.271 3.149 115.271 6.963 C 115.271 7.34 115.261 7.729 115.236 8.119 L 105.243 8.119 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 68.533 7.562 C 68.533 9.189 69.522 10.844 71.515 10.844 C 73.507 10.844 74.515 9.189 74.515 7.562 L 74.515 0.302 L 78.062 0.302 L 78.062 7.56 C 78.062 11.177 75.591 13.97 71.515 13.97 C 67.438 13.97 64.995 11.177 64.995 7.56 L 64.995 0.302 L 68.537 0.302 L 68.537 7.56 L 68.535 7.56 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 97.057 6.419 C 97.057 4.792 96.072 3.138 94.077 3.138 C 92.082 3.138 91.077 4.792 91.077 6.419 L 91.077 13.677 L 87.53 13.677 L 87.53 6.419 C 87.532 2.802 90.003 0.009 94.079 0.009 C 98.156 0.009 100.599 2.802 100.599 6.419 L 100.599 13.677 L 97.057 13.677 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 86.887 3.138 C 84.893 3.138 83.033 4.568 83.033 6.419 L 83.033 13.677 L 79.486 13.677 L 79.486 6.419 C 79.486 2.802 82.811 0.009 86.887 0.009 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 125.033 0.146 L 122.021 8.43 L 118.851 0.146 L 115.147 0.146 L 120.529 12.528 L 120.471 12.681 C 119.903 14.39 117.907 16.1 115.343 14.952 L 114.311 17.903 C 118.157 19.251 122.217 17.718 123.415 14.306 L 128.737 0.146 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 48.605 0 L 48.605 20.949 C 48.605 25.837 45.499 29.404 40.287 29.404 C 35.451 29.402 31.994 26.514 31.994 21.164 L 35.506 21.164 C 35.506 24.404 37.074 26.052 40.287 26.052 C 43.5 26.052 45.04 23.81 45.04 20.947 L 45.04 3.323 L 39.341 3.323 L 39.341 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:9963195049},y8DBcbaNB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 102 25\"><path d=\"M 15.546 2.776 C 12.003 -0.701 6.239 -0.701 2.695 2.776 C 0.967 4.471 0.01 6.753 0 9.198 C -0.01 11.708 0.966 14.068 2.748 15.845 L 8.233 21.313 C 8.233 21.313 8.241 21.321 8.246 21.324 C 8.488 21.559 8.805 21.676 9.121 21.676 C 9.437 21.676 9.766 21.554 10.009 21.312 L 15.494 15.844 C 17.277 14.067 18.252 11.706 18.242 9.196 C 18.233 6.751 17.275 4.469 15.546 2.774 Z M 15.019 12.254 C 13.539 11.661 11.503 10.212 10.388 7.954 L 7.853 7.954 C 6.855 9.937 5.134 11.47 3.224 12.254 C 2.759 11.351 2.497 10.329 2.497 9.246 C 2.497 5.599 5.462 2.642 9.121 2.642 C 12.78 2.642 15.746 5.599 15.746 9.246 C 15.746 10.331 15.481 11.351 15.019 12.254 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 89.242 18.206 C 89.402 18.307 89.635 18.383 89.934 18.46 C 90.394 18.578 90.847 18.719 91.185 18.961 C 91.51 19.196 91.73 19.527 91.73 20.051 C 91.73 20.482 91.539 20.851 91.205 21.115 C 90.867 21.381 90.375 21.545 89.776 21.545 C 88.994 21.545 88.311 21.283 87.845 20.811 L 88.512 20.211 C 88.855 20.54 89.326 20.702 89.756 20.702 C 90.019 20.702 90.25 20.653 90.423 20.554 C 90.598 20.453 90.72 20.292 90.72 20.083 C 90.72 19.84 90.561 19.69 90.365 19.588 C 90.176 19.49 89.913 19.415 89.617 19.329 C 89.21 19.213 88.784 19.077 88.45 18.811 C 88.159 18.579 87.968 18.26 87.968 17.768 C 87.968 16.978 88.646 16.356 89.715 16.356 C 90.431 16.356 90.967 16.573 91.416 16.956 L 90.771 17.536 C 90.475 17.302 90.108 17.178 89.747 17.178 C 89.546 17.178 89.358 17.227 89.216 17.323 C 89.073 17.42 88.972 17.57 88.972 17.754 C 88.972 17.847 88.656 17.936 88.706 18.015 C 88.756 18.094 89.163 18.156 89.246 18.206 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 86.112 18.996 C 85.967 18.573 85.614 18.238 85.126 18.238 C 84.604 18.238 84.269 18.569 84.134 18.991 L 86.114 18.996 Z M 84.105 19.786 C 84.217 20.251 84.558 20.621 85.124 20.621 C 85.546 20.621 85.965 20.414 86.196 20.117 L 86.892 20.749 C 86.551 21.281 85.894 21.537 85.126 21.537 C 83.86 21.537 83.102 20.594 83.102 19.433 C 83.102 18.272 83.877 17.329 85.119 17.329 C 86.36 17.329 87.159 18.279 87.159 19.433 C 87.159 19.547 87.156 19.665 87.149 19.783 L 84.109 19.783 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 93.162 16.466 L 93.162 21.478 L 92.059 21.478 L 92.059 16.466 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 97.878 16.973 L 97.991 17.086 L 98.103 16.973 C 98.483 16.592 99.041 16.353 99.745 16.353 C 100.449 16.353 101.012 16.595 101.39 16.981 C 101.77 17.37 101.983 17.914 101.983 18.539 L 101.983 21.478 L 100.998 21.478 L 100.998 18.694 C 100.998 18.366 100.898 18.03 100.691 17.773 C 100.479 17.511 100.16 17.338 99.745 17.338 C 99.329 17.338 99.01 17.511 98.796 17.773 C 98.586 18.03 98.483 18.368 98.483 18.694 L 98.483 21.478 L 97.495 21.478 L 97.491 18.694 C 97.491 18.366 97.392 18.03 97.184 17.773 C 96.973 17.511 96.654 17.338 96.238 17.338 C 95.823 17.338 95.504 17.511 95.291 17.773 C 95.081 18.03 94.978 18.368 94.978 18.694 L 94.978 21.478 L 93.992 21.478 L 93.992 18.539 C 93.992 17.914 94.206 17.37 94.588 16.983 C 94.969 16.597 95.527 16.355 96.238 16.355 C 96.949 16.355 97.497 16.593 97.875 16.973 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 77.844 16.071 C 77.844 14.874 77.116 13.658 75.641 13.658 C 74.167 13.658 73.424 14.874 73.424 16.071 L 73.424 21.407 L 70.802 21.407 L 70.802 16.071 C 70.802 13.411 72.628 11.357 75.641 11.357 C 78.655 11.357 80.46 13.411 80.46 16.071 L 80.46 21.407 L 77.842 21.407 L 77.842 16.071 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 47.148 11.467 L 44.68 11.467 L 44.68 12.045 C 43.92 11.608 43.004 11.357 41.969 11.357 C 38.815 11.357 36.851 13.675 36.851 16.489 C 36.851 19.304 38.778 21.619 41.989 21.619 C 43.026 21.619 43.93 21.381 44.68 20.96 L 44.68 21.512 L 47.148 21.512 Z M 41.986 19.383 C 40.199 19.383 39.295 17.986 39.295 16.486 C 39.295 14.985 40.217 13.57 41.986 13.57 C 43.631 13.57 44.675 15.009 44.675 16.486 C 44.675 17.963 43.773 19.383 41.986 19.383 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 69.505 11.467 L 67.037 11.467 L 67.037 12.045 C 66.277 11.608 65.361 11.357 64.326 11.357 C 61.172 11.357 59.208 13.675 59.208 16.489 C 59.208 19.304 61.135 21.619 64.346 21.619 C 65.383 21.619 66.287 21.381 67.037 20.96 L 67.037 21.512 L 69.505 21.512 Z M 64.345 19.383 C 62.558 19.383 61.654 17.986 61.654 16.486 C 61.654 14.985 62.576 13.57 64.345 13.57 C 65.99 13.57 67.034 15.009 67.034 16.486 C 67.034 17.963 66.131 19.383 64.345 19.383 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 53.495 11.357 C 50.383 11.357 48.379 13.643 48.374 16.422 L 48.374 25 L 50.815 25 L 50.815 20.856 C 51.556 21.271 52.45 21.508 53.475 21.508 C 56.652 21.508 58.558 19.236 58.558 16.434 C 58.556 13.649 56.612 11.359 53.494 11.359 Z M 53.477 19.297 C 51.71 19.297 50.817 17.916 50.817 16.432 C 50.817 14.948 51.849 13.548 53.477 13.548 C 55.223 13.548 56.137 14.97 56.137 16.432 C 56.137 17.894 55.242 19.297 53.477 19.297 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 41.962 0 C 45.111 0 47.133 2.314 47.133 5.125 C 47.133 7.936 45.19 10.25 41.981 10.25 C 38.772 10.25 36.849 7.956 36.849 5.125 C 36.849 2.294 38.814 0 41.962 0 Z M 41.983 2.213 C 40.219 2.213 39.297 3.648 39.297 5.125 C 39.297 6.602 40.199 8.017 41.983 8.017 C 43.766 8.017 44.668 6.622 44.668 5.125 C 44.668 3.628 43.626 2.213 41.983 2.213 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 82.661 4.055 C 82.31 3.025 81.448 2.213 80.263 2.213 C 78.994 2.213 78.18 3.02 77.852 4.045 Z M 77.788 5.974 C 78.06 7.103 78.888 8.005 80.263 8.005 C 81.29 8.005 82.307 7.504 82.871 6.782 L 84.558 8.321 C 83.73 9.617 82.131 10.235 80.264 10.235 C 77.19 10.235 75.344 7.946 75.344 5.122 C 75.344 2.297 77.227 0.007 80.244 0.007 C 83.261 0.007 85.2 2.315 85.2 5.12 C 85.2 5.397 85.193 5.683 85.174 5.97 L 77.788 5.97 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 50.655 5.56 C 50.655 6.757 51.386 7.973 52.859 7.973 C 54.332 7.973 55.077 6.757 55.077 5.56 L 55.077 0.222 L 57.698 0.222 L 57.698 5.559 C 57.698 8.219 55.872 10.272 52.859 10.272 C 49.845 10.272 48.04 8.219 48.04 5.559 L 48.04 0.222 L 50.658 0.222 L 50.658 5.559 L 50.656 5.559 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 71.738 4.72 C 71.738 3.524 71.01 2.307 69.535 2.307 C 68.061 2.307 67.318 3.524 67.318 4.72 L 67.318 10.057 L 64.696 10.057 L 64.696 4.72 C 64.698 2.06 66.524 0.007 69.537 0.007 C 72.55 0.007 74.356 2.06 74.356 4.72 L 74.356 10.057 L 71.738 10.057 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 64.221 2.307 C 62.747 2.307 61.372 3.359 61.372 4.72 L 61.372 10.057 L 58.751 10.057 L 58.751 4.72 C 58.751 2.06 61.208 0.007 64.221 0.007 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 92.416 0.108 L 90.19 6.199 L 87.847 0.108 L 85.109 0.108 L 89.086 9.212 L 89.044 9.324 C 88.624 10.581 87.149 11.838 85.254 10.994 L 84.49 13.164 C 87.333 14.155 90.335 13.028 91.22 10.519 L 95.154 0.108 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 35.925 0 L 35.925 15.404 C 35.925 18.998 33.63 21.621 29.777 21.621 C 26.203 21.619 23.647 19.495 23.647 15.562 L 26.244 15.562 C 26.244 17.944 27.402 19.156 29.777 19.156 C 32.152 19.156 33.291 17.507 33.291 15.402 L 33.291 2.443 L 29.078 2.443 L 29.078 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:10692844493}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1c2h8gh framer-1ve1cxn\",\"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 114 28\"><path d=\"M 17.375 3.109 C 13.415 -0.785 6.973 -0.785 3.012 3.109 C 1.081 5.007 0.011 7.563 0 10.302 C -0.011 13.113 1.079 15.756 3.071 17.747 L 9.202 23.871 C 9.202 23.871 9.211 23.88 9.216 23.883 C 9.486 24.146 9.841 24.277 10.194 24.277 C 10.547 24.277 10.915 24.141 11.187 23.869 L 17.317 17.745 C 19.309 15.755 20.399 13.111 20.388 10.3 C 20.378 7.561 19.308 5.006 17.375 3.107 Z M 16.786 13.725 C 15.132 13.061 12.857 11.437 11.61 8.909 L 8.777 8.909 C 7.661 11.13 5.738 12.846 3.603 13.725 C 3.084 12.713 2.79 11.569 2.79 10.356 C 2.79 6.271 6.105 2.96 10.194 2.96 C 14.283 2.96 17.598 6.271 17.598 10.356 C 17.598 11.571 17.303 12.713 16.786 13.725 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 99.741 20.391 C 99.92 20.504 100.181 20.589 100.515 20.675 C 101.029 20.807 101.534 20.965 101.912 21.236 C 102.276 21.5 102.522 21.87 102.522 22.458 C 102.522 22.939 102.309 23.353 101.935 23.649 C 101.557 23.946 101.008 24.131 100.338 24.131 C 99.464 24.131 98.701 23.837 98.18 23.308 L 98.926 22.636 C 99.309 23.005 99.835 23.186 100.315 23.186 C 100.61 23.186 100.868 23.131 101.061 23.02 C 101.257 22.907 101.393 22.727 101.393 22.493 C 101.393 22.22 101.215 22.053 100.996 21.938 C 100.785 21.829 100.491 21.744 100.16 21.648 C 99.705 21.519 99.23 21.366 98.856 21.069 C 98.531 20.809 98.318 20.451 98.318 19.9 C 98.318 19.016 99.075 18.319 100.27 18.319 C 101.07 18.319 101.669 18.562 102.17 18.991 L 101.45 19.64 C 101.119 19.379 100.709 19.239 100.306 19.239 C 100.081 19.239 99.871 19.294 99.713 19.401 C 99.552 19.51 99.439 19.678 99.439 19.885 C 99.439 19.988 99.086 20.088 99.143 20.177 C 99.198 20.265 99.653 20.335 99.745 20.391 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 96.243 21.276 C 96.081 20.801 95.686 20.427 95.14 20.427 C 94.557 20.427 94.183 20.798 94.032 21.27 L 96.245 21.276 Z M 94 22.16 C 94.125 22.682 94.506 23.096 95.138 23.096 C 95.61 23.096 96.079 22.864 96.337 22.531 L 97.115 23.239 C 96.734 23.835 96 24.121 95.14 24.121 C 93.726 24.121 92.879 23.066 92.879 21.765 C 92.879 20.465 93.745 19.409 95.133 19.409 C 96.521 19.409 97.413 20.472 97.413 21.765 C 97.413 21.893 97.409 22.025 97.402 22.157 L 94.004 22.157 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 104.123 18.441 L 104.123 24.055 L 102.89 24.055 L 102.89 18.441 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 109.393 19.01 L 109.52 19.136 L 109.644 19.01 C 110.069 18.583 110.692 18.315 111.479 18.315 C 112.267 18.315 112.895 18.586 113.318 19.019 C 113.743 19.454 113.981 20.064 113.981 20.764 L 113.981 24.055 L 112.88 24.055 L 112.88 20.937 C 112.88 20.57 112.769 20.194 112.537 19.906 C 112.3 19.612 111.944 19.418 111.479 19.418 C 111.015 19.418 110.658 19.612 110.419 19.906 C 110.185 20.194 110.069 20.572 110.069 20.937 L 110.069 24.055 L 108.965 24.055 L 108.961 20.937 C 108.961 20.57 108.85 20.194 108.617 19.906 C 108.382 19.612 108.025 19.418 107.56 19.418 C 107.096 19.418 106.739 19.612 106.501 19.906 C 106.267 20.194 106.152 20.572 106.152 20.937 L 106.152 24.055 L 105.05 24.055 L 105.05 20.764 C 105.05 20.064 105.289 19.454 105.716 19.021 C 106.142 18.588 106.766 18.317 107.56 18.317 C 108.355 18.317 108.967 18.584 109.389 19.01 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 87.002 17.999 C 87.002 16.659 86.188 15.297 84.54 15.297 C 82.892 15.297 82.062 16.659 82.062 17.999 L 82.062 23.976 L 79.132 23.976 L 79.132 17.999 C 79.132 15.02 81.172 12.72 84.54 12.72 C 87.908 12.72 89.926 15.02 89.926 17.999 L 89.926 23.976 L 87 23.976 L 87 17.999 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 52.695 12.843 L 49.936 12.843 L 49.936 13.49 C 49.087 13.001 48.064 12.72 46.907 12.72 C 43.382 12.72 41.186 15.316 41.186 18.468 C 41.186 21.62 43.34 24.213 46.929 24.213 C 48.088 24.213 49.098 23.946 49.936 23.476 L 49.936 24.093 L 52.695 24.093 Z M 46.925 21.709 C 44.928 21.709 43.918 20.145 43.918 18.464 C 43.918 16.783 44.949 15.199 46.925 15.199 C 48.764 15.199 49.931 16.81 49.931 18.464 C 49.931 20.118 48.923 21.709 46.925 21.709 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 77.682 12.843 L 74.924 12.843 L 74.924 13.49 C 74.074 13.001 73.051 12.72 71.894 12.72 C 68.369 12.72 66.173 15.315 66.173 18.468 C 66.173 21.62 68.328 24.213 71.916 24.213 C 73.076 24.213 74.086 23.946 74.924 23.476 L 74.924 24.093 L 77.682 24.093 Z M 71.915 21.709 C 69.917 21.709 68.907 20.145 68.907 18.464 C 68.907 16.783 69.938 15.199 71.915 15.199 C 73.753 15.199 74.92 16.81 74.92 18.464 C 74.92 20.118 73.912 21.709 71.915 21.709 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 59.789 12.72 C 56.31 12.72 54.071 15.28 54.065 18.392 L 54.065 28 L 56.793 28 L 56.793 23.359 C 57.622 23.824 58.621 24.089 59.766 24.089 C 63.317 24.089 65.447 21.545 65.447 18.406 C 65.445 15.287 63.272 12.722 59.787 12.722 Z M 59.768 21.613 C 57.794 21.613 56.795 20.066 56.795 18.404 C 56.795 16.742 57.948 15.174 59.768 15.174 C 61.72 15.174 62.742 16.766 62.742 18.404 C 62.742 20.041 61.741 21.613 59.768 21.613 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 46.899 0 C 50.418 0 52.678 2.591 52.678 5.74 C 52.678 8.889 50.507 11.48 46.92 11.48 C 43.333 11.48 41.185 8.911 41.185 5.74 C 41.185 2.569 43.38 0 46.899 0 Z M 46.922 2.479 C 44.951 2.479 43.92 4.086 43.92 5.74 C 43.92 7.394 44.928 8.979 46.922 8.979 C 48.915 8.979 49.923 7.417 49.923 5.74 C 49.923 4.063 48.759 2.479 46.922 2.479 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 92.386 4.541 C 91.993 3.388 91.03 2.479 89.705 2.479 C 88.288 2.479 87.377 3.382 87.011 4.53 Z M 86.94 6.69 C 87.244 7.955 88.169 8.966 89.705 8.966 C 90.853 8.966 91.99 8.405 92.62 7.596 L 94.506 9.319 C 93.581 10.771 91.793 11.463 89.707 11.463 C 86.272 11.463 84.208 8.9 84.208 5.736 C 84.208 2.573 86.313 0.008 89.684 0.008 C 93.056 0.008 95.224 2.593 95.224 5.734 C 95.224 6.045 95.216 6.365 95.195 6.687 L 86.94 6.687 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 56.614 6.227 C 56.614 7.567 57.431 8.93 59.077 8.93 C 60.723 8.93 61.556 7.567 61.556 6.227 L 61.556 0.248 L 64.486 0.248 L 64.486 6.226 C 64.486 9.205 62.445 11.504 59.077 11.504 C 55.71 11.504 53.691 9.205 53.691 6.226 L 53.691 0.248 L 56.618 0.248 L 56.618 6.226 L 56.616 6.226 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 80.177 5.286 C 80.177 3.946 79.364 2.584 77.716 2.584 C 76.068 2.584 75.237 3.946 75.237 5.286 L 75.237 11.264 L 72.307 11.264 L 72.307 5.286 C 72.309 2.307 74.35 0.008 77.718 0.008 C 81.085 0.008 83.104 2.307 83.104 5.286 L 83.104 11.264 L 80.177 11.264 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 71.776 2.584 C 70.129 2.584 68.592 3.762 68.592 5.286 L 68.592 11.264 L 65.662 11.264 L 65.662 5.286 C 65.662 2.307 68.409 0.008 71.776 0.008 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 103.288 0.12 L 100.8 6.943 L 98.182 0.12 L 95.122 0.12 L 99.567 10.317 L 99.52 10.443 C 99.05 11.851 97.402 13.258 95.284 12.314 L 94.431 14.743 C 97.608 15.854 100.962 14.591 101.952 11.781 L 106.348 0.12 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 40.152 0 L 40.152 17.252 C 40.152 21.278 37.587 24.215 33.28 24.215 C 29.286 24.213 26.429 21.835 26.429 17.429 L 29.331 17.429 C 29.331 20.098 30.626 21.454 33.28 21.454 C 35.935 21.454 37.207 19.608 37.207 17.25 L 37.207 2.736 L 32.499 2.736 L 32.499 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:10069725389,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18iisq7\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l4ac47\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"$0.98\"})}),className:\"framer-1wugerm\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c1oe46\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11dr5xx\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"NTT Docomo Private Bandwidth\"})}),className:\"framer-u7nipj\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d81a93\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ttdo58\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:[\"Unlimited speeds, \",/*#__PURE__*/_jsx(\"br\",{}),\"No throttling\"]})}),className:\"framer-1tcmr3h\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qz1efm\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kz1a1m\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"30-days guaranteed\"})}),className:\"framer-1xcxf3x\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hj0amp\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kkywuw\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-color\":\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"},children:\"Unlimited; no restrictions\"})}),className:\"framer-1kcvgn5\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-txe8hz\",\"data-framer-name\":\"bottom\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nq5w24\",\"data-framer-name\":\"column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bf3yvd\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6pgpjg\",\"data-styles-preset\":\"Zd5WkPKrh\",children:\"Sakura Mobile\"})}),className:\"framer-14n9m1y\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sd2gvy\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"$3.30\"})}),className:\"framer-jteaue\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ehvrgu\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"No; Shared bandwidth\"})}),className:\"framer-xkjgfh\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-28bly1\",\"data-framer-name\":\"row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Throttled speeds;\",/*#__PURE__*/_jsx(\"br\",{}),\"200 kbps with excessive use\"]})}),className:\"framer-c017rs\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qb42ix\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"Varied duration\"})}),className:\"framer-p11pvj\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kck7du\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"Supported\"})}),className:\"framer-1wob6vq\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81byas\",\"data-framer-name\":\"column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n7zaaw\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6pgpjg\",\"data-styles-preset\":\"Zd5WkPKrh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:\"Airalo\"})}),className:\"framer-159xe2c\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10jji0i\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"$2.40\"})}),className:\"framer-olcgw6\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h1i3tr\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"No; Shared bandwidth\"})}),className:\"framer-1siydmn\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cy7iga\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"Not specified\"})}),className:\"framer-1y081j5\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-acbvui\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"Varied duration\"})}),className:\"framer-1lz0wsl\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-196o89j\",\"data-framer-name\":\"row\",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-alignment\":\"left\"},children:\"Limited (plan dependent, may be blocked)\"})}),className:\"framer-ki0vgd\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ijri8\",\"data-framer-name\":\"Why Us\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b4bdw6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y8DBcbaNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why choose 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\"},children:\"Why choose Journey Japan eSIM?\"})}),className:\"framer-xqcwp1\",\"data-framer-name\":\"Why Journey Japan eSIM?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5n0s9\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pp53xr\",\"data-framer-name\":\"card-1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4u3b4\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zv46oz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qh32ez\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 21.119 13.191 C 20.907 12.766 20.474 12.498 20 12.498 C 19.526 12.498 19.093 12.766 18.881 13.191 L 7.631 35.691 C 7.322 36.308 7.572 37.059 8.19 37.368 C 8.807 37.677 9.558 37.427 9.867 36.809 L 12.031 32.5 L 27.984 32.5 L 30.139 36.809 C 30.35 37.23 30.779 37.497 31.25 37.5 C 31.683 37.5 32.085 37.275 32.313 36.907 C 32.541 36.538 32.561 36.078 32.367 35.691 Z M 20 16.545 L 24.228 25 L 15.772 25 Z M 13.281 30 L 14.531 27.5 L 25.484 27.5 L 26.734 30 Z\" fill=\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42)) /* {&quot;name&quot;:&quot;Primary Color 2&quot;} */\"></path><g transform=\"translate(7.5 1.3)\"><path d=\"M 17.433 13.267 C 17.785 11.3 16.931 9.311 15.262 8.212 C 13.593 7.112 11.429 7.112 9.76 8.212 C 8.091 9.311 7.237 11.3 7.589 13.267 C 7.68 13.711 7.523 14.17 7.18 14.465 C 6.836 14.761 6.359 14.847 5.934 14.691 C 5.508 14.535 5.201 14.16 5.13 13.713 C 4.594 10.758 5.872 7.769 8.378 6.115 C 10.884 4.461 14.135 4.461 16.641 6.115 C 19.147 7.769 20.425 10.758 19.889 13.713 C 19.782 14.307 19.265 14.74 18.661 14.741 C 18.586 14.74 18.512 14.733 18.438 14.72 C 18.11 14.663 17.82 14.477 17.63 14.204 C 17.44 13.931 17.366 13.594 17.425 13.267 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 2.524 20.031 C -1.366 14.878 -0.692 7.611 4.08 3.262 C 8.851 -1.087 16.15 -1.087 20.921 3.262 C 25.692 7.611 26.367 14.878 22.477 20.031 C 22.057 20.569 21.282 20.671 20.737 20.259 C 20.193 19.847 20.08 19.074 20.483 18.523 C 23.593 14.401 23.053 8.588 19.236 5.109 C 15.419 1.631 9.581 1.631 5.764 5.109 C 1.947 8.588 1.407 14.401 4.517 18.523 C 4.921 19.074 4.808 19.847 4.263 20.259 C 3.718 20.671 2.944 20.569 2.524 20.031 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></g></svg>',svgContentId:10641381854,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:\"Private Dedicated Connection\"})}),className:\"framer-1qle2vn\",\"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\",{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:\"Stay connected at the fastest speeds with our private, dedicated bandwidth\u2014ensuring stability even in busy areas.\"})}),className:\"framer-1hrx8km\",\"data-framer-name\":\"Stay connected across Japan\u2019s 47 prefectures with all eSIM plans valid for 30 days. \",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u6s6ov\",\"data-framer-name\":\"card-2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hoah4y\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-206e3i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 26.25 11.25 L 26.25 31.25 C 26.25 31.94 25.69 32.5 25 32.5 C 24.31 32.5 23.75 31.94 23.75 31.25 L 23.75 11.25 C 23.75 10.56 24.31 10 25 10 C 25.69 10 26.25 10.56 26.25 11.25 Z M 18.75 16.25 C 18.06 16.25 17.5 16.81 17.5 17.5 L 17.5 31.25 C 17.5 31.94 18.06 32.5 18.75 32.5 C 19.44 32.5 20 31.94 20 31.25 L 20 17.5 C 20 16.81 19.44 16.25 18.75 16.25 Z M 12.5 22.5 C 11.81 22.5 11.25 23.06 11.25 23.75 L 11.25 31.25 C 11.25 31.94 11.81 32.5 12.5 32.5 C 13.19 32.5 13.75 31.94 13.75 31.25 L 13.75 23.75 C 13.75 23.06 13.19 22.5 12.5 22.5 Z M 6.25 28.75 C 5.56 28.75 5 29.31 5 30 L 5 31.25 C 5 31.94 5.56 32.5 6.25 32.5 C 6.94 32.5 7.5 31.94 7.5 31.25 L 7.5 30 C 7.5 29.31 6.94 28.75 6.25 28.75 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(30 4)\"><path d=\"M 1.25 0 C 0.56 0 0 0.56 0 1.25 L 0 27.5 C 0 28.19 0.56 28.75 1.25 28.75 C 1.94 28.75 2.5 28.19 2.5 27.5 L 2.5 1.25 C 2.5 0.56 1.94 0 1.25 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></g></svg>',svgContentId:10715396232},y8DBcbaNB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 26.25 11.25 L 26.25 31.25 C 26.25 31.94 25.69 32.5 25 32.5 C 24.31 32.5 23.75 31.94 23.75 31.25 L 23.75 11.25 C 23.75 10.56 24.31 10 25 10 C 25.69 10 26.25 10.56 26.25 11.25 Z M 18.75 16.25 C 18.06 16.25 17.5 16.81 17.5 17.5 L 17.5 31.25 C 17.5 31.94 18.06 32.5 18.75 32.5 C 19.44 32.5 20 31.94 20 31.25 L 20 17.5 C 20 16.81 19.44 16.25 18.75 16.25 Z M 12.5 22.5 C 11.81 22.5 11.25 23.06 11.25 23.75 L 11.25 31.25 C 11.25 31.94 11.81 32.5 12.5 32.5 C 13.19 32.5 13.75 31.94 13.75 31.25 L 13.75 23.75 C 13.75 23.06 13.19 22.5 12.5 22.5 Z M 6.25 28.75 C 5.56 28.75 5 29.31 5 30 L 5 31.25 C 5 31.94 5.56 32.5 6.25 32.5 C 6.94 32.5 7.5 31.94 7.5 31.25 L 7.5 30 C 7.5 29.31 6.94 28.75 6.25 28.75 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(30 4)\"><path d=\"M 1.25 0 C 0.56 0 0 0.56 0 1.25 L 0 27.5 C 0 28.19 0.56 28.75 1.25 28.75 C 1.94 28.75 2.5 28.19 2.5 27.5 L 2.5 1.25 C 2.5 0.56 1.94 0 1.25 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></g></svg>',svgContentId:10715396232}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vh4ix\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 26.25 11.25 L 26.25 31.25 C 26.25 31.94 25.69 32.5 25 32.5 C 24.31 32.5 23.75 31.94 23.75 31.25 L 23.75 11.25 C 23.75 10.56 24.31 10 25 10 C 25.69 10 26.25 10.56 26.25 11.25 Z M 18.75 16.25 C 18.06 16.25 17.5 16.81 17.5 17.5 L 17.5 31.25 C 17.5 31.94 18.06 32.5 18.75 32.5 C 19.44 32.5 20 31.94 20 31.25 L 20 17.5 C 20 16.81 19.44 16.25 18.75 16.25 Z M 12.5 22.5 C 11.81 22.5 11.25 23.06 11.25 23.75 L 11.25 31.25 C 11.25 31.94 11.81 32.5 12.5 32.5 C 13.19 32.5 13.75 31.94 13.75 31.25 L 13.75 23.75 C 13.75 23.06 13.19 22.5 12.5 22.5 Z M 6.25 28.75 C 5.56 28.75 5 29.31 5 30 L 5 31.25 C 5 31.94 5.56 32.5 6.25 32.5 C 6.94 32.5 7.5 31.94 7.5 31.25 L 7.5 30 C 7.5 29.31 6.94 28.75 6.25 28.75 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(30 3.8)\"><path d=\"M 1.25 0 C 0.56 0 0 0.56 0 1.25 L 0 27.5 C 0 28.19 0.56 28.75 1.25 28.75 C 1.94 28.75 2.5 28.19 2.5 27.5 L 2.5 1.25 C 2.5 0.56 1.94 0 1.25 0 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></g></svg>',svgContentId:12614349030,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:\"Best\\xa0Nationwide Coverage\"})}),className:\"framer-1qyeqr8\",\"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\",{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:\"Travel anywhere in Japan, with 99% data coverage ensuring no drop-offs.\"})}),className:\"framer-1rxcwnk\",\"data-framer-name\":\"Travel under the largest network in Japan covering from Hokkaido down to Okinawa\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vn9iyk\",\"data-framer-name\":\"card-3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0swu8\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-amtwfd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q6xxir\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 33.384 12.866 L 24.634 4.116 C 24.4 3.881 24.082 3.75 23.75 3.75 L 8.75 3.75 C 7.369 3.75 6.25 4.869 6.25 6.25 L 6.25 33.75 C 6.25 35.131 7.369 36.25 8.75 36.25 L 31.25 36.25 C 32.631 36.25 33.75 35.131 33.75 33.75 L 33.75 13.75 C 33.75 13.418 33.619 13.1 33.384 12.866 Z M 31.25 33.75 L 8.75 33.75 L 8.75 6.25 L 23.233 6.25 L 31.25 14.267 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 28.5 17.75 L 28.5 29 C 28.5 29.69 27.94 30.25 27.25 30.25 L 12.25 30.25 C 11.56 30.25 11 29.69 11 29 L 11 17.75 C 11 17.06 11.56 16.5 12.25 16.5 L 27.25 16.5 C 27.94 16.5 28.5 17.06 28.5 17.75 Z M 26 19.1 L 13.5 19.1 L 13.5 27.85 L 16 27.85 L 16 22.85 C 16 22.16 16.56 21.6 17.25 21.6 C 17.94 21.6 18.5 22.16 18.5 22.85 L 18.5 27.85 L 21 27.85 L 21 22.85 C 21 22.16 21.56 21.6 22.25 21.6 C 22.94 21.6 23.5 22.16 23.5 22.85 L 23.5 27.85 L 26 27.85 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:9480923192,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:\"Instant Activation\"})}),className:\"framer-17iutp6\",\"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\",{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:\"Your eSIM activation code is delivered within minutes\u2014connect as soon as you land.\"})}),className:\"framer-x3euk6\",\"data-framer-name\":\"Worry-free setup with a QR code sent to you within minutes\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13l4yto\",\"data-framer-name\":\"card-4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wkpkl\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19gps2z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qx0yjx\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 36.25 17.5 L 21.25 17.5 L 21.25 13.75 L 22.5 13.75 C 23.881 13.75 25 12.631 25 11.25 L 25 6.25 C 25 4.869 23.881 3.75 22.5 3.75 L 17.5 3.75 C 16.119 3.75 15 4.869 15 6.25 L 15 11.25 C 15 12.631 16.119 13.75 17.5 13.75 L 18.75 13.75 L 18.75 17.5 L 3.75 17.5 C 3.06 17.5 2.5 18.06 2.5 18.75 C 2.5 19.44 3.06 20 3.75 20 L 8.75 20 L 8.75 25 L 7.5 25 C 6.119 25 5 26.119 5 27.5 L 5 32.5 C 5 33.881 6.119 35 7.5 35 L 12.5 35 C 13.881 35 15 33.881 15 32.5 L 15 27.5 C 15 26.119 13.881 25 12.5 25 L 11.25 25 L 11.25 20 L 28.75 20 L 28.75 25 L 27.5 25 C 26.119 25 25 26.119 25 27.5 L 25 32.5 C 25 33.881 26.119 35 27.5 35 L 32.5 35 C 33.881 35 35 33.881 35 32.5 L 35 27.5 C 35 26.119 33.881 25 32.5 25 L 31.25 25 L 31.25 20 L 36.25 20 C 36.94 20 37.5 19.44 37.5 18.75 C 37.5 18.06 36.94 17.5 36.25 17.5 Z M 17.5 6.25 L 22.5 6.25 L 22.5 11.25 L 17.5 11.25 Z M 12.5 32.5 L 7.5 32.5 L 7.5 27.5 L 12.5 27.5 Z M 32.5 32.5 L 27.5 32.5 L 27.5 27.5 L 32.5 27.5 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 17.3 6 L 22.8 6 L 22.8 11.5 L 17.3 11.5 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:9175286643,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:\"Seamless Tethering Support\"})}),className:\"framer-r5o60h\",\"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\",{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:\"Share your connection across multiple devices easily and securely.\"})}),className:\"framer-e1lnly\",\"data-framer-name\":\"Need help? Our 24/7 chat is always ready to help you get connected\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tuokdd\",\"data-framer-name\":\"card-5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hg4sjj\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mbh59l\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kfvnsb\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 33.75 14.185 L 33.75 11.062 C 33.75 8.36 31.83 6.018 29.15 5.67 C 25.701 5.223 22.227 4.999 18.75 5 C 15.225 5 11.753 5.228 8.35 5.67 C 5.67 6.018 3.75 8.36 3.75 11.062 L 3.75 21.438 C 3.75 24.14 5.67 26.482 8.35 26.83 C 9.312 26.955 10.278 27.063 11.25 27.153 L 11.25 35 L 18.175 28.075\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 33.75 14.185 C 33.492 14.102 33.226 14.049 32.957 14.027 C 28.493 13.656 24.007 13.656 19.543 14.027 C 17.658 14.183 16.25 15.788 16.25 17.68 L 16.25 24.823 C 16.25 26.218 17.017 27.457 18.175 28.075\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path><path d=\"M 33.75 14.185 C 35.223 14.658 36.25 16.065 36.25 17.68 L 36.25 24.823 C 36.25 26.717 34.838 28.323 32.95 28.478 C 32.383 28.523 31.817 28.565 31.25 28.598 L 31.25 33.75 L 26.25 28.75 C 24.014 28.75 21.779 28.66 19.55 28.478 C 19.069 28.439 18.601 28.302 18.175 28.075\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:12135132754,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:\"24/7 English Support\"})}),className:\"framer-1tuwgq6\",\"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\",{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 support through our chatbot or customer team anytime, in the language you need.\"})}),className:\"framer-tml8qq\",\"data-framer-name\":\"Benefit from the convenience of having both physical and eSIM cards at your disposal\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{__framer__styleAppearEffectEnabled:undefined},y8DBcbaNB:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1itcp8m\",\"data-framer-name\":\"card-6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rjx0r\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u7yubi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tqvxu8\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 33.75 10 L 8.75 10 C 8.06 10 7.5 9.44 7.5 8.75 C 7.5 8.06 8.06 7.5 8.75 7.5 L 30 7.5 C 30.69 7.5 31.25 6.94 31.25 6.25 C 31.25 5.56 30.69 5 30 5 L 8.75 5 C 6.679 5 5 6.679 5 8.75 L 5 28.75 C 5 30.821 6.679 32.5 8.75 32.5 L 33.75 32.5 C 35.131 32.5 36.25 31.381 36.25 30 L 36.25 12.5 C 36.25 11.119 35.131 10 33.75 10 Z M 33.75 30 L 8.75 30 C 8.06 30 7.5 29.44 7.5 28.75 L 7.5 12.286 C 7.901 12.428 8.324 12.501 8.75 12.5 L 33.75 12.5 Z M 26.25 20.625 C 26.25 19.589 27.089 18.75 28.125 18.75 C 29.161 18.75 30 19.589 30 20.625 C 30 21.661 29.161 22.5 28.125 22.5 C 27.089 22.5 26.25 21.661 26.25 20.625 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 26.25 20.625 C 26.25 19.589 27.089 18.75 28.125 18.75 C 29.161 18.75 30 19.589 30 20.625 C 30 21.661 29.161 22.5 28.125 22.5 C 27.089 22.5 26.25 21.661 26.25 20.625 Z\" fill=\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39)) /* {&quot;name&quot;:&quot;Primary Color 1&quot;} */\"></path></svg>',svgContentId:11832631562,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:\"No Hidden Fees\"})}),className:\"framer-5uvyp6\",\"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\",{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:\"Transparent pricing, no unexpected charges\u2014what you see is what you get.\"})}),className:\"framer-n65w0d\",\"data-framer-name\":\"No need to fumble through language apps; our team speaks your language!\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yekur2\",\"data-framer-name\":\"Why Us\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vm3uq8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-95jr5y\",\"data-styles-preset\":\"gL7YAmK8C\",style:{\"--framer-text-alignment\":\"center\"},children:\"See what makes us the best Japan eSIM\"})})},y8DBcbaNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qu5o45\",\"data-styles-preset\":\"o6G0xP52z\",style:{\"--framer-text-alignment\":\"center\"},children:\"See what makes us the best 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\"},children:\"See what makes us the best Japan eSIM\"})}),className:\"framer-jkzwu5\",\"data-framer-name\":\"Why Journey Japan eSIM?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ym54bb-container\",isModuleExternal:true,nodeId:\"ldhxhWFZM\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"ldhxhWFZM\",layoutId:\"ldhxhWFZM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jfdjqf\",\"data-framer-name\":\"col-3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g9d67d\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqa8s9\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j8cfc2\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qd6ftb\",\"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(motion.div,{className:\"framer-7tq6ap\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dclmup\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jhslda\",\"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(motion.div,{className:\"framer-1lxfubr\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ea54cr\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qnjwjq\",\"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(motion.div,{className:\"framer-1e5txc7\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hrydia\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dv9yr6\",\"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(motion.div,{className:\"framer-izobv1\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hdg17t\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ej3xrd\",\"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-7y0xbr\",\"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-aytqhv\",\"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-14gp5ly\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xhpcf9\",\"data-framer-name\":\"col-2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11m7hm5\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-178lw7y\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l8bgka\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tgrbnb\",\"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(motion.div,{className:\"framer-14htkct\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-doqb6e\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17mi57b\",\"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(motion.div,{className:\"framer-17r0sr9\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k0my05\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pfxj9y\",\"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(motion.div,{className:\"framer-35xkfr\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15kqwxk\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m5weyr\",\"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(motion.div,{className:\"framer-f2s05x\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ohoopy\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fu09x7\",\"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-1pegkxr\",\"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-j9knq9\",\"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-13cfld0\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dioure\",\"data-framer-name\":\"col-3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jcbon3\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ae0h6z\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w5ol0q\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-808cw5\",\"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(motion.div,{className:\"framer-1311qk0\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k4elu1\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dzjvj3\",\"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(motion.div,{className:\"framer-10phwd8\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ivf4a\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bw4fxp\",\"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(motion.div,{className:\"framer-o8z26z\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d84w39\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k7ry1d\",\"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(motion.div,{className:\"framer-cnqv3n\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19thd4l\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yy7gre\",\"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-3ncy2i\",\"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-1cyrfy0\",\"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-10ql2m0\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y8l2r8\",\"data-framer-name\":\"col-1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qs1y5k\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v9e8xh\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjwws6\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v8k8ff\",\"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(motion.div,{className:\"framer-1ge5lhl\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sblgrh\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-evkz6g\",\"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(motion.div,{className:\"framer-fm5y6a\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3rheje\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pf9kt8\",\"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(motion.div,{className:\"framer-ieafjg\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lcvy8m\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wfz41p\",\"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(motion.div,{className:\"framer-5e60pr\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j8k044\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m4giuu\",\"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-znz2kk\",\"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-lnp4fq\",\"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-pxm0h1\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-135o62k\",\"data-framer-name\":\"col-2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jc9u\",\"data-framer-name\":\"five-stars\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-79ir4z\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1djlugl\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-97l2tp\",\"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(motion.div,{className:\"framer-19mhdho\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1npgfwm\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-192olg0\",\"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(motion.div,{className:\"framer-1748i26\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfpfqo\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b7j8sj\",\"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(motion.div,{className:\"framer-gh7899\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e8hvi\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hmxbrb\",\"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(motion.div,{className:\"framer-1gujhfh\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s4a0dc\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3j6zk\",\"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-142bc85\",\"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-7mhnug\",\"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-sfks4l\",\"data-framer-name\":\"All plans last for 30 days.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-me6zcv\",\"data-framer-name\":\"Pricing (Features)\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umn4zj\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zny4k2\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ev4ejr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mgqvb9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9dvree\",\"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:\"Technical Details\"})}),className:\"framer-1rsl32l\",\"data-framer-name\":\"Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v3441s\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fhwn11\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvks23\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ogp4gd\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bk5rkh\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Activation\"})})}),className:\"framer-kmcgsq\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Automatic upon arrival in Japan. *Please note that activation codes are one-time use and cannot be reused if deleted.\"})}),className:\"framer-g63nii\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jongif\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jsyw77\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcdcnu\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Plan Duration\"})})}),className:\"framer-rz3k1i\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:[\"All coverage plans available for  30 days\",/*#__PURE__*/_jsx(\"strong\",{children:\".\"})]})}),className:\"framer-il4s9m\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jqhrks\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4540qy\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jspre2\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Data Plans\"})})}),className:\"framer-1k64wty\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Options available for 10GB, 20GB, and 50GB.\"})}),className:\"framer-nzb53c\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7a7qb\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ro78qr\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jged2z\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Delivery Time\"}),\": \",/*#__PURE__*/_jsx(\"strong\",{children:\"Instant\"})]})}),className:\"framer-1e401k9\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Activation code (no QR code) delivered immediately.\"})}),className:\"framer-1169m5f\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i87v5w\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ybc6cy\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16dxrdt\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Speeds\"}),\": \",/*#__PURE__*/_jsx(\"strong\",{children:\"5G & 4G LTE\"})]})}),className:\"framer-1ncc8bf\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Available in supported areas.\"})}),className:\"framer-lt1ztu\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105sbd8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzgu6n\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qvvild\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wkrbjy\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Hotspot & Tethering\"})})}),className:\"framer-3t1gx4\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Fully supported for multiple devices.\"})}),className:\"framer-1hs0xrs\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151izmq\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mi2s2w\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yt14jy\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Network Partner\"})})}),className:\"framer-1w4awig\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"Powered by NTT Docomo, Japan\u2019s most reliable network.\"})}),className:\"framer-w0xu1y\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1igkkra\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1acwsiw\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ger747\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Coverage\"})})}),className:\"framer-1osm3er\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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:\"99% nationwide across Japan, including rural areas.\"})}),className:\"framer-oxhgtj\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-77h566\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wu5bj4\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16tvzzf\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Fair Usage Policy\"}),\": \",/*#__PURE__*/_jsx(\"strong\",{children:\"No Throttling\"})]})}),className:\"framer-1nijo58\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],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 unrestricted high-speed data.\"})}),className:\"framer-16kldtb\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-80qo26\",\"data-framer-name\":\"li\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fcuiru\",\"data-framer-name\":\"Group 216\",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<path d=\"M17 3.34001C18.5083 4.21087 19.7629 5.46054 20.6398 6.96531C21.5167 8.47009 21.9854 10.1778 21.9994 11.9194C22.0135 13.6609 21.5725 15.376 20.72 16.8947C19.8676 18.4135 18.6332 19.6832 17.1392 20.5783C15.6452 21.4734 13.9434 21.9628 12.2021 21.9981C10.4608 22.0333 8.74055 21.6132 7.21155 20.7793C5.68256 19.9453 4.39787 18.7265 3.48467 17.2435C2.57146 15.7605 2.06141 14.0647 2.005 12.324L2 12L2.005 11.676C2.061 9.94901 2.56355 8.26598 3.46364 6.79101C4.36373 5.31604 5.63065 4.09947 7.14089 3.2599C8.65113 2.42033 10.3531 1.98641 12.081 2.00045C13.8089 2.01449 15.5036 2.47601 17 3.34001ZM15.707 9.29302C15.5348 9.12084 15.3057 9.01741 15.0627 9.00213C14.8197 8.98685 14.5794 9.06076 14.387 9.21001L14.293 9.29302L11 12.585L9.707 11.293L9.613 11.21C9.42058 11.0609 9.18037 10.987 8.9374 11.0024C8.69444 11.0177 8.46541 11.1211 8.29326 11.2933C8.12112 11.4654 8.01768 11.6945 8.00235 11.9374C7.98702 12.1804 8.06086 12.4206 8.21 12.613L8.293 12.707L10.293 14.707L10.387 14.79C10.5624 14.9261 10.778 14.9999 11 14.9999C11.222 14.9999 11.4376 14.9261 11.613 14.79L11.707 14.707L15.707 10.707L15.79 10.613C15.9393 10.4206 16.0132 10.1804 15.9979 9.93733C15.9826 9.69431 15.8792 9.46521 15.707 9.29302Z\" fill=\"#FF4027\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7di59\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p54bbc\",\"data-styles-preset\":\"UufOQz3N0\",style:{\"--framer-text-color\":\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Device Compatibility\"})})}),className:\"framer-u8ejd4\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1mljrl7\",\"data-styles-preset\":\"XUOFob_NJ\",children:[\"Works with all eSIM-compatible smartphones and devices. Check compatibility list \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p55U1rGxS\"},motionChild:true,nodeId:\"gKJ74BZX7\",openInNewTab:false,scopeId:\"YfBVXQxvF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12chmss\",\"data-styles-preset\":\"eldaklQKU\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, rgb(255, 64, 39))\"},children:\"here\"})})}),\".\"]})}),className:\"framer-1evrgvu\",\"data-framer-name\":\"Stay connected in crowded areas and remote places\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hgpxtc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-113zbli\",\"data-framer-name\":\"row\",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-color\":\"rgb(25, 45, 42)\"},children:\"*Please note that activations are unavailable on Tuesday nights from 9 PM to Wednesday mornings at 10 AM JST due to scheduled weekly maintenance conducted by the telecom company.\"})}),className:\"framer-hdgw5a\",\"data-framer-name\":\"Please note that activations are unavailable on Tuesday nights from 9 PM to Wednesday mornings at 10 AM JST due to scheduled weekly maintenance conducted by the telecom company.\",fonts:[\"GF;Nunito Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:componentViewport?.width||\"100vw\"},y8DBcbaNB:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:767,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4esjzd-container\",nodeId:\"aG3CclDGA\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{variant:\"BxalsQutz\"},y8DBcbaNB:{variant:\"svGDXdDzw\"}},children:/*#__PURE__*/_jsx(LayoutFaq,{height:\"100%\",id:\"aG3CclDGA\",layoutId:\"aG3CclDGA\",style:{width:\"100%\"},variant:\"dx1_27c3r\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fuxdnm-container\",nodeId:\"RWVlXJ5y8\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{variant:\"IrrAHeEQK\"},y8DBcbaNB:{variant:\"X9iLhWviD\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"RWVlXJ5y8\",layoutId:\"RWVlXJ5y8\",style:{width:\"100%\"},variant:\"zBAPzmhO3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{height:700},y8DBcbaNB:{height:700}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:900,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5tpch-container\",nodeId:\"jXjx5nLF6\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{style:{width:\"100%\"},variant:\"xGSis8rMK\"},y8DBcbaNB:{style:{width:\"100%\"},variant:\"p7qTmFPFr\"}},children:/*#__PURE__*/_jsx(LayoutLetsChat,{dMBaK8Wof:\"0px\",height:\"100%\",id:\"jXjx5nLF6\",layoutId:\"jXjx5nLF6\",style:{height:\"100%\",width:\"100%\"},variant:\"S4UrjU5_v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{width:\"390px\"},y8DBcbaNB:{width:\"730px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11j3tt6-container\",nodeId:\"iLBtdDgeA\",scopeId:\"YfBVXQxvF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S3ntzUOjr:{oDsbd69CF:\"20px\",variant:\"Xuv9BVzyY\"},y8DBcbaNB:{variant:\"CD9D3wCNJ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"iLBtdDgeA\",layoutId:\"iLBtdDgeA\",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-qBQWC.framer-1ve1cxn, .framer-qBQWC .framer-1ve1cxn { display: block; }\",\".framer-qBQWC.framer-1kl314f { 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-qBQWC .framer-t36tdy-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-qBQWC .framer-1c48fz8-container { flex: none; height: 620px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-15n98bk-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-qBQWC .framer-1ozot4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 370px; justify-content: center; overflow: visible; padding: 0px 240px 0px 240px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-5u40iw { 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; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: -200px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-qBQWC .framer-8xti2g-container, .framer-qBQWC .framer-phe6mv-container, .framer-qBQWC .framer-8nm3ae-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-qBQWC .framer-zcjccv { 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-qBQWC .framer-hv4ii { 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: 100%; }\",\".framer-qBQWC .framer-9v3lpa, .framer-qBQWC .framer-me6zcv { 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-qBQWC .framer-1dh02c8, .framer-qBQWC .framer-1umn4zj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 240px 0px 240px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1mk9q0 { align-content: flex-end; align-items: flex-end; 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-qBQWC .framer-1fv7aan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-oyxcm6, .framer-qBQWC .framer-9dvree { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1p0wfsz, .framer-qBQWC .framer-1rsl32l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qBQWC .framer-1873kd2 { --border-bottom-width: 1px; --border-color: var(--token-98a1f18f-fea1-4e1c-b708-4717f6ecd2f1, #c7dddc); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1i6jotc, .framer-qBQWC .framer-9f2tyj, .framer-qBQWC .framer-mgqvb9 { align-content: center; align-items: center; 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-qBQWC .framer-nalspz, .framer-qBQWC .framer-1iywi7n, .framer-qBQWC .framer-szg4q0, .framer-qBQWC .framer-21n78g, .framer-qBQWC .framer-1s6lm0g, .framer-qBQWC .framer-11hwfju, .framer-qBQWC .framer-1n8rhsu, .framer-qBQWC .framer-1rw1u07, .framer-qBQWC .framer-1kvks23, .framer-qBQWC .framer-jongif, .framer-qBQWC .framer-jqhrks, .framer-qBQWC .framer-1j7a7qb, .framer-qBQWC .framer-i87v5w, .framer-qBQWC .framer-1wzgu6n, .framer-qBQWC .framer-151izmq, .framer-qBQWC .framer-1igkkra, .framer-qBQWC .framer-77h566, .framer-qBQWC .framer-80qo26 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-fmqhd9, .framer-qBQWC .framer-4nl6e, .framer-qBQWC .framer-sl4ogy, .framer-qBQWC .framer-147xuw8, .framer-qBQWC .framer-1ekezbo, .framer-qBQWC .framer-1w42e4g, .framer-qBQWC .framer-20p6tw, .framer-qBQWC .framer-xx47my { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-qBQWC .framer-1wkllfd, .framer-qBQWC .framer-9fe0ic, .framer-qBQWC .framer-1jydd7w, .framer-qBQWC .framer-isvzve, .framer-qBQWC .framer-1fuubr4, .framer-qBQWC .framer-f577r7, .framer-qBQWC .framer-109eiqn, .framer-qBQWC .framer-1keenrj, .framer-qBQWC .framer-1bk5rkh, .framer-qBQWC .framer-xcdcnu, .framer-qBQWC .framer-jspre2, .framer-qBQWC .framer-jged2z, .framer-qBQWC .framer-16dxrdt, .framer-qBQWC .framer-1wkrbjy, .framer-qBQWC .framer-yt14jy, .framer-qBQWC .framer-1ger747, .framer-qBQWC .framer-16tvzzf, .framer-qBQWC .framer-1d7di59 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-1bauuc9, .framer-qBQWC .framer-1vtcra2, .framer-qBQWC .framer-1xqn2to, .framer-qBQWC .framer-1ce5t5z, .framer-qBQWC .framer-fzjsku, .framer-qBQWC .framer-brbeur, .framer-qBQWC .framer-19xvqot, .framer-qBQWC .framer-1aqb304, .framer-qBQWC .framer-1id1nqh, .framer-qBQWC .framer-1p8n3z7, .framer-qBQWC .framer-1v2avg, .framer-qBQWC .framer-1qle2vn, .framer-qBQWC .framer-1hrx8km, .framer-qBQWC .framer-1qyeqr8, .framer-qBQWC .framer-1rxcwnk, .framer-qBQWC .framer-17iutp6, .framer-qBQWC .framer-x3euk6, .framer-qBQWC .framer-r5o60h, .framer-qBQWC .framer-e1lnly, .framer-qBQWC .framer-1tuwgq6, .framer-qBQWC .framer-tml8qq, .framer-qBQWC .framer-5uvyp6, .framer-qBQWC .framer-n65w0d, .framer-qBQWC .framer-7y0xbr, .framer-qBQWC .framer-aytqhv, .framer-qBQWC .framer-14gp5ly, .framer-qBQWC .framer-1pegkxr, .framer-qBQWC .framer-j9knq9, .framer-qBQWC .framer-13cfld0, .framer-qBQWC .framer-3ncy2i, .framer-qBQWC .framer-1cyrfy0, .framer-qBQWC .framer-10ql2m0, .framer-qBQWC .framer-znz2kk, .framer-qBQWC .framer-lnp4fq, .framer-qBQWC .framer-pxm0h1, .framer-qBQWC .framer-142bc85, .framer-qBQWC .framer-7mhnug, .framer-qBQWC .framer-sfks4l, .framer-qBQWC .framer-kmcgsq, .framer-qBQWC .framer-g63nii, .framer-qBQWC .framer-rz3k1i, .framer-qBQWC .framer-il4s9m, .framer-qBQWC .framer-1k64wty, .framer-qBQWC .framer-nzb53c, .framer-qBQWC .framer-1e401k9, .framer-qBQWC .framer-1169m5f, .framer-qBQWC .framer-1ncc8bf, .framer-qBQWC .framer-lt1ztu, .framer-qBQWC .framer-3t1gx4, .framer-qBQWC .framer-1hs0xrs, .framer-qBQWC .framer-1w4awig, .framer-qBQWC .framer-w0xu1y, .framer-qBQWC .framer-1osm3er, .framer-qBQWC .framer-oxhgtj, .framer-qBQWC .framer-1nijo58, .framer-qBQWC .framer-16kldtb, .framer-qBQWC .framer-u8ejd4, .framer-qBQWC .framer-1evrgvu { --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-qBQWC .framer-ubf5t0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1dddk2a-container, .framer-qBQWC .framer-1ll4bib-container { flex: 1 0 0px; height: 60px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-1m5hmsm { align-content: center; align-items: center; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-xjzbdu { 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: center; overflow: hidden; padding: 0px 240px 0px 240px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1ejmrsl, .framer-qBQWC .framer-devlbl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-qBQWC .framer-1brihzi-container { flex: none; height: 140px; position: relative; width: 60%; }\",\".framer-qBQWC .framer-15ihi37 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-qBQWC .framer-1cvxlbw, .framer-qBQWC .framer-1im17dx, .framer-qBQWC .framer-929vrx, .framer-qBQWC .framer-gw229z, .framer-qBQWC .framer-9gwi21, .framer-qBQWC .framer-sncznv, .framer-qBQWC .framer-17qi5by { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 8.4375px 0px rgba(0, 0, 0, 0.03), 0px 1.1250001192092896px 16.875px 0px rgba(0, 0, 0, 0.08), 0px 0px 0.5625000596046448px 0px rgba(0, 0, 0, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15.576922416687012px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60px; }\",\".framer-qBQWC .framer-1tm6kmk { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 8.4375px 0px rgba(0, 0, 0, 0.03), 0px 1.1250001192092896px 16.875px 0px rgba(0, 0, 0, 0.08), 0px 0px 0.5625000596046448px 0px rgba(0, 0, 0, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60px; }\",\".framer-qBQWC .framer-tmohxr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-qBQWC .framer-1cpjmby { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #000000; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 8.4375px 0px rgba(0, 0, 0, 0.03), 0px 1.1250001192092896px 16.875px 0px rgba(0, 0, 0, 0.08), 0px 0px 0.5625000596046448px 0px rgba(0, 0, 0, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60px; }\",\".framer-qBQWC .framer-590zlq { aspect-ratio: 2.923076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 44px; }\",\".framer-qBQWC .framer-1gofnq7 { aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 60px; }\",\".framer-qBQWC .framer-1nr9ut1 { align-content: center; align-items: center; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 240px 40px 240px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-11ppfex { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-x9seh0 { aspect-ratio: 0.9330453563714903 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 463px); max-width: 600px; overflow: visible; position: relative; width: 45%; }\",\".framer-qBQWC .framer-1pi50gw, .framer-qBQWC .framer-17ijri8, .framer-qBQWC .framer-yekur2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-lb44ba { 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 160px 0px 160px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-14xywfg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 240px 0px 240px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-htj2gc { --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: 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; box-shadow: 0px 10px 0px 0px rgba(69, 122, 120, 0.05); 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: 100%; }\",\".framer-qBQWC .framer-17bya1i, .framer-qBQWC .framer-nq5w24, .framer-qBQWC .framer-81byas { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-3s1mvw { align-content: center; align-items: center; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); border-top-left-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qBQWC .framer-84c4oa, .framer-qBQWC .framer-c13bhj, .framer-qBQWC .framer-g1fy3u, .framer-qBQWC .framer-30bukd, .framer-qBQWC .framer-q14v86, .framer-qBQWC .framer-ssz5sb, .framer-qBQWC .framer-1wugerm, .framer-qBQWC .framer-u7nipj, .framer-qBQWC .framer-1tcmr3h, .framer-qBQWC .framer-1xcxf3x, .framer-qBQWC .framer-1kcvgn5, .framer-qBQWC .framer-14n9m1y, .framer-qBQWC .framer-jteaue, .framer-qBQWC .framer-xkjgfh, .framer-qBQWC .framer-c017rs, .framer-qBQWC .framer-p11pvj, .framer-qBQWC .framer-1wob6vq, .framer-qBQWC .framer-159xe2c, .framer-qBQWC .framer-olcgw6, .framer-qBQWC .framer-1siydmn, .framer-qBQWC .framer-1y081j5, .framer-qBQWC .framer-1lz0wsl, .framer-qBQWC .framer-ki0vgd, .framer-qBQWC .framer-xqcwp1, .framer-qBQWC .framer-jkzwu5, .framer-qBQWC .framer-hdgw5a { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qBQWC .framer-1la3kg7, .framer-qBQWC .framer-qan15x, .framer-qBQWC .framer-5dv9eh, .framer-qBQWC .framer-p7834q, .framer-qBQWC .framer-sd2gvy, .framer-qBQWC .framer-ehvrgu, .framer-qBQWC .framer-28bly1, .framer-qBQWC .framer-qb42ix, .framer-qBQWC .framer-1kck7du, .framer-qBQWC .framer-10jji0i, .framer-qBQWC .framer-1h1i3tr, .framer-qBQWC .framer-cy7iga, .framer-qBQWC .framer-acbvui { align-content: center; align-items: center; background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 110px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1ehobl7 { align-content: center; align-items: center; background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); border-bottom-left-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 110px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qBQWC .framer-1vkaxsw { align-content: center; align-items: center; background-color: var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, #192d2a); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-r62a91 { align-content: center; align-items: center; background-color: var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, #192d2a); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 21px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: -20px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-qBQWC .framer-g8xr5q { align-content: center; align-items: center; background-color: var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, #192d2a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1c2h8gh { flex: none; height: 28px; position: relative; text-decoration: none; width: 114px; }\",\".framer-qBQWC .framer-18iisq7, .framer-qBQWC .framer-1c1oe46, .framer-qBQWC .framer-1d81a93, .framer-qBQWC .framer-1qz1efm, .framer-qBQWC .framer-1hj0amp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 110px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1l4ac47, .framer-qBQWC .framer-11dr5xx, .framer-qBQWC .framer-1ttdo58, .framer-qBQWC .framer-1kz1a1m, .framer-qBQWC .framer-1kkywuw, .framer-qBQWC .framer-1ogp4gd, .framer-qBQWC .framer-1jsyw77, .framer-qBQWC .framer-4540qy, .framer-qBQWC .framer-1ro78qr, .framer-qBQWC .framer-1ybc6cy, .framer-qBQWC .framer-1qvvild, .framer-qBQWC .framer-mi2s2w, .framer-qBQWC .framer-1acwsiw, .framer-qBQWC .framer-1wu5bj4, .framer-qBQWC .framer-1fcuiru { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-qBQWC .framer-txe8hz { align-content: center; align-items: center; background-color: var(--token-d008c7b5-2008-4a55-8a73-7565b056e175, #ff4027); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; bottom: -20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 21px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-qBQWC .framer-bf3yvd { align-content: center; align-items: center; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-n7zaaw { align-content: center; align-items: center; background-color: var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, #fafafa); border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qBQWC .framer-196o89j { align-content: center; align-items: center; background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 110px; justify-content: center; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qBQWC .framer-b4bdw6, .framer-qBQWC .framer-1vm3uq8 { 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-qBQWC .framer-i5n0s9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1pp53xr, .framer-qBQWC .framer-1u6s6ov, .framer-qBQWC .framer-1vn9iyk, .framer-qBQWC .framer-13l4yto, .framer-qBQWC .framer-tuokdd, .framer-qBQWC .framer-1itcp8m { align-content: flex-start; align-items: flex-start; background-color: #ffedeb; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: flex-start; overflow: visible; padding: 30px 40px 30px 40px; position: relative; width: 360px; }\",\".framer-qBQWC .framer-u4u3b4, .framer-qBQWC .framer-hoah4y, .framer-qBQWC .framer-1v0swu8, .framer-qBQWC .framer-1wkpkl, .framer-qBQWC .framer-hg4sjj, .framer-qBQWC .framer-13rjx0r { 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-qBQWC .framer-zv46oz, .framer-qBQWC .framer-206e3i, .framer-qBQWC .framer-amtwfd, .framer-qBQWC .framer-19gps2z, .framer-qBQWC .framer-1mbh59l, .framer-qBQWC .framer-u7yubi { align-content: center; align-items: center; background-color: var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, #ffffff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qBQWC .framer-1qh32ez, .framer-qBQWC .framer-1vh4ix, .framer-qBQWC .framer-q6xxir, .framer-qBQWC .framer-1qx0yjx, .framer-qBQWC .framer-1kfvnsb, .framer-qBQWC .framer-tqvxu8 { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-qBQWC .framer-1ym54bb-container { flex: none; height: 490px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-jfdjqf, .framer-qBQWC .framer-xhpcf9, .framer-qBQWC .framer-dioure, .framer-qBQWC .framer-1y8l2r8, .framer-qBQWC .framer-135o62k { 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-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 350px; }\",\".framer-qBQWC .framer-1g9d67d, .framer-qBQWC .framer-11m7hm5, .framer-qBQWC .framer-1jcbon3, .framer-qBQWC .framer-1qs1y5k, .framer-qBQWC .framer-18jc9u { 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-qBQWC .framer-iqa8s9, .framer-qBQWC .framer-7tq6ap, .framer-qBQWC .framer-1lxfubr, .framer-qBQWC .framer-1e5txc7, .framer-qBQWC .framer-izobv1, .framer-qBQWC .framer-178lw7y, .framer-qBQWC .framer-14htkct, .framer-qBQWC .framer-17r0sr9, .framer-qBQWC .framer-35xkfr, .framer-qBQWC .framer-f2s05x, .framer-qBQWC .framer-1ae0h6z, .framer-qBQWC .framer-1311qk0, .framer-qBQWC .framer-10phwd8, .framer-qBQWC .framer-o8z26z, .framer-qBQWC .framer-cnqv3n, .framer-qBQWC .framer-1v9e8xh, .framer-qBQWC .framer-1ge5lhl, .framer-qBQWC .framer-fm5y6a, .framer-qBQWC .framer-ieafjg, .framer-qBQWC .framer-5e60pr, .framer-qBQWC .framer-79ir4z, .framer-qBQWC .framer-19mhdho, .framer-qBQWC .framer-1748i26, .framer-qBQWC .framer-gh7899, .framer-qBQWC .framer-1gujhfh { flex: none; gap: 0px; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-qBQWC .framer-1j8cfc2, .framer-qBQWC .framer-1dclmup, .framer-qBQWC .framer-ea54cr, .framer-qBQWC .framer-hrydia, .framer-qBQWC .framer-hdg17t, .framer-qBQWC .framer-1l8bgka, .framer-qBQWC .framer-doqb6e, .framer-qBQWC .framer-k0my05, .framer-qBQWC .framer-15kqwxk, .framer-qBQWC .framer-ohoopy, .framer-qBQWC .framer-w5ol0q, .framer-qBQWC .framer-k4elu1, .framer-qBQWC .framer-9ivf4a, .framer-qBQWC .framer-d84w39, .framer-qBQWC .framer-19thd4l, .framer-qBQWC .framer-1xjwws6, .framer-qBQWC .framer-1sblgrh, .framer-qBQWC .framer-3rheje, .framer-qBQWC .framer-lcvy8m, .framer-qBQWC .framer-1j8k044, .framer-qBQWC .framer-1djlugl, .framer-qBQWC .framer-1npgfwm, .framer-qBQWC .framer-rfpfqo, .framer-qBQWC .framer-1e8hvi, .framer-qBQWC .framer-s4a0dc { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-qBQWC .framer-1qd6ftb, .framer-qBQWC .framer-jhslda, .framer-qBQWC .framer-1qnjwjq, .framer-qBQWC .framer-1dv9yr6, .framer-qBQWC .framer-1ej3xrd, .framer-qBQWC .framer-tgrbnb, .framer-qBQWC .framer-17mi57b, .framer-qBQWC .framer-1pfxj9y, .framer-qBQWC .framer-m5weyr, .framer-qBQWC .framer-fu09x7, .framer-qBQWC .framer-808cw5, .framer-qBQWC .framer-dzjvj3, .framer-qBQWC .framer-1bw4fxp, .framer-qBQWC .framer-k7ry1d, .framer-qBQWC .framer-yy7gre, .framer-qBQWC .framer-1v8k8ff, .framer-qBQWC .framer-evkz6g, .framer-qBQWC .framer-1pf9kt8, .framer-qBQWC .framer-1wfz41p, .framer-qBQWC .framer-m4giuu, .framer-qBQWC .framer-97l2tp, .framer-qBQWC .framer-192olg0, .framer-qBQWC .framer-1b7j8sj, .framer-qBQWC .framer-hmxbrb, .framer-qBQWC .framer-3j6zk { bottom: 2px; flex: none; left: 1px; position: absolute; right: 2px; top: 1px; }\",\".framer-qBQWC .framer-zny4k2 { 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; box-shadow: 0px 10px 0px 0px rgba(69, 122, 120, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 1px; }\",\".framer-qBQWC .framer-1ev4ejr { 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-qBQWC .framer-v3441s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-1fhwn11, .framer-qBQWC .framer-105sbd8 { 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-qBQWC .framer-hgpxtc { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qBQWC .framer-113zbli { align-content: center; align-items: center; background-color: #ffedeb; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 50%; }\",\".framer-qBQWC .framer-4esjzd-container, .framer-qBQWC .framer-11j3tt6-container { flex: none; height: auto; position: relative; width: 1440px; }\",\".framer-qBQWC .framer-1fuxdnm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qBQWC .framer-h5tpch-container { flex: none; height: 900px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-qBQWC[data-border=\"true\"]::after, .framer-qBQWC [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-qBQWC.framer-1kl314f { gap: 60px; overflow: hidden; padding: 0px 0px 60px 0px; width: 810px; } .framer-qBQWC .framer-t36tdy-container { left: 0px; right: 0px; transform: unset; width: unset; } .framer-qBQWC .framer-1ozot4p { height: 460px; padding: 0px; } .framer-qBQWC .framer-5u40iw { gap: 10px; padding: 0px 40px 0px 40px; top: -120px; } .framer-qBQWC .framer-8xti2g-container, .framer-qBQWC .framer-8nm3ae-container { flex: 1 0 0px; min-height: 100px; width: 1px; } .framer-qBQWC .framer-phe6mv-container { flex: 1 0 0px; min-width: 100px; width: 1px; } .framer-qBQWC .framer-9v3lpa, .framer-qBQWC .framer-me6zcv { gap: 20px; padding: 0px 40px 0px 40px; } .framer-qBQWC .framer-1dh02c8, .framer-qBQWC .framer-14xywfg, .framer-qBQWC .framer-1umn4zj { padding: 0px; } .framer-qBQWC .framer-xjzbdu, .framer-qBQWC .framer-1pi50gw { padding: 0px 40px 0px 40px; } .framer-qBQWC .framer-1brihzi-container, .framer-qBQWC .framer-113zbli, .framer-qBQWC .framer-4esjzd-container { width: 100%; } .framer-qBQWC .framer-1nr9ut1 { padding: 40px; } .framer-qBQWC .framer-x9seh0 { height: var(--framer-aspect-ratio-supported, 352px); } .framer-qBQWC .framer-r62a91 { height: 16px; top: -15px; } .framer-qBQWC .framer-1c2h8gh { height: 25px; width: 102px; } .framer-qBQWC .framer-18iisq7, .framer-qBQWC .framer-1c1oe46, .framer-qBQWC .framer-1d81a93, .framer-qBQWC .framer-1qz1efm, .framer-qBQWC .framer-1hj0amp { padding: 20px 10px 20px 10px; } .framer-qBQWC .framer-txe8hz { bottom: -15px; height: 16px; } .framer-qBQWC .framer-i5n0s9 { gap: 20px; } .framer-qBQWC .framer-zny4k2 { gap: 34px; } .framer-qBQWC .framer-hgpxtc { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-qBQWC .framer-h5tpch-container { height: auto; } .framer-qBQWC .framer-11j3tt6-container { width: 730px; }}\",\"@media (max-width: 809px) { .framer-qBQWC.framer-1kl314f { gap: 40px; overflow: hidden; padding: 0px 0px 60px 0px; width: 390px; } .framer-qBQWC .framer-1c48fz8-container { order: 3; } .framer-qBQWC .framer-15n98bk-container { order: 1; } .framer-qBQWC .framer-1ozot4p { flex-direction: column; height: min-content; order: 4; padding: 0px; } .framer-qBQWC .framer-5u40iw { align-content: center; align-items: center; flex-direction: column; left: unset; padding: 0px 20px 0px 20px; position: relative; top: unset; transform: unset; } .framer-qBQWC .framer-8xti2g-container { order: 0; width: 100%; } .framer-qBQWC .framer-phe6mv-container { order: 1; width: 100%; } .framer-qBQWC .framer-8nm3ae-container { order: 2; width: 100%; } .framer-qBQWC .framer-zcjccv { order: 14; } .framer-qBQWC .framer-9v3lpa, .framer-qBQWC .framer-18iisq7, .framer-qBQWC .framer-1c1oe46, .framer-qBQWC .framer-1d81a93, .framer-qBQWC .framer-1qz1efm, .framer-qBQWC .framer-1hj0amp, .framer-qBQWC .framer-bf3yvd, .framer-qBQWC .framer-sd2gvy, .framer-qBQWC .framer-ehvrgu, .framer-qBQWC .framer-28bly1, .framer-qBQWC .framer-qb42ix, .framer-qBQWC .framer-1kck7du, .framer-qBQWC .framer-n7zaaw, .framer-qBQWC .framer-10jji0i, .framer-qBQWC .framer-1h1i3tr, .framer-qBQWC .framer-cy7iga, .framer-qBQWC .framer-acbvui, .framer-qBQWC .framer-196o89j { justify-content: flex-start; } .framer-qBQWC .framer-1dh02c8, .framer-qBQWC .framer-1umn4zj { flex-direction: column; gap: 40px; justify-content: flex-start; padding: 0px 20px 0px 20px; } .framer-qBQWC .framer-1mk9q0, .framer-qBQWC .framer-1dddk2a-container, .framer-qBQWC .framer-1ll4bib-container, .framer-qBQWC .framer-11ppfex, .framer-qBQWC .framer-mgqvb9, .framer-qBQWC .framer-1fhwn11, .framer-qBQWC .framer-105sbd8 { flex: none; width: 100%; } .framer-qBQWC .framer-ubf5t0, .framer-qBQWC .framer-1ev4ejr, .framer-qBQWC .framer-v3441s { flex-direction: column; } .framer-qBQWC .framer-xjzbdu, .framer-qBQWC .framer-b4bdw6, .framer-qBQWC .framer-1vm3uq8 { padding: 0px 20px 0px 20px; } .framer-qBQWC .framer-1brihzi-container, .framer-qBQWC .framer-113zbli { width: 100%; } .framer-qBQWC .framer-1nr9ut1 { flex-direction: column; padding: 40px 20px 40px 20px; } .framer-qBQWC .framer-x9seh0 { aspect-ratio: unset; height: 376px; width: 100%; } .framer-qBQWC .framer-1pi50gw { order: 15; } .framer-qBQWC .framer-lb44ba { flex-direction: row; gap: 10px; padding: 0px 20px 0px 20px; } .framer-qBQWC .framer-1v2avg { flex: 1 0 0px; width: 1px; } .framer-qBQWC .framer-14xywfg { gap: 40px; height: 661px; justify-content: center; overflow: auto; padding: 0px 20px 0px 20px; } .framer-qBQWC .framer-htj2gc { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-qBQWC .framer-17bya1i { flex: none; width: min-content; } .framer-qBQWC .framer-3s1mvw, .framer-qBQWC .framer-1la3kg7, .framer-qBQWC .framer-qan15x, .framer-qBQWC .framer-5dv9eh, .framer-qBQWC .framer-p7834q, .framer-qBQWC .framer-1ehobl7 { justify-content: flex-start; width: 205px; } .framer-qBQWC .framer-84c4oa, .framer-qBQWC .framer-1wugerm, .framer-qBQWC .framer-14n9m1y, .framer-qBQWC .framer-159xe2c { flex: none; white-space: pre; width: auto; } .framer-qBQWC .framer-1vkaxsw, .framer-qBQWC .framer-nq5w24, .framer-qBQWC .framer-81byas { flex: none; width: 200px; } .framer-qBQWC .framer-r62a91 { height: 11px; overflow: visible; top: -10px; will-change: unset; } .framer-qBQWC .framer-1c2h8gh { height: 34px; width: 138px; } .framer-qBQWC .framer-txe8hz { bottom: -10px; height: 11px; overflow: visible; will-change: unset; } .framer-qBQWC .framer-17ijri8 { order: 16; } .framer-qBQWC .framer-i5n0s9 { gap: 10px; } .framer-qBQWC .framer-yekur2 { order: 17; } .framer-qBQWC .framer-me6zcv { justify-content: flex-start; order: 18; } .framer-qBQWC .framer-zny4k2 { flex: none; padding: 50px 20px 50px 20px; width: 100%; } .framer-qBQWC .framer-hgpxtc { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-qBQWC .framer-4esjzd-container { order: 19; width: 100%; } .framer-qBQWC .framer-1fuxdnm-container { order: 20; } .framer-qBQWC .framer-h5tpch-container { height: auto; order: 21; } .framer-qBQWC .framer-11j3tt6-container { order: 22; width: 390px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8553\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"y8DBcbaNB\":{\"layout\":[\"fixed\",\"auto\"]},\"S3ntzUOjr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bQAC9pIJ4\":{\"pattern\":\":bQAC9pIJ4\",\"name\":\"technical-details\"}}\n * @framerResponsiveScreen\n */const FramerYfBVXQxvF=withCSS(Component,css,\"framer-qBQWC\");export default FramerYfBVXQxvF;FramerYfBVXQxvF.displayName=\"Home\";FramerYfBVXQxvF.defaultProps={height:8553,width:1440};addFonts(FramerYfBVXQxvF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"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/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\",weight:\"400\"}]},...NavigationFixedFonts,...HeroBannerFonts,...NavigationFixedMobileFonts,...PricingCardFonts,...BtnPrimaryFonts,...TickerFonts,...LayoutFaqFonts,...NewsletterFonts,...LayoutLetsChatFonts,...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),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYfBVXQxvF\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"bQAC9pIJ4\\\":{\\\"pattern\\\":\\\":bQAC9pIJ4\\\",\\\"name\\\":\\\"technical-details\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y8DBcbaNB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S3ntzUOjr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8553\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationFixedFonts", "getFonts", "G6X3B1Y06_default", "HeroBannerFonts", "NajtJi18e_default", "NavigationFixedMobileFonts", "l4SSWqqzo_default", "PricingCardFonts", "rqPzs8fkJ_default", "BtnPrimaryFonts", "nh63Sv0P0_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "LayoutFaqFonts", "lgPGsAFip_default", "NewsletterFonts", "yKh5O1RwG_default", "LayoutLetsChatFonts", "XAg8vGiAb_default", "FooterFonts", "KE1flUhia_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "transition3", "animation5", "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", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Image2", "Link", "css", "FramerYfBVXQxvF", "withCSS", "YfBVXQxvF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
