{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/g6VRQ1wJNs2bdaIuxIYb/zW3znXuPzAGYj492bfPa/NajtJi18e.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (55cf326)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/r9Ne2UvCqAPF2TejsVKP/a9n04JWvsqBJx0gbH0Ll/DRlFqgvwU.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vsh8r16Xdeg5ea8sAVnK/nFQM3n96Gs2gOakniVXl/GgtokGsC6.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mg6zGakCflsDz2ym3eYD/JKifQuw6taLX1oFcs4rI/vBY2LLIBE.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/EdZPdDGlZAqHN6lCnw3d/DH3zJIRWMScFFi8nVAKN/Vq1Xy5FVO.js\";const VideoFonts=getFonts(Video);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"PRqII_hPP\",\"mNEXcwjCC\",\"vDMjf6CTk\",\"zOIfQ_n85\",\"MRpARgvq_\",\"K9iB8roeg\"];const serializationHash=\"framer-O3P5C\";const variantClassNames={K9iB8roeg:\"framer-v-1s2g7pp\",mNEXcwjCC:\"framer-v-gt2q85\",MRpARgvq_:\"framer-v-1jps047\",PRqII_hPP:\"framer-v-lnuolk\",vDMjf6CTk:\"framer-v-1hamtou\",zOIfQ_n85:\"framer-v-zh1nc8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition3={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const transition4={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.8,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Blog Article / Desktop\":\"zOIfQ_n85\",\"Blog Article / Phone\":\"K9iB8roeg\",\"Blog Article / Tablet\":\"MRpARgvq_\",Desktop:\"PRqII_hPP\",Phone:\"vDMjf6CTk\",Tablet:\"mNEXcwjCC\"};const getProps=({height,heroOverlayMobile,heroText,heroTextColor,id,image,imageVisible,jjesimCard,lineColor,overlay,padding,pageTitle,pageTitleColor,subText,subTextColor,videoVisible,width,...props})=>{return{...props,cTtSQAzwE:heroTextColor??props.cTtSQAzwE??\"rgb(0, 0, 0)\",fQ7sfV839:padding??props.fQ7sfV839??\"20px 140px 20px 140px\",HuNulSckH:videoVisible??props.HuNulSckH??true,jaas26bmr:jjesimCard??props.jaas26bmr,jLXvAXHZW:pageTitleColor??props.jLXvAXHZW??\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\",jSKFnJa0M:image??props.jSKFnJa0M??{pixelHeight:1560,pixelWidth:3600,src:\"https://framerusercontent.com/images/dSP6p0duFfybovHhhl2Btlu98.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dSP6p0duFfybovHhhl2Btlu98.png?scale-down-to=512 512w,https://framerusercontent.com/images/dSP6p0duFfybovHhhl2Btlu98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dSP6p0duFfybovHhhl2Btlu98.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dSP6p0duFfybovHhhl2Btlu98.png 3600w\"},l6KeOI4PM:heroOverlayMobile??props.l6KeOI4PM??true,LUJbYyEzo:subTextColor??props.LUJbYyEzo??\"rgb(0, 0, 0)\",pfs8p_nlI:pageTitle??props.pfs8p_nlI??\"Page Title\",TJD8kpBOf:overlay??props.TJD8kpBOf??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"PRqII_hPP\",XrJuR_zww:lineColor??props.XrJuR_zww??\"rgb(255, 64, 39)\",YkdsPJQSW:subText??props.YkdsPJQSW??\"Sub Text\",YzOR5vS18:imageVisible??props.YzOR5vS18??true,z1n3k49u3:heroText??props.z1n3k49u3??\"Hero Text\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,z1n3k49u3,pfs8p_nlI,YkdsPJQSW,jSKFnJa0M,YzOR5vS18,HuNulSckH,l6KeOI4PM,fQ7sfV839,jaas26bmr,TJD8kpBOf,XrJuR_zww,jLXvAXHZW,cTtSQAzwE,LUJbYyEzo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PRqII_hPP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if(baseVariant===\"zOIfQ_n85\")return false;return value;};const isDisplayed1=()=>{if(baseVariant===\"zOIfQ_n85\")return false;return true;};const isDisplayed2=value=>{if(baseVariant===\"vDMjf6CTk\")return value;return false;};const isDisplayed3=value=>{if([\"vDMjf6CTk\",\"zOIfQ_n85\",\"MRpARgvq_\",\"K9iB8roeg\"].includes(baseVariant))return false;return value;};const isDisplayed4=()=>{if([\"MRpARgvq_\",\"K9iB8roeg\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"zOIfQ_n85\")return true;return false;};const isDisplayed6=()=>{if([\"MRpARgvq_\",\"K9iB8roeg\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-lnuolk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"PRqII_hPP\",ref:refBinding,style:{...style},...addPropertyOverrides({K9iB8roeg:{\"data-framer-name\":\"Blog Article / Phone\"},mNEXcwjCC:{\"data-framer-name\":\"Tablet\"},MRpARgvq_:{\"data-framer-name\":\"Blog Article / Tablet\"},vDMjf6CTk:{\"data-framer-name\":\"Phone\"},zOIfQ_n85:{\"data-framer-name\":\"Blog Article / Desktop\"}},baseVariant,gestureVariant),children:[isDisplayed(HuNulSckH)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1zeoxy-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LVTRPRYGr-container\",nodeId:\"LVTRPRYGr\",rendersWithMotion:true,scopeId:\"NajtJi18e\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LVTRPRYGr\",isMixedBorderRadius:false,layoutId:\"LVTRPRYGr\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/YHKBmXfmj6x8Bbji7zfA3andk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-nmzjet\",\"data-framer-appear-id\":\"nmzjet\",\"data-framer-name\":\"image-container\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"V9SCivqc6\",optimized:true,children:[YzOR5vS18&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||620)*.5000000000000002-312)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(jSKFnJa0M)},className:\"framer-1guf0b3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mOHEfCHOk\",...addPropertyOverrides({K9iB8roeg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||520)*.5000000000000002-312)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(jSKFnJa0M)}},mNEXcwjCC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||620)*.5000000000000002-312)+0),sizes:\"1440px\",...toResponsiveImage(jSKFnJa0M)}},MRpARgvq_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||520)*.5000000000000002-312)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(jSKFnJa0M)}},vDMjf6CTk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||620)*.5000000000000002-312)+0),sizes:`calc(${componentViewport?.width||\"100vw\"} + 1050px)`,...toResponsiveImage(jSKFnJa0M)}}},baseVariant,gestureVariant)}),isDisplayed2(l6KeOI4PM)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1ppyb\",\"data-framer-name\":\"hero-overlay-mobile\",layoutDependency:layoutDependency,layoutId:\"Be0MKpkVy\",style:{background:\"linear-gradient(180deg, rgba(235, 255, 254, 0) 0%, rgb(235, 255, 254) 100%)\"}})]}),isDisplayed3(TJD8kpBOf)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-koc371\",\"data-framer-name\":\"hero-overlay\",layoutDependency:layoutDependency,layoutId:\"hbk2BiJxH\",style:{background:\"linear-gradient(-90deg, rgba(235, 255, 254, 0) 0%, rgb(235, 255, 254) 100%)\"}}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iyu039\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"csztFG8GG\",style:{\"--126ek1i\":numberToPixelString(fQ7sfV839),backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{zOIfQ_n85:{background:\"linear-gradient(180deg, var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255)) 0%, var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255)) 100%)\",backgroundColor:\"var(--token-1280c228-3ee5-422a-b7b0-3ad82eeb9f19, rgb(255, 255, 255))\"}},children:[jaas26bmr&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||620)-0-((componentViewport?.height||620)-0)*1)/2)+0+(((componentViewport?.height||620)-0)*1-140-1060+0+0)),pixelHeight:1600,pixelWidth:2640,sizes:\"220px\",src:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png 2640w\"},className:\"framer-2efubs\",\"data-framer-name\":\"Jjesim-card\",layoutDependency:layoutDependency,layoutId:\"Ss5DR3cPJ\",...addPropertyOverrides({mNEXcwjCC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||620)-0-((componentViewport?.height||620)-0)*1)/2)+0+(((componentViewport?.height||620)-0)*1-100-1030+0+0)),pixelHeight:1600,pixelWidth:2640,sizes:\"220px\",src:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png 2640w\"}},vDMjf6CTk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||620)-0-((componentViewport?.height||620)-0)*1)/2)+0+(((componentViewport?.height||620)-0)*1-50-1044+0+0)),pixelHeight:1600,pixelWidth:2640,sizes:\"220px\",src:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png 2640w\"}},zOIfQ_n85:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1320,pixelHeight:1600,pixelWidth:2640,sizes:\"220px\",src:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BIsSd8XQ2ysaMzoxLcTdhI09Q.png 2640w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wn9kq4\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"JDcS9nPaY\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1smcrdq\",\"data-framer-appear-id\":\"1smcrdq\",\"data-framer-name\":\"page-title\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"vYDTSm39i\",optimized:true,...addPropertyOverrides({zOIfQ_n85:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-jLXvAXHZW-NajtJi18e))\"},children:\"Page Title\"})}),className:\"framer-28hrx2\",\"data-framer-name\":\"Journey Japan eSIM\",fonts:[\"GF;Poppins-800\"],layoutDependency:layoutDependency,layoutId:\"g7gB64vRD\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-jLXvAXHZW-NajtJi18e)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-jLXvAXHZW-NajtJi18e\":jLXvAXHZW},text:pfs8p_nlI,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v15dpk\",\"data-framer-name\":\"Rectangle 157\",layoutDependency:layoutDependency,layoutId:\"HGDunrZSQ\",style:{backgroundColor:XrJuR_zww}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyfd0i\",\"data-framer-name\":\"hero-text\",layoutDependency:layoutDependency,layoutId:\"jm68vXaRj\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-14q97b4\",\"data-styles-preset\":\"vBY2LLIBE\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-cTtSQAzwE-NajtJi18e))\"},children:\"Hero Text\"})}),className:\"framer-1m7t6y5\",\"data-framer-appear-id\":\"1m7t6y5\",\"data-framer-name\":\"Get extensive coverage\",fonts:[\"Inter\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"Lg1ovc7Ex\",optimized:true,style:{\"--extracted-gdpscs\":\"var(--variable-reference-cTtSQAzwE-NajtJi18e)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-cTtSQAzwE-NajtJi18e\":cTtSQAzwE},text:z1n3k49u3,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mNEXcwjCC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9xwyae\",\"data-styles-preset\":\"DRlFqgvwU\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-cTtSQAzwE-NajtJi18e))\"},children:\"Hero Text\"})})},vDMjf6CTk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-pf4cjs\",\"data-styles-preset\":\"Vq1Xy5FVO\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-cTtSQAzwE-NajtJi18e))\"},children:\"Hero Text\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-706f6h\",\"data-styles-preset\":\"GgtokGsC6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LUJbYyEzo-NajtJi18e))\"},children:\"Sub Text\"})}),className:\"framer-e8f8wh\",\"data-framer-appear-id\":\"e8f8wh\",\"data-framer-name\":\"Goodbye pocket wifi, hello eSIM in your inbox!\",fonts:[\"Inter\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"OKmHP6NCp\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--variable-reference-LUJbYyEzo-NajtJi18e)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-LUJbYyEzo-NajtJi18e\":LUJbYyEzo},text:YkdsPJQSW,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"abde7xkwY\"},motionChild:true,nodeId:\"L_h___Aa2\",scopeId:\"NajtJi18e\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sq6o0t framer-1d3ahv\",\"data-framer-name\":\"btn-icon-style-1\",layoutDependency:layoutDependency,layoutId:\"L_h___Aa2\",style:{rotate:-180},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m46c3x\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"I2358:7917;6020:130\",style:{backgroundColor:\"var(--token-28c69910-2db4-4cb9-bcde-12e5f4994100, rgb(250, 250, 250))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cjt1w8\",\"data-framer-name\":\"icon-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I2358:7917;6020:131\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 12L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 6L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 18L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1go4pos\",\"data-framer-name\":\"icon-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I2358:7917;6031:46\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 12L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 6L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 18L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dwbpm8\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"z98UghLpx\",children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"dFymF47cA\",scopeId:\"NajtJi18e\",...addPropertyOverrides({K9iB8roeg:{href:{webPageId:\"abde7xkwY\"}},MRpARgvq_:{href:{webPageId:\"abde7xkwY\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ey39lx framer-1d3ahv\",\"data-framer-name\":\"btn-icon-style-1\",layoutDependency:layoutDependency,layoutId:\"dFymF47cA\",style:{rotate:-180},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jciw7g\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"UiUDMZtsc\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2esokq\",\"data-framer-name\":\"icon-1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Bwu8VNToP\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 12L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 6L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 18L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5qkar6\",\"data-framer-name\":\"icon-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ZMlDELjVC\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 12L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 6L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11 18L5 12\" stroke=\"#192D2A\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O3P5C.framer-1d3ahv, .framer-O3P5C .framer-1d3ahv { display: block; }\",\".framer-O3P5C.framer-lnuolk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 620px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-O3P5C .framer-1zeoxy-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-O3P5C .framer-nmzjet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 624px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 624px / 2); width: 100%; }\",\".framer-O3P5C .framer-1guf0b3 { aspect-ratio: 2.3076923076923075 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 624px); position: relative; width: 100%; z-index: 1; }\",\".framer-O3P5C .framer-a1ppyb { bottom: 2px; flex: none; height: 329px; position: absolute; right: 0px; width: 100%; z-index: 0; }\",\".framer-O3P5C .framer-koc371 { flex: none; height: 100%; left: 0px; position: absolute; top: calc(50.00000000000002% - 100.16129032258065% / 2); width: 70%; z-index: 1; }\",\".framer-O3P5C .framer-iyu039 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 0px 140px 140px 140px; position: relative; width: 1px; z-index: 1; }\",\".framer-O3P5C .framer-2efubs { aspect-ratio: 1.65 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); overflow: visible; position: relative; width: 220px; }\",\".framer-O3P5C .framer-1wn9kq4 { 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: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-O3P5C .framer-1smcrdq { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-O3P5C .framer-28hrx2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-O3P5C .framer-1v15dpk { flex: none; height: 2px; position: relative; width: 60px; }\",\".framer-O3P5C .framer-pyfd0i { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-O3P5C .framer-1m7t6y5, .framer-O3P5C .framer-e8f8wh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O3P5C .framer-1sq6o0t { flex: none; gap: 0px; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 40px; }\",\".framer-O3P5C .framer-1m46c3x, .framer-O3P5C .framer-1jciw7g { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 40px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-O3P5C .framer-cjt1w8, .framer-O3P5C .framer-2esokq { bottom: 8px; flex: none; left: 8px; position: absolute; right: 8px; top: 8px; }\",\".framer-O3P5C .framer-1go4pos, .framer-O3P5C .framer-5qkar6 { bottom: 8px; flex: none; left: -32px; position: absolute; right: 48px; top: 8px; }\",\".framer-O3P5C .framer-1dwbpm8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 1px; z-index: 1; }\",\".framer-O3P5C .framer-ey39lx { flex: none; gap: 0px; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-O3P5C.framer-v-gt2q85.framer-lnuolk { width: 810px; }\",\".framer-O3P5C.framer-v-gt2q85 .framer-1zeoxy-container { bottom: unset; height: 100%; right: unset; width: 100%; }\",\".framer-O3P5C.framer-v-gt2q85 .framer-1guf0b3 { height: 100%; width: var(--framer-aspect-ratio-supported, 1440px); }\",\".framer-O3P5C.framer-v-gt2q85 .framer-koc371 { width: 74%; }\",\".framer-O3P5C.framer-v-gt2q85 .framer-iyu039 { padding: 0px 40px 100px 40px; }\",\".framer-O3P5C.framer-v-gt2q85 .framer-1wn9kq4 { gap: 10px; width: 65%; }\",\".framer-O3P5C.framer-v-gt2q85 .framer-pyfd0i { gap: 10px; }\",\".framer-O3P5C.framer-v-1hamtou.framer-lnuolk { width: 390px; }\",\".framer-O3P5C.framer-v-1hamtou .framer-1zeoxy-container, .framer-O3P5C.framer-v-zh1nc8 .framer-2efubs, .framer-O3P5C.framer-v-zh1nc8 .framer-28hrx2, .framer-O3P5C.framer-v-1s2g7pp .framer-1zeoxy-container { order: 0; }\",\".framer-O3P5C.framer-v-1hamtou .framer-nmzjet, .framer-O3P5C.framer-v-1s2g7pp .framer-nmzjet { justify-content: flex-end; order: 1; }\",\".framer-O3P5C.framer-v-1hamtou .framer-1guf0b3 { left: -680px; position: absolute; right: -370px; top: 0px; width: unset; }\",\".framer-O3P5C.framer-v-1hamtou .framer-a1ppyb { z-index: 1; }\",\".framer-O3P5C.framer-v-1hamtou .framer-iyu039 { order: 3; padding: 0px 20px 50px 20px; }\",\".framer-O3P5C.framer-v-1hamtou .framer-1wn9kq4 { width: 100%; }\",\".framer-O3P5C.framer-v-zh1nc8.framer-lnuolk { height: min-content; }\",\".framer-O3P5C.framer-v-zh1nc8 .framer-iyu039 { align-content: center; align-items: center; flex-direction: row; height: min-content; justify-content: flex-start; order: 3; padding: var(--126ek1i); }\",\".framer-O3P5C.framer-v-zh1nc8 .framer-1wn9kq4 { order: 2; }\",\".framer-O3P5C.framer-v-zh1nc8 .framer-1sq6o0t { order: 1; }\",\".framer-O3P5C.framer-v-1jps047.framer-lnuolk { height: 520px; width: 810px; }\",\".framer-O3P5C.framer-v-1jps047 .framer-1guf0b3 { aspect-ratio: unset; height: 100%; }\",\".framer-O3P5C.framer-v-1jps047 .framer-ey39lx { order: 0; text-decoration: none; }\",\".framer-O3P5C.framer-v-1s2g7pp.framer-lnuolk { height: 520px; width: 390px; }\",\".framer-O3P5C.framer-v-1s2g7pp .framer-1guf0b3 { aspect-ratio: unset; height: 100%; left: 0px; position: absolute; top: 0px; }\",\".framer-O3P5C.framer-v-1s2g7pp .framer-1dwbpm8 { order: 4; padding: 60px 40px 40px 20px; }\",\".framer-O3P5C.framer-v-1s2g7pp .framer-ey39lx { text-decoration: none; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 620\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mNEXcwjCC\":{\"layout\":[\"fixed\",\"fixed\"]},\"vDMjf6CTk\":{\"layout\":[\"fixed\",\"fixed\"]},\"zOIfQ_n85\":{\"layout\":[\"fixed\",\"auto\"]},\"MRpARgvq_\":{\"layout\":[\"fixed\",\"fixed\"]},\"K9iB8roeg\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"z1n3k49u3\":\"heroText\",\"pfs8p_nlI\":\"pageTitle\",\"YkdsPJQSW\":\"subText\",\"jSKFnJa0M\":\"image\",\"YzOR5vS18\":\"imageVisible\",\"HuNulSckH\":\"videoVisible\",\"l6KeOI4PM\":\"heroOverlayMobile\",\"fQ7sfV839\":\"padding\",\"jaas26bmr\":\"jjesimCard\",\"TJD8kpBOf\":\"overlay\",\"XrJuR_zww\":\"lineColor\",\"jLXvAXHZW\":\"pageTitleColor\",\"cTtSQAzwE\":\"heroTextColor\",\"LUJbYyEzo\":\"subTextColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNajtJi18e=withCSS(Component,css,\"framer-O3P5C\");export default FramerNajtJi18e;FramerNajtJi18e.displayName=\"hero Banner\";FramerNajtJi18e.defaultProps={height:620,width:1440};addPropertyControls(FramerNajtJi18e,{variant:{options:[\"PRqII_hPP\",\"mNEXcwjCC\",\"vDMjf6CTk\",\"zOIfQ_n85\",\"MRpARgvq_\",\"K9iB8roeg\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Blog Article / Desktop\",\"Blog Article / Tablet\",\"Blog Article / Phone\"],title:\"Variant\",type:ControlType.Enum},z1n3k49u3:{defaultValue:\"Hero Text\",displayTextArea:false,title:\"Hero Text\",type:ControlType.String},pfs8p_nlI:{defaultValue:\"Page Title\",displayTextArea:false,title:\"Page Title\",type:ControlType.String},YkdsPJQSW:{defaultValue:\"Sub Text\",displayTextArea:false,title:\"Sub Text\",type:ControlType.String},jSKFnJa0M:{__defaultAssetReference:\"data:framer/asset-reference,dSP6p0duFfybovHhhl2Btlu98.png?originalFilename=sho-k-et0v7wY9meI-unsplash+1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},YzOR5vS18:{defaultValue:true,title:\"Image Visible\",type:ControlType.Boolean},HuNulSckH:{defaultValue:true,title:\"Video Visible\",type:ControlType.Boolean},l6KeOI4PM:{defaultValue:true,title:\"hero-overlay-mobile\",type:ControlType.Boolean},fQ7sfV839:{defaultValue:\"20px 140px 20px 140px\",title:\"Padding\",type:ControlType.Padding},jaas26bmr:{defaultValue:false,title:\"jjesim-card\",type:ControlType.Boolean},TJD8kpBOf:{defaultValue:true,title:\"overlay\",type:ControlType.Boolean},XrJuR_zww:{defaultValue:\"rgb(255, 64, 39)\",title:\"Line Color\",type:ControlType.Color},jLXvAXHZW:{defaultValue:\"var(--token-a0602a09-053c-4972-ba4a-3d722d4c17a0, rgb(25, 45, 42))\",title:\"Page Title Color\",type:ControlType.Color},cTtSQAzwE:{defaultValue:\"rgb(0, 0, 0)\",title:\"Hero Text Color\",type:ControlType.Color},LUJbYyEzo:{defaultValue:\"rgb(0, 0, 0)\",title:\"Sub Text Color\",type:ControlType.Color}});addFonts(FramerNajtJi18e,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLDD4V15vFP-KUEg.woff2\",weight:\"800\"},{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\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNajtJi18e\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"z1n3k49u3\\\":\\\"heroText\\\",\\\"pfs8p_nlI\\\":\\\"pageTitle\\\",\\\"YkdsPJQSW\\\":\\\"subText\\\",\\\"jSKFnJa0M\\\":\\\"image\\\",\\\"YzOR5vS18\\\":\\\"imageVisible\\\",\\\"HuNulSckH\\\":\\\"videoVisible\\\",\\\"l6KeOI4PM\\\":\\\"heroOverlayMobile\\\",\\\"fQ7sfV839\\\":\\\"padding\\\",\\\"jaas26bmr\\\":\\\"jjesimCard\\\",\\\"TJD8kpBOf\\\":\\\"overlay\\\",\\\"XrJuR_zww\\\":\\\"lineColor\\\",\\\"jLXvAXHZW\\\":\\\"pageTitleColor\\\",\\\"cTtSQAzwE\\\":\\\"heroTextColor\\\",\\\"LUJbYyEzo\\\":\\\"subTextColor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"620\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mNEXcwjCC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vDMjf6CTk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zOIfQ_n85\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MRpARgvq_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K9iB8roeg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NajtJi18e.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "toResponsiveImage", "value", "numberToPixelString", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "heroOverlayMobile", "heroText", "heroTextColor", "id", "image", "imageVisible", "jjesimCard", "lineColor", "overlay", "padding", "pageTitle", "pageTitleColor", "subText", "subTextColor", "videoVisible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "z1n3k49u3", "pfs8p_nlI", "YkdsPJQSW", "jSKFnJa0M", "YzOR5vS18", "HuNulSckH", "l6KeOI4PM", "fQ7sfV839", "jaas26bmr", "TJD8kpBOf", "XrJuR_zww", "jLXvAXHZW", "cTtSQAzwE", "LUJbYyEzo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "Image2", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "Link", "SVG", "css", "FramerNajtJi18e", "withCSS", "NajtJi18e_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
