{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/orqODkGtD1ih7SVtxhPH/bNGIFdaVk0DLS3nrLnFQ/CHg1R9dsq.js", "ssg:https://framerusercontent.com/modules/hHjzpj888C1MPaQJECRc/DAciZua7EgBilRaZbeUo/hCKRWq0Et.js", "ssg:https://framerusercontent.com/modules/yPPBNGJpAGTK4iC3sc4H/ldJ6DWq4tqu2qrgBnTdT/mNi1MeQBI.js", "ssg:https://framerusercontent.com/modules/rCgZA2kw20Ie1eBIaHpq/O0FttPzt8yinixuc52fj/P3E5FTafd.js", "ssg:https://framerusercontent.com/modules/jIM3miZIpfyaGBZJ2v1f/5TsrMXLHNh3IOZLdol3H/sqcnnD9OB.js", "ssg:https://framerusercontent.com/modules/iiWXkluxsXpC2qNMWdqL/h2VbSWDtSMDDeLfB2Oh5/iffgM2Fdq.js", "ssg:https://framerusercontent.com/modules/yN9tDyPSAVvLuN9ISCES/eGEoWOYykMhgGPLf9ipO/NfS3Exusk.js", "ssg:https://framerusercontent.com/modules/30uKqYr4bHoo0JUflDqn/XTSV1SgTlOKmhc7DcjFZ/vsSgmYyEd.js", "ssg:https://framerusercontent.com/modules/zS7Za2KtksYtQRzFtRql/Gk5zRkNS8jeqCyUo3Acv/ZKgSHIfat.js", "ssg:https://framerusercontent.com/modules/kpX7V4GnNlkEJtmofTYP/mGdSO02RfjVkX2xSXmVl/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\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??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];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\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xUpDUAOCscT8wn54SF8D/AM20SkYb3MDTYa2YI4Hb/pP7JHpqrA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/q2wMzb2eDyeAsngZ4ywM/OitPcWhVGm6bAfYz2wAB/ZtqXN38zW.js\";const enabledGestures={pZWUFYJA3:{hover:true}};const cycleOrder=[\"pZWUFYJA3\",\"w6Zx0XQey\"];const serializationHash=\"framer-Gxbtb\";const variantClassNames={pZWUFYJA3:\"framer-v-ibsx6o\",w6Zx0XQey:\"framer-v-kqwik6\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};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={\"Desktop \\xb7 Style 1\":\"pZWUFYJA3\",\"Phone \\xb7 Style 1\":\"w6Zx0XQey\"};const getProps=({cursor,describtion,height,id,image,link,title,width,...props})=>{return{...props,d8uswh2HO:cursor??props.d8uswh2HO,GG6HritSH:describtion??props.GG6HritSH??\"Leading Navigation App WithOver 300K POIs\",ngMqA34Su:image??props.ngMqA34Su??{pixelHeight:1260,pixelWidth:2400,src:\"https://framerusercontent.com/images/xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg 2400w\"},riuoDLJSu:title??props.riuoDLJSu??\"Truck Driver App\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pZWUFYJA3\",Zon1CJn4h:link??props.Zon1CJn4h};};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,riuoDLJSu,GG6HritSH,ngMqA34Su,Zon1CJn4h,d8uswh2HO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pZWUFYJA3\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Zon1CJn4h,motionChild:true,nodeId:\"pZWUFYJA3\",openInNewTab:false,scopeId:\"CHg1R9dsq\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ibsx6o\",className,classNames)} framer-1nt10p5`,\"data-framer-name\":\"Desktop \\xb7 Style 1\",layoutDependency:layoutDependency,layoutId:\"pZWUFYJA3\",ref:refBinding,style:{...style},...addPropertyOverrides({\"pZWUFYJA3-hover\":{\"data-framer-name\":undefined},w6Zx0XQey:{\"data-framer-name\":\"Phone \\xb7 Style 1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yevf8o\",\"data-framer-name\":\"Img Container\",layoutDependency:layoutDependency,layoutId:\"ckLUJ0CiM\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:\"265.8885px\",...toResponsiveImage(ngMqA34Su)},className:\"framer-jsd885\",\"data-framer-cursor\":d8uswh2HO,\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"rnYgjPytS\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},whileHover:animation,...addPropertyOverrides({w6Zx0XQey:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(ngMqA34Su)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gexu3n\",\"data-framer-name\":\"Frame 48\",layoutDependency:layoutDependency,layoutId:\"vXQ6SgfDX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Truck Driver App\"})}),className:\"framer-1ceebno\",\"data-framer-name\":\"Section \u2192 Section \u2192 Heading 1 \u2192 Truck Driver App\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jSG8fUNcZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:riuoDLJSu,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({w6Zx0XQey:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Truck Driver App\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Leading Navigation App With\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Over 300K POIs\"})]}),className:\"framer-tf1usm\",\"data-framer-name\":\"Section \u2192 Section \u2192 Heading 1 \u2192 Leading Navigation App With\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BlDSVZukc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GG6HritSH,variants:{w6Zx0XQey:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({w6Zx0XQey:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Leading Navigation App WithOver 300K POIs\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gxbtb.framer-1nt10p5, .framer-Gxbtb .framer-1nt10p5 { display: block; }\",\".framer-Gxbtb.framer-ibsx6o { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 266px; }\",\".framer-Gxbtb .framer-1yevf8o { align-content: center; align-items: center; aspect-ratio: 1.2666666666666666 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 158px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Gxbtb .framer-jsd885 { aspect-ratio: 1.2666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 210px); overflow: hidden; position: relative; width: 266px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Gxbtb .framer-gexu3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Gxbtb .framer-1ceebno { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Gxbtb .framer-tf1usm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gxbtb.framer-ibsx6o, .framer-Gxbtb .framer-1yevf8o, .framer-Gxbtb .framer-gexu3n { gap: 0px; } .framer-Gxbtb.framer-ibsx6o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Gxbtb.framer-ibsx6o > :first-child, .framer-Gxbtb .framer-gexu3n > :first-child { margin-top: 0px; } .framer-Gxbtb.framer-ibsx6o > :last-child, .framer-Gxbtb .framer-gexu3n > :last-child { margin-bottom: 0px; } .framer-Gxbtb .framer-1yevf8o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Gxbtb .framer-1yevf8o > :first-child { margin-left: 0px; } .framer-Gxbtb .framer-1yevf8o > :last-child { margin-right: 0px; } .framer-Gxbtb .framer-gexu3n > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-Gxbtb.framer-v-kqwik6.framer-ibsx6o { cursor: unset; gap: 10px; width: 229px; }\",\".framer-Gxbtb.framer-v-kqwik6 .framer-1yevf8o { aspect-ratio: 0.9956521739130435 / 1; height: var(--framer-aspect-ratio-supported, 201px); }\",\".framer-Gxbtb.framer-v-kqwik6 .framer-jsd885 { aspect-ratio: 0.9956521739130435 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 201px); width: 1px; }\",\".framer-Gxbtb.framer-v-kqwik6 .framer-gexu3n { gap: 2px; }\",\".framer-Gxbtb.framer-v-kqwik6 .framer-1ceebno { white-space: pre-wrap; width: 190px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gxbtb.framer-v-kqwik6.framer-ibsx6o, .framer-Gxbtb.framer-v-kqwik6 .framer-gexu3n { gap: 0px; } .framer-Gxbtb.framer-v-kqwik6.framer-ibsx6o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Gxbtb.framer-v-kqwik6.framer-ibsx6o > :first-child, .framer-Gxbtb.framer-v-kqwik6 .framer-gexu3n > :first-child { margin-top: 0px; } .framer-Gxbtb.framer-v-kqwik6.framer-ibsx6o > :last-child, .framer-Gxbtb.framer-v-kqwik6 .framer-gexu3n > :last-child { margin-bottom: 0px; } .framer-Gxbtb.framer-v-kqwik6 .framer-gexu3n > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 312\n * @framerIntrinsicWidth 266\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w6Zx0XQey\":{\"layout\":[\"fixed\",\"auto\"]},\"WMr1kxppq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"riuoDLJSu\":\"title\",\"GG6HritSH\":\"describtion\",\"ngMqA34Su\":\"image\",\"Zon1CJn4h\":\"link\",\"d8uswh2HO\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCHg1R9dsq=withCSS(Component,css,\"framer-Gxbtb\");export default FramerCHg1R9dsq;FramerCHg1R9dsq.displayName=\"Card/Image1\";FramerCHg1R9dsq.defaultProps={height:312,width:266};addPropertyControls(FramerCHg1R9dsq,{variant:{options:[\"pZWUFYJA3\",\"w6Zx0XQey\"],optionTitles:[\"Desktop \\xb7 Style 1\",\"Phone \\xb7 Style 1\"],title:\"Variant\",type:ControlType.Enum},riuoDLJSu:{defaultValue:\"Truck Driver App\",displayTextArea:false,title:\"Title\",type:ControlType.String},GG6HritSH:{defaultValue:\"Leading Navigation App WithOver 300K POIs\",displayTextArea:true,title:\"Describtion\",type:ControlType.String},ngMqA34Su:{__defaultAssetReference:\"data:framer/asset-reference,xhedGRCVPZJ2EW1miF4F8IYoUKY.jpg?originalFilename=Sea+Bulk+Carriers+Landscape+in+the+Port+Service.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Zon1CJn4h:{title:\"Link\",type:ControlType.Link},d8uswh2HO:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerCHg1R9dsq,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCHg1R9dsq\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"312\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w6Zx0XQey\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WMr1kxppq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"266\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"riuoDLJSu\\\":\\\"title\\\",\\\"GG6HritSH\\\":\\\"describtion\\\",\\\"ngMqA34Su\\\":\\\"image\\\",\\\"Zon1CJn4h\\\":\\\"link\\\",\\\"d8uswh2HO\\\":\\\"cursor\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CHg1R9dsq.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/k4GdrpKGHAK1dA7BelSW/UX04vRh5Bi4cuiEd55yH/dvxIS3aly.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"FKAuz1K2S\",\"zc6TKbYdg\",\"Xt96r3NAj\"];const serializationHash=\"framer-HVGiP\";const variantClassNames={FKAuz1K2S:\"framer-v-14i39je\",Xt96r3NAj:\"framer-v-ntvcpv\",zc6TKbYdg:\"framer-v-1t493ym\"};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 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={\"Text - Dark\":\"zc6TKbYdg\",\"Text - Light\":\"Xt96r3NAj\",Icon:\"FKAuz1K2S\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FKAuz1K2S\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FKAuz1K2S\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"zc6TKbYdg\",\"Xt96r3NAj\"].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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14i39je\",className,classNames),\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"FKAuz1K2S\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",...style},variants:{Xt96r3NAj:{boxShadow:\"0px 0.421531111242075px 1.095980889229395px -0.9166666666666666px rgba(0, 0, 0, 0.14), 0px 1.60197331227042px 4.165130611903092px -1.8333333333333333px rgba(0, 0, 0, 0.13), 0px 7px 18.2px -2.75px rgba(0, 0, 0, 0.11)\"},zc6TKbYdg:{backgroundColor:\"rgba(0, 15, 31, 0.75)\",boxShadow:\"0px 0.421531111242075px 1.095980889229395px -0.9166666666666666px rgba(0, 0, 0, 0.14), 0px 1.60197331227042px 4.165130611903092px -1.8333333333333333px rgba(0, 0, 0, 0.13), 0px 7px 18.2px -2.75px rgba(0, 0, 0, 0.11)\"}},...addPropertyOverrides({Xt96r3NAj:{\"data-framer-name\":\"Text - Light\"},zc6TKbYdg:{\"data-framer-name\":\"Text - Dark\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cq4hn4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sIEC7VDM8-container\",nodeId:\"sIEC7VDM8\",rendersWithMotion:true,scopeId:\"hCKRWq0Et\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"Arrowdown\",iconSelection:\"House\",id:\"sIEC7VDM8\",layoutId:\"sIEC7VDM8\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({zc6TKbYdg:{color:\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208)))\"},children:\"Scroll to section\"})}),className:\"framer-1jxb84v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ohw9bFN2C\",style:{\"--extracted-r6o4lv\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{zc6TKbYdg:{\"--extracted-r6o4lv\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zc6TKbYdg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Scroll to section\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HVGiP.framer-dt4twu, .framer-HVGiP .framer-dt4twu { display: block; }\",\".framer-HVGiP.framer-14i39je { height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HVGiP .framer-cq4hn4-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-HVGiP .framer-1jxb84v { flex: none; height: auto; left: 16px; position: absolute; top: 5px; white-space: pre; width: auto; }\",\".framer-HVGiP.framer-v-1t493ym.framer-14i39je, .framer-HVGiP.framer-v-ntvcpv.framer-14i39je { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; justify-content: center; padding: 12px 12px 12px 10px; width: min-content; }\",\".framer-HVGiP.framer-v-1t493ym .framer-cq4hn4-container, .framer-HVGiP.framer-v-ntvcpv .framer-cq4hn4-container { height: 16px; left: unset; order: 0; position: relative; top: unset; width: 16px; }\",\".framer-HVGiP.framer-v-1t493ym .framer-1jxb84v, .framer-HVGiP.framer-v-ntvcpv .framer-1jxb84v { left: unset; order: 1; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HVGiP.framer-v-1t493ym.framer-14i39je { gap: 0px; } .framer-HVGiP.framer-v-1t493ym.framer-14i39je > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HVGiP.framer-v-1t493ym.framer-14i39je > :first-child { margin-left: 0px; } .framer-HVGiP.framer-v-1t493ym.framer-14i39je > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HVGiP.framer-v-ntvcpv.framer-14i39je { gap: 0px; } .framer-HVGiP.framer-v-ntvcpv.framer-14i39je > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HVGiP.framer-v-ntvcpv.framer-14i39je > :first-child { margin-left: 0px; } .framer-HVGiP.framer-v-ntvcpv.framer-14i39je > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zc6TKbYdg\":{\"layout\":[\"auto\",\"fixed\"]},\"Xt96r3NAj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhCKRWq0Et=withCSS(Component,css,\"framer-HVGiP\");export default FramerhCKRWq0Et;FramerhCKRWq0Et.displayName=\"Cursor - Scroll to down\";FramerhCKRWq0Et.defaultProps={height:40,width:40};addPropertyControls(FramerhCKRWq0Et,{variant:{options:[\"FKAuz1K2S\",\"zc6TKbYdg\",\"Xt96r3NAj\"],optionTitles:[\"Icon\",\"Text - Dark\",\"Text - Light\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhCKRWq0Et,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhCKRWq0Et\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zc6TKbYdg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Xt96r3NAj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hCKRWq0Et.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/mF9TqhJNhf2z0OrYyZoa/gkk410OsOfEhNzzjuVuH/oEPT_ciXE.js\";const cycleOrder=[\"kxUWZmAt9\",\"fikW1sLzK\",\"lJqwMZUsM\",\"XwW1jfiq_\",\"XdIznsN2o\",\"jyrlY2N3_\",\"kGcrUSrvu\",\"S0sI5Y2Lo\"];const serializationHash=\"framer-4ExkE\";const variantClassNames={fikW1sLzK:\"framer-v-38yub1\",jyrlY2N3_:\"framer-v-nihrtm\",kGcrUSrvu:\"framer-v-quv4da\",kxUWZmAt9:\"framer-v-9753dm\",lJqwMZUsM:\"framer-v-1rma2bi\",S0sI5Y2Lo:\"framer-v-tojynx\",XdIznsN2o:\"framer-v-109iqg8\",XwW1jfiq_:\"framer-v-n0y3j6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.5,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:40,delay:.5,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:40,delay:.5,mass:1,stiffness:410,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={\"Phone 1\":\"XdIznsN2o\",\"Phone 2\":\"jyrlY2N3_\",\"Phone 3\":\"kGcrUSrvu\",\"Phone 4\":\"S0sI5Y2Lo\",\"Variant 2\":\"fikW1sLzK\",\"Variant 3\":\"lJqwMZUsM\",\"Variant 4\":\"XwW1jfiq_\",Default:\"kxUWZmAt9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kxUWZmAt9\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kxUWZmAt9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1jseq9b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fikW1sLzK\"),1e3);});const onAppear1ml3yxx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lJqwMZUsM\"),2e3);});const onAppearounlyb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XwW1jfiq_\"),2e3);});const onAppeardwtw8p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kxUWZmAt9\"),1e3);});const onAppearmxia0k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jyrlY2N3_\"),1e3);});const onAppear1h5pbmk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kGcrUSrvu\"),2e3);});const onAppear1tjgu7v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"S0sI5Y2Lo\"),2e3);});const onAppear15r491i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XdIznsN2o\"),1e3);});useOnVariantChange(baseVariant,{default:onAppear1jseq9b,fikW1sLzK:onAppear1ml3yxx,jyrlY2N3_:onAppear1h5pbmk,kGcrUSrvu:onAppear1tjgu7v,lJqwMZUsM:onAppearounlyb,S0sI5Y2Lo:onAppear15r491i,XdIznsN2o:onAppearmxia0k,XwW1jfiq_:onAppeardwtw8p});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({fikW1sLzK:{value:transition2},jyrlY2N3_:{value:transition2},kGcrUSrvu:{value:transition2},lJqwMZUsM:{value:transition2},S0sI5Y2Lo:{value:transition3},XwW1jfiq_:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9753dm\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kxUWZmAt9\",ref:refBinding,style:{...style},...addPropertyOverrides({fikW1sLzK:{\"data-framer-name\":\"Variant 2\"},jyrlY2N3_:{\"data-framer-name\":\"Phone 2\"},kGcrUSrvu:{\"data-framer-name\":\"Phone 3\"},lJqwMZUsM:{\"data-framer-name\":\"Variant 3\"},S0sI5Y2Lo:{\"data-framer-name\":\"Phone 4\"},XdIznsN2o:{\"data-framer-name\":\"Phone 1\"},XwW1jfiq_:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ykmdrv\",\"data-framer-name\":\"Titles\",layoutDependency:layoutDependency,layoutId:\"W9YQnlHZW\",transformTemplate:transformTemplate1,...addPropertyOverrides({fikW1sLzK:{transformTemplate:undefined},jyrlY2N3_:{transformTemplate:undefined},kGcrUSrvu:{transformTemplate:undefined},lJqwMZUsM:{transformTemplate:undefined},S0sI5Y2Lo:{transformTemplate:undefined},XdIznsN2o:{transformTemplate:undefined},XwW1jfiq_:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners\"})})}),className:\"framer-9psul2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wIEhRWdPv\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jyrlY2N3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},kGcrUSrvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},S0sI5Y2Lo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},XdIznsN2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Charterers\"})})}),className:\"framer-uzcytp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R3_99ESGZ\",variants:{jyrlY2N3_:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},kGcrUSrvu:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},S0sI5Y2Lo:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},XdIznsN2o:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jyrlY2N3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Charterers \"})})}),fonts:[\"GF;Poppins-700\"]},kGcrUSrvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Charterers \"})})}),fonts:[\"GF;Poppins-700\"]},S0sI5Y2Lo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Charterers \"})})}),fonts:[\"GF;Poppins-700\"]},XdIznsN2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Charterers \"})})}),fonts:[\"GF;Poppins-700\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Agents\"})})}),className:\"framer-q7sztb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bqE65SWzs\",variants:{jyrlY2N3_:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},kGcrUSrvu:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},S0sI5Y2Lo:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},XdIznsN2o:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jyrlY2N3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Agents \"})})}),fonts:[\"GF;Poppins-700\"]},kGcrUSrvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Agents \"})})}),fonts:[\"GF;Poppins-700\"]},S0sI5Y2Lo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Agents \"})})}),fonts:[\"GF;Poppins-700\"]},XdIznsN2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Agents \"})})}),fonts:[\"GF;Poppins-700\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners\"})})}),className:\"framer-2e49n8\",\"data-framer-name\":\"Owners\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f_eb8Bvu_\",variants:{jyrlY2N3_:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},kGcrUSrvu:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},S0sI5Y2Lo:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},XdIznsN2o:{\"--extracted-1of0zx5\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jyrlY2N3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},kGcrUSrvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},S0sI5Y2Lo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]},XdIznsN2o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(26, 115, 183) 0%, rgb(48, 156, 232) 100%)\"},children:\"Owners \"})})}),fonts:[\"GF;Poppins-700\"]}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4ExkE.framer-183skou, .framer-4ExkE .framer-183skou { display: block; }\",\".framer-4ExkE.framer-9753dm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 66px; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-4ExkE .framer-ykmdrv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 200%; width: 150%; z-index: 1; }\",\".framer-4ExkE .framer-9psul2, .framer-4ExkE .framer-uzcytp, .framer-4ExkE .framer-q7sztb, .framer-4ExkE .framer-2e49n8 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ExkE.framer-9753dm, .framer-4ExkE .framer-ykmdrv { gap: 0px; } .framer-4ExkE.framer-9753dm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4ExkE.framer-9753dm > :first-child { margin-left: 0px; } .framer-4ExkE.framer-9753dm > :last-child { margin-right: 0px; } .framer-4ExkE .framer-ykmdrv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4ExkE .framer-ykmdrv > :first-child { margin-top: 0px; } .framer-4ExkE .framer-ykmdrv > :last-child { margin-bottom: 0px; } }\",\".framer-4ExkE.framer-v-38yub1.framer-9753dm, .framer-4ExkE.framer-v-1rma2bi.framer-9753dm, .framer-4ExkE.framer-v-n0y3j6.framer-9753dm { height: 66px; min-height: unset; min-width: 259px; width: min-content; }\",\".framer-4ExkE.framer-v-38yub1 .framer-ykmdrv { top: -66px; }\",\".framer-4ExkE.framer-v-1rma2bi .framer-ykmdrv { top: -132px; }\",\".framer-4ExkE.framer-v-n0y3j6 .framer-ykmdrv { top: -198px; }\",\".framer-4ExkE.framer-v-n0y3j6 .framer-9psul2 { order: 0; }\",\".framer-4ExkE.framer-v-n0y3j6 .framer-uzcytp { order: 1; }\",\".framer-4ExkE.framer-v-n0y3j6 .framer-q7sztb { order: 2; }\",\".framer-4ExkE.framer-v-n0y3j6 .framer-2e49n8 { order: 3; }\",\".framer-4ExkE.framer-v-109iqg8.framer-9753dm { min-height: 43px; }\",\".framer-4ExkE.framer-v-109iqg8 .framer-ykmdrv { top: 0px; width: min-content; }\",\".framer-4ExkE.framer-v-109iqg8 .framer-9psul2, .framer-4ExkE.framer-v-109iqg8 .framer-2e49n8, .framer-4ExkE.framer-v-nihrtm .framer-9psul2, .framer-4ExkE.framer-v-nihrtm .framer-uzcytp, .framer-4ExkE.framer-v-nihrtm .framer-2e49n8, .framer-4ExkE.framer-v-quv4da .framer-9psul2, .framer-4ExkE.framer-v-quv4da .framer-uzcytp, .framer-4ExkE.framer-v-quv4da .framer-2e49n8, .framer-4ExkE.framer-v-tojynx .framer-9psul2, .framer-4ExkE.framer-v-tojynx .framer-uzcytp, .framer-4ExkE.framer-v-tojynx .framer-2e49n8 { height: 43px; width: 203px; }\",\".framer-4ExkE.framer-v-109iqg8 .framer-uzcytp { height: 43px; width: 202px; }\",\".framer-4ExkE.framer-v-109iqg8 .framer-q7sztb, .framer-4ExkE.framer-v-nihrtm .framer-q7sztb, .framer-4ExkE.framer-v-tojynx .framer-q7sztb { height: 44px; width: 203px; }\",\".framer-4ExkE.framer-v-nihrtm.framer-9753dm, .framer-4ExkE.framer-v-quv4da.framer-9753dm { min-height: 43px; min-width: 259px; width: min-content; }\",\".framer-4ExkE.framer-v-nihrtm .framer-ykmdrv { top: -42px; width: min-content; }\",\".framer-4ExkE.framer-v-quv4da .framer-ykmdrv { top: -88px; width: min-content; }\",\".framer-4ExkE.framer-v-quv4da .framer-q7sztb { height: 48px; width: 203px; }\",\".framer-4ExkE.framer-v-tojynx.framer-9753dm { height: 43px; min-height: unset; min-width: 259px; width: min-content; }\",\".framer-4ExkE.framer-v-tojynx .framer-ykmdrv { top: -130px; width: min-content; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fikW1sLzK\":{\"layout\":[\"auto\",\"fixed\"]},\"lJqwMZUsM\":{\"layout\":[\"auto\",\"fixed\"]},\"XwW1jfiq_\":{\"layout\":[\"auto\",\"fixed\"]},\"XdIznsN2o\":{\"layout\":[\"fixed\",\"auto\"]},\"jyrlY2N3_\":{\"layout\":[\"auto\",\"auto\"]},\"kGcrUSrvu\":{\"layout\":[\"auto\",\"auto\"]},\"S0sI5Y2Lo\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermNi1MeQBI=withCSS(Component,css,\"framer-4ExkE\");export default FramermNi1MeQBI;FramermNi1MeQBI.displayName=\"Animation/Cycle Text\";FramermNi1MeQBI.defaultProps={height:66,width:300};addPropertyControls(FramermNi1MeQBI,{variant:{options:[\"kxUWZmAt9\",\"fikW1sLzK\",\"lJqwMZUsM\",\"XwW1jfiq_\",\"XdIznsN2o\",\"jyrlY2N3_\",\"kGcrUSrvu\",\"S0sI5Y2Lo\"],optionTitles:[\"Default\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Phone 1\",\"Phone 2\",\"Phone 3\",\"Phone 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermNi1MeQBI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermNi1MeQBI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"66\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fikW1sLzK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lJqwMZUsM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XwW1jfiq_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XdIznsN2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jyrlY2N3_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kGcrUSrvu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S0sI5Y2Lo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mNi1MeQBI.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/k4GdrpKGHAK1dA7BelSW/UX04vRh5Bi4cuiEd55yH/dvxIS3aly.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/14Hs87gNrtSeec0F4DS3/n1uHjEOllgCnK7ZUXtDu/e8MqUfc3j.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/el4IxOjIcidA505JIVYZ/mSx5gorr9YWnwiNhzSFs/GiIrC5gDK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/o6OGQP2CYzPd6yzs6H9l/KRD7JGQxBw867lnYEbWl/Jjj2T4gpQ.js\";import Avatar from\"https://framerusercontent.com/modules/pCBDIhWWHs3ecwYSXtqd/MXrbldj08DjlAzLGUdOm/tRpAAibDz.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const AvatarFonts=getFonts(Avatar);const cycleOrder=[\"F_luJusdr\",\"i5cELoMa7\",\"FqMN8kUAo\",\"LFIbsOYX6\",\"bP0OoPC5k\",\"bgCb6Nnzd\",\"KEdAtgUhZ\",\"jgDYGVvgN\",\"nel9_9WDa\",\"K86WsLxJN\",\"D1iNNcuGt\",\"rFkucdw_5\",\"nJlHUs7xg\",\"SrqcwQz8G\",\"DWFFC4wQn\"];const serializationHash=\"framer-sLXJj\";const variantClassNames={bgCb6Nnzd:\"framer-v-xtusmc\",bP0OoPC5k:\"framer-v-1je2eyn\",D1iNNcuGt:\"framer-v-yhrc4h\",DWFFC4wQn:\"framer-v-ls9zjz\",F_luJusdr:\"framer-v-1m544cf\",FqMN8kUAo:\"framer-v-8lmyjb\",i5cELoMa7:\"framer-v-11165lb\",jgDYGVvgN:\"framer-v-1796p0t\",K86WsLxJN:\"framer-v-cowib6\",KEdAtgUhZ:\"framer-v-x1kvid\",LFIbsOYX6:\"framer-v-1y061xg\",nel9_9WDa:\"framer-v-b9zgkk\",nJlHUs7xg:\"framer-v-gas52x\",rFkucdw_5:\"framer-v-caxmn\",SrqcwQz8G:\"framer-v-1bru9bt\"};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:800,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:1e3,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition3={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};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={\"Desktop 1 \\xb7 Clicking \\xb7 1 to 2 \":\"FqMN8kUAo\",\"Desktop 1 \\xb7 Hover \\xb7 1 to 2 \":\"i5cELoMa7\",\"Desktop 1\":\"F_luJusdr\",\"Desktop 2 \\xb7 Clicking \\xb7 2 to 3\":\"bgCb6Nnzd\",\"Desktop 2 \\xb7 Hover \\xb7 2 to 3\":\"bP0OoPC5k\",\"Desktop 2\":\"LFIbsOYX6\",\"Desktop 3 \\xb7 Clicking \\xb7 3 to 1\":\"nel9_9WDa\",\"Desktop 3\":\"KEdAtgUhZ\",\"Desktop\\xb7 3 \\xb7 Hover \\xb7 3 to 1\":\"jgDYGVvgN\",\"Phone 1\":\"K86WsLxJN\",\"Phone 2\":\"D1iNNcuGt\",\"Phone 3\":\"rFkucdw_5\",\"Tablet 1\":\"nJlHUs7xg\",\"Tablet 2\":\"SrqcwQz8G\",\"Tablet 3\":\"DWFFC4wQn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"F_luJusdr\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F_luJusdr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1xqavdj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"LFIbsOYX6\"),400);});const onAppearrinteh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KEdAtgUhZ\"),300);});const onAppearf5gs97=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"F_luJusdr\"),300);});const onClick1u18bvz=activeVariantCallback(async(...args)=>{setVariant(\"rFkucdw_5\");});const onClickhuxo0m=activeVariantCallback(async(...args)=>{setVariant(\"K86WsLxJN\");});const onClick17n9a7x=activeVariantCallback(async(...args)=>{setVariant(\"D1iNNcuGt\");});const onClick1iip14p=activeVariantCallback(async(...args)=>{setVariant(\"DWFFC4wQn\");});const onClickjzam6m=activeVariantCallback(async(...args)=>{setVariant(\"nJlHUs7xg\");});const onClickcn6fv9=activeVariantCallback(async(...args)=>{setVariant(\"SrqcwQz8G\");});const onClick69mlle=activeVariantCallback(async(...args)=>{setVariant(\"KEdAtgUhZ\");});const onClicky3zs0h=activeVariantCallback(async(...args)=>{setVariant(\"F_luJusdr\");});const onClick5uvaqw=activeVariantCallback(async(...args)=>{setVariant(\"LFIbsOYX6\");});const onClicke76p88=activeVariantCallback(async(...args)=>{setVariant(\"FqMN8kUAo\");});const onMouseEnter1m79w1m=activeVariantCallback(async(...args)=>{setVariant(\"i5cELoMa7\");});const onMouseLeavey3zs0h=activeVariantCallback(async(...args)=>{setVariant(\"F_luJusdr\");});const onClickwck2d2=activeVariantCallback(async(...args)=>{setVariant(\"bgCb6Nnzd\");});const onMouseEnter1slegcl=activeVariantCallback(async(...args)=>{setVariant(\"bP0OoPC5k\");});const onMouseLeave5uvaqw=activeVariantCallback(async(...args)=>{setVariant(\"LFIbsOYX6\");});const onClickimwhoh=activeVariantCallback(async(...args)=>{setVariant(\"nel9_9WDa\");});const onMouseEnter106nxue=activeVariantCallback(async(...args)=>{setVariant(\"jgDYGVvgN\");});const onMouseLeave69mlle=activeVariantCallback(async(...args)=>{setVariant(\"KEdAtgUhZ\");});const onTapwck2d2=activeVariantCallback(async(...args)=>{setVariant(\"bgCb6Nnzd\");});const onTap5uvaqw=activeVariantCallback(async(...args)=>{setVariant(\"LFIbsOYX6\");});const onTape76p88=activeVariantCallback(async(...args)=>{setVariant(\"FqMN8kUAo\");});const onTapimwhoh=activeVariantCallback(async(...args)=>{setVariant(\"nel9_9WDa\");});useOnVariantChange(baseVariant,{bgCb6Nnzd:onAppearrinteh,FqMN8kUAo:onAppear1xqavdj,nel9_9WDa:onAppearf5gs97});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"K86WsLxJN\",\"D1iNNcuGt\",\"rFkucdw_5\",\"nJlHUs7xg\",\"SrqcwQz8G\",\"DWFFC4wQn\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"K86WsLxJN\",\"D1iNNcuGt\",\"rFkucdw_5\",\"nJlHUs7xg\",\"SrqcwQz8G\",\"DWFFC4wQn\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({FqMN8kUAo:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m544cf\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"F_luJusdr\",ref:refBinding,style:{backgroundColor:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",...style},...addPropertyOverrides({bgCb6Nnzd:{\"data-framer-name\":\"Desktop 2 \\xb7 Clicking \\xb7 2 to 3\",\"data-highlight\":true},bP0OoPC5k:{\"data-framer-name\":\"Desktop 2 \\xb7 Hover \\xb7 2 to 3\"},D1iNNcuGt:{\"data-framer-name\":\"Phone 2\"},DWFFC4wQn:{\"data-framer-name\":\"Tablet 3\"},FqMN8kUAo:{\"data-framer-name\":\"Desktop 1 \\xb7 Clicking \\xb7 1 to 2 \",\"data-highlight\":true},i5cELoMa7:{\"data-framer-name\":\"Desktop 1 \\xb7 Hover \\xb7 1 to 2 \"},jgDYGVvgN:{\"data-framer-name\":\"Desktop\\xb7 3 \\xb7 Hover \\xb7 3 to 1\"},K86WsLxJN:{\"data-framer-name\":\"Phone 1\"},KEdAtgUhZ:{\"data-framer-name\":\"Desktop 3\"},LFIbsOYX6:{\"data-framer-name\":\"Desktop 2\"},nel9_9WDa:{\"data-framer-name\":\"Desktop 3 \\xb7 Clicking \\xb7 3 to 1\",\"data-highlight\":true},nJlHUs7xg:{\"data-framer-name\":\"Tablet 1\"},rFkucdw_5:{\"data-framer-name\":\"Phone 3\"},SrqcwQz8G:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ne0hfp\",\"data-framer-name\":\"Phont \\xb7 Switch Btn\",layoutDependency:layoutDependency,layoutId:\"yuahyS9Bo\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11r5ijo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gQ8ZvVrLw-container\",nodeId:\"gQ8ZvVrLw\",rendersWithMotion:true,scopeId:\"P3E5FTafd\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",height:\"100%\",iconSearch:\"arrow-circle-left\",iconSelection:\"House\",id:\"gQ8ZvVrLw\",layoutId:\"gQ8ZvVrLw\",mirrored:false,onClick:onClick1u18bvz,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({D1iNNcuGt:{onClick:onClickhuxo0m},DWFFC4wQn:{onClick:onClickcn6fv9},nJlHUs7xg:{onClick:onClick1iip14p},rFkucdw_5:{onClick:onClick17n9a7x},SrqcwQz8G:{onClick:onClickjzam6m}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s4svcr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BZGlo3Vqh-container\",nodeId:\"BZGlo3Vqh\",rendersWithMotion:true,scopeId:\"P3E5FTafd\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",height:\"100%\",iconSearch:\"arrow-circle-right\",iconSelection:\"House\",id:\"BZGlo3Vqh\",layoutId:\"BZGlo3Vqh\",mirrored:false,onClick:onClick17n9a7x,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({D1iNNcuGt:{onClick:onClick1u18bvz},DWFFC4wQn:{onClick:onClickjzam6m},nJlHUs7xg:{onClick:onClickcn6fv9},rFkucdw_5:{onClick:onClickhuxo0m},SrqcwQz8G:{onClick:onClick1iip14p}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15o630d\",layoutDependency:layoutDependency,layoutId:\"XPsINqEfP\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3oxk3b\",layoutDependency:layoutDependency,layoutId:\"d3NhUQbHn\",style:{transformPerspective:1200},...addPropertyOverrides({K86WsLxJN:{__framer__animate:{transition:transition5},__framer__exit:animation3},nJlHUs7xg:{__framer__animate:{transition:transition5},__framer__exit:animation3}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14rbhxn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:61,layoutDependency:layoutDependency,layoutId:\"qYtIgf5mz\",svg:'<svg width=\"61\" height=\"52\" viewBox=\"-1 -1 61 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.04 25.4898V49.9898H0V26.8898L12.74 0.00976562H26.04L16.1 25.4898H26.04ZM58.1 25.4898V49.9898H32.06V26.8898L44.8 0.00976562H58.1L48.16 25.4898H58.1Z\" fill=\"#E2E4E9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14l9fpp\",layoutDependency:layoutDependency,layoutId:\"cPZk1NVlQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Always in Brazilian Ports, our ships receive superior maintenance through the expertise of Seachios\\xae professionals \u2014 a service I continuously delight in using.\"})}),className:\"framer-1cnmprl\",\"data-framer-name\":'Don\\'t often take time to write reviews of apps, but this one is so deserving in my line of work as a \"trucker\".',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cs9ExVoUz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bgCb6Nnzd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Seachios\\xae provided professional and responsible tank cleaning services from Rio Grande to Santos. We will undoubtedly rely on their expertise and solutions again in the future.\"})})},bP0OoPC5k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Seachios\\xae provided professional and responsible tank cleaning services from Rio Grande to Santos. We will undoubtedly rely on their expertise and solutions again in the future.\"})})},D1iNNcuGt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Seachios\\xae provided professional and responsible tank cleaning services from Rio Grande to Santos. We will undoubtedly rely on their expertise and solutions again in the future.\"})})},DWFFC4wQn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Our experience with Seachios\\xae is that they consistently prioritize our interests at the highest level. Their hold cleaning services always meet the highest standards across Brazilian ports.\"})})},jgDYGVvgN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Our experience with Seachios\\xae is that they consistently prioritize our interests at the highest level. Their hold cleaning services always meet the highest standards across Brazilian ports.\"})})},K86WsLxJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Always in Brazilian Ports, our ships receive superior maintenance through the expertise of Seachios\\xae professionals \u2014 a service I continuously delight in using.\"})})},KEdAtgUhZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Our experience with Seachios\\xae is that they consistently prioritize our interests at the highest level. Their hold cleaning services always meet the highest standards across Brazilian ports.\"})})},LFIbsOYX6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Seachios\\xae provided professional and responsible tank cleaning services from Rio Grande to Santos. We will undoubtedly rely on their expertise and solutions again in the future.\"})})},nel9_9WDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Our experience with Seachios\\xae is that they consistently prioritize our interests at the highest level. Their hold cleaning services always meet the highest standards across Brazilian ports.\"})})},nJlHUs7xg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Always in Brazilian Ports, our ships receive superior maintenance through the expertise of Seachios\\xae professionals \u2014 a service I continuously delight in using.\"})})},rFkucdw_5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Our experience with Seachios\\xae is that they consistently prioritize our interests at the highest level. Their hold cleaning services always meet the highest standards across Brazilian ports.\"})})},SrqcwQz8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:\"Seachios\\xae provided professional and responsible tank cleaning services from Rio Grande to Santos. We will undoubtedly rely on their expertise and solutions again in the future.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ti4mb\",\"data-framer-name\":\"Detail Row\",layoutDependency:layoutDependency,layoutId:\"mq3TRIS9X\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3kfet\",\"data-framer-name\":\"Avatar / Base\",layoutDependency:layoutDependency,layoutId:\"DgpZ_rtDg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-497)/2)+5+0+0+77+0+274+0+0,...addPropertyOverrides({bgCb6Nnzd:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},bP0OoPC5k:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},D1iNNcuGt:{y:(componentViewport?.y||0)+30+(0+328+((componentViewport?.height||200)-30-504.2)/1*1)+32+0+0+41+0+55.2+0+0},DWFFC4wQn:{height:40,width:\"40px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-138.2)/2)+0+0+0+39+0+55.2+2+0},jgDYGVvgN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},K86WsLxJN:{y:(componentViewport?.y||0)+30+(0+328+((componentViewport?.height||200)-30-504.2)/1*1)+32+0+0+41+0+55.2+0+0},KEdAtgUhZ:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},LFIbsOYX6:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},nel9_9WDa:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-309.8)/2)+5+0+0+77+0+86.8+0+0},nJlHUs7xg:{height:40,width:\"40px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-140.2)/2)+0+0+0+41+0+55.2+2+0},rFkucdw_5:{y:(componentViewport?.y||0)+30+(0+328+((componentViewport?.height||200)-30-504.2)/1*1)+32+0+0+41+0+55.2+0+0},SrqcwQz8G:{height:40,width:\"40px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-138.2)/2)+0+0+0+39+0+55.2+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c668x6-container\",layoutDependency:layoutDependency,layoutId:\"dwKW3RpVm-container\",nodeId:\"dwKW3RpVm\",rendersWithMotion:true,scopeId:\"P3E5FTafd\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"dwKW3RpVm\",layoutId:\"dwKW3RpVm\",style:{height:\"100%\",width:\"100%\"},variant:\"wQNh7Jgrf\",width:\"100%\",...addPropertyOverrides({bgCb6Nnzd:{variant:\"fKMORbcBP\"},bP0OoPC5k:{variant:\"fKMORbcBP\"},D1iNNcuGt:{variant:\"fKMORbcBP\"},DWFFC4wQn:{variant:\"I416:97571;24:600\"},jgDYGVvgN:{variant:\"I416:97571;24:600\"},KEdAtgUhZ:{variant:\"I416:97571;24:600\"},LFIbsOYX6:{variant:\"fKMORbcBP\"},nel9_9WDa:{variant:\"I416:97571;24:600\"},rFkucdw_5:{variant:\"I416:97571;24:600\"},SrqcwQz8G:{variant:\"fKMORbcBP\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1boa5gy\",\"data-framer-name\":\"User Details\",layoutDependency:layoutDependency,layoutId:\"kPoDebkSb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. D. P.\"})}),className:\"framer-n1vtf2\",\"data-framer-name\":\"Avatar Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YdfAD2XSt\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bgCb6Nnzd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. T. B.\"})})},bP0OoPC5k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. T. B.\"})})},D1iNNcuGt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. T. B.\"})})},DWFFC4wQn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Various Representatives\"})})},jgDYGVvgN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Various Representatives\"})})},KEdAtgUhZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Various Representatives\"})})},LFIbsOYX6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. T. B.\"})})},nel9_9WDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Various Representatives\"})})},rFkucdw_5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Various Representatives\"})})},SrqcwQz8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Mr. T. B.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Superintendent, A.M Nomikos.\"})}),className:\"framer-4bdkhp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o9OhXy63l\",style:{\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bgCb6Nnzd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Project Manager, Jobson Italia.\"})})},bP0OoPC5k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Project Manager, Jobson Italia.\"})})},D1iNNcuGt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Project Manager, Jobson Italia.\"})})},DWFFC4wQn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Port Captain & Operators, Costamare Bulkers\"})})},jgDYGVvgN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Port Captain & Operators, Costamare Bulkers\"})})},KEdAtgUhZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Port Captain & Operators, Costamare Bulkers\"})})},LFIbsOYX6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Project Manager, Jobson Italia.\"})})},nel9_9WDa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Port Captain & Operators, Costamare Bulkers\"})})},rFkucdw_5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Port Captain & Operators, Costamare Bulkers\"})})},SrqcwQz8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Project Manager, Jobson Italia.\"})})}},baseVariant,gestureVariant)})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1azspxw\",\"data-framer-name\":\"Desktop \\xb7 Switch Btn\",layoutDependency:layoutDependency,layoutId:\"kFSNjM7nV\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nq35cl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TFhLvYvPN-container\",nodeId:\"TFhLvYvPN\",rendersWithMotion:true,scopeId:\"P3E5FTafd\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",height:\"100%\",iconSearch:\"arrow-circle-left\",iconSelection:\"House\",id:\"TFhLvYvPN\",layoutId:\"TFhLvYvPN\",mirrored:false,onClick:onClick69mlle,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({bgCb6Nnzd:{onClick:onClicky3zs0h},bP0OoPC5k:{onClick:onClicky3zs0h},FqMN8kUAo:{onClick:undefined},jgDYGVvgN:{onClick:onClick5uvaqw},KEdAtgUhZ:{onClick:onClick5uvaqw},LFIbsOYX6:{onClick:onClicky3zs0h},nel9_9WDa:{onClick:onClick5uvaqw}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vr12o8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"l6nq0zsoP-container\",nodeId:\"l6nq0zsoP\",rendersWithMotion:true,scopeId:\"P3E5FTafd\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",height:\"100%\",iconSearch:\"arrow-circle-right\",iconSelection:\"House\",id:\"l6nq0zsoP\",layoutId:\"l6nq0zsoP\",mirrored:false,onClick:onClicke76p88,onMouseEnter:onMouseEnter1m79w1m,onMouseLeave:onMouseLeavey3zs0h,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({bgCb6Nnzd:{onClick:onClick69mlle,onMouseEnter:undefined,onMouseLeave:undefined},bP0OoPC5k:{onClick:onClickwck2d2,onMouseLeave:onMouseLeave5uvaqw},FqMN8kUAo:{onClick:undefined,onMouseEnter:undefined,onMouseLeave:undefined},jgDYGVvgN:{onClick:onClickimwhoh,onMouseEnter:undefined,onMouseLeave:onMouseLeave69mlle},KEdAtgUhZ:{onClick:onClickimwhoh,onMouseEnter:onMouseEnter106nxue,onMouseLeave:onMouseLeave69mlle},LFIbsOYX6:{onClick:onClickwck2d2,onMouseEnter:onMouseEnter1slegcl,onMouseLeave:onMouseLeave5uvaqw},nel9_9WDa:{onClick:onClickimwhoh,onMouseEnter:undefined,onMouseLeave:undefined}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-148agg8\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"wiK9B5XVw\",style:{transformPerspective:1200},...addPropertyOverrides({K86WsLxJN:{__framer__animate:{transition:transition4},__framer__exit:animation2},nJlHUs7xg:{__framer__animate:{transition:transition4},__framer__exit:animation2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:961,pixelWidth:1440,positionX:\"right\",positionY:\"center\",sizes:\"369.5px\",src:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg\",srcSet:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg 1440w\"},className:\"framer-12qe1jy\",\"data-framer-name\":\"Img 3\",layoutDependency:layoutDependency,layoutId:\"t6iTKGdpG\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"grayscale(1)\",opacity:.06,rotate:12,WebkitFilter:\"grayscale(1)\"},variants:{bgCb6Nnzd:{filter:\"grayscale(0)\",opacity:1,rotate:16,WebkitFilter:\"grayscale(0)\"},bP0OoPC5k:{filter:\"grayscale(0)\",opacity:1,rotate:6,WebkitFilter:\"grayscale(0)\"},D1iNNcuGt:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.71,rotate:6},DWFFC4wQn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},jgDYGVvgN:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},K86WsLxJN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},KEdAtgUhZ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},LFIbsOYX6:{opacity:.71,rotate:6},nel9_9WDa:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0.69)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0.69)\"},nJlHUs7xg:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},rFkucdw_5:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},SrqcwQz8G:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.71,rotate:6}},...addPropertyOverrides({bgCb6Nnzd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"right\",positionY:\"center\",sizes:\"370px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},bP0OoPC5k:{\"data-highlight\":true,background:{alt:\"cargo hold cleaning services trusted itaqui santos paranagua vitoria rio grande\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"right\",positionY:\"center\",sizes:\"370px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"},onMouseLeave:onMouseLeave5uvaqw,onTap:onTapwck2d2},D1iNNcuGt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},DWFFC4wQn:{\"data-border\":true,background:{alt:\"best cargo hold cleaning services provided by seachios at itaqui, santos, paranagua, recife, fortaleza, pecem, vitoria, rio grande\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},jgDYGVvgN:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:\"369.5px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},K86WsLxJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:961,pixelWidth:1440,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg\",srcSet:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg 1440w\"}},KEdAtgUhZ:{\"data-border\":true,background:{alt:\"best cargo hold cleaning services provided by seachios at itaqui, santos, paranagua, recife, fortaleza, pecem, vitoria, rio grande\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:\"369.5px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},LFIbsOYX6:{\"data-highlight\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"right\",positionY:\"center\",sizes:\"369.5px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"},onMouseEnter:onMouseEnter1slegcl},nel9_9WDa:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:\"369.5px\",src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},nJlHUs7xg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:961,pixelWidth:1440,positionX:\"right\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg\",srcSet:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg 1440w\"}},rFkucdw_5:{\"data-border\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:3e3,pixelWidth:4e3,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg\",srcSet:\"https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gh7vDAGhZeuGFeZe2t75GWVl1hQ.jpg 4000w\"}},SrqcwQz8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3667,intrinsicWidth:5500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:961,pixelWidth:1440,positionX:\"right\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg\",srcSet:\"https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RdlgYJf0N5LFg8ecKa7Oy4Xn5k.jpg 1440w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:\"369.5px\",src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},className:\"framer-156cpda\",\"data-framer-name\":\"Img 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DRZexi2t8\",onMouseEnter:onMouseEnter1m79w1m,onMouseLeave:onMouseLeavey3zs0h,onTap:onTap5uvaqw,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,filter:\"grayscale(1)\",opacity:.44,rotate:6,WebkitFilter:\"grayscale(1)\"},variants:{bgCb6Nnzd:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",opacity:1,rotate:0},bP0OoPC5k:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},D1iNNcuGt:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},DWFFC4wQn:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.05,rotate:12},FqMN8kUAo:{filter:\"grayscale(0)\",opacity:1,rotate:16,WebkitFilter:\"grayscale(0)\"},i5cELoMa7:{filter:\"grayscale(0)\",opacity:1,WebkitFilter:\"grayscale(0)\"},jgDYGVvgN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.05,rotate:12},K86WsLxJN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},KEdAtgUhZ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.05,rotate:12},LFIbsOYX6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},nel9_9WDa:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.05,rotate:12},nJlHUs7xg:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},rFkucdw_5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:.05,rotate:12},SrqcwQz8G:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"}},...addPropertyOverrides({bgCb6Nnzd:{\"data-border\":true,onMouseEnter:undefined,onMouseLeave:undefined},bP0OoPC5k:{\"data-border\":true,\"data-highlight\":undefined,onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},D1iNNcuGt:{\"data-border\":true,\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},DWFFC4wQn:{\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},FqMN8kUAo:{background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:\"370px\",src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined},i5cELoMa7:{background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:\"370px\",src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onTap:onTape76p88},K86WsLxJN:{\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},KEdAtgUhZ:{onMouseEnter:undefined,onMouseLeave:undefined},LFIbsOYX6:{\"data-border\":true,onMouseEnter:undefined,onMouseLeave:undefined},nel9_9WDa:{onMouseEnter:undefined,onMouseLeave:undefined},nJlHUs7xg:{\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},rFkucdw_5:{\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined},SrqcwQz8G:{\"data-border\":true,\"data-highlight\":undefined,background:{alt:\"jobson italia maritime services tank cleaning in rio grande seachios\",fit:\"fill\",intrinsicHeight:1335,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:960,pixelWidth:1059,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png\",srcSet:\"https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=512 512w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWVrLSCzpNlOCS72vGXBIvEU3M.png 1059w\"},onMouseEnter:undefined,onMouseLeave:undefined,onTap:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:\"369.5px\",src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"},className:\"framer-dejzsb\",\"data-border\":true,\"data-framer-name\":\"Img 1\",layoutDependency:layoutDependency,layoutId:\"WtyQ3dYeK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 37.27598571777344px 89.46236419677734px -7.455196857452393px rgba(88, 92, 95, 0.2)\",filter:\"grayscale(0)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(0)\"},variants:{bgCb6Nnzd:{filter:\"grayscale(1)\",opacity:.3,rotate:12,WebkitFilter:\"grayscale(1)\"},bP0OoPC5k:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:.3,rotate:12,WebkitFilter:\"grayscale(1)\"},D1iNNcuGt:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:.3,rotate:12,WebkitFilter:\"grayscale(1)\"},DWFFC4wQn:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:1,rotate:6,WebkitFilter:\"grayscale(1)\"},FqMN8kUAo:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},jgDYGVvgN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:1,rotate:6},K86WsLxJN:{opacity:1,rotate:0},KEdAtgUhZ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:1,rotate:6,WebkitFilter:\"grayscale(1)\"},LFIbsOYX6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:.3,rotate:12,WebkitFilter:\"grayscale(1)\"},nel9_9WDa:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",opacity:1,rotate:16},nJlHUs7xg:{opacity:1,rotate:0},rFkucdw_5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:1,rotate:6,WebkitFilter:\"grayscale(1)\"},SrqcwQz8G:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",filter:\"grayscale(1)\",opacity:.3,rotate:12,WebkitFilter:\"grayscale(1)\"}},...addPropertyOverrides({bgCb6Nnzd:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:\"370px\",src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},bP0OoPC5k:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:\"370px\",src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},D1iNNcuGt:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},DWFFC4wQn:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},jgDYGVvgN:{\"data-highlight\":true,background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:\"370px\",src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"},onMouseLeave:onMouseLeave69mlle,onTap:onTapimwhoh},K86WsLxJN:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},KEdAtgUhZ:{\"data-highlight\":true,onMouseEnter:onMouseEnter106nxue},nel9_9WDa:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-460)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:\"370px\",src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},nJlHUs7xg:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},rFkucdw_5:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(0+0+((componentViewport?.height||200)-30-504.2)/1*0)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6769 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}},SrqcwQz8G:{background:{alt:\"am nomikos testimonial for seachios marine services maintenance anchor and rudder\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-328)/2)+0),pixelHeight:1280,pixelWidth:1280,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.34 - 0.5px)`,src:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg\",srcSet:\"https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7FjTiouUOquyOCxt6PX9HfFxYzY.jpg 1280w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sLXJj.framer-puhwft, .framer-sLXJj .framer-puhwft { display: block; }\",\".framer-sLXJj.framer-1m544cf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-sLXJj .framer-1ne0hfp { flex: none; height: 44px; overflow: visible; position: absolute; right: 0px; top: calc(34.98817966903076% - 44px / 2); width: 100%; z-index: 4; }\",\".framer-sLXJj .framer-11r5ijo-container { bottom: 0px; cursor: pointer; flex: none; left: 0px; position: absolute; top: 0px; width: 44px; }\",\".framer-sLXJj .framer-s4svcr-container { bottom: 0px; cursor: pointer; flex: none; position: absolute; right: 0px; top: 0px; width: 44px; }\",\".framer-sLXJj .framer-15o630d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-3oxk3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-14rbhxn { flex: none; height: 52px; position: relative; width: 61px; }\",\".framer-sLXJj .framer-14l9fpp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-1cnmprl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 554px; word-break: break-word; word-wrap: break-word; }\",\".framer-sLXJj .framer-3ti4mb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 5px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-3kfet { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-sLXJj .framer-c668x6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-sLXJj .framer-1boa5gy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-n1vtf2, .framer-sLXJj .framer-4bdkhp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sLXJj .framer-1azspxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sLXJj .framer-nq35cl-container, .framer-sLXJj .framer-vr12o8-container { cursor: pointer; flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-sLXJj .framer-148agg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 460px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 370px; }\",\".framer-sLXJj .framer-12qe1jy { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 1px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-sLXJj .framer-156cpda { bottom: 0px; cursor: pointer; flex: none; left: 0px; overflow: hidden; position: absolute; right: 1px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-sLXJj .framer-dejzsb { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 1px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj .framer-15o630d, .framer-sLXJj .framer-3oxk3b, .framer-sLXJj .framer-14l9fpp, .framer-sLXJj .framer-3ti4mb, .framer-sLXJj .framer-1boa5gy, .framer-sLXJj .framer-1azspxw, .framer-sLXJj .framer-148agg8 { gap: 0px; } .framer-sLXJj .framer-15o630d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-sLXJj .framer-15o630d > :first-child, .framer-sLXJj .framer-3oxk3b > :first-child, .framer-sLXJj .framer-14l9fpp > :first-child, .framer-sLXJj .framer-1boa5gy > :first-child { margin-top: 0px; } .framer-sLXJj .framer-15o630d > :last-child, .framer-sLXJj .framer-3oxk3b > :last-child, .framer-sLXJj .framer-14l9fpp > :last-child, .framer-sLXJj .framer-1boa5gy > :last-child { margin-bottom: 0px; } .framer-sLXJj .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-sLXJj .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sLXJj .framer-3ti4mb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-sLXJj .framer-3ti4mb > :first-child, .framer-sLXJj .framer-1azspxw > :first-child, .framer-sLXJj .framer-148agg8 > :first-child { margin-left: 0px; } .framer-sLXJj .framer-3ti4mb > :last-child, .framer-sLXJj .framer-1azspxw > :last-child, .framer-sLXJj .framer-148agg8 > :last-child { margin-right: 0px; } .framer-sLXJj .framer-1boa5gy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sLXJj .framer-1azspxw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-sLXJj .framer-148agg8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-sLXJj.framer-v-11165lb .framer-156cpda { left: 30px; right: -30px; }\",\".framer-sLXJj.framer-v-8lmyjb .framer-156cpda { left: 190px; right: -190px; }\",\".framer-sLXJj.framer-v-1y061xg .framer-12qe1jy, .framer-sLXJj.framer-v-yhrc4h .framer-12qe1jy, .framer-sLXJj.framer-v-1bru9bt .framer-12qe1jy { order: 2; z-index: 2; }\",\".framer-sLXJj.framer-v-1y061xg .framer-156cpda { order: 1; z-index: 3; }\",\".framer-sLXJj.framer-v-1y061xg .framer-dejzsb, .framer-sLXJj.framer-v-yhrc4h .framer-dejzsb, .framer-sLXJj.framer-v-1bru9bt .framer-dejzsb { order: 0; z-index: 1; }\",\".framer-sLXJj.framer-v-1je2eyn .framer-12qe1jy { cursor: pointer; left: 30px; order: 0; right: -30px; z-index: 2; }\",\".framer-sLXJj.framer-v-1je2eyn .framer-156cpda { cursor: unset; order: 2; z-index: 3; }\",\".framer-sLXJj.framer-v-1je2eyn .framer-dejzsb, .framer-sLXJj.framer-v-xtusmc .framer-dejzsb { order: 1; right: 0px; z-index: 1; }\",\".framer-sLXJj.framer-v-xtusmc .framer-12qe1jy { left: 190px; order: 0; right: -190px; z-index: 2; }\",\".framer-sLXJj.framer-v-xtusmc .framer-156cpda { order: 2; z-index: 3; }\",\".framer-sLXJj.framer-v-x1kvid .framer-12qe1jy, .framer-sLXJj.framer-v-1796p0t .framer-12qe1jy, .framer-sLXJj.framer-v-b9zgkk .framer-12qe1jy, .framer-sLXJj.framer-v-caxmn .framer-12qe1jy, .framer-sLXJj.framer-v-ls9zjz .framer-12qe1jy { order: 2; z-index: 4; }\",\".framer-sLXJj.framer-v-x1kvid .framer-156cpda, .framer-sLXJj.framer-v-1796p0t .framer-156cpda, .framer-sLXJj.framer-v-b9zgkk .framer-156cpda { order: 0; }\",\".framer-sLXJj.framer-v-x1kvid .framer-dejzsb, .framer-sLXJj.framer-v-caxmn .framer-dejzsb, .framer-sLXJj.framer-v-ls9zjz .framer-dejzsb { order: 1; z-index: 2; }\",\".framer-sLXJj.framer-v-1796p0t .framer-dejzsb { cursor: pointer; left: 30px; order: 1; right: -30px; z-index: 2; }\",\".framer-sLXJj.framer-v-b9zgkk .framer-dejzsb { left: 190px; order: 1; right: -190px; z-index: 2; }\",\".framer-sLXJj.framer-v-cowib6.framer-1m544cf, .framer-sLXJj.framer-v-yhrc4h.framer-1m544cf, .framer-sLXJj.framer-v-caxmn.framer-1m544cf { flex-direction: column; padding: 30px 0px 0px 0px; width: 390px; }\",\".framer-sLXJj.framer-v-cowib6 .framer-1ne0hfp { left: 0px; order: 2; right: unset; top: calc(32.56552819698175% - 44px / 2); }\",\".framer-sLXJj.framer-v-cowib6 .framer-15o630d { order: 1; padding: 32px 0px 0px 0px; width: 100%; }\",\".framer-sLXJj.framer-v-cowib6 .framer-3oxk3b, .framer-sLXJj.framer-v-gas52x .framer-3oxk3b { gap: 6px; order: 0; width: 100%; }\",\".framer-sLXJj.framer-v-cowib6 .framer-14rbhxn, .framer-sLXJj.framer-v-yhrc4h .framer-14rbhxn, .framer-sLXJj.framer-v-caxmn .framer-14rbhxn, .framer-sLXJj.framer-v-gas52x .framer-14rbhxn, .framer-sLXJj.framer-v-1bru9bt .framer-14rbhxn, .framer-sLXJj.framer-v-ls9zjz .framer-14rbhxn { aspect-ratio: 1.1730769230769231 / 1; height: var(--framer-aspect-ratio-supported, 35px); width: 41px; }\",\".framer-sLXJj.framer-v-cowib6 .framer-14l9fpp, .framer-sLXJj.framer-v-yhrc4h .framer-14l9fpp, .framer-sLXJj.framer-v-caxmn .framer-14l9fpp, .framer-sLXJj.framer-v-gas52x .framer-14l9fpp, .framer-sLXJj.framer-v-1bru9bt .framer-14l9fpp, .framer-sLXJj.framer-v-ls9zjz .framer-14l9fpp { gap: 24px; width: 100%; }\",\".framer-sLXJj.framer-v-cowib6 .framer-1cnmprl, .framer-sLXJj.framer-v-yhrc4h .framer-1cnmprl, .framer-sLXJj.framer-v-caxmn .framer-1cnmprl, .framer-sLXJj.framer-v-gas52x .framer-1cnmprl, .framer-sLXJj.framer-v-1bru9bt .framer-1cnmprl, .framer-sLXJj.framer-v-ls9zjz .framer-1cnmprl { width: 100%; }\",\".framer-sLXJj.framer-v-cowib6 .framer-148agg8 { aspect-ratio: 0.8043478260869565 / 1; height: var(--framer-aspect-ratio-supported, 249px); order: 0; width: 68%; }\",\".framer-sLXJj.framer-v-cowib6 .framer-156cpda, .framer-sLXJj.framer-v-gas52x .framer-156cpda { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-cowib6.framer-1m544cf, .framer-sLXJj.framer-v-cowib6 .framer-3oxk3b, .framer-sLXJj.framer-v-cowib6 .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-cowib6.framer-1m544cf > *, .framer-sLXJj.framer-v-cowib6.framer-1m544cf > :first-child, .framer-sLXJj.framer-v-cowib6.framer-1m544cf > :last-child { margin: 0px; } .framer-sLXJj.framer-v-cowib6 .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-sLXJj.framer-v-cowib6 .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-cowib6 .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-cowib6 .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-cowib6 .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-cowib6 .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-sLXJj.framer-v-yhrc4h .framer-1ne0hfp, .framer-sLXJj.framer-v-caxmn .framer-1ne0hfp { left: 0px; order: 0; right: unset; top: calc(32.50996015936257% - 44px / 2); }\",\".framer-sLXJj.framer-v-yhrc4h .framer-15o630d, .framer-sLXJj.framer-v-caxmn .framer-15o630d { order: 2; padding: 32px 0px 0px 0px; width: 100%; }\",\".framer-sLXJj.framer-v-yhrc4h .framer-3oxk3b, .framer-sLXJj.framer-v-caxmn .framer-3oxk3b { gap: 6px; width: 100%; }\",\".framer-sLXJj.framer-v-yhrc4h .framer-148agg8, .framer-sLXJj.framer-v-caxmn .framer-148agg8 { aspect-ratio: 0.8043478260869565 / 1; height: var(--framer-aspect-ratio-supported, 249px); order: 1; width: 68%; }\",\".framer-sLXJj.framer-v-yhrc4h .framer-156cpda, .framer-sLXJj.framer-v-1bru9bt .framer-156cpda { cursor: unset; order: 1; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-yhrc4h.framer-1m544cf, .framer-sLXJj.framer-v-yhrc4h .framer-3oxk3b, .framer-sLXJj.framer-v-yhrc4h .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-yhrc4h.framer-1m544cf > *, .framer-sLXJj.framer-v-yhrc4h.framer-1m544cf > :first-child, .framer-sLXJj.framer-v-yhrc4h.framer-1m544cf > :last-child { margin: 0px; } .framer-sLXJj.framer-v-yhrc4h .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-sLXJj.framer-v-yhrc4h .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-yhrc4h .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-yhrc4h .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-yhrc4h .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-yhrc4h .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-sLXJj.framer-v-caxmn .framer-156cpda, .framer-sLXJj.framer-v-ls9zjz .framer-156cpda { cursor: unset; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-caxmn.framer-1m544cf, .framer-sLXJj.framer-v-caxmn .framer-3oxk3b, .framer-sLXJj.framer-v-caxmn .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-caxmn.framer-1m544cf > *, .framer-sLXJj.framer-v-caxmn.framer-1m544cf > :first-child, .framer-sLXJj.framer-v-caxmn.framer-1m544cf > :last-child { margin: 0px; } .framer-sLXJj.framer-v-caxmn .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-sLXJj.framer-v-caxmn .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-caxmn .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-caxmn .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-caxmn .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-caxmn .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-sLXJj.framer-v-gas52x.framer-1m544cf, .framer-sLXJj.framer-v-1bru9bt.framer-1m544cf, .framer-sLXJj.framer-v-ls9zjz.framer-1m544cf { gap: 80px; justify-content: flex-start; padding: 0px 50px 0px 50px; width: 810px; }\",\".framer-sLXJj.framer-v-gas52x .framer-1ne0hfp { left: calc(50.00000000000002% - 104% / 2); order: 2; right: unset; top: calc(44.444444444444464% - 44px / 2); width: 104%; }\",\".framer-sLXJj.framer-v-gas52x .framer-15o630d { flex: 1 0 0px; order: 0; padding: 0px; width: 1px; }\",\".framer-sLXJj.framer-v-gas52x .framer-3kfet, .framer-sLXJj.framer-v-1bru9bt .framer-3kfet, .framer-sLXJj.framer-v-ls9zjz .framer-3kfet { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\".framer-sLXJj.framer-v-gas52x .framer-148agg8 { aspect-ratio: 0.8043478260869565 / 1; height: var(--framer-aspect-ratio-supported, 249px); order: 1; width: 34%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-gas52x.framer-1m544cf, .framer-sLXJj.framer-v-gas52x .framer-3oxk3b, .framer-sLXJj.framer-v-gas52x .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-gas52x.framer-1m544cf > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-sLXJj.framer-v-gas52x.framer-1m544cf > :first-child { margin-left: 0px; } .framer-sLXJj.framer-v-gas52x.framer-1m544cf > :last-child { margin-right: 0px; } .framer-sLXJj.framer-v-gas52x .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-sLXJj.framer-v-gas52x .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-gas52x .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-gas52x .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-gas52x .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-gas52x .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-sLXJj.framer-v-1bru9bt .framer-1ne0hfp, .framer-sLXJj.framer-v-ls9zjz .framer-1ne0hfp { left: calc(50.00000000000002% - 104% / 2); order: 0; right: unset; top: calc(44.967177242888425% - 44px / 2); width: 104%; }\",\".framer-sLXJj.framer-v-1bru9bt .framer-15o630d, .framer-sLXJj.framer-v-ls9zjz .framer-15o630d { flex: 1 0 0px; order: 1; padding: 0px; width: 1px; }\",\".framer-sLXJj.framer-v-1bru9bt .framer-3oxk3b, .framer-sLXJj.framer-v-ls9zjz .framer-3oxk3b { gap: 4px; width: 100%; }\",\".framer-sLXJj.framer-v-1bru9bt .framer-148agg8, .framer-sLXJj.framer-v-ls9zjz .framer-148agg8 { aspect-ratio: 0.8043478260869565 / 1; height: var(--framer-aspect-ratio-supported, 249px); order: 2; width: 34%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-1bru9bt.framer-1m544cf, .framer-sLXJj.framer-v-1bru9bt .framer-3oxk3b, .framer-sLXJj.framer-v-1bru9bt .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-1bru9bt.framer-1m544cf > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-sLXJj.framer-v-1bru9bt.framer-1m544cf > :first-child { margin-left: 0px; } .framer-sLXJj.framer-v-1bru9bt.framer-1m544cf > :last-child { margin-right: 0px; } .framer-sLXJj.framer-v-1bru9bt .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-sLXJj.framer-v-1bru9bt .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-1bru9bt .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-1bru9bt .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-1bru9bt .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-1bru9bt .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sLXJj.framer-v-ls9zjz.framer-1m544cf, .framer-sLXJj.framer-v-ls9zjz .framer-3oxk3b, .framer-sLXJj.framer-v-ls9zjz .framer-14l9fpp { gap: 0px; } .framer-sLXJj.framer-v-ls9zjz.framer-1m544cf > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-sLXJj.framer-v-ls9zjz.framer-1m544cf > :first-child { margin-left: 0px; } .framer-sLXJj.framer-v-ls9zjz.framer-1m544cf > :last-child { margin-right: 0px; } .framer-sLXJj.framer-v-ls9zjz .framer-3oxk3b > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-sLXJj.framer-v-ls9zjz .framer-3oxk3b > :first-child, .framer-sLXJj.framer-v-ls9zjz .framer-14l9fpp > :first-child { margin-top: 0px; } .framer-sLXJj.framer-v-ls9zjz .framer-3oxk3b > :last-child, .framer-sLXJj.framer-v-ls9zjz .framer-14l9fpp > :last-child { margin-bottom: 0px; } .framer-sLXJj.framer-v-ls9zjz .framer-14l9fpp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-sLXJj[data-border=\"true\"]::after, .framer-sLXJj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 544\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i5cELoMa7\":{\"layout\":[\"fixed\",\"auto\"]},\"FqMN8kUAo\":{\"layout\":[\"fixed\",\"auto\"]},\"LFIbsOYX6\":{\"layout\":[\"fixed\",\"auto\"]},\"bP0OoPC5k\":{\"layout\":[\"fixed\",\"auto\"]},\"bgCb6Nnzd\":{\"layout\":[\"fixed\",\"auto\"]},\"KEdAtgUhZ\":{\"layout\":[\"fixed\",\"auto\"]},\"jgDYGVvgN\":{\"layout\":[\"fixed\",\"auto\"]},\"nel9_9WDa\":{\"layout\":[\"fixed\",\"auto\"]},\"K86WsLxJN\":{\"layout\":[\"fixed\",\"auto\"]},\"D1iNNcuGt\":{\"layout\":[\"fixed\",\"auto\"]},\"rFkucdw_5\":{\"layout\":[\"fixed\",\"auto\"]},\"nJlHUs7xg\":{\"layout\":[\"fixed\",\"auto\"]},\"SrqcwQz8G\":{\"layout\":[\"fixed\",\"auto\"]},\"DWFFC4wQn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerP3E5FTafd=withCSS(Component,css,\"framer-sLXJj\");export default FramerP3E5FTafd;FramerP3E5FTafd.displayName=\"Section/Testimonial\";FramerP3E5FTafd.defaultProps={height:544,width:1200};addPropertyControls(FramerP3E5FTafd,{variant:{options:[\"F_luJusdr\",\"i5cELoMa7\",\"FqMN8kUAo\",\"LFIbsOYX6\",\"bP0OoPC5k\",\"bgCb6Nnzd\",\"KEdAtgUhZ\",\"jgDYGVvgN\",\"nel9_9WDa\",\"K86WsLxJN\",\"D1iNNcuGt\",\"rFkucdw_5\",\"nJlHUs7xg\",\"SrqcwQz8G\",\"DWFFC4wQn\"],optionTitles:[\"Desktop 1\",\"Desktop 1 \\xb7 Hover \\xb7 1 to 2 \",\"Desktop 1 \\xb7 Clicking \\xb7 1 to 2 \",\"Desktop 2\",\"Desktop 2 \\xb7 Hover \\xb7 2 to 3\",\"Desktop 2 \\xb7 Clicking \\xb7 2 to 3\",\"Desktop 3\",\"Desktop\\xb7 3 \\xb7 Hover \\xb7 3 to 1\",\"Desktop 3 \\xb7 Clicking \\xb7 3 to 1\",\"Phone 1\",\"Phone 2\",\"Phone 3\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerP3E5FTafd,[{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\"}]},...PhosphorFonts,...AvatarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP3E5FTafd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i5cELoMa7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FqMN8kUAo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LFIbsOYX6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bP0OoPC5k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bgCb6Nnzd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KEdAtgUhZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jgDYGVvgN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nel9_9WDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K86WsLxJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D1iNNcuGt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rFkucdw_5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nJlHUs7xg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SrqcwQz8G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DWFFC4wQn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"544\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P3E5FTafd.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/14Hs87gNrtSeec0F4DS3/n1uHjEOllgCnK7ZUXtDu/e8MqUfc3j.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={Uf9cKxuhR:{hover:true}};const cycleOrder=[\"CjEHFWqVh\",\"Is6c0M9ey\",\"UKphh9mXE\",\"TPKPdX0Ic\",\"Uf9cKxuhR\"];const serializationHash=\"framer-pJNRQ\";const variantClassNames={CjEHFWqVh:\"framer-v-m15u2g\",Is6c0M9ey:\"framer-v-10dccdt\",TPKPdX0Ic:\"framer-v-72yjxf\",Uf9cKxuhR:\"framer-v-1jbgru6\",UKphh9mXE:\"framer-v-1taqdst\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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={\"Badge-Outline-Black\":\"TPKPdX0Ic\",\"Badge-Outline\":\"CjEHFWqVh\",\"Badge-Plain\":\"UKphh9mXE\",\"Badge-Small\":\"Uf9cKxuhR\",\"Badge-White\":\"Is6c0M9ey\"};const getProps=({border,content,height,id,width,...props})=>{return{...props,JDEMNPLZW:content??props.JDEMNPLZW??\"Workflows\",uCazwUNgB:border??props.uCazwUNgB??{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:humanReadableVariantMap[props.variant]??props.variant??\"CjEHFWqVh\"};};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,JDEMNPLZW,uCazwUNgB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CjEHFWqVh\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-m15u2g\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Badge-Outline\",layoutDependency:layoutDependency,layoutId:\"CjEHFWqVh\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(211, 227, 235, 0.72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgb(255, 255, 255) 2.3684757858670017e-14%, rgb(255, 255, 255) 21.856901544401506%, rgb(235, 245, 255) 100%)\",borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5px rgba(11, 59, 107, 0.21), 0px 2.288533303243457px 2.288533303243457px -3px rgba(11, 59, 107, 0.18), 0px 10px 10px -4.5px rgba(11, 59, 107, 0.02)\",...style},variants:{Is6c0M9ey:{\"--border-color\":\"rgba(34, 34, 34, 0)\"},Uf9cKxuhR:{\"--border-bottom-width\":(uCazwUNgB.borderBottomWidth??uCazwUNgB.borderWidth)+\"px\",\"--border-color\":uCazwUNgB.borderColor,\"--border-left-width\":(uCazwUNgB.borderLeftWidth??uCazwUNgB.borderWidth)+\"px\",\"--border-right-width\":(uCazwUNgB.borderRightWidth??uCazwUNgB.borderWidth)+\"px\",\"--border-style\":uCazwUNgB.borderStyle,\"--border-top-width\":(uCazwUNgB.borderTopWidth??uCazwUNgB.borderWidth)+\"px\"},UKphh9mXE:{\"--border-color\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"Uf9cKxuhR-hover\":{\"data-framer-name\":undefined},Is6c0M9ey:{\"data-framer-name\":\"Badge-White\"},TPKPdX0Ic:{\"data-framer-name\":\"Badge-Outline-Black\"},Uf9cKxuhR:{\"data-framer-name\":\"Badge-Small\"},UKphh9mXE:{\"data-framer-name\":\"Badge-Plain\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208)))\"},children:\"Workflows\"})}),className:\"framer-xutvfw\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zrPtz_HUw\",style:{\"--extracted-r6o4lv\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},text:JDEMNPLZW,variants:{\"Uf9cKxuhR-hover\":{\"--extracted-r6o4lv\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"},Uf9cKxuhR:{\"--extracted-r6o4lv\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},UKphh9mXE:{\"--extracted-r6o4lv\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Uf9cKxuhR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)))\"},children:\"Workflows\"})})},Uf9cKxuhR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102)))\"},children:\"Workflows\"})}),fonts:[\"GF;Inter-600\"]},UKphh9mXE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)))\"},children:\"Workflows\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pJNRQ.framer-1fquawd, .framer-pJNRQ .framer-1fquawd { display: block; }\",\".framer-pJNRQ.framer-m15u2g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 14px 4px 14px; position: relative; width: min-content; }\",\".framer-pJNRQ .framer-xutvfw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pJNRQ.framer-m15u2g { gap: 0px; } .framer-pJNRQ.framer-m15u2g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pJNRQ.framer-m15u2g > :first-child { margin-left: 0px; } .framer-pJNRQ.framer-m15u2g > :last-child { margin-right: 0px; } }\",\".framer-pJNRQ.framer-v-1jbgru6.framer-m15u2g { cursor: pointer; height: 26px; padding: 2px 10px 2px 10px; }\",...sharedStyle.css,'.framer-pJNRQ[data-border=\"true\"]::after, .framer-pJNRQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Is6c0M9ey\":{\"layout\":[\"auto\",\"auto\"]},\"UKphh9mXE\":{\"layout\":[\"auto\",\"auto\"]},\"TPKPdX0Ic\":{\"layout\":[\"auto\",\"auto\"]},\"Uf9cKxuhR\":{\"layout\":[\"auto\",\"fixed\"]},\"dpkU1Ik3t\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"JDEMNPLZW\":\"content\",\"uCazwUNgB\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersqcnnD9OB=withCSS(Component,css,\"framer-pJNRQ\");export default FramersqcnnD9OB;FramersqcnnD9OB.displayName=\"Badge/Normal\";FramersqcnnD9OB.defaultProps={height:32,width:113};addPropertyControls(FramersqcnnD9OB,{variant:{options:[\"CjEHFWqVh\",\"Is6c0M9ey\",\"UKphh9mXE\",\"TPKPdX0Ic\",\"Uf9cKxuhR\"],optionTitles:[\"Badge-Outline\",\"Badge-White\",\"Badge-Plain\",\"Badge-Outline-Black\",\"Badge-Small\"],title:\"Variant\",type:ControlType.Enum},JDEMNPLZW:{defaultValue:\"Workflows\",displayTextArea:false,title:\"Content\",type:ControlType.String},uCazwUNgB:{defaultValue:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FramersqcnnD9OB,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersqcnnD9OB\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"JDEMNPLZW\\\":\\\"content\\\",\\\"uCazwUNgB\\\":\\\"border\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Is6c0M9ey\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UKphh9mXE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TPKPdX0Ic\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Uf9cKxuhR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dpkU1Ik3t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"113\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sqcnnD9OB.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SLpxj_xL6\",\"CxR3_Kig1\"];const serializationHash=\"framer-t49d2\";const variantClassNames={CxR3_Kig1:\"framer-v-1bhbk7y\",SLpxj_xL6:\"framer-v-1jbcecm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:0,duration:15,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Not Started\":\"SLpxj_xL6\",Complete:\"CxR3_Kig1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SLpxj_xL6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SLpxj_xL6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear9b786s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CxR3_Kig1\"),100);});const onAppear13j5ulk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SLpxj_xL6\"),15e3);});useOnVariantChange(baseVariant,{CxR3_Kig1:onAppear13j5ulk,default:onAppear9b786s});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({CxR3_Kig1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jbcecm\",className,classNames),\"data-framer-name\":\"Not Started\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SLpxj_xL6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({CxR3_Kig1:{\"data-framer-name\":\"Complete\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wujztx\",\"data-framer-name\":\"Progress\",layoutDependency:layoutDependency,layoutId:\"AxZEglYv7\",style:{background:\"linear-gradient(90deg, rgb(144, 218, 255) 0%, rgb(0, 135, 233) 100%)\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t49d2.framer-s1dje1, .framer-t49d2 .framer-s1dje1 { display: block; }\",\".framer-t49d2.framer-1jbcecm { height: 3px; overflow: hidden; position: relative; width: 510px; }\",\".framer-t49d2 .framer-wujztx { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(33.33333333333336% - 100% / 2); width: 0%; }\",\".framer-t49d2.framer-v-1bhbk7y .framer-wujztx { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3\n * @framerIntrinsicWidth 510\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CxR3_Kig1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriffgM2Fdq=withCSS(Component,css,\"framer-t49d2\");export default FrameriffgM2Fdq;FrameriffgM2Fdq.displayName=\"Progress bar\";FrameriffgM2Fdq.defaultProps={height:3,width:510};addPropertyControls(FrameriffgM2Fdq,{variant:{options:[\"SLpxj_xL6\",\"CxR3_Kig1\"],optionTitles:[\"Not Started\",\"Complete\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriffgM2Fdq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriffgM2Fdq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"510\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CxR3_Kig1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"3\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iffgM2Fdq.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xUpDUAOCscT8wn54SF8D/AM20SkYb3MDTYa2YI4Hb/pP7JHpqrA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/q2wMzb2eDyeAsngZ4ywM/OitPcWhVGm6bAfYz2wAB/ZtqXN38zW.js\";import ProgressBar from\"https://framerusercontent.com/modules/iiWXkluxsXpC2qNMWdqL/h2VbSWDtSMDDeLfB2Oh5/iffgM2Fdq.js\";const ProgressBarFonts=getFonts(ProgressBar);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={OI3YinN0S:{hover:true}};const cycleOrder=[\"OI3YinN0S\",\"R0GuQ7RPN\"];const serializationHash=\"framer-52p5d\";const variantClassNames={OI3YinN0S:\"framer-v-tkp74g\",R0GuQ7RPN:\"framer-v-1kytflq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};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={\"Progress Active\":\"R0GuQ7RPN\",Inactive:\"OI3YinN0S\"};const getProps=({activeBg,describtion,height,icon,id,inactiveBg,showDescribtion,tap,title,width,...props})=>{return{...props,c0aevj6e1:title??props.c0aevj6e1??\"For\\xa0Carriers\",kGPf904Pj:inactiveBg??props.kGPf904Pj??\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",RDmGAwKxP:tap??props.RDmGAwKxP,U8MtZan4d:icon??props.U8MtZan4d??\"truck\",UcxooM043:showDescribtion??props.UcxooM043??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"OI3YinN0S\",xNPJv87bA:describtion??props.xNPJv87bA??\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\\xa0gives carriers free unlimited access to 150,000+ loads daily.\",Y7dkQGON1:activeBg??props.Y7dkQGON1??\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\"};};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,U8MtZan4d,c0aevj6e1,xNPJv87bA,UcxooM043,RDmGAwKxP,kGPf904Pj,Y7dkQGON1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OI3YinN0S\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapiwcjv6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(RDmGAwKxP){const res=await RDmGAwKxP(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"R0GuQ7RPN\")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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tkp74g\",className,classNames),\"data-framer-name\":\"Inactive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OI3YinN0S\",onTap:onTapiwcjv6,ref:refBinding,style:{backgroundColor:kGPf904Pj,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"OI3YinN0S-hover\":{backgroundColor:Y7dkQGON1},R0GuQ7RPN:{backgroundColor:Y7dkQGON1}},...addPropertyOverrides({\"OI3YinN0S-hover\":{\"data-framer-name\":undefined},R0GuQ7RPN:{\"data-framer-name\":\"Progress Active\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({R0GuQ7RPN:{height:3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||200)-3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fcst4s-container\",layoutDependency:layoutDependency,layoutId:\"pBdzNHP_f-container\",nodeId:\"pBdzNHP_f\",rendersWithMotion:true,scopeId:\"NfS3Exusk\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"pBdzNHP_f\",layoutId:\"pBdzNHP_f\",style:{height:\"100%\",width:\"100%\"},variant:\"SLpxj_xL6\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kbasq2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zY6fE2keM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c9ld9z\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"NBHu2eH6Q\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d33na6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KAyPaBc37-container\",nodeId:\"KAyPaBc37\",rendersWithMotion:true,scopeId:\"NfS3Exusk\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",height:\"100%\",iconSearch:U8MtZan4d,iconSelection:\"House\",id:\"KAyPaBc37\",layoutId:\"KAyPaBc37\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"For\\xa0Carriers\"})}),className:\"framer-l6sqv8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CjVgISJuq\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:c0aevj6e1,verticalAlignment:\"center\",withExternalLayout:true})]}),UcxooM043&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\\xa0gives carriers free unlimited access to 150,000+ loads daily.\"})}),className:\"framer-mw8f7f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"icYy7eKkd\",style:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"16px\"},text:xNPJv87bA,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({R0GuQ7RPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\\xa0gives carriers free unlimited access to 150,000+ loads daily.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-52p5d.framer-1acsi9e, .framer-52p5d .framer-1acsi9e { display: block; }\",\".framer-52p5d.framer-tkp74g { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 536px; will-change: var(--framer-will-change-override, transform); }\",\".framer-52p5d .framer-1fcst4s-container { bottom: 0px; flex: none; height: 3px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-52p5d .framer-1kbasq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-52p5d .framer-1c9ld9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 476px; }\",\".framer-52p5d .framer-1d33na6-container { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-52p5d .framer-l6sqv8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-52p5d .framer-mw8f7f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-52p5d.framer-tkp74g, .framer-52p5d .framer-1kbasq2, .framer-52p5d .framer-1c9ld9z { gap: 0px; } .framer-52p5d.framer-tkp74g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-52p5d.framer-tkp74g > :first-child, .framer-52p5d .framer-1kbasq2 > :first-child { margin-top: 0px; } .framer-52p5d.framer-tkp74g > :last-child, .framer-52p5d .framer-1kbasq2 > :last-child { margin-bottom: 0px; } .framer-52p5d .framer-1kbasq2 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-52p5d .framer-1c9ld9z > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-52p5d .framer-1c9ld9z > :first-child { margin-left: 0px; } .framer-52p5d .framer-1c9ld9z > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 146\n * @framerIntrinsicWidth 536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R0GuQ7RPN\":{\"layout\":[\"fixed\",\"auto\"]},\"afkdtLl6B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"U8MtZan4d\":\"icon\",\"c0aevj6e1\":\"title\",\"xNPJv87bA\":\"describtion\",\"UcxooM043\":\"showDescribtion\",\"RDmGAwKxP\":\"tap\",\"kGPf904Pj\":\"inactiveBg\",\"Y7dkQGON1\":\"activeBg\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNfS3Exusk=withCSS(Component,css,\"framer-52p5d\");export default FramerNfS3Exusk;FramerNfS3Exusk.displayName=\"Tab item\";FramerNfS3Exusk.defaultProps={height:146,width:536};addPropertyControls(FramerNfS3Exusk,{variant:{options:[\"OI3YinN0S\",\"R0GuQ7RPN\"],optionTitles:[\"Inactive\",\"Progress Active\"],title:\"Variant\",type:ControlType.Enum},U8MtZan4d:{defaultValue:\"truck\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"Icon\",type:ControlType.String},c0aevj6e1:{defaultValue:\"For\\xa0Carriers\",displayTextArea:false,title:\"Title\",type:ControlType.String},xNPJv87bA:{defaultValue:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\\xa0gives carriers free unlimited access to 150,000+ loads daily.\",displayTextArea:true,title:\"Describtion\",type:ControlType.String},UcxooM043:{defaultValue:true,title:\"Show Describtion\",type:ControlType.Boolean},RDmGAwKxP:{title:\"Tap\",type:ControlType.EventHandler},kGPf904Pj:{defaultValue:'var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)) /* {\"name\":\"Bg - white\"} */',title:\"Inactive bg\",type:ControlType.Color},Y7dkQGON1:{defaultValue:'var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251)) /* {\"name\":\"Bg - grey\"} */',title:\"Active bg\",type:ControlType.Color}});addFonts(FramerNfS3Exusk,[{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\"}]},...ProgressBarFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNfS3Exusk\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"146\",\"framerVariables\":\"{\\\"U8MtZan4d\\\":\\\"icon\\\",\\\"c0aevj6e1\\\":\\\"title\\\",\\\"xNPJv87bA\\\":\\\"describtion\\\",\\\"UcxooM043\\\":\\\"showDescribtion\\\",\\\"RDmGAwKxP\\\":\\\"tap\\\",\\\"kGPf904Pj\\\":\\\"inactiveBg\\\",\\\"Y7dkQGON1\\\":\\\"activeBg\\\"}\",\"framerIntrinsicWidth\":\"536\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R0GuQ7RPN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"afkdtLl6B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NfS3Exusk.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/el4IxOjIcidA505JIVYZ/mSx5gorr9YWnwiNhzSFs/GiIrC5gDK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/o6OGQP2CYzPd6yzs6H9l/KRD7JGQxBw867lnYEbWl/Jjj2T4gpQ.js\";import TabItem from\"https://framerusercontent.com/modules/yN9tDyPSAVvLuN9ISCES/eGEoWOYykMhgGPLf9ipO/NfS3Exusk.js\";import BadgeNormal from\"https://framerusercontent.com/modules/jIM3miZIpfyaGBZJ2v1f/5TsrMXLHNh3IOZLdol3H/sqcnnD9OB.js\";const BadgeNormalFonts=getFonts(BadgeNormal);const MotionDivWithFX=withFX(motion.div);const TabItemFonts=getFonts(TabItem);const ImageWithFX=withFX(Image);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"xr8QZOV2D\",\"c_9TP2Qht\",\"FyB2n_GQx\",\"q2odItEgo\",\"ac2mnbDcL\",\"SK0TxCbH1\"];const serializationHash=\"framer-3qbvY\";const variantClassNames={ac2mnbDcL:\"framer-v-zib55f\",c_9TP2Qht:\"framer-v-198atyw\",FyB2n_GQx:\"framer-v-1uysj8i\",q2odItEgo:\"framer-v-rsvx8o\",SK0TxCbH1:\"framer-v-d6lczb\",xr8QZOV2D:\"framer-v-syz7s4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition3={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={delay:0,duration:7,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0};const animation4={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:40};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Dekstop \\xb7 1\":\"xr8QZOV2D\",\"Dekstop \\xb7 2\":\"c_9TP2Qht\",\"Dekstop \\xb7 3\":\"FyB2n_GQx\",\"Phone \\xb7 1\":\"q2odItEgo\",\"Phone \\xb7 2\":\"ac2mnbDcL\",\"Phone \\xb7 3\":\"SK0TxCbH1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xr8QZOV2D\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xr8QZOV2D\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearsnwgef=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"c_9TP2Qht\"),15e3);});const onAppearck6ao0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FyB2n_GQx\"),15e3);});const onAppeargqjsrd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xr8QZOV2D\"),15e3);});const onAppear513bwc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ac2mnbDcL\"),1e4);});const onAppear1haqt78=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SK0TxCbH1\"),1e4);});const onAppearlz32qc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"q2odItEgo\"),1e4);});const RDmGAwKxP1yjxkpi=activeVariantCallback(async(...args)=>{setVariant(\"xr8QZOV2D\");});const RDmGAwKxP9lwmv=activeVariantCallback(async(...args)=>{setVariant(\"q2odItEgo\");});const RDmGAwKxPowsg6n=activeVariantCallback(async(...args)=>{setVariant(\"c_9TP2Qht\");});const RDmGAwKxP1kubgyb=activeVariantCallback(async(...args)=>{setVariant(\"ac2mnbDcL\");});const RDmGAwKxP1adzccd=activeVariantCallback(async(...args)=>{setVariant(\"FyB2n_GQx\");});const RDmGAwKxP1uui0qd=activeVariantCallback(async(...args)=>{setVariant(\"SK0TxCbH1\");});useOnVariantChange(baseVariant,{ac2mnbDcL:onAppear1haqt78,c_9TP2Qht:onAppearck6ao0,default:onAppearsnwgef,FyB2n_GQx:onAppeargqjsrd,q2odItEgo:onAppear513bwc,SK0TxCbH1:onAppearlz32qc});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"q2odItEgo\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ac2mnbDcL\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"SK0TxCbH1\")return true;return false;};const isDisplayed3=()=>{if([\"q2odItEgo\",\"ac2mnbDcL\",\"SK0TxCbH1\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ac2mnbDcL:{value:transition2},q2odItEgo:{value:transition2},SK0TxCbH1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-syz7s4\",className,classNames),\"data-framer-name\":\"Dekstop \\xb7 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xr8QZOV2D\",ref:refBinding,style:{...style},...addPropertyOverrides({ac2mnbDcL:{\"data-framer-name\":\"Phone \\xb7 2\"},c_9TP2Qht:{\"data-framer-name\":\"Dekstop \\xb7 2\"},FyB2n_GQx:{\"data-framer-name\":\"Dekstop \\xb7 3\"},q2odItEgo:{\"data-framer-name\":\"Phone \\xb7 1\"},SK0TxCbH1:{\"data-framer-name\":\"Phone \\xb7 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-f3xw1e\",layoutDependency:layoutDependency,layoutId:\"FXNC3umAr\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qvs3jh-container\",layoutDependency:layoutDependency,layoutId:\"FJObkL3hE-container\",nodeId:\"FJObkL3hE\",rendersWithMotion:true,scopeId:\"vsSgmYyEd\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"FJObkL3hE\",JDEMNPLZW:\"Ship Chandler and Supply\",layoutId:\"FJObkL3hE\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reliable Ship Chandler Services Across Brazilian Ports\"})}),className:\"framer-14tcd6m\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ADBupFYct\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({ac2mnbDcL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reliable Ship Chandler Services Across Brazilian Ports\"})})},q2odItEgo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reliable Ship Chandler Services Across Brazilian Ports\"})})},SK0TxCbH1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reliable Ship Chandler Services Across Brazilian Ports\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ptcuj1\",layoutDependency:layoutDependency,layoutId:\"IN0Q0iYVU\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"392px\",y:(componentViewport?.y||0)+0+146.8+0,...addPropertyOverrides({ac2mnbDcL:{y:(componentViewport?.y||0)+0+107.2+0+0},q2odItEgo:{y:(componentViewport?.y||0)+0+107.2+0+0},SK0TxCbH1:{y:(componentViewport?.y||0)+0+107.2+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1epr7en-container\",layoutDependency:layoutDependency,layoutId:\"Z1sQNHgVV-container\",nodeId:\"Z1sQNHgVV\",rendersWithMotion:true,scopeId:\"vsSgmYyEd\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:\"Fresh Provisions and Stores\",height:\"100%\",id:\"Z1sQNHgVV\",kGPf904Pj:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",layoutId:\"Z1sQNHgVV\",style:{width:\"100%\"},U8MtZan4d:\"food\",UcxooM043:true,variant:\"R0GuQ7RPN\",width:\"100%\",xNPJv87bA:\"Ensure your crew\u2019s comfort with fresh provisions, bonded stores, and consumables tailored to your needs. We guarantee fast delivery at Brazilian ports, keeping your vessel stocked and operations running smoothly.\",Y7dkQGON1:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",...addPropertyOverrides({ac2mnbDcL:{kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",RDmGAwKxP:RDmGAwKxP9lwmv,UcxooM043:false,variant:\"OI3YinN0S\"},c_9TP2Qht:{kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",RDmGAwKxP:RDmGAwKxP1yjxkpi,variant:\"OI3YinN0S\"},FyB2n_GQx:{kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",RDmGAwKxP:RDmGAwKxP1yjxkpi,variant:\"OI3YinN0S\"},q2odItEgo:{RDmGAwKxP:RDmGAwKxP9lwmv},SK0TxCbH1:{kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",RDmGAwKxP:RDmGAwKxP9lwmv,UcxooM043:false,variant:\"OI3YinN0S\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c7ow9z\",\"data-framer-name\":\"Phone \\xb7 Img Container\",layoutDependency:layoutDependency,layoutId:\"zbQiZxTbk\",style:{background:\"linear-gradient(180deg, rgb(184, 221, 241) 0%, rgba(166, 208, 230, 0) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"},className:\"framer-14j6z89\",\"data-framer-name\":\"right circle\",layoutDependency:layoutDependency,layoutId:\"Bc93JWY4U\",...addPropertyOverrides({q2odItEgo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+152+270-199),pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"},className:\"framer-1r6bwkd\",\"data-framer-name\":\"left circle\",layoutDependency:layoutDependency,layoutId:\"jbfPof8B_\",...addPropertyOverrides({q2odItEgo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+152+-217),pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png\",srcSet:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png 1278w\"},className:\"framer-cz29lh\",\"data-framer-appear-id\":\"cz29lh\",\"data-framer-name\":\"Desktop_1\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"LgUaCBCGS\",optimized:true,transformTemplate:transformTemplate1,...addPropertyOverrides({q2odItEgo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+152+270-220.0657),pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png\",srcSet:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png 1278w\"}}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15n6eyl\",\"data-framer-name\":\"Phone \\xb7 Img Container 2\",layoutDependency:layoutDependency,layoutId:\"IdiTGrhuY\",style:{background:\"linear-gradient(180deg, rgb(166, 227, 227) 0%, rgba(167, 230, 223, 0) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"},className:\"framer-1uz5tzm\",\"data-framer-name\":\"right circle\",layoutDependency:layoutDependency,layoutId:\"qop2N9diT\",...addPropertyOverrides({ac2mnbDcL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+304+270-199),pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"},className:\"framer-1fbltfe\",\"data-framer-name\":\"left circle\",layoutDependency:layoutDependency,layoutId:\"n8u7sbmn8\",...addPropertyOverrides({ac2mnbDcL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+304+-217),pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png\",srcSet:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png 1278w\"},className:\"framer-1b7gouc\",\"data-framer-appear-id\":\"1b7gouc\",\"data-framer-name\":\"Desktop_1\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"yYmINgJDG\",optimized:true,transformTemplate:transformTemplate1,...addPropertyOverrides({ac2mnbDcL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+304+270-220.0657),pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png\",srcSet:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png 1278w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"392px\",y:(componentViewport?.y||0)+0+146.8+0,...addPropertyOverrides({ac2mnbDcL:{y:(componentViewport?.y||0)+0+107.2+0+152},q2odItEgo:{y:(componentViewport?.y||0)+0+107.2+0+428},SK0TxCbH1:{y:(componentViewport?.y||0)+0+107.2+0+152}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5hu2sk-container\",layoutDependency:layoutDependency,layoutId:\"QzC01fFZ6-container\",nodeId:\"QzC01fFZ6\",rendersWithMotion:true,scopeId:\"vsSgmYyEd\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:\"Tech Supplies and Spare Parts\",height:\"100%\",id:\"QzC01fFZ6\",kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",layoutId:\"QzC01fFZ6\",RDmGAwKxP:RDmGAwKxPowsg6n,style:{width:\"100%\"},U8MtZan4d:\"package\",UcxooM043:true,variant:\"OI3YinN0S\",width:\"100%\",xNPJv87bA:\"Stay operational with technical supplies and spare parts, including engine components, tools, and maintenance kits. We deliver trusted items on time to prevent delays and optimize your vessel\u2019s performance.\",Y7dkQGON1:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",...addPropertyOverrides({ac2mnbDcL:{RDmGAwKxP:RDmGAwKxP1kubgyb,variant:\"R0GuQ7RPN\"},c_9TP2Qht:{variant:\"R0GuQ7RPN\"},q2odItEgo:{RDmGAwKxP:RDmGAwKxP1kubgyb,UcxooM043:false},SK0TxCbH1:{RDmGAwKxP:RDmGAwKxP1kubgyb,UcxooM043:false}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o4x7o5\",\"data-framer-name\":\"Phone \\xb7 Img Container 3\",layoutDependency:layoutDependency,layoutId:\"C4N08vzlC\",style:{background:\"linear-gradient(180deg, rgb(184, 221, 241) 0%, rgba(166, 208, 230, 0) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"},className:\"framer-16oaxpa\",\"data-framer-name\":\"right circle\",layoutDependency:layoutDependency,layoutId:\"REHcBUMuA\",...addPropertyOverrides({SK0TxCbH1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+456+270-199),pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"},className:\"framer-1isdl03\",\"data-framer-name\":\"left circle\",layoutDependency:layoutDependency,layoutId:\"pDu0yTi3Q\",...addPropertyOverrides({SK0TxCbH1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+456+-217),pixelHeight:1668,pixelWidth:1668,sizes:\"364px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png\",srcSet:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=512 512w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png 1278w\"},className:\"framer-14br9zl\",\"data-framer-appear-id\":\"14br9zl\",\"data-framer-name\":\"Desktop_1\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"CpgFV5j_W\",optimized:true,transformTemplate:transformTemplate1,...addPropertyOverrides({SK0TxCbH1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+107.2+0+456+270-220.0657),pixelHeight:807,pixelWidth:1278,sizes:\"320px\",src:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png\",srcSet:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=512 512w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png 1278w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"392px\",y:(componentViewport?.y||0)+0+146.8+0,...addPropertyOverrides({ac2mnbDcL:{y:(componentViewport?.y||0)+0+107.2+0+580},q2odItEgo:{y:(componentViewport?.y||0)+0+107.2+0+580},SK0TxCbH1:{y:(componentViewport?.y||0)+0+107.2+0+304}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h1kkip-container\",layoutDependency:layoutDependency,layoutId:\"A3ZFc9Gav-container\",nodeId:\"A3ZFc9Gav\",rendersWithMotion:true,scopeId:\"vsSgmYyEd\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:\"Safety Compliant Equipment\",height:\"100%\",id:\"A3ZFc9Gav\",kGPf904Pj:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",layoutId:\"A3ZFc9Gav\",RDmGAwKxP:RDmGAwKxP1adzccd,style:{width:\"100%\"},U8MtZan4d:\"codesandbox-logo\",UcxooM043:true,variant:\"OI3YinN0S\",width:\"100%\",xNPJv87bA:\"Stay compliant and secure with safety gear, firefighting equipment, and navigation tools tailored to your vessel\u2019s needs. We deliver IMO-compliant items, including charts, PPE, and lifesaving appliances, ensuring safety.\",Y7dkQGON1:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",...addPropertyOverrides({ac2mnbDcL:{RDmGAwKxP:RDmGAwKxP1uui0qd,UcxooM043:false},FyB2n_GQx:{variant:\"R0GuQ7RPN\"},q2odItEgo:{RDmGAwKxP:RDmGAwKxP1uui0qd,UcxooM043:false},SK0TxCbH1:{RDmGAwKxP:RDmGAwKxP1uui0qd,variant:\"R0GuQ7RPN\"}},baseVariant,gestureVariant)})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1bve71p\",\"data-framer-name\":\"Dekstop \\xb7 Img Container\",layoutDependency:layoutDependency,layoutId:\"uCX7SMLJh\",style:{background:\"linear-gradient(180deg, rgb(184, 221, 241) 0%, rgba(166, 208, 230, 0) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,transformPerspective:1200},variants:{c_9TP2Qht:{background:\"linear-gradient(180deg, rgb(166, 227, 227) 0%, rgba(167, 230, 223, 0) 100%)\"}},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:586.5,intrinsicWidth:586.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+340.8+600-328),pixelHeight:1173,pixelWidth:1173,sizes:\"390px\",src:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=512 512w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uM4s1Gxjd5jshEvcMTzx6Snjns.png 1173w\"},className:\"framer-qf81eg\",\"data-framer-name\":\"right circle\",layoutDependency:layoutDependency,layoutId:\"dJhEJYp6q\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:834,intrinsicWidth:834,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+340.8+-234),pixelHeight:1668,pixelWidth:1668,sizes:\"556px\",src:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HuzQniov4D2bxdtGZQftdSPg.png 1668w\"},className:\"framer-1qen70l\",\"data-framer-name\":\"left circle\",layoutDependency:layoutDependency,layoutId:\"Pa0blXYnE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"reliable ship chandler services in brazil seachios\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+340.8+58),pixelHeight:807,pixelWidth:1278,sizes:`calc((${componentViewport?.width||\"100vw\"} - 200px) * 0.71)`,src:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png\",srcSet:\"https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YmU7YnY0PXeI9ivVGJPdyRWkbI.png 1278w\"},className:\"framer-1ug5imy\",\"data-framer-name\":\"Desktop_1\",layoutDependency:layoutDependency,layoutId:\"r4fwG71CY\",transformTemplate:transformTemplate2,...addPropertyOverrides({c_9TP2Qht:{background:{alt:\"ship supply and spare parts in brazil\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+340.8+58),pixelHeight:807,pixelWidth:1278,sizes:`calc((${componentViewport?.width||\"100vw\"} - 200px) * 0.71)`,src:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png\",srcSet:\"https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UYyc7x3foArh3xPxbuFXYllbog.png 1278w\"}},FyB2n_GQx:{background:{alt:\"provisions and bonded stores in brazil maritime ship chandler seachios\",fit:\"fill\",intrinsicHeight:807,intrinsicWidth:1278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+340.8+58),pixelHeight:807,pixelWidth:1278,sizes:`calc((${componentViewport?.width||\"100vw\"} - 200px) * 0.71)`,src:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png\",srcSet:\"https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=512 512w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8QxJaSXmmMYeOoxq1gHL9D1UJIA.png 1278w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3qbvY.framer-1qy91ir, .framer-3qbvY .framer-1qy91ir { display: block; }\",\".framer-3qbvY.framer-syz7s4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-3qbvY .framer-f3xw1e { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3qbvY .framer-1qvs3jh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3qbvY .framer-14tcd6m { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3qbvY .framer-1ptcuj1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3qbvY .framer-1epr7en-container, .framer-3qbvY .framer-5hu2sk-container, .framer-3qbvY .framer-h1kkip-container { flex: none; height: auto; position: relative; width: 392px; }\",\".framer-3qbvY .framer-c7ow9z, .framer-3qbvY .framer-15n6eyl, .framer-3qbvY .framer-1o4x7o5 { flex: 1 0 0px; height: 270px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3qbvY .framer-14j6z89, .framer-3qbvY .framer-1uz5tzm, .framer-3qbvY .framer-16oaxpa { aspect-ratio: 1 / 1; bottom: -191px; flex: none; height: var(--framer-aspect-ratio-supported, 390px); overflow: visible; position: absolute; right: -196px; width: 390px; }\",\".framer-3qbvY .framer-1r6bwkd, .framer-3qbvY .framer-1fbltfe, .framer-3qbvY .framer-1isdl03 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); left: -86px; overflow: visible; position: absolute; top: -217px; width: 364px; }\",\".framer-3qbvY .framer-cz29lh, .framer-3qbvY .framer-1b7gouc, .framer-3qbvY .framer-14br9zl { aspect-ratio: 1.58364312267658 / 1; bottom: 18px; flex: none; height: var(--framer-aspect-ratio-supported, 202px); left: 50%; overflow: visible; position: absolute; width: 320px; }\",\".framer-3qbvY .framer-1bve71p { flex: none; height: 600px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3qbvY .framer-qf81eg { aspect-ratio: 1 / 1; bottom: -62px; flex: none; height: var(--framer-aspect-ratio-supported, 390px); overflow: visible; position: absolute; right: -56px; width: 390px; }\",\".framer-3qbvY .framer-1qen70l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 556px); left: -86px; overflow: visible; position: absolute; top: -234px; width: 556px; }\",\".framer-3qbvY .framer-1ug5imy { aspect-ratio: 1.58364312267658 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 126px); left: 50%; overflow: visible; position: absolute; top: 55%; width: 71%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qbvY.framer-syz7s4, .framer-3qbvY .framer-f3xw1e, .framer-3qbvY .framer-1ptcuj1 { gap: 0px; } .framer-3qbvY.framer-syz7s4 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-3qbvY.framer-syz7s4 > :first-child, .framer-3qbvY .framer-f3xw1e > :first-child { margin-top: 0px; } .framer-3qbvY.framer-syz7s4 > :last-child, .framer-3qbvY .framer-f3xw1e > :last-child { margin-bottom: 0px; } .framer-3qbvY .framer-f3xw1e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3qbvY .framer-1ptcuj1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-3qbvY .framer-1ptcuj1 > :first-child { margin-left: 0px; } .framer-3qbvY .framer-1ptcuj1 > :last-child { margin-right: 0px; } }\",\".framer-3qbvY.framer-v-rsvx8o.framer-syz7s4, .framer-3qbvY.framer-v-zib55f.framer-syz7s4, .framer-3qbvY.framer-v-d6lczb.framer-syz7s4 { gap: 24px; width: min-content; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-f3xw1e { order: 0; width: 390px; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-1ptcuj1 { flex-direction: column; gap: 6px; order: 1; width: 390px; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-1epr7en-container, .framer-3qbvY.framer-v-zib55f .framer-1epr7en-container, .framer-3qbvY.framer-v-d6lczb .framer-1epr7en-container { order: 0; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-c7ow9z { flex: none; order: 1; width: 100%; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-5hu2sk-container, .framer-3qbvY.framer-v-zib55f .framer-5hu2sk-container { order: 2; }\",\".framer-3qbvY.framer-v-rsvx8o .framer-h1kkip-container, .framer-3qbvY.framer-v-d6lczb .framer-h1kkip-container { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qbvY.framer-v-rsvx8o.framer-syz7s4, .framer-3qbvY.framer-v-rsvx8o .framer-1ptcuj1 { gap: 0px; } .framer-3qbvY.framer-v-rsvx8o.framer-syz7s4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3qbvY.framer-v-rsvx8o.framer-syz7s4 > :first-child, .framer-3qbvY.framer-v-rsvx8o .framer-1ptcuj1 > :first-child { margin-top: 0px; } .framer-3qbvY.framer-v-rsvx8o.framer-syz7s4 > :last-child, .framer-3qbvY.framer-v-rsvx8o .framer-1ptcuj1 > :last-child { margin-bottom: 0px; } .framer-3qbvY.framer-v-rsvx8o .framer-1ptcuj1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-3qbvY.framer-v-zib55f .framer-f3xw1e, .framer-3qbvY.framer-v-d6lczb .framer-f3xw1e { width: 390px; }\",\".framer-3qbvY.framer-v-zib55f .framer-1ptcuj1, .framer-3qbvY.framer-v-d6lczb .framer-1ptcuj1 { flex-direction: column; gap: 6px; width: 390px; }\",\".framer-3qbvY.framer-v-zib55f .framer-15n6eyl { flex: none; order: 3; width: 100%; }\",\".framer-3qbvY.framer-v-zib55f .framer-h1kkip-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qbvY.framer-v-zib55f.framer-syz7s4, .framer-3qbvY.framer-v-zib55f .framer-1ptcuj1 { gap: 0px; } .framer-3qbvY.framer-v-zib55f.framer-syz7s4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3qbvY.framer-v-zib55f.framer-syz7s4 > :first-child, .framer-3qbvY.framer-v-zib55f .framer-1ptcuj1 > :first-child { margin-top: 0px; } .framer-3qbvY.framer-v-zib55f.framer-syz7s4 > :last-child, .framer-3qbvY.framer-v-zib55f .framer-1ptcuj1 > :last-child { margin-bottom: 0px; } .framer-3qbvY.framer-v-zib55f .framer-1ptcuj1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-3qbvY.framer-v-d6lczb .framer-5hu2sk-container { order: 3; }\",\".framer-3qbvY.framer-v-d6lczb .framer-1o4x7o5 { flex: none; order: 5; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qbvY.framer-v-d6lczb.framer-syz7s4, .framer-3qbvY.framer-v-d6lczb .framer-1ptcuj1 { gap: 0px; } .framer-3qbvY.framer-v-d6lczb.framer-syz7s4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3qbvY.framer-v-d6lczb.framer-syz7s4 > :first-child, .framer-3qbvY.framer-v-d6lczb .framer-1ptcuj1 > :first-child { margin-top: 0px; } .framer-3qbvY.framer-v-d6lczb.framer-syz7s4 > :last-child, .framer-3qbvY.framer-v-d6lczb .framer-1ptcuj1 > :last-child { margin-bottom: 0px; } .framer-3qbvY.framer-v-d6lczb .framer-1ptcuj1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1036\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"c_9TP2Qht\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"FyB2n_GQx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"q2odItEgo\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"ac2mnbDcL\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"SK0TxCbH1\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervsSgmYyEd=withCSS(Component,css,\"framer-3qbvY\");export default FramervsSgmYyEd;FramervsSgmYyEd.displayName=\"Features Carousel - Horizontal\";FramervsSgmYyEd.defaultProps={height:1036,width:1200};addPropertyControls(FramervsSgmYyEd,{variant:{options:[\"xr8QZOV2D\",\"c_9TP2Qht\",\"FyB2n_GQx\",\"q2odItEgo\",\"ac2mnbDcL\",\"SK0TxCbH1\"],optionTitles:[\"Dekstop \\xb7 1\",\"Dekstop \\xb7 2\",\"Dekstop \\xb7 3\",\"Phone \\xb7 1\",\"Phone \\xb7 2\",\"Phone \\xb7 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervsSgmYyEd,[{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\"}]},...BadgeNormalFonts,...TabItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervsSgmYyEd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"c_9TP2Qht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"FyB2n_GQx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"q2odItEgo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"ac2mnbDcL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"SK0TxCbH1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"1036\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vsSgmYyEd.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/o6OGQP2CYzPd6yzs6H9l/KRD7JGQxBw867lnYEbWl/Jjj2T4gpQ.js\";import TabItem from\"https://framerusercontent.com/modules/yN9tDyPSAVvLuN9ISCES/eGEoWOYykMhgGPLf9ipO/NfS3Exusk.js\";import BadgeNormal from\"https://framerusercontent.com/modules/jIM3miZIpfyaGBZJ2v1f/5TsrMXLHNh3IOZLdol3H/sqcnnD9OB.js\";const BadgeNormalFonts=getFonts(BadgeNormal);const MotionDivWithFX=withFX(motion.div);const TabItemFonts=getFonts(TabItem);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ImageWithFX=withFX(Image);const cycleOrder=[\"uUVBHPnqM\",\"rYF9Bg0jx\",\"hk5gWssrr\",\"vS2ft1h8j\"];const serializationHash=\"framer-gAU6B\";const variantClassNames={hk5gWssrr:\"framer-v-1adilro\",rYF9Bg0jx:\"framer-v-d6nvun\",uUVBHPnqM:\"framer-v-1jctnah\",vS2ft1h8j:\"framer-v-1fyxm01\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:80,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:80,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition6={damping:80,delay:.8,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:80,delay:1.1,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:80,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={damping:80,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition10={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:80,delay:.7,mass:1,stiffness:500,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const transition12={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const transition13={damping:80,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={damping:80,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transition15={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:150,y:0};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-150,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-150,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:150,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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={\"Desktop \\xb7 1\":\"uUVBHPnqM\",\"Desktop \\xb7 2\":\"rYF9Bg0jx\",\"Phone \\xb7 1\":\"hk5gWssrr\",\"Phone \\xb7 2\":\"vS2ft1h8j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uUVBHPnqM\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uUVBHPnqM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1is6hy0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rYF9Bg0jx\"),15e3);});const onAppearput0ps=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uUVBHPnqM\"),15e3);});const onAppearh71bxi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vS2ft1h8j\"),15e3);});const onAppear3uf57a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hk5gWssrr\"),15e3);});const RDmGAwKxPguu4z9=activeVariantCallback(async(...args)=>{setVariant(\"uUVBHPnqM\");});const RDmGAwKxP1t7amab=activeVariantCallback(async(...args)=>{setVariant(\"hk5gWssrr\");});const RDmGAwKxP1oibhe=activeVariantCallback(async(...args)=>{setVariant(\"rYF9Bg0jx\");});const RDmGAwKxP1815mde=activeVariantCallback(async(...args)=>{setVariant(\"vS2ft1h8j\");});useOnVariantChange(baseVariant,{default:onAppear1is6hy0,hk5gWssrr:onAppearh71bxi,rYF9Bg0jx:onAppearput0ps,vS2ft1h8j:onAppear3uf57a});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hk5gWssrr\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"vS2ft1h8j\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"vS2ft1h8j\")return false;return true;};const isDisplayed3=()=>{if([\"hk5gWssrr\",\"vS2ft1h8j\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"rYF9Bg0jx\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"rYF9Bg0jx\")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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jctnah\",className,classNames),\"data-framer-name\":\"Desktop \\xb7 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"uUVBHPnqM\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{hk5gWssrr:{backgroundColor:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"},vS2ft1h8j:{backgroundColor:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"}},...addPropertyOverrides({hk5gWssrr:{\"data-framer-name\":\"Phone \\xb7 1\"},rYF9Bg0jx:{\"data-framer-name\":\"Desktop \\xb7 2\"},vS2ft1h8j:{\"data-framer-name\":\"Phone \\xb7 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uq3rp1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Wg83aW68d\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-iqnhq0\",layoutDependency:layoutDependency,layoutId:\"XvDKGYlGB\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-462.8)/2)+0+0+0+0,...addPropertyOverrides({hk5gWssrr:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+0+0+0},vS2ft1h8j:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nmhqv8-container\",layoutDependency:layoutDependency,layoutId:\"g3Ka8l3vm-container\",nodeId:\"g3Ka8l3vm\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"g3Ka8l3vm\",JDEMNPLZW:\"Shipping Agency & Port Services\",layoutId:\"g3Ka8l3vm\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Streamlined Shipping Agency Services for Brazilian Ports\"})}),className:\"framer-1m8h1dm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UmaiyU42m\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({hk5gWssrr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Streamlined Shipping Agency Services for Brazilian Ports\"})})},vS2ft1h8j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Streamlined Shipping Agency Services for Brazilian Ports\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1m5p55s\",layoutDependency:layoutDependency,layoutId:\"nQGYWVKN7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"536px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-462.8)/2)+0+146.8+0+0,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+0},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nidj9u-container\",layoutDependency:layoutDependency,layoutId:\"jvg79Hu92-container\",nodeId:\"jvg79Hu92\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:\"Customized PDAs\",height:\"100%\",id:\"jvg79Hu92\",kGPf904Pj:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",layoutId:\"jvg79Hu92\",style:{width:\"100%\"},U8MtZan4d:\"Paper\",UcxooM043:true,variant:\"R0GuQ7RPN\",width:\"100%\",xNPJv87bA:\"Streamline your port operations with tailored Proforma Disbursement Accounts (PDAs) designed for accuracy and transparency. Our team ensures precise cost forecasting and efficient resource allocation, helping you stay in control at every step.\",Y7dkQGON1:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",...addPropertyOverrides({hk5gWssrr:{xNPJv87bA:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\"},rYF9Bg0jx:{RDmGAwKxP:RDmGAwKxPguu4z9,variant:\"OI3YinN0S\"},vS2ft1h8j:{RDmGAwKxP:RDmGAwKxP1t7amab,UcxooM043:false,variant:\"OI3YinN0S\",xNPJv87bA:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12usrz2\",\"data-framer-name\":\"Phone \\xb7 Img\",layoutDependency:layoutDependency,layoutId:\"fOL8q2nAO\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yrbx1e\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"vx9Lf6k2F\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8rcolp\",\"data-border\":true,\"data-framer-name\":\"Circle-border 2\",layoutDependency:layoutDependency,layoutId:\"mgmQDcSIA\",style:{\"--border-bottom-width\":\"0.9476845264434814px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.9476845264434814px\",\"--border-right-width\":\"0.9476845264434814px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9476845264434814px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h4bpcu\",\"data-border\":true,\"data-framer-name\":\"Circle-border 1\",layoutDependency:layoutDependency,layoutId:\"EdbJh3hqH\",style:{\"--border-bottom-width\":\"0.745897114276886px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.745897114276886px\",\"--border-right-width\":\"0.745897114276886px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.745897114276886px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-1vho9pc\",\"data-framer-appear-id\":\"1vho9pc\",\"data-framer-name\":\"Circle-filled\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"d7xaFPgw4\",optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x2xa2w\",\"data-framer-name\":\"Circle-filled\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:307,intrinsicWidth:308,layoutDependency:layoutDependency,layoutId:\"XCYAtivzX\",svg:'<svg width=\"308\" height=\"307\" viewBox=\"0 0 308 307\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<ellipse cx=\"153.123\" cy=\"153.123\" rx=\"153.123\" ry=\"153.123\" transform=\"matrix(-1 0 0 1 307.076 0.321777)\" fill=\"#E4ECFF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1l03b85\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"qA6obwg7g\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1i1zce2\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"GRnyHR3dg\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14mqeti\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"cdTBiTtAo\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg\",srcSet:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg 1115w\"},className:\"framer-vze8ia\",\"data-framer-name\":\"Img - Avatar right\",layoutDependency:layoutDependency,layoutId:\"wfyRe8tBs\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"7.055813312530518px 14.111626625061035px 31.605806350708008px 5.131500244140625px rgba(0, 0, 0, 0.15)\",transformPerspective:1200},transformTemplate:transformTemplate1,...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+301),pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg\",srcSet:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg 1115w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg\",srcSet:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg 1115w\"},className:\"framer-2k39z6\",\"data-framer-name\":\"Img - Avatar left\",layoutDependency:layoutDependency,layoutId:\"eMZF022d2\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"7.055813312530518px 14.111626625061035px 31.605806350708008px 5.131500244140625px rgba(0, 0, 0, 0.15)\",transformPerspective:1200},transformTemplate:transformTemplate1,...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+48),pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg\",srcSet:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg 1115w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-nhnzxo\",\"data-framer-name\":\"Icon - Box\",layoutDependency:layoutDependency,layoutId:\"owoK3wndu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:209,pixelWidth:209,src:\"https://framerusercontent.com/images/fczYweY6iVjihJKwTQJyozK6kQ.png\"},className:\"framer-wrvp1j\",layoutDependency:layoutDependency,layoutId:\"o2fu_yxHw\",...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+71+-9),pixelHeight:209,pixelWidth:209,src:\"https://framerusercontent.com/images/fczYweY6iVjihJKwTQJyozK6kQ.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6ju80e\",\"data-framer-name\":\"Icon - Location\",layoutDependency:layoutDependency,layoutId:\"iYCoaAl16\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:181,pixelWidth:180,src:\"https://framerusercontent.com/images/btZqrERP14N4HCHPQsDLgDcQzWQ.png\"},className:\"framer-pb2hcm\",layoutDependency:layoutDependency,layoutId:\"jLiQMstw1\",...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+1.5+-7),pixelHeight:181,pixelWidth:180,src:\"https://framerusercontent.com/images/btZqrERP14N4HCHPQsDLgDcQzWQ.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-g37qgz\",\"data-framer-name\":\"Icon - Verified\",layoutDependency:layoutDependency,layoutId:\"rgMxkPKf7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:222,pixelWidth:222,src:\"https://framerusercontent.com/images/FfauQ5uPvlKPceJkKID4WhLkpTY.png\"},className:\"framer-1garfi1\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"tdLKT99oU\",...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+230.5+-6),pixelHeight:222,pixelWidth:222,src:\"https://framerusercontent.com/images/FfauQ5uPvlKPceJkKID4WhLkpTY.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:404.5,intrinsicWidth:445.5,pixelHeight:404,pixelWidth:446,src:\"https://framerusercontent.com/images/1th0z3hmVzYUkKRScKagqnnNw.png\"},className:\"framer-17y2933\",\"data-framer-name\":\"image - forms\",layoutDependency:layoutDependency,layoutId:\"RBMwZtqNr\",style:{transformPerspective:1200},...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:404.5,intrinsicWidth:445.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+74),pixelHeight:404,pixelWidth:446,src:\"https://framerusercontent.com/images/1th0z3hmVzYUkKRScKagqnnNw.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:217,intrinsicWidth:402,pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/yv7Dgv1PBVvhvWHhXftUTgvpro.svg\"},className:\"framer-129ifku\",\"data-framer-name\":\"image - Top modal\",layoutDependency:layoutDependency,layoutId:\"zpnqEz4l0\",style:{transformPerspective:1200},...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:217,intrinsicWidth:402,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+-23.5),pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/yv7Dgv1PBVvhvWHhXftUTgvpro.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation19,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:163,intrinsicWidth:348.5,pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/rx2ELdlS0uYa8DCQWNcwXimqEhY.svg\"},className:\"framer-ykgsuf\",\"data-framer-name\":\"image - Bottom modal\",layoutDependency:layoutDependency,layoutId:\"khDrcbfls\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:163,intrinsicWidth:348.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146+0+274),pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/rx2ELdlS0uYa8DCQWNcwXimqEhY.svg\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"536px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-462.8)/2)+0+146.8+0+170,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+536},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+146}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eig32b-container\",layoutDependency:layoutDependency,layoutId:\"pYcvEF4I6-container\",nodeId:\"pYcvEF4I6\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:\"Port Coordination\",height:\"100%\",id:\"pYcvEF4I6\",kGPf904Pj:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",layoutId:\"pYcvEF4I6\",RDmGAwKxP:RDmGAwKxP1oibhe,style:{width:\"100%\"},U8MtZan4d:\"GPS\",UcxooM043:true,variant:\"OI3YinN0S\",width:\"100%\",xNPJv87bA:\"Experience seamless port coordination across key Brazilian ports like Santos and Paranagu\\xe1. From customs clearance to berth arrangements, our expertise simplifies complex processes, saving you time and optimizing vessel turnaround.\",Y7dkQGON1:\"var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, rgb(249, 250, 251))\",...addPropertyOverrides({hk5gWssrr:{RDmGAwKxP:RDmGAwKxP1815mde,UcxooM043:false,xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"},rYF9Bg0jx:{variant:\"R0GuQ7RPN\"},vS2ft1h8j:{RDmGAwKxP:undefined,variant:\"R0GuQ7RPN\",xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gg3zvm\",\"data-framer-name\":\"Phone \\xb7 Img 2\",layoutDependency:layoutDependency,layoutId:\"zcna2ewwx\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z8sa1k\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"pNse425iV\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-138efdy\",\"data-border\":true,\"data-framer-name\":\"Circle-border 2\",layoutDependency:layoutDependency,layoutId:\"UY2dAVXz8\",style:{\"--border-bottom-width\":\"0.9476845264434814px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.9476845264434814px\",\"--border-right-width\":\"0.9476845264434814px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9476845264434814px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-spt8km\",\"data-border\":true,\"data-framer-name\":\"Circle-border 1\",layoutDependency:layoutDependency,layoutId:\"g871puaji\",style:{\"--border-bottom-width\":\"0.745897114276886px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.745897114276886px\",\"--border-right-width\":\"0.745897114276886px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.745897114276886px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-20g7pg\",\"data-framer-appear-id\":\"20g7pg\",\"data-framer-name\":\"Circle-filled\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"ZbfCxMaxI\",optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kpx6ff\",\"data-framer-name\":\"Circle-filled\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:307,intrinsicWidth:308,layoutDependency:layoutDependency,layoutId:\"RtdCNA1yv\",svg:'<svg width=\"308\" height=\"307\" viewBox=\"0 0 308 307\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<ellipse cx=\"153.123\" cy=\"153.123\" rx=\"153.123\" ry=\"153.123\" transform=\"matrix(-1 0 0 1 307.076 0.321777)\" fill=\"#E4ECFF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rsh15h\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"qYNvtS5jt\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-wxto16\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"ifYrQ2qPs\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1u2elwi\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"xa168go5h\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-eass5n\",\"data-framer-name\":\"Icon-message\",layoutDependency:layoutDependency,layoutId:\"g_zOllii_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pjfltl\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:151,intrinsicWidth:152,layoutDependency:layoutDependency,layoutId:\"R76YYOPS7\",svg:'<svg width=\"152\" height=\"151\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><circle cx=\"65.366\" cy=\"54.819\" fill=\"#fff\" r=\"21\"/></g><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.45 46.336a.932.932 0 0 0-.933.933v13.984c0 .515.418.932.933.932h6.606l2.057 2.058a.932.932 0 0 0 1.319 0l2.057-2.058h6.606a.932.932 0 0 0 .932-.932V47.269a.932.932 0 0 0-.932-.933H56.45Zm5.127 6.526a1.398 1.398 0 1 0 0 2.797 1.398 1.398 0 0 0 0-2.797Zm2.797 1.399a1.398 1.398 0 1 1 2.797 0 1.398 1.398 0 0 1-2.797 0Zm5.594-1.399a1.398 1.398 0 1 0 0 2.797 1.398 1.398 0 0 0 0-2.797Z\" fill=\"#1AB834\"/></g><defs><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(54.585 44.472)\" d=\"M0 0h22.375v22.375H0z\"/></clipPath><filter id=\"a\" x=\".541\" y=\".412\" width=\"150.487\" height=\"150.487\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"7.577\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_1108_12406\"/><feOffset dx=\"10.418\" dy=\"20.836\"/><feGaussianBlur stdDeviation=\"23.333\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1108_12406\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1108_12406\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-fggavz\",\"data-framer-name\":\"Img - Map\",layoutDependency:layoutDependency,layoutId:\"f_2Gb4G4V\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436.5,intrinsicWidth:531.5,pixelHeight:1263,pixelWidth:1394,sizes:\"325px\",src:\"https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png 1394w\"},className:\"framer-1femqaa\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Ni1tYM_FO\",...addPropertyOverrides({vS2ft1h8j:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436.5,intrinsicWidth:531.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+292+0+390-301.5+0),pixelHeight:1263,pixelWidth:1394,sizes:\"325px\",src:\"https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Pjk4KbUen7EAV9mViPIoegne5A.png 1394w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation19,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1stinap\",\"data-framer-name\":\"Img - Messages\",layoutDependency:layoutDependency,layoutId:\"esgJuogiz\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:339,intrinsicWidth:256,pixelHeight:127,pixelWidth:334,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UUVQcKv9KLnM7DDhWnfFbji1wqc.svg\"},className:\"framer-nnffga\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"uocwdDdVr\",...addPropertyOverrides({vS2ft1h8j:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:339,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+292+0+390-244+0),pixelHeight:127,pixelWidth:334,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UUVQcKv9KLnM7DDhWnfFbji1wqc.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation17,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1s1ezfn\",\"data-framer-name\":\"Img - Upload\",layoutDependency:layoutDependency,layoutId:\"Fof4MkJA7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:209,intrinsicWidth:236.5,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"205px\",src:\"https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png 1000w\"},className:\"framer-g5zuif\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"vYggt7zJa\",...addPropertyOverrides({vS2ft1h8j:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:209,intrinsicWidth:236.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-804.8)/1*0)+0+122.8+0+292+0+22+0),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"205px\",src:\"https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ARhtFnGskawswqUocuhPY0HnT5Q.png 1000w\"}}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10d6krl\",\"data-framer-name\":\"Icon - upload\",layoutDependency:layoutDependency,layoutId:\"s4ONKwEu0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qw0988\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:91,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"e1AomfSMI\",svg:'<svg width=\"91\" height=\"91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><circle cx=\"40.079\" cy=\"34.248\" fill=\"#fff\" r=\"15.429\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.22 32.107a4.885 4.885 0 1 1 9.769.081 4.072 4.072 0 0 1-.814 8.06h-2.442v-3.663h1.51a.407.407 0 0 0 .267-.715l-3.139-2.718a.407.407 0 0 0-.533 0l-3.139 2.718a.407.407 0 0 0 .267.715h1.51v3.663h-2.443a4.071 4.071 0 0 1-.813-8.06v-.081Z\" fill=\"#4D7BFF\"/><defs><filter id=\"a\" x=\".853\" y=\".679\" width=\"89.767\" height=\"89.767\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"4.114\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_1108_12403\"/><feOffset dx=\"5.657\" dy=\"11.314\"/><feGaussianBlur stdDeviation=\"12.67\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1108_12403\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1108_12403\" result=\"shape\"/></filter></defs></svg>',transformTemplate:transformTemplate2,withExternalLayout:true})})]})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qsqsb4\",\"data-framer-name\":\"Desktop \\xb7 Img\",layoutDependency:layoutDependency,layoutId:\"Qkaw1b8vU\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ayyh5c\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"ubEZyHZAP\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10mor9s\",\"data-border\":true,\"data-framer-name\":\"Circle-border 2\",layoutDependency:layoutDependency,layoutId:\"ZSa1_C4ua\",style:{\"--border-bottom-width\":\"0.9476845264434814px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.9476845264434814px\",\"--border-right-width\":\"0.9476845264434814px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.9476845264434814px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1voefto\",\"data-border\":true,\"data-framer-name\":\"Circle-border 1\",layoutDependency:layoutDependency,layoutId:\"a4L2im50z\",style:{\"--border-bottom-width\":\"0.745897114276886px\",\"--border-color\":\"rgb(207, 220, 248)\",\"--border-left-width\":\"0.745897114276886px\",\"--border-right-width\":\"0.745897114276886px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.745897114276886px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-y5xj3p\",\"data-framer-appear-id\":\"y5xj3p\",\"data-framer-name\":\"Circle-filled\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"R5kZqkBE2\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bjl0x3\",\"data-framer-name\":\"Circle-filled\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:307,intrinsicWidth:308,layoutDependency:layoutDependency,layoutId:\"bdbEWOb0O\",svg:'<svg width=\"308\" height=\"307\" viewBox=\"0 0 308 307\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<ellipse cx=\"153.123\" cy=\"153.123\" rx=\"153.123\" ry=\"153.123\" transform=\"matrix(-1 0 0 1 307.076 0.321777)\" fill=\"#E4ECFF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ju0n1t\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"PkCssNDsT\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-v0oy3e\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"K3xuq4WZg\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ynp2tu\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"sN_hNCttn\",style:{backgroundColor:\"rgb(194, 239, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",transformPerspective:1200}}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+415.613),pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"74.6477px\",src:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg\",srcSet:\"https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TgX0Ju9hoPhezJUqrvHdPGtIz4.jpg 1115w\"},className:\"framer-1amnmee\",\"data-framer-name\":\"Img - Avatar right\",layoutDependency:layoutDependency,layoutId:\"ANzd9VEqE\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"7.055813312530518px 14.111626625061035px 31.605806350708008px 5.131500244140625px rgba(0, 0, 0, 0.15)\",transformPerspective:1200},transformTemplate:transformTemplate1}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+62.168),pixelHeight:1010,pixelWidth:1115,positionX:\"center\",positionY:\"center\",sizes:\"84.5px\",src:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg\",srcSet:\"https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/krsJndqXgIwV7ZMmCzVf33sXnW0.jpg 1115w\"},className:\"framer-9cq2r5\",\"data-framer-name\":\"Img - Avatar left\",layoutDependency:layoutDependency,layoutId:\"EvtL9Kipv\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"7.055813312530518px 14.111626625061035px 31.605806350708008px 5.131500244140625px rgba(0, 0, 0, 0.15)\",transformPerspective:1200}}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-svx2j7\",\"data-framer-name\":\"Icon - Box\",layoutDependency:layoutDependency,layoutId:\"daKtQHIGB\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+187+-9),pixelHeight:209,pixelWidth:209,src:\"https://framerusercontent.com/images/fczYweY6iVjihJKwTQJyozK6kQ.png\"},className:\"framer-14cmx4h\",layoutDependency:layoutDependency,layoutId:\"EzgD4sE1w\"})}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qdkabb\",\"data-framer-name\":\"Icon - Location\",layoutDependency:layoutDependency,layoutId:\"PlmfEA5v2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+0+-7),pixelHeight:181,pixelWidth:180,src:\"https://framerusercontent.com/images/btZqrERP14N4HCHPQsDLgDcQzWQ.png\"},className:\"framer-1hkajzd\",layoutDependency:layoutDependency,layoutId:\"l50FzvasW\"})}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-100lrum\",\"data-framer-name\":\"Icon - Verified\",layoutDependency:layoutDependency,layoutId:\"kmaK_AVZt\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+322.178+-6),pixelHeight:222,pixelWidth:222,src:\"https://framerusercontent.com/images/FfauQ5uPvlKPceJkKID4WhLkpTY.png\"},className:\"framer-1yemp5j\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"Eb8ZDaVmT\"})}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Shipping Agency Services in Brazil Seachios\",fit:\"fill\",intrinsicHeight:404.5,intrinsicWidth:445.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+84.7456),pixelHeight:404,pixelWidth:446,src:\"https://framerusercontent.com/images/1th0z3hmVzYUkKRScKagqnnNw.png\"},className:\"framer-uryx7o\",\"data-framer-name\":\"image - forms\",layoutDependency:layoutDependency,layoutId:\"fcVxPUneQ\",style:{transformPerspective:1200},transformTemplate:transformTemplate1}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Customized PDAS Shipping Agency Services\",fit:\"fill\",intrinsicHeight:217,intrinsicWidth:402,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+-21),pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/yv7Dgv1PBVvhvWHhXftUTgvpro.svg\"},className:\"framer-9jqugz\",\"data-framer-name\":\"image - Top modal\",layoutDependency:layoutDependency,layoutId:\"lpZvilOdA\",style:{transformPerspective:1200}}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation19,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Reliable Shipping Agency Services for Bulk Carriers, Charterers\",fit:\"fill\",intrinsicHeight:163,intrinsicWidth:348.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+537.9917-131),pixelHeight:303,pixelWidth:334,src:\"https://framerusercontent.com/images/rx2ELdlS0uYa8DCQWNcwXimqEhY.svg\"},className:\"framer-170v4fe\",\"data-framer-name\":\"image - Bottom modal\",layoutDependency:layoutDependency,layoutId:\"CfJQvcUXv\",style:{transformPerspective:1200}}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17qnom0\",\"data-framer-name\":\"Icon-message\",layoutDependency:layoutDependency,layoutId:\"AbJkfcXr3\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hfztqt\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:151,intrinsicWidth:152,layoutDependency:layoutDependency,layoutId:\"P63VVnoMr\",svg:'<svg width=\"152\" height=\"151\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><circle cx=\"65.366\" cy=\"54.819\" fill=\"#fff\" r=\"21\"/></g><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.45 46.336a.932.932 0 0 0-.933.933v13.984c0 .515.418.932.933.932h6.606l2.057 2.058a.932.932 0 0 0 1.319 0l2.057-2.058h6.606a.932.932 0 0 0 .932-.932V47.269a.932.932 0 0 0-.932-.933H56.45Zm5.127 6.526a1.398 1.398 0 1 0 0 2.797 1.398 1.398 0 0 0 0-2.797Zm2.797 1.399a1.398 1.398 0 1 1 2.797 0 1.398 1.398 0 0 1-2.797 0Zm5.594-1.399a1.398 1.398 0 1 0 0 2.797 1.398 1.398 0 0 0 0-2.797Z\" fill=\"#1AB834\"/></g><defs><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(54.585 44.472)\" d=\"M0 0h22.375v22.375H0z\"/></clipPath><filter id=\"a\" x=\".541\" y=\".412\" width=\"150.487\" height=\"150.487\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"7.577\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_1108_12406\"/><feOffset dx=\"10.418\" dy=\"20.836\"/><feGaussianBlur stdDeviation=\"23.333\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1108_12406\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_1108_12406\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mm0t5m\",\"data-framer-name\":\"Img - Map\",layoutDependency:layoutDependency,layoutId:\"qsSWhqetp\",style:{transformPerspective:1200},children:isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Logistics Setvices Maritime in Brazil Seachios Marine Services\",fit:\"fill\",intrinsicHeight:436.5,intrinsicWidth:531.5,pixelHeight:1031,pixelWidth:1309,src:\"https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=512 512w,https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png 1309w\"},className:\"framer-rxy5va\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"ct1bfSGRA\",...addPropertyOverrides({rYF9Bg0jx:{background:{alt:\"Logistics Setvices Maritime in Brazil Seachios Marine Services\",fit:\"fill\",intrinsicHeight:436.5,intrinsicWidth:531.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+537.9917-430+-47),pixelHeight:1031,pixelWidth:1309,sizes:\"569px\",src:\"https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=512 512w,https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LNhrp2hWC9TDVJyf7BYJtrNRuSw.png 1309w\"}}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation19,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-92jxi0\",\"data-framer-name\":\"Img - Messages\",layoutDependency:layoutDependency,layoutId:\"RWIIB1AGn\",style:{transformPerspective:1200},children:[isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation17,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1duqd9z\",\"data-framer-name\":\"Img - Upload\",layoutDependency:layoutDependency,layoutId:\"aUipBRhb2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"crew change services in brazil maritime seachios marine services\",fit:\"fit\",intrinsicHeight:209,intrinsicWidth:236.5,pixelHeight:127,pixelWidth:334,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UUVQcKv9KLnM7DDhWnfFbji1wqc.svg\"},className:\"framer-89vv3e\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"PjslKhgeA\",...addPropertyOverrides({rYF9Bg0jx:{background:{alt:\"crew change services in brazil maritime seachios marine services\",fit:\"fit\",intrinsicHeight:209,intrinsicWidth:236.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+31.0042+537.9917-193+0+0+0+-6.25),pixelHeight:127,pixelWidth:334,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UUVQcKv9KLnM7DDhWnfFbji1wqc.svg\"}}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:339,intrinsicWidth:256,pixelHeight:678,pixelWidth:512,sizes:\"216px\",src:\"https://framerusercontent.com/images/69cKYNWdj2jhmBEAJSL4fLXAtEU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/69cKYNWdj2jhmBEAJSL4fLXAtEU.png 512w\"},className:\"framer-1lojnnz\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"rMKejVPnH\"})]}),isDisplayed5()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1p4bt1v\",\"data-framer-name\":\"Icon - upload\",layoutDependency:layoutDependency,layoutId:\"R59YVpDue\",style:{transformPerspective:1200}})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gAU6B.framer-15vu78m, .framer-gAU6B .framer-15vu78m { display: block; }\",\".framer-gAU6B.framer-1jctnah { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-gAU6B .framer-uq3rp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 536px; }\",\".framer-gAU6B .framer-iqnhq0 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gAU6B .framer-nmhqv8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gAU6B .framer-1m8h1dm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 536px; word-break: break-word; word-wrap: break-word; }\",\".framer-gAU6B .framer-1m5p55s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gAU6B .framer-nidj9u-container, .framer-gAU6B .framer-1eig32b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gAU6B .framer-12usrz2, .framer-gAU6B .framer-1gg3zvm { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 390px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-gAU6B .framer-1yrbx1e, .framer-gAU6B .framer-z8sa1k { flex: none; height: 390px; overflow: visible; position: relative; width: 390px; }\",\".framer-gAU6B .framer-8rcolp { flex: none; height: 343px; left: calc(50.25641025641028% - 343px / 2); position: absolute; top: calc(48.97435897435899% - 343px / 2); width: 343px; }\",\".framer-gAU6B .framer-1h4bpcu { flex: none; height: 270px; left: calc(50.25641025641028% - 270px / 2); position: absolute; top: calc(48.97435897435899% - 270px / 2); width: 270px; }\",\".framer-gAU6B .framer-1vho9pc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 200px; }\",\".framer-gAU6B .framer-x2xa2w { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-gAU6B .framer-1l03b85 { flex: none; height: 13px; left: calc(18.974358974358996% - 13px / 2); position: absolute; top: calc(86.41025641025644% - 13px / 2); width: 13px; }\",\".framer-gAU6B .framer-1i1zce2 { flex: none; height: 11px; left: calc(95.38461538461542% - 11px / 2); position: absolute; top: calc(65.3846153846154% - 11px / 2); width: 11px; }\",\".framer-gAU6B .framer-14mqeti { flex: none; height: 6px; left: calc(84.87179487179489% - 7px / 2); position: absolute; top: calc(15.128205128205149% - 6px / 2); width: 7px; }\",\".framer-gAU6B .framer-vze8ia { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 80%; position: absolute; top: 84%; width: 50px; }\",\".framer-gAU6B .framer-2k39z6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 16%; position: absolute; top: 19%; width: 50px; }\",\".framer-gAU6B .framer-nhnzxo { flex: none; height: 30px; left: calc(90.51282051282054% - 30px / 2); overflow: visible; position: absolute; top: calc(22.051282051282072% - 30px / 2); width: 30px; }\",\".framer-gAU6B .framer-wrvp1j, .framer-gAU6B .framer-14cmx4h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: -13px; overflow: hidden; position: absolute; right: -13px; top: -9px; }\",\".framer-gAU6B .framer-6ju80e { flex: none; height: 29px; left: calc(72.82051282051285% - 29px / 2); overflow: visible; position: absolute; top: calc(4.102564102564124% - 29px / 2); width: 29px; }\",\".framer-gAU6B .framer-pb2hcm, .framer-gAU6B .framer-1hkajzd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: -11px; overflow: visible; position: absolute; right: -10px; top: -7px; }\",\".framer-gAU6B .framer-g37qgz { flex: none; height: 33px; left: calc(8.974358974358996% - 33px / 2); overflow: visible; position: absolute; top: calc(63.33333333333335% - 33px / 2); width: 33px; }\",\".framer-gAU6B .framer-1garfi1, .framer-gAU6B .framer-1yemp5j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: -10px; overflow: visible; position: absolute; right: -10px; top: -6px; }\",\".framer-gAU6B .framer-17y2933 { flex: none; height: 260px; left: calc(51.794871794871824% - 286px / 2); overflow: visible; position: absolute; top: calc(52.307692307692335% - 260px / 2); width: 286px; }\",\".framer-gAU6B .framer-129ifku { flex: none; height: 165px; left: calc(44.61538461538464% - 306px / 2); overflow: visible; position: absolute; top: calc(15.128205128205149% - 165px / 2); width: 306px; }\",\".framer-gAU6B .framer-ykgsuf { aspect-ratio: 2.13986013986014 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 124px); left: 55%; overflow: visible; position: absolute; top: 86%; width: 266px; }\",\".framer-gAU6B .framer-138efdy { aspect-ratio: 0.9999988495607393 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 343px); left: 50%; position: absolute; top: 49%; width: 343px; }\",\".framer-gAU6B .framer-spt8km { aspect-ratio: 0.9999998538332557 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 270px); left: 50%; position: absolute; top: 49%; width: 270px; }\",\".framer-gAU6B .framer-20g7pg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: visible; position: absolute; top: 49%; width: 200px; }\",\".framer-gAU6B .framer-kpx6ff, .framer-gAU6B .framer-pjfltl, .framer-gAU6B .framer-hfztqt { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-gAU6B .framer-1rsh15h { aspect-ratio: 0.9999991803677587 / 1; bottom: 41px; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 97px; position: absolute; width: 13px; }\",\".framer-gAU6B .framer-wxto16 { aspect-ratio: 0.9999995816458971 / 1; bottom: 140px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: absolute; right: -1px; width: 12px; }\",\".framer-gAU6B .framer-1u2elwi { aspect-ratio: 1.0000000998824883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); position: absolute; right: 55px; top: 57px; width: 7px; }\",\".framer-gAU6B .framer-eass5n { flex: none; height: 100px; overflow: visible; position: absolute; right: 34px; top: 19px; width: 101px; }\",\".framer-gAU6B .framer-fggavz { bottom: 35px; flex: none; height: 267px; left: calc(50.00000000000002% - 325px / 2); overflow: visible; position: absolute; width: 325px; }\",\".framer-gAU6B .framer-1femqaa { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-gAU6B .framer-1stinap { align-content: center; align-items: center; bottom: -11px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 255px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -1px; width: 193px; }\",\".framer-gAU6B .framer-nnffga { bottom: -1px; flex: none; left: 0px; overflow: visible; position: absolute; right: -1px; top: 0px; z-index: 1; }\",\".framer-gAU6B .framer-1s1ezfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 182px; justify-content: center; left: -15px; overflow: hidden; padding: 0px; position: absolute; top: 22px; width: 205px; }\",\".framer-gAU6B .framer-g5zuif { bottom: 1px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-gAU6B .framer-10d6krl { bottom: 94px; flex: none; height: 92px; left: -6px; overflow: visible; position: absolute; width: 91px; }\",\".framer-gAU6B .framer-qw0988 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 91px); left: 0px; position: absolute; right: 0px; top: 50%; }\",\".framer-gAU6B .framer-1qsqsb4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-gAU6B .framer-ayyh5c { flex: none; height: 538px; overflow: visible; position: relative; width: 543px; }\",\".framer-gAU6B .framer-10mor9s { aspect-ratio: 0.9999988495607393 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 531px); left: 50%; position: absolute; top: 50%; width: 531px; }\",\".framer-gAU6B .framer-1voefto { aspect-ratio: 0.9999998538332557 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 418px); left: 50%; position: absolute; top: 50%; width: 418px; }\",\".framer-gAU6B .framer-y5xj3p { flex: none; height: 308px; left: calc(50.09208103130758% - 308px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 308px / 2); width: 308px; }\",\".framer-gAU6B .framer-bjl0x3 { flex: none; height: 307px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 307px / 2); }\",\".framer-gAU6B .framer-1ju0n1t { aspect-ratio: 0.9999991803677587 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 21%; position: absolute; top: 90%; width: 19px; }\",\".framer-gAU6B .framer-v0oy3e { aspect-ratio: 0.9999995816458971 / 1; bottom: 189px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: absolute; right: 10px; width: 16px; }\",\".framer-gAU6B .framer-ynp2tu { aspect-ratio: 1.0000000998824883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 91px; top: 67px; width: 10px; }\",\".framer-gAU6B .framer-1amnmee { aspect-ratio: 0.94392458807946 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); left: 86%; position: absolute; top: 85%; width: 75px; }\",\".framer-gAU6B .framer-9cq2r5 { aspect-ratio: 1.0000000901076327 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); left: 27px; position: absolute; top: 62px; width: 85px; }\",\".framer-gAU6B .framer-svx2j7 { flex: none; height: 38px; overflow: visible; position: absolute; right: 55px; top: 187px; width: 38px; }\",\".framer-gAU6B .framer-1qdkabb { flex: none; height: 29px; left: 336px; overflow: visible; position: absolute; top: 0px; width: 29px; }\",\".framer-gAU6B .framer-100lrum { flex: none; height: 43px; left: 0px; overflow: visible; position: absolute; top: 322px; width: 43px; }\",\".framer-gAU6B .framer-uryx7o { aspect-ratio: 1.1013597033374536 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 51%; overflow: visible; position: absolute; top: 53%; width: 446px; }\",\".framer-gAU6B .framer-9jqugz { aspect-ratio: 1.8525345622119815 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 217px); left: 14px; overflow: visible; position: absolute; top: -21px; width: 402px; }\",\".framer-gAU6B .framer-170v4fe { aspect-ratio: 2.138036809815951 / 1; bottom: -32px; flex: none; height: var(--framer-aspect-ratio-supported, 163px); left: 165px; overflow: visible; position: absolute; width: 349px; }\",\".framer-gAU6B .framer-17qnom0 { flex: none; height: 151px; overflow: visible; position: absolute; right: 60px; top: 44px; width: 152px; }\",\".framer-gAU6B .framer-1mm0t5m { bottom: 50px; flex: none; height: 380px; left: calc(49.90791896869247% - 462px / 2); overflow: visible; position: absolute; width: 462px; }\",\".framer-gAU6B .framer-rxy5va { aspect-ratio: 1.2176403207331041 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 467px); left: -49px; overflow: visible; position: absolute; right: -58px; top: -47px; }\",\".framer-gAU6B .framer-92jxi0 { align-content: center; align-items: center; bottom: -4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 2px; width: min-content; }\",\".framer-gAU6B .framer-1duqd9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 197px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 356px; }\",\".framer-gAU6B .framer-89vv3e { aspect-ratio: 1.131578947368421 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 177px); overflow: visible; position: relative; width: 100%; }\",\".framer-gAU6B .framer-1lojnnz { aspect-ratio: 0.7551622418879056 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 286px); overflow: visible; position: relative; width: 216px; }\",\".framer-gAU6B .framer-1p4bt1v { flex: none; height: 92px; left: -30px; overflow: visible; position: absolute; top: calc(53.34572490706322% - 92px / 2); width: 91px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gAU6B .framer-uq3rp1, .framer-gAU6B .framer-iqnhq0, .framer-gAU6B .framer-1m5p55s, .framer-gAU6B .framer-12usrz2, .framer-gAU6B .framer-1gg3zvm, .framer-gAU6B .framer-1stinap, .framer-gAU6B .framer-1s1ezfn, .framer-gAU6B .framer-1qsqsb4, .framer-gAU6B .framer-92jxi0, .framer-gAU6B .framer-1duqd9z { gap: 0px; } .framer-gAU6B .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-gAU6B .framer-uq3rp1 > :first-child, .framer-gAU6B .framer-iqnhq0 > :first-child, .framer-gAU6B .framer-1m5p55s > :first-child, .framer-gAU6B .framer-1stinap > :first-child, .framer-gAU6B .framer-1s1ezfn > :first-child, .framer-gAU6B .framer-92jxi0 > :first-child, .framer-gAU6B .framer-1duqd9z > :first-child { margin-top: 0px; } .framer-gAU6B .framer-uq3rp1 > :last-child, .framer-gAU6B .framer-iqnhq0 > :last-child, .framer-gAU6B .framer-1m5p55s > :last-child, .framer-gAU6B .framer-1stinap > :last-child, .framer-gAU6B .framer-1s1ezfn > :last-child, .framer-gAU6B .framer-92jxi0 > :last-child, .framer-gAU6B .framer-1duqd9z > :last-child { margin-bottom: 0px; } .framer-gAU6B .framer-iqnhq0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gAU6B .framer-1m5p55s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-gAU6B .framer-12usrz2 > *, .framer-gAU6B .framer-1gg3zvm > *, .framer-gAU6B .framer-1qsqsb4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gAU6B .framer-12usrz2 > :first-child, .framer-gAU6B .framer-1gg3zvm > :first-child, .framer-gAU6B .framer-1qsqsb4 > :first-child { margin-left: 0px; } .framer-gAU6B .framer-12usrz2 > :last-child, .framer-gAU6B .framer-1gg3zvm > :last-child, .framer-gAU6B .framer-1qsqsb4 > :last-child { margin-right: 0px; } .framer-gAU6B .framer-1stinap > *, .framer-gAU6B .framer-1s1ezfn > *, .framer-gAU6B .framer-92jxi0 > *, .framer-gAU6B .framer-1duqd9z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-gAU6B.framer-v-d6nvun .framer-1duqd9z, .framer-gAU6B.framer-v-d6nvun .framer-89vv3e { order: 0; }\",\".framer-gAU6B.framer-v-1adilro.framer-1jctnah, .framer-gAU6B.framer-v-1fyxm01.framer-1jctnah { flex-direction: column; width: 390px; }\",\".framer-gAU6B.framer-v-1adilro .framer-uq3rp1 { gap: 24px; order: 0; width: 100%; }\",\".framer-gAU6B.framer-v-1adilro .framer-iqnhq0, .framer-gAU6B.framer-v-1fyxm01 .framer-iqnhq0 { align-content: center; align-items: center; }\",\".framer-gAU6B.framer-v-1adilro .framer-1m8h1dm, .framer-gAU6B.framer-v-1fyxm01 .framer-1m8h1dm { width: 100%; }\",\".framer-gAU6B.framer-v-1adilro .framer-1m5p55s, .framer-gAU6B.framer-v-1fyxm01 .framer-1m5p55s { align-content: center; align-items: center; gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gAU6B.framer-v-1adilro.framer-1jctnah, .framer-gAU6B.framer-v-1adilro .framer-uq3rp1, .framer-gAU6B.framer-v-1adilro .framer-1m5p55s { gap: 0px; } .framer-gAU6B.framer-v-1adilro.framer-1jctnah > *, .framer-gAU6B.framer-v-1adilro.framer-1jctnah > :first-child, .framer-gAU6B.framer-v-1adilro.framer-1jctnah > :last-child { margin: 0px; } .framer-gAU6B.framer-v-1adilro .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-gAU6B.framer-v-1adilro .framer-uq3rp1 > :first-child, .framer-gAU6B.framer-v-1adilro .framer-1m5p55s > :first-child { margin-top: 0px; } .framer-gAU6B.framer-v-1adilro .framer-uq3rp1 > :last-child, .framer-gAU6B.framer-v-1adilro .framer-1m5p55s > :last-child { margin-bottom: 0px; } .framer-gAU6B.framer-v-1adilro .framer-1m5p55s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-gAU6B.framer-v-1fyxm01 .framer-uq3rp1 { gap: 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gAU6B.framer-v-1fyxm01.framer-1jctnah, .framer-gAU6B.framer-v-1fyxm01 .framer-uq3rp1, .framer-gAU6B.framer-v-1fyxm01 .framer-1m5p55s { gap: 0px; } .framer-gAU6B.framer-v-1fyxm01.framer-1jctnah > *, .framer-gAU6B.framer-v-1fyxm01.framer-1jctnah > :first-child, .framer-gAU6B.framer-v-1fyxm01.framer-1jctnah > :last-child { margin: 0px; } .framer-gAU6B.framer-v-1fyxm01 .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-gAU6B.framer-v-1fyxm01 .framer-uq3rp1 > :first-child, .framer-gAU6B.framer-v-1fyxm01 .framer-1m5p55s > :first-child { margin-top: 0px; } .framer-gAU6B.framer-v-1fyxm01 .framer-uq3rp1 > :last-child, .framer-gAU6B.framer-v-1fyxm01 .framer-1m5p55s > :last-child { margin-bottom: 0px; } .framer-gAU6B.framer-v-1fyxm01 .framer-1m5p55s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,'.framer-gAU6B[data-border=\"true\"]::after, .framer-gAU6B [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"rYF9Bg0jx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"hk5gWssrr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"vS2ft1h8j\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZKgSHIfat=withCSS(Component,css,\"framer-gAU6B\");export default FramerZKgSHIfat;FramerZKgSHIfat.displayName=\"Features Carousel - Vertical\";FramerZKgSHIfat.defaultProps={height:600,width:1200};addPropertyControls(FramerZKgSHIfat,{variant:{options:[\"uUVBHPnqM\",\"rYF9Bg0jx\",\"hk5gWssrr\",\"vS2ft1h8j\"],optionTitles:[\"Desktop \\xb7 1\",\"Desktop \\xb7 2\",\"Phone \\xb7 1\",\"Phone \\xb7 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZKgSHIfat,[{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\"}]},...BadgeNormalFonts,...TabItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZKgSHIfat\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"rYF9Bg0jx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"hk5gWssrr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"vS2ft1h8j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZKgSHIfat.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,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{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import CardImage1 from\"#framer/local/canvasComponent/CHg1R9dsq/CHg1R9dsq.js\";import SectionBrands from\"#framer/local/canvasComponent/G1quos_R8/G1quos_R8.js\";import CursorScrollToDown from\"#framer/local/canvasComponent/hCKRWq0Et/hCKRWq0Et.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import SectionCTA from\"#framer/local/canvasComponent/LpjyIZj0_/LpjyIZj0_.js\";import SectionFooter from\"#framer/local/canvasComponent/lS9TvqxVt/lS9TvqxVt.js\";import AnimationCycleText from\"#framer/local/canvasComponent/mNi1MeQBI/mNi1MeQBI.js\";import SectionTestimonial from\"#framer/local/canvasComponent/P3E5FTafd/P3E5FTafd.js\";import BackgroundGrid from\"#framer/local/canvasComponent/pwVXWPq1Q/pwVXWPq1Q.js\";import TopNavigationBar from\"#framer/local/canvasComponent/sltkc74h7/sltkc74h7.js\";import BadgeNormal from\"#framer/local/canvasComponent/sqcnnD9OB/sqcnnD9OB.js\";import FeaturesCarouselHorizontal from\"#framer/local/canvasComponent/vsSgmYyEd/vsSgmYyEd.js\";import FeaturesCarouselVertical from\"#framer/local/canvasComponent/ZKgSHIfat/ZKgSHIfat.js\";import*as sharedStyle9 from\"#framer/local/css/dvxIS3aly/dvxIS3aly.js\";import*as sharedStyle7 from\"#framer/local/css/e8MqUfc3j/e8MqUfc3j.js\";import*as sharedStyle8 from\"#framer/local/css/GiIrC5gDK/GiIrC5gDK.js\";import*as sharedStyle from\"#framer/local/css/InAVlAauN/InAVlAauN.js\";import*as sharedStyle2 from\"#framer/local/css/iWwuCnlxd/iWwuCnlxd.js\";import*as sharedStyle3 from\"#framer/local/css/Jjj2T4gpQ/Jjj2T4gpQ.js\";import*as sharedStyle1 from\"#framer/local/css/oEPT_ciXE/oEPT_ciXE.js\";import*as sharedStyle4 from\"#framer/local/css/pP7JHpqrA/pP7JHpqrA.js\";import*as sharedStyle5 from\"#framer/local/css/x4uNjjtJw/x4uNjjtJw.js\";import*as sharedStyle6 from\"#framer/local/css/ZtqXN38zW/ZtqXN38zW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationBarFonts=getFonts(TopNavigationBar);const BackgroundGridFonts=getFonts(BackgroundGrid);const RichTextWithFX=withFX(RichText);const AnimationCycleTextFonts=getFonts(AnimationCycleText);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const SectionBrandsFonts=getFonts(SectionBrands);const CardImage1Fonts=getFonts(CardImage1);const BadgeNormalFonts=getFonts(BadgeNormal);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const MotionAWithFX=withFX(motion.a);const FeaturesCarouselVerticalFonts=getFonts(FeaturesCarouselVertical);const FeaturesCarouselHorizontalFonts=getFonts(FeaturesCarouselHorizontal);const SectionTestimonialFonts=getFonts(SectionTestimonial);const MotionSectionWithFX=withFX(motion.section);const SectionCTAFonts=getFonts(SectionCTA);const SectionFooterFonts=getFonts(SectionFooter);const CursorScrollToDownFonts=getFonts(CursorScrollToDown);const breakpoints={ilCPgpUK1:\"(min-width: 810px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1920px)\",xf27aOaI0:\"(min-width: 1280px) and (max-width: 1919px)\",xmttBflmi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TPFnQ\";const variantClassNames={ilCPgpUK1:\"framer-v-fr0arj\",WQLkyLRf1:\"framer-v-72rtr7\",xf27aOaI0:\"framer-v-138cown\",xmttBflmi:\"framer-v-1oijrcc\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={bounce:0,delay:.2,duration:1.5,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-40,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-40,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-40,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:-40,y:0};const transition7={damping:80,delay:.7,mass:1,stiffness:500,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:-40,y:0};const transition8={damping:80,delay:1.5,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:40};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition9={damping:80,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition10={bounce:.2,delay:.1,duration:.5,type:\"spring\"};const transition11={bounce:.25,delay:0,duration:.55,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition11};const transition12={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-1920\":\"WQLkyLRf1\",Desktop:\"xf27aOaI0\",Phone:\"xmttBflmi\",Tablet:\"ilCPgpUK1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:CursorScrollToDown,variant:\"zc6TKbYdg\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"wmq2fun3b\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"YA5xGzqWh\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"ddrOPV305\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return false;return true;};const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ilCPgpUK1\",\"xmttBflmi\"].includes(baseVariant))return false;return true;};const ref5=React.useRef(null);const ref6=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ilCPgpUK1\")return true;return false;};const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const elementId3=useRouteElementId(\"xnmcGFzws\");const ref12=React.useRef(null);const elementId4=useRouteElementId(\"en9DPYMYC\");const ref13=React.useRef(null);const elementId5=useRouteElementId(\"WArOxuJ1l\");const ref14=React.useRef(null);const elementId6=useRouteElementId(\"rZeGCyi7T\");const ref15=React.useRef(null);useCustomCursors({zfpbov:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:componentViewport?.width||\"100vw\",y:0},xf27aOaI0:{width:\"1200px\"},xmttBflmi:{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfyqiq-container\",layoutScroll:true,nodeId:\"e6KSY9g1O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{style:{width:\"100%\"},variant:\"QFrDOQu_j\"},xf27aOaI0:{style:{height:\"100%\",width:\"100%\"},variant:\"z6qBkxDQ3\"},xmttBflmi:{style:{height:\"100%\",width:\"100%\"},variant:\"wLpyUMyTT\"}},children:/*#__PURE__*/_jsx(TopNavigationBar,{height:\"100%\",id:\"e6KSY9g1O\",layoutId:\"e6KSY9g1O\",sG2_oXGa2:\"rgba(255, 255, 255, 0.95)\",variant:\"tZO_1MKZj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-116cg1o\",\"data-framer-name\":\"Section - Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:\"810px\",y:(componentViewport?.y||0)+0+0+74.52},xf27aOaI0:{width:\"1600px\"},xmttBflmi:{height:723,width:`calc(${componentViewport?.width||\"100vw\"} + 964px)`,y:(componentViewport?.y||0)+0+0+-113}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:727,width:\"1920px\",y:(componentViewport?.y||0)+0+0+-120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-armwt7-container\",nodeId:\"JVwk7WxCk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundGrid,{height:\"100%\",id:\"JVwk7WxCk\",layoutId:\"JVwk7WxCk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsbns6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc5ix7\",\"data-framer-name\":\"Content left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131nqtm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103zubr\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-xqgfa3\",\"data-styles-preset\":\"InAVlAauN\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(104deg, rgb(61, 128, 217) 0%, rgb(92, 189, 224) 48.6486%, rgb(0, 74, 173) 99.5495%)\"},children:\"SINCE 1980 IN THE MARITIME INDUSTRY\"})})}),className:\"framer-1hhd3uo\",\"data-framer-name\":\"THE #1 TRUCKER TECH PLATFORM\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1viqu0x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Providing Advanced Maritime Services for\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Providing Advanced Maritime Services for\"})})}),className:\"framer-172bfaj\",\"data-framer-name\":\"Improving Safety & Productivity for Carriers\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:\"209px\",y:(componentViewport?.y||0)+0+0+140+0+0+0+0+0+0+0+0+34+0+66},xmttBflmi:{height:43,width:\"255px\",y:(componentViewport?.y||0)+0+0+0+0+100+0+0+0+0+0+0+30+0+66}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"514px\",y:(componentViewport?.y||0)+0+0+0+251+0+0+0+0+0+0+34+0+66,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q6w5wk-container\",\"data-framer-name\":\"Cycle Text\",name:\"Cycle Text\",nodeId:\"f3dlN721x\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{style:{height:\"100%\",width:\"100%\"},variant:\"XdIznsN2o\"}},children:/*#__PURE__*/_jsx(AnimationCycleText,{height:\"100%\",id:\"f3dlN721x\",layoutId:\"f3dlN721x\",name:\"Cycle Text\",style:{width:\"100%\"},variant:\"kxUWZmAt9\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ranging from Paranagu\\xe1, Santos, Itagua\\xed, and Vit\\xf3ria in the south to the Northeastern harbors of Itaqui, Pecem, and beyond.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ranging from Paranagu\\xe1, Santos, Itagua\\xed, and Vit\\xf3ria in the south to the Northeastern harbors of Itaqui, Pecem, and beyond.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"Ranging from Paranagu\\xe1, Santos, Itagua\\xed, and Vit\\xf3ria in the south to the Northeastern harbors of Itaqui, Pecem, and beyond.\"})}),className:\"framer-r6p37f\",\"data-framer-name\":\"To be the technology platform that eliminates inefficiencies in the transportation industry.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gu353a\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+0+140+0+0+0+0+345+0},xmttBflmi:{y:(componentViewport?.y||0)+0+0+0+0+100+0+0+310+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+251+0+0+349+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5qsyv-container\",nodeId:\"BX_F0cvN9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",CJwkcCfE5:resolvedLinks[0],GR68CgLTN:\"GET A QUOTE\",height:\"100%\",id:\"BX_F0cvN9\",layoutId:\"BX_F0cvN9\",LG5CSJpvD:true,ot18wTv79:false,variant:\"Bdl7EED7O\",w5Hgz19ND:10,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+0+140+0+0+0+0+345+0},xmttBflmi:{y:(componentViewport?.y||0)+0+0+0+0+100+0+0+310+0+52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+251+0+0+349+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bp6zr2-container\",nodeId:\"u7VbSM9Kg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"monitor-play\",CJwkcCfE5:\"https://cal.com/seachios\",GR68CgLTN:\"Book a Call\",height:\"100%\",id:\"u7VbSM9Kg\",layoutId:\"u7VbSM9Kg\",LG5CSJpvD:true,ot18wTv79:true,variant:\"crBu0Yadm\",w5Hgz19ND:10,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3fhr0\",\"data-framer-name\":\"Hero - Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-grwn62-container\",\"data-framer-appear-id\":\"grwn62\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NIWJw8mke\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:19,bottomLeftRadius:19,bottomRightRadius:19,controls:false,height:\"100%\",id:\"NIWJw8mke\",isMixedBorderRadius:false,layoutId:\"NIWJw8mke\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/EXuPwhGH5Qh8QRNtu2SPA9vgKAw.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/G7FtIlb65MIyf7bmzrxP0pcv1T0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:19,topRightRadius:19,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+905},xmttBflmi:{y:(componentViewport?.y||0)+0+767}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+750,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da3v62-container\",id:elementId,nodeId:\"wmq2fun3b\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{Ii9PAH3tb:\"0px 0px 20px 0px\"}},children:/*#__PURE__*/_jsx(SectionBrands,{height:\"100%\",id:\"wmq2fun3b\",Ii9PAH3tb:\"60px 60px 60px 60px\",layoutId:\"wmq2fun3b\",style:{width:\"100%\"},variant:\"zgsSv6D90\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tk0q7v\",\"data-framer-name\":\"Section - Quick Entry\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1grgwhp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{__framer__threshold:.5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(18, 24, 31) 0%, rgba(0, 0, 0, 0.3) 100%)\"},children:\"Our Complete Range of Maritime Services\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(18, 24, 31) 0%, rgba(0, 0, 0, 0.3) 100%)\"},children:\"Our Complete Range of Maritime Services\"})})}),className:\"framer-phao5z\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijq5dl\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ddrOPV305\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ddrOPV305\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ddrOPV305\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":ddrOPV305\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1156+60+78.8+0},xmttBflmi:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1200px) - 20px) / 2, 120px)`,y:(componentViewport?.y||0)+0+1018+40+70.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1001+80+106.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vccsvb-container\",nodeId:\"Ty49ZxTRw\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks1[2]},xf27aOaI0:{Zon1CJn4h:resolvedLinks1[1]},xmttBflmi:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(CardImage1,{d8uswh2HO:\"zfpbov\",GG6HritSH:\"Eco-friendly cargo hold, tank, and hull cleaning at top Brazilian ports like Santos and Itaqui. Reliable solutions to keep your vessels compliant and operational.\",height:\"100%\",id:\"Ty49ZxTRw\",layoutId:\"Ty49ZxTRw\",ngMqA34Su:addImageAlt({pixelHeight:3e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/5uEMj8IWok93WBPwibdkcIUMa8.jpg\",srcSet:\"https://framerusercontent.com/images/5uEMj8IWok93WBPwibdkcIUMa8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5uEMj8IWok93WBPwibdkcIUMa8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5uEMj8IWok93WBPwibdkcIUMa8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5uEMj8IWok93WBPwibdkcIUMa8.jpg 4000w\"},\"a cargo hold well-cleaned by seachios marine services in paranagua, santos, vitoria and itaqui\"),riuoDLJSu:\"Vessel Cleaning\",style:{width:\"100%\"},variant:\"pZWUFYJA3\",width:\"100%\",Zon1CJn4h:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xnmcGFzws\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":xnmcGFzws\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":xnmcGFzws\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":xnmcGFzws\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1156+60+78.8+0},xmttBflmi:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1200px) - 20px) / 2, 120px)`,y:(componentViewport?.y||0)+0+1018+40+70.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1001+80+106.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-90faad-container\",nodeId:\"JzpzisP35\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks2[2]},xf27aOaI0:{GG6HritSH:\"Rely on experts for rudder repairs, chain maintenance, and vessel painting for hulls and cargo holds. Precision service to keep your fleet ready to sail.\",Zon1CJn4h:resolvedLinks2[1]},xmttBflmi:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(CardImage1,{d8uswh2HO:\"zfpbov\",GG6HritSH:\"Rely on experts for rudder repairs, anchor and chain maintenance, and vessel painting for hulls and cargo holds. Precision service to keep your fleet ready to sail.\",height:\"100%\",id:\"JzpzisP35\",layoutId:\"JzpzisP35\",ngMqA34Su:addImageAlt({pixelHeight:3e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/GifHi6CZk7qbSTsNIZYL9bhiGhU.jpg\",srcSet:\"https://framerusercontent.com/images/GifHi6CZk7qbSTsNIZYL9bhiGhU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GifHi6CZk7qbSTsNIZYL9bhiGhU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GifHi6CZk7qbSTsNIZYL9bhiGhU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GifHi6CZk7qbSTsNIZYL9bhiGhU.jpg 4000w\"},\"Maintenance of Anchor and chain provided by Seachios in Santos Port\"),riuoDLJSu:\"Ship Maintenance\",style:{width:\"100%\"},variant:\"pZWUFYJA3\",width:\"100%\",Zon1CJn4h:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":en9DPYMYC\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":en9DPYMYC\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":en9DPYMYC\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":en9DPYMYC\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1156+60+78.8+0},xmttBflmi:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1200px) - 20px) / 2, 120px)`,y:(componentViewport?.y||0)+0+1018+40+70.8+0+332}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1001+80+106.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wndxqd-container\",nodeId:\"XZrnZ5HXG\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks3[2]},xf27aOaI0:{Zon1CJn4h:resolvedLinks3[1]},xmttBflmi:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(CardImage1,{d8uswh2HO:\"zfpbov\",GG6HritSH:\"Customized PDAs and efficient port coordination in Brazilian ports like Santos and Paranagu\\xe1. Tailored maritime solutions to simplify your operations today.\",height:\"100%\",id:\"XZrnZ5HXG\",layoutId:\"XZrnZ5HXG\",ngMqA34Su:addImageAlt({pixelHeight:3e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/iWGcydvfjpmtkEMNg9KR7A5wX3Y.jpg\",srcSet:\"https://framerusercontent.com/images/iWGcydvfjpmtkEMNg9KR7A5wX3Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWGcydvfjpmtkEMNg9KR7A5wX3Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWGcydvfjpmtkEMNg9KR7A5wX3Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWGcydvfjpmtkEMNg9KR7A5wX3Y.jpg 4000w\"},\"Bunkering Operation provided by Seachios in the port of Itaqui\"),riuoDLJSu:\"Shipping Agency\",style:{width:\"100%\"},variant:\"pZWUFYJA3\",width:\"100%\",Zon1CJn4h:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":WArOxuJ1l\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WArOxuJ1l\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WArOxuJ1l\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WArOxuJ1l\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1156+60+78.8+0},xmttBflmi:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1200px) - 20px) / 2, 120px)`,y:(componentViewport?.y||0)+0+1018+40+70.8+0+332}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px) / 4, 1px)`,y:(componentViewport?.y||0)+0+1001+80+106.8+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cm2sg5-container\",nodeId:\"mPGR2Kbim\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{ngMqA34Su:addImageAlt({pixelHeight:2650,pixelWidth:2783,positionX:\"50%\",positionY:\"0%\",src:\"https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg\",srcSet:\"https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg 2783w\"},\"Maritime Agent Woman in Brazil Shipping Agency and Ship Chandler\"),variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks4[2]},xf27aOaI0:{Zon1CJn4h:resolvedLinks4[1]},xmttBflmi:{variant:\"w6Zx0XQey\",Zon1CJn4h:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(CardImage1,{d8uswh2HO:\"zfpbov\",GG6HritSH:\"Reliable supply services for vessels at Brazilian ports. From provisions to technical items, we deliver everything you need to keep your operations running smoothly.\",height:\"100%\",id:\"mPGR2Kbim\",layoutId:\"mPGR2Kbim\",ngMqA34Su:addImageAlt({pixelHeight:2650,pixelWidth:2783,positionX:\"49.2%\",positionY:\"10%\",src:\"https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg\",srcSet:\"https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vthhAVV3pJlhpn2re26l6D0tNm4.jpg 2783w\"},\"Maritime Agent Woman in Brazil Shipping Agency and Ship Chandler\"),riuoDLJSu:\"Ship Chandler\",style:{width:\"100%\"},variant:\"pZWUFYJA3\",width:\"100%\",Zon1CJn4h:resolvedLinks4[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-7anwe7\",\"data-framer-name\":\"Section - 1\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kfyi73\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1valzr4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1666.8+60+0+0+0+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+1812.8+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+1579.8+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ofgm52-container\",nodeId:\"COq_E9D4k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"COq_E9D4k\",JDEMNPLZW:\"Vessel Cleaning Services\",layoutId:\"COq_E9D4k\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Experts in Vessel Cleaning: Hold, Tank, Hull & Bilge\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(87deg, rgb(12, 34, 59) 0%, rgba(107, 107, 107, 0.72) 100%)\"},children:\"Experts in Vessel Cleaning: Hold, Tank, Hull & Bilge\"})})}),className:\"framer-18qtt4n\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\"},children:[\"With decades of expertise in maritime maintenance, \",/*#__PURE__*/_jsx(\"strong\",{children:\"Seachios\\xae Marine Services\"}),\" provides hold, tank, hull, and bilge cleaning solutions tailored to meet international standards. Our eco-friendly, MARPOL-compliant methods ensure your vessel operates efficiently, minimizes downtime, and aligns with global sustainability practices.\"]})}),className:\"framer-10ajuxu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nsubrq-container hidden-72rtr7 hidden-138cown hidden-fr0arj\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FT0W1D9gJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"FT0W1D9gJ\",layoutId:\"FT0W1D9gJ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ha134\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9og35a\",\"data-framer-name\":\"Shipment Remove\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><g><defs><linearGradient id=\"idss8875411713_1g-1799510258\" x1=\"0\" x2=\"1\" y1=\"0.2216851726140156\" y2=\"0.7783148273859843\"><stop offset=\"0\" stop-color=\"rgb(99, 255, 125)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 34, 255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.384 0.893 L 6.041 0.893 C 5.006 0.893 4.063 1.489 3.62 2.425 L 1.327 7.264 L 11.384 7.264 Z M 0.893 21.566 L 0.893 9.495 L 24.107 9.495 L 24.107 21.566 C 24.107 22.969 22.969 24.107 21.566 24.107 L 3.434 24.107 C 2.031 24.107 0.893 22.969 0.893 21.566 Z M 23.673 7.263 L 13.616 7.263 L 13.616 0.893 L 18.959 0.893 C 19.994 0.893 20.937 1.489 21.38 2.425 L 23.673 7.264 Z M 8.929 15.573 C 8.312 15.573 7.813 16.073 7.813 16.689 C 7.813 17.306 8.312 17.805 8.929 17.805 L 16.071 17.805 C 16.688 17.805 17.188 17.306 17.188 16.689 C 17.188 16.073 16.688 15.573 16.071 15.573 Z\" fill=\"url(#idss8875411713_1g-1799510258)\"></path></g></svg>',svgContentId:8875411713,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"180,000\"})}),className:\"framer-1tzfkp7\",\"data-framer-name\":\"9M+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Cargo Holds Cleaned\"})}),className:\"framer-taa8lb\",\"data-framer-name\":\"App Downloads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tuqv79\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1991qvo\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qm973k\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"1,000\"})}),className:\"framer-1eiuajt\",\"data-framer-name\":\"1.3M+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customers Worldwide\"})}),className:\"framer-yl81jb\",\"data-framer-name\":\"Active Users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p0d56b\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-155khxb\",\"data-framer-name\":\"Stars\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4pxgqc\",\"data-framer-name\":\"Frame 7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 22\"><g><defs><linearGradient id=\"idss10242984515_1g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 5.34 20.167 L 6.829 13.727 L 1.833 9.396 L 8.434 8.823 L 11 2.75 L 13.567 8.823 L 20.167 9.396 L 15.171 13.727 L 16.661 20.167 L 11 16.752 Z\" fill=\"url(#idss10242984515_1g384246505)\"></path></g><g><defs><linearGradient id=\"idss10242984515_2g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 32.84 20.167 L 34.329 13.727 L 29.333 9.396 L 35.933 8.823 L 38.5 2.75 L 41.067 8.823 L 47.667 9.396 L 42.671 13.727 L 44.16 20.167 L 38.5 16.752 Z\" fill=\"url(#idss10242984515_2g384246505)\"></path></g><g><defs><linearGradient id=\"idss10242984515_3g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 60.34 20.167 L 61.829 13.727 L 56.833 9.396 L 63.433 8.823 L 66 2.75 L 68.567 8.823 L 75.167 9.396 L 70.171 13.727 L 71.66 20.167 L 66 16.752 Z\" fill=\"url(#idss10242984515_3g384246505)\"></path></g><g><defs><linearGradient id=\"idss10242984515_4g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 87.84 20.167 L 89.329 13.727 L 84.334 9.396 L 90.933 8.823 L 93.5 2.75 L 96.067 8.823 L 102.667 9.396 L 97.671 13.727 L 99.161 20.167 L 93.5 16.752 Z\" fill=\"url(#idss10242984515_4g384246505)\"></path></g><g><defs><linearGradient id=\"idss10242984515_5g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 115.34 20.167 L 116.829 13.727 L 111.833 9.396 L 118.433 8.823 L 121 2.75 L 123.567 8.823 L 130.167 9.396 L 125.171 13.727 L 126.66 20.167 L 121 16.752 Z\" fill=\"url(#idss10242984515_5g384246505)\"></path></g></svg>',svgContentId:10242984515,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"5.0 Rating\"})}),className:\"framer-rrqqx6\",\"data-framer-name\":\"4.8 Rating\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rated by 750 customers\"})}),className:\"framer-17rtbdz\",\"data-framer-name\":\"Rated by 80,500 users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nruyda\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p9jwjw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11b759x\",\"data-framer-name\":\"Medical Cross Symbol\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><g><defs><linearGradient id=\"idss10238653254_1g-1393491012\" x1=\"1\" x2=\"0\" y1=\"0.7799973167821193\" y2=\"0.22000268321788075\"><stop offset=\"0\" stop-color=\"rgb(82, 194, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(27,77,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 8.643 0 C 8.209 0 7.857 0.352 7.857 0.786 L 7.857 5.613 L 3.529 3.168 C 3.154 2.956 2.678 3.086 2.462 3.459 L 0.105 7.541 C 0.001 7.723 -0.027 7.939 0.028 8.141 C 0.083 8.343 0.217 8.515 0.399 8.618 L 4.614 11 L 0.399 13.382 C 0.217 13.485 0.083 13.657 0.028 13.859 C -0.027 14.061 0.001 14.277 0.105 14.459 L 2.462 18.541 C 2.678 18.914 3.154 19.044 3.529 18.832 L 7.857 16.387 L 7.857 21.214 C 7.857 21.648 8.209 22 8.643 22 L 13.357 22 C 13.791 22 14.143 21.648 14.143 21.214 L 14.143 16.387 L 18.471 18.832 C 18.846 19.045 19.323 18.915 19.539 18.541 L 21.896 14.459 C 22.001 14.277 22.028 14.061 21.973 13.859 C 21.917 13.657 21.784 13.485 21.601 13.382 L 17.388 11 L 21.601 8.618 C 21.783 8.515 21.917 8.343 21.972 8.141 C 22.027 7.939 21.999 7.723 21.895 7.541 L 19.538 3.459 C 19.322 3.086 18.846 2.956 18.471 3.168 L 14.143 5.613 L 14.143 0.786 C 14.143 0.352 13.791 0 13.357 0 Z\" fill=\"url(#idss10238653254_1g-1393491012)\"></path></g></svg>',svgContentId:10238653254,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Compliance\"})}),className:\"framer-rj32s6\",\"data-framer-name\":\"1 in Every 3\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Poweful Eco-Chemicals\"})}),className:\"framer-u8bp5u\",\"data-framer-name\":\"OTR Driver uses\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jtc17q\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a6l1ir\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lks9pw\",\"data-framer-name\":\"Flash 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><g><defs><linearGradient id=\"idss10364115136_1g-1582938589\" x1=\"0\" x2=\"1\" y1=\"0.2570247282164283\" y2=\"0.7429752717835717\"><stop offset=\"0\" stop-color=\"rgb(0, 209, 160)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 120, 240)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 13.357 0.786 C 13.357 0.453 13.147 0.157 12.834 0.046 C 12.521 -0.065 12.171 0.033 11.962 0.291 L 1.747 12.862 C 1.557 13.097 1.518 13.421 1.648 13.695 C 1.778 13.968 2.054 14.143 2.357 14.143 L 8.643 14.143 L 8.643 21.214 C 8.643 21.547 8.853 21.843 9.166 21.954 C 9.479 22.065 9.829 21.967 10.038 21.709 L 20.253 9.138 C 20.443 8.903 20.482 8.579 20.352 8.305 C 20.222 8.032 19.946 7.857 19.643 7.857 L 13.357 7.857 Z\" fill=\"url(#idss10364115136_1g-1582938589)\"></path></g></svg>',svgContentId:10364115136,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"95%\"})}),className:\"framer-1pql5wt\",\"data-framer-name\":\"55%\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Laycan Time Saved\"})}),className:\"framer-1lwx6lt\",\"data-framer-name\":\"Owner Ops <5 Trucks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15kwqvs hidden-1oijrcc\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y7wb0n\",\"data-framer-name\":\"Metrics\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w1ada\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uahv59\",\"data-framer-name\":\"Shipment Remove\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><g><defs><linearGradient id=\"idss8875411713_1g-1799510258\" x1=\"0\" x2=\"1\" y1=\"0.2216851726140156\" y2=\"0.7783148273859843\"><stop offset=\"0\" stop-color=\"rgb(99, 255, 125)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 34, 255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.384 0.893 L 6.041 0.893 C 5.006 0.893 4.063 1.489 3.62 2.425 L 1.327 7.264 L 11.384 7.264 Z M 0.893 21.566 L 0.893 9.495 L 24.107 9.495 L 24.107 21.566 C 24.107 22.969 22.969 24.107 21.566 24.107 L 3.434 24.107 C 2.031 24.107 0.893 22.969 0.893 21.566 Z M 23.673 7.263 L 13.616 7.263 L 13.616 0.893 L 18.959 0.893 C 19.994 0.893 20.937 1.489 21.38 2.425 L 23.673 7.264 Z M 8.929 15.573 C 8.312 15.573 7.813 16.073 7.813 16.689 C 7.813 17.306 8.312 17.805 8.929 17.805 L 16.071 17.805 C 16.688 17.805 17.188 17.306 17.188 16.689 C 17.188 16.073 16.688 15.573 16.071 15.573 Z\" fill=\"url(#idss8875411713_1g-1799510258)\"></path></g></svg>',svgContentId:8875411713,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"180,000 \"})}),className:\"framer-1c4mitf\",\"data-framer-name\":\"1.3M+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Cargo Holds Cleaned\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",children:\"Cargo Holds Cleaned\"})}),className:\"framer-1r9ynbh\",\"data-framer-name\":\"Active Users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17lkjuu\",\"data-framer-name\":\"Metrics\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlx62j\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"1,000 \"})}),className:\"framer-tvyn56\",\"data-framer-name\":\"1.3M+\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customers Worldwide\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",children:\"Customers Worldwide\"})}),className:\"framer-1bb7sqi\",\"data-framer-name\":\"Active Users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sa4spb\",\"data-framer-name\":\"Metrics\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jup8gt\",\"data-framer-name\":\"Stars\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rhmz65\",\"data-framer-name\":\"Frame 7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 22\"><g><defs><linearGradient id=\"idss12832678361_1g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 5.34 20.167 L 6.829 13.727 L 1.833 9.396 L 8.434 8.823 L 11 2.75 L 13.567 8.823 L 20.167 9.396 L 15.171 13.727 L 16.661 20.167 L 11 16.752 Z\" fill=\"url(#idss12832678361_1g384246505)\"></path></g><g><defs><linearGradient id=\"idss12832678361_2g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 32.84 20.167 L 34.329 13.727 L 29.333 9.396 L 35.933 8.823 L 38.5 2.75 L 41.067 8.823 L 47.667 9.396 L 42.671 13.727 L 44.16 20.167 L 38.5 16.752 Z\" fill=\"url(#idss12832678361_2g384246505)\"></path></g><g><defs><linearGradient id=\"idss12832678361_3g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 60.34 20.167 L 61.829 13.727 L 56.833 9.396 L 63.433 8.823 L 66 2.75 L 68.567 8.823 L 75.167 9.396 L 70.171 13.727 L 71.66 20.167 L 66 16.752 Z\" fill=\"url(#idss12832678361_3g384246505)\"></path></g><g><defs><linearGradient id=\"idss12832678361_4g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 87.84 20.167 L 89.329 13.727 L 84.334 9.396 L 90.933 8.823 L 93.5 2.75 L 96.067 8.823 L 102.667 9.396 L 97.671 13.727 L 99.161 20.167 L 93.5 16.752 Z\" fill=\"url(#idss12832678361_4g384246505)\"></path></g><g><defs><linearGradient id=\"idss12832678361_5g384246505\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0, 125, 250)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(209, 255, 224)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 115.34 20.167 L 116.829 13.727 L 111.833 9.396 L 118.433 8.823 L 121 2.75 L 123.567 8.823 L 130.167 9.396 L 125.171 13.727 L 126.66 20.167 L 121 16.752 Z\" fill=\"url(#idss12832678361_5g384246505)\"></path></g></svg>',svgContentId:12832678361,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"5.0 Rating\"})}),className:\"framer-101gl0d\",\"data-framer-name\":\"4.8 Rating\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rated by 750 customers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",children:\"Rated by 750 customers\"})}),className:\"framer-a6597f\",\"data-framer-name\":\"Rated by 80,500 users\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-myta3u\",\"data-framer-name\":\"Metrics\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bo2tr1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1719jtu\",\"data-framer-name\":\"Medical Cross Symbol\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><g><defs><linearGradient id=\"idss10238653254_1g-1393491012\" x1=\"1\" x2=\"0\" y1=\"0.7799973167821193\" y2=\"0.22000268321788075\"><stop offset=\"0\" stop-color=\"rgb(82, 194, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(27,77,255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 8.643 0 C 8.209 0 7.857 0.352 7.857 0.786 L 7.857 5.613 L 3.529 3.168 C 3.154 2.956 2.678 3.086 2.462 3.459 L 0.105 7.541 C 0.001 7.723 -0.027 7.939 0.028 8.141 C 0.083 8.343 0.217 8.515 0.399 8.618 L 4.614 11 L 0.399 13.382 C 0.217 13.485 0.083 13.657 0.028 13.859 C -0.027 14.061 0.001 14.277 0.105 14.459 L 2.462 18.541 C 2.678 18.914 3.154 19.044 3.529 18.832 L 7.857 16.387 L 7.857 21.214 C 7.857 21.648 8.209 22 8.643 22 L 13.357 22 C 13.791 22 14.143 21.648 14.143 21.214 L 14.143 16.387 L 18.471 18.832 C 18.846 19.045 19.323 18.915 19.539 18.541 L 21.896 14.459 C 22.001 14.277 22.028 14.061 21.973 13.859 C 21.917 13.657 21.784 13.485 21.601 13.382 L 17.388 11 L 21.601 8.618 C 21.783 8.515 21.917 8.343 21.972 8.141 C 22.027 7.939 21.999 7.723 21.895 7.541 L 19.538 3.459 C 19.322 3.086 18.846 2.956 18.471 3.168 L 14.143 5.613 L 14.143 0.786 C 14.143 0.352 13.791 0 13.357 0 Z\" fill=\"url(#idss10238653254_1g-1393491012)\"></path></g></svg>',svgContentId:10238653254,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Compliance\"})}),className:\"framer-1l75y8v\",\"data-framer-name\":\"1 in Every 3\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Poweful Eco-Chemicals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",children:\"Poweful Eco-Chemicals\"})}),className:\"framer-3psu1h\",\"data-framer-name\":\"OTR Driver uses\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ev9cpu\",\"data-framer-name\":\"Metrics\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jhaipa\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mj273g\",\"data-framer-name\":\"Flash 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><g><defs><linearGradient id=\"idss10364115136_1g-1582938589\" x1=\"0\" x2=\"1\" y1=\"0.2570247282164283\" y2=\"0.7429752717835717\"><stop offset=\"0\" stop-color=\"rgb(0, 209, 160)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 120, 240)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 13.357 0.786 C 13.357 0.453 13.147 0.157 12.834 0.046 C 12.521 -0.065 12.171 0.033 11.962 0.291 L 1.747 12.862 C 1.557 13.097 1.518 13.421 1.648 13.695 C 1.778 13.968 2.054 14.143 2.357 14.143 L 8.643 14.143 L 8.643 21.214 C 8.643 21.547 8.853 21.843 9.166 21.954 C 9.479 22.065 9.829 21.967 10.038 21.709 L 20.253 9.138 C 20.443 8.903 20.482 8.579 20.352 8.305 C 20.222 8.032 19.946 7.857 19.643 7.857 L 13.357 7.857 Z\" fill=\"url(#idss10364115136_1g-1582938589)\"></path></g></svg>',svgContentId:10364115136,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"95%\"})}),className:\"framer-1bjypux\",\"data-framer-name\":\"95%\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Laycan Time Saved\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",children:\"Laycan Time Saved\"})}),className:\"framer-14slsay\",\"data-framer-name\":\"Owner Ops <5 Trucks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdp4mu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lgetgm\",\"data-framer-name\":\"Img Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dacvz\",\"data-framer-name\":\"Bg - circle\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Seachios Marine Services Hold Talk Hull and Bilge Cleaning Services in Brazil\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1666.8+60+446.8+137+43.0889+322-320),pixelHeight:2025,pixelWidth:1620,sizes:\"254px\",src:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png\",srcSet:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png?scale-down-to=1024 819w,https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png 1620w\"},transformTemplate:transformTemplate2},xmttBflmi:{background:{alt:\"Seachios Marine Services Hold Talk Hull and Bilge Cleaning Services in Brazil\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1812.8+40+347.8+0+0+23+-34.5),pixelHeight:2025,pixelWidth:1620,sizes:\"284.2399px\",src:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png\",srcSet:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png?scale-down-to=1024 819w,https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png 1620w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.81,background:{alt:\"Seachios Marine Services Hold Talk Hull and Bilge Cleaning Services in Brazil\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1579.8+80+403.6+118+17+0),pixelHeight:2025,pixelWidth:1620,sizes:\"418px\",src:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png\",srcSet:\"https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png?scale-down-to=1024 819w,https://framerusercontent.com/images/ETJyfwicPVqeLWeJ2gyJTzjXN00.png 1620w\"},className:\"framer-1e4fxlv\",\"data-framer-name\":\"Employee Seachios\",style:{transformPerspective:1200}})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwno2o\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KA5g7OdVh\"},motionChild:true,nodeId:\"PVImiAocw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hyu3gm framer-lux5qc\",\"data-framer-name\":\"_Feature text\",id:\"1hyu3gm\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref4,style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h1u1yn\",\"data-framer-name\":\"Featured icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qc9tj4\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1245\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b25bni\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1244\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p2hwwp\",\"data-framer-name\":\"Hold Cleaning Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><g><defs><linearGradient id=\"idss10614687193_1g1000376891\" x1=\"0\" x2=\"1\" y1=\"0.2216851726140156\" y2=\"0.7783148273859843\"><stop offset=\"0\" stop-color=\"rgb(0, 140, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,208,120)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.571 1.143 L 7.733 1.143 C 6.407 1.143 5.2 1.906 4.633 3.104 L 1.698 9.298 L 14.571 9.298 Z M 1.143 27.605 L 1.143 12.153 L 30.857 12.153 L 30.857 27.605 C 30.857 29.401 29.401 30.857 27.605 30.857 L 4.395 30.857 C 2.599 30.857 1.143 29.401 1.143 27.605 Z M 30.302 9.296 L 17.429 9.296 L 17.429 1.143 L 24.267 1.143 C 25.593 1.143 26.8 1.906 27.367 3.104 L 30.302 9.298 Z M 11.429 19.934 C 10.64 19.934 10 20.573 10 21.362 C 10 22.151 10.64 22.791 11.429 22.791 L 20.571 22.791 C 21.36 22.791 22 22.151 22 21.362 C 22 20.573 21.36 19.934 20.571 19.934 Z\" fill=\"url(#idss10614687193_1g1000376891)\"></path></g></svg>',svgContentId:10614687193,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sec25p\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Hold Cleaning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Hold Cleaning\"})}),className:\"framer-1ayyl0d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Efficient removal of cargo residues, ensuring compliance with MARPOL Annex V and preparing holds for the next load.\"})}),className:\"framer-1sh0eu9\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1hyu3gm\",offsetX:-476.4999684691429,offsetY:-155.4217407637043,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation17,className:\"framer-pmrygt hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,exit:animation16,initial:animation18,ref:ref5,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy62pq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(61, 61, 61) 0%, rgba(68, 89, 128, 0.78) 100%)\"},children:\"Cargo Hold Cleaning\"})})}),className:\"framer-merxg4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our Detailed Procedures for Cargo Hold Cleaning:\"})}),/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Our Residue Removal Process:\"}),\" We start with thorough sweeping to eliminate stubborn cargo residues, ensuring a clean foundation.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Seawater Washing:\"}),\" Our team uses seawater to remove minor residues effectively and prepare the surface for deeper cleaning.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Eco-Friendly Solutions:\"}),\" We apply environmentally safe cleaning agents, aligning with sustainability practices.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"High-Pressure Cleaning:\"}),\" Using advanced 500\u2013600 bar systems, we deliver powerful and precise washing.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Freshwater Rinsing:\"}),\" We complete the process with a final freshwater rinse, leaving the hold dust-free and polished.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pre-Inspection:\"}),\" Our experts conduct rigorous checks to ensure no cleaning gaps are left behind.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Ready for the Next Load:\"}),\" We provide final approval, ensuring the vessel is fully prepared for efficient loading operations.\"]})})]})]}),className:\"framer-zua99v\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zDrcGfIPf\"},motionChild:true,nodeId:\"AzvXzy9Yf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lub3vj framer-lux5qc\",\"data-framer-name\":\"_Feature text\",id:\"1lub3vj\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref6,style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10otuig\",\"data-framer-name\":\"Featured icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v32c1b\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1245\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19zpim8\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1244\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0cvuy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t3nz42\",\"data-framer-name\":\"Tank Cleaning Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><g><defs><linearGradient id=\"idss9989165861_1g-361228372\" x1=\"0\" x2=\"1\" y1=\"0.2216851726140156\" y2=\"0.7783148273859843\"><stop offset=\"0\" stop-color=\"rgb(0, 157, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 255, 217)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 11.429 3.429 C 11.429 2.166 12.452 1.143 13.714 1.143 C 14.977 1.143 16 2.166 16 3.429 C 16 4.691 14.977 5.714 13.714 5.714 C 12.452 5.714 11.429 4.691 11.429 3.429 Z M 18.286 11.429 C 18.286 8.904 20.332 6.857 22.857 6.857 C 25.382 6.857 27.429 8.904 27.429 11.429 C 27.429 13.953 25.382 16 22.857 16 C 20.332 16 18.286 13.953 18.286 11.429 Z M 28.571 22.857 C 27.309 22.857 26.286 23.88 26.286 25.143 C 26.286 26.405 27.309 27.429 28.571 27.429 C 29.834 27.429 30.857 26.405 30.857 25.143 C 30.857 23.88 29.834 22.857 28.571 22.857 Z M 1.849 1.23 C 2.276 1.052 2.768 1.15 3.095 1.477 L 7.666 6.048 C 7.841 6.223 7.954 6.45 7.989 6.695 L 9.067 14.247 L 20.142 23.109 C 20.352 23.276 20.496 23.513 20.549 23.776 L 21.691 29.49 C 21.759 29.826 21.672 30.174 21.455 30.439 C 21.238 30.703 20.914 30.857 20.571 30.857 L 2.286 30.857 C 1.655 30.857 1.143 30.345 1.143 29.714 L 1.143 2.286 C 1.143 1.823 1.422 1.406 1.849 1.23 Z\" fill=\"url(#idss9989165861_1g-361228372)\"></path></g></svg>',svgContentId:9989165861,withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yf7d4l hidden-72rtr7 hidden-138cown hidden-1oijrcc\",\"data-framer-name\":\"Tank Cleaning Icon\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 14 14\" height=\"32\" width=\"32\"><path fill=\"url(#a)\" fill-rule=\"evenodd\" d=\"M5 1.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0ZM8 5a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm4.5 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM.809.538a.5.5 0 0 1 .545.108l2 2a.5.5 0 0 1 .141.283l.472 3.304 4.845 3.877a.5.5 0 0 1 .178.292l.5 2.5A.5.5 0 0 1 9 13.5H1a.5.5 0 0 1-.5-.5V1A.5.5 0 0 1 .809.538Z\" clip-rule=\"evenodd\"/><defs><linearGradient id=\"a\" x1=\"2.625\" x2=\"13.125\" y1=\"3\" y2=\"8.818\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#ffd600\"/><stop offset=\"1\" stop-color=\"#00d078\"/></linearGradient></defs></svg>',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0wrhs\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Tank Cleaning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Tank Cleaning\"})}),className:\"framer-1129337\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Thorough cleaning of ballast, fuel, and cargo tanks to enhance safety, performance, and regulatory compliance.\"})}),className:\"framer-37g5tr\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1lub3vj\",offsetX:-476.4999684691429,offsetY:-155.4217407637043,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation17,className:\"framer-1h5siqn hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,exit:animation16,initial:animation18,ref:ref7,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ccw93\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(61, 61, 61) 0%, rgba(68, 89, 128, 0.78) 100%)\"},children:\"Tank Cleaning\"})})}),className:\"framer-8oszu6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our Detailed Procedures for Tank Cleaning:\"})}),/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Initial Assessment:\"}),\" We begin by inspecting the tank to identify cleaning requirements and ensure all safety measures are in place.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Residue Removal:\"}),\" Our team removes heavy sludge, sediment, or residues using advanced mechanical tools.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Eco-Friendly Chemical Application:\"}),\" We apply biodegradable cleaning agents to dissolve stubborn contaminants, prioritizing environmental compliance.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"High-Pressure Washing:\"}),\" Utilizing state-of-the-art 500\u2013600 bar high-pressure systems, we thoroughly clean the tank's interior surfaces.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Freshwater Flushing:\"}),\" A meticulous rinse with freshwater ensures all residues and cleaning agents are eliminated.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Inspection and Drying:\"}),\" Our experts conduct a detailed inspection, followed by drying processes to prepare the tank for immediate use.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Certification and Readiness:\"}),\" Once cleaned, we provide certification, ensuring your tank meets regulatory standards and is ready for its next operation.\"]})})]})]}),className:\"framer-jwsoy2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hmrb54\",\"data-framer-name\":\"_Feature text\",id:\"hmrb54\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref8,style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slx1al\",\"data-framer-name\":\"Featured icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3998ji\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1245\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1yrih\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1244\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0t76z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cnzlkd\",\"data-framer-name\":\"Hull Cleaning Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><g><defs><linearGradient id=\"idss11431867532_1g-337964209\" x1=\"0.9770822915783739\" x2=\"0.02291770842162616\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(0, 255, 217)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(140, 0, 255)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.973 15.376 C 28.79 16.339 30.233 16.456 31.195 15.639 C 32.158 14.821 32.276 13.379 31.458 12.416 L 26.603 6.702 L 26.603 6.697 C 25.811 5.766 24.666 5.207 23.445 5.154 C 22.221 5.103 21.033 5.566 20.167 6.432 L 20.155 6.443 L 16.064 10.581 L 11.97 6.443 L 11.957 6.432 C 11.09 5.569 9.903 5.106 8.681 5.154 C 7.465 5.205 6.324 5.76 5.534 6.686 L 0.56 12.395 C 0.002 13.008 -0.18 13.875 0.083 14.661 C 0.346 15.446 1.014 16.028 1.829 16.181 C 2.643 16.334 3.477 16.033 4.007 15.397 L 8.871 9.813 L 12.933 13.918 L 12.937 13.922 C 13.761 14.76 14.887 15.232 16.062 15.234 C 17.238 15.235 18.365 14.762 19.189 13.922 L 23.253 9.815 Z M 27.973 26.041 C 28.789 27.004 30.232 27.122 31.194 26.305 C 32.157 25.488 32.275 24.046 31.458 23.083 L 26.603 17.367 L 26.603 17.365 C 25.811 16.434 24.666 15.875 23.445 15.822 C 22.221 15.77 21.033 16.234 20.167 17.099 L 20.155 17.111 L 16.064 21.248 L 11.97 17.111 L 11.957 17.099 C 11.09 16.236 9.903 15.773 8.681 15.822 C 7.465 15.872 6.324 16.427 5.534 17.353 L 0.56 23.061 C -0.269 24.012 -0.17 25.456 0.782 26.286 C 1.734 27.115 3.177 27.016 4.007 26.064 L 8.871 20.48 L 12.933 24.585 L 12.937 24.59 C 14.197 25.866 16.106 26.249 17.76 25.557 C 18.295 25.332 18.781 25.003 19.189 24.59 L 23.253 20.48 Z\" fill=\"url(#idss11431867532_1g-337964209)\"></path></g></svg>',svgContentId:11431867532,withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sidtj\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Hull Cleaning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Hull Cleaning\"})}),className:\"framer-1qsd7yl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Advanced techniques to remove biofouling, reduce drag, and improve fuel efficiency, minimizing operational costs.\"})}),className:\"framer-no2i87\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref8,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"hmrb54\",offsetX:-483.4999565258622,offsetY:-311.4217299231095,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation17,className:\"framer-fxfui4 hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,exit:animation16,initial:animation18,ref:ref9,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qksolb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(61, 61, 61) 0%, rgba(68, 89, 128, 0.78) 100%)\"},children:\"Underwater Hull Cleaning\"})})}),className:\"framer-1or5gz9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our Specialized Approach to Underwater Hull Cleaning:\"})}),/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Initial Survey and Assessment:\"}),\" We conduct a detailed underwater inspection using advanced diving and scanning equipment to assess fouling and structural integrity.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Biofouling Removal:\"}),\" Our certified divers utilize eco-friendly methods and tools to clear marine growth, barnacles, and algae without harming the underwater ecosystem.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Advanced High-Pressure Cleaning:\"}),\" High-powered underwater jets (up to 350 bar) are employed to efficiently clean the hull while minimizing environmental impact.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Propeller Polishing:\"}),\" We ensure the propeller is free of biofouling and polished to enhance propulsion efficiency.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Anode Inspection and Replacement:\"}),\" Our team examines sacrificial anodes for wear and replaces them as necessary to protect the hull from corrosion.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Surface Integrity Check:\"}),\" After cleaning, we perform a thorough underwater inspection to ensure the hull\u2019s surface is clear of fouling and structurally sound.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Compliance Documentation:\"}),\" A detailed cleaning and inspection report is provided, ensuring adherence to regulatory standards, including IMO biofouling guidelines.\"]})})]})]}),className:\"framer-16zi19t\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})})]})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cqxua0\",\"data-framer-name\":\"_Feature text\",id:\"1cqxua0\",onMouseEnter:onMouseEntertxyyif({overlay:overlay3}),ref:ref10,style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13t42vm\",\"data-framer-name\":\"Featured icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-95lcym\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1245\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5m2l6s\",\"data-border\":true,\"data-framer-name\":\"Ellipse 1244\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iyknfw\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Bilge Cleaning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Bilge Cleaning\"})}),className:\"framer-1yre1r9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Specialized cleaning to remove accumulated oil, sludge, and debris from bilge systems, ensuring compliance with MARPOL Annex I and preventing environmental contamination.\"})}),className:\"framer-18kd04d\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p9dsuq\",\"data-framer-name\":\"Bilge Cleaning Icon\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 14 14\" height=\"32\" width=\"32\"><path fill=\"url(#a)\" fill-rule=\"evenodd\" d=\"M3.5 0A2.5 2.5 0 0 0 1 2.5v4.838a3.5 3.5 0 0 0 2.393 3.32L4 10.86V11a1.5 1.5 0 0 0 1.5 1.5h.75v.75a.75.75 0 0 0 1.5 0v-.75h.75A1.5 1.5 0 0 0 10 11v-.14l.607-.202A3.5 3.5 0 0 0 13 7.338V2.5A2.5 2.5 0 0 0 10.5 0h-7Zm3.703 2.51L7 2.657l-.203-.145a.25.25 0 0 1 .406 0ZM7 2.657l-.203-.145-.002.002-.004.006-.018.024a15.808 15.808 0 0 0-.293.427c-.19.282-.442.67-.695 1.094a13.12 13.12 0 0 0-.7 1.319c-.19.423-.335.85-.335 1.189 0 .616.235 1.208.655 1.647A2.21 2.21 0 0 0 7 8.906c.6 0 1.174-.248 1.595-.687a2.38 2.38 0 0 0 .655-1.647c0-.339-.145-.766-.334-1.19a13.12 13.12 0 0 0-.701-1.318 24.622 24.622 0 0 0-.988-1.52l-.018-.025-.004-.006-.001-.002L7 2.656Z\" clip-rule=\"evenodd\"/><defs><linearGradient id=\"a\" x1=\"1.461\" x2=\"16.073\" y1=\"1.131\" y2=\"8.19\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#00d078\"/><stop offset=\"1\" stop-color=\"#007df0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref10,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1cqxua0\",offsetX:-465.499962201342,offsetY:-404.42193980759475,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation17,className:\"framer-1pg4ebw hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,exit:animation16,initial:animation18,ref:ref11,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3n2i1q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(61, 61, 61) 0%, rgba(68, 89, 128, 0.78) 100%)\"},children:\"Bilge Systems Cleaning\"})})}),className:\"framer-1j06dot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our Bilge Cleaning Process\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Inspection & Planning:\"}),\" We assess the bilge system for oil, sludge, and debris, tailoring our approach to meet regulatory standards.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Oil & Sludge Removal:\"}),\" Advanced systems safely extract contaminants, minimizing environmental impact.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Eco-Friendly Cleaning:\"}),\" Biodegradable agents ensure deep cleaning while protecting marine ecosystems.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"High-Pressure Flushing:\"}),\" Powerful systems clean all components thoroughly, including pipelines and tanks.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Freshwater Rinse:\"}),\" A final rinse removes residues, leaving the system clean and operational.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Odor Elimination:\"}),\" Specialized treatments neutralize odors, enhancing onboard hygiene.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(71, 71, 71)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Final Check:\"}),\" We ensure full compliance with MARPOL Annex I before certifying the bilge system.\"]})})]})]}),className:\"framer-1mxylm3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})})]})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1buoq70\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1666.8+60+1170.8+0},xmttBflmi:{y:(componentViewport?.y||0)+0+1812.8+40+1757.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1579.8+80+1211.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4pf7zq-container\",nodeId:\"JihHnURze\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks5[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks5[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",CJwkcCfE5:resolvedLinks5[0],GR68CgLTN:\"Get a Quote Today\",height:\"100%\",id:\"JihHnURze\",layoutId:\"JihHnURze\",LG5CSJpvD:false,ot18wTv79:false,variant:\"Bdl7EED7O\",w5Hgz19ND:10,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1666.8+60+1170.8+0},xmttBflmi:{y:(componentViewport?.y||0)+0+1812.8+40+1757.8+0+52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1579.8+80+1211.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-183kho0-container\",nodeId:\"Qto4HmalE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks6[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks6[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",CJwkcCfE5:resolvedLinks6[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"Qto4HmalE\",layoutId:\"Qto4HmalE\",LG5CSJpvD:false,ot18wTv79:false,variant:\"crBu0Yadm\",w5Hgz19ND:10,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-w4g0gw\",\"data-framer-name\":\"Section - 2\",id:elementId3,ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mf6fd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a6jfdp\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2997.6+60+0+0+0+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+3742.6+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+2991.4+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ym354g-container\",nodeId:\"vMMzQK8VB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"vMMzQK8VB\",JDEMNPLZW:\"Ship Maintenance Services\",layoutId:\"vMMzQK8VB\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Comprehensive Ship Maintenance Solutions\"})}),className:\"framer-5b9g48\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zjizc\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Zl7VDmMih\"},motionChild:true,nodeId:\"SeXYAPXH6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i1n9cv framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card - Style 2\",style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uzwycl\",\"data-framer-name\":\"Img Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1huzhgv\",\"data-framer-name\":\"bg - circle\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16orfho\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:350,intrinsicWidth:350,svg:'<svg width=\"350\" height=\"350\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"175\" cy=\"175\" r=\"174.5\" fill=\"url(#a)\" stroke=\"url(#b)\"/><defs><linearGradient id=\"a\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\" stop-opacity=\".37\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\".56\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"anchor and chain maintenance service brazil\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2997.6+60+0+0+146.8+2+0+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png\",srcSet:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png 750w\"}},xmttBflmi:{background:{alt:\"anchor and chain maintenance service brazil\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3742.6+48+0+0+122.8+2+0+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png\",srcSet:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"anchor and chain maintenance service brazil\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2991.4+80+0+0+146.8+0+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png\",srcSet:\"https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SoWqV1eJfQM3rm6VqyWZPkaU0I.png 750w\"},className:\"framer-1pjpky5\",\"data-framer-name\":\"anchor-maintenance image\",transformTemplate:transformTemplate2})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w64xy7\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Precision Repairs & Maintenance\"})}),className:\"framer-1b9b5lo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Expert rudder repairs, anchor servicing, and chain calibrations tailored for maritime excellence. Ensure your fleet remains seaworthy with services that enhance operational reliability and safety.\"})}),className:\"framer-19pzxqf\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wpbein\",\"data-border\":true,\"data-framer-name\":\"Card - Style 2\",style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdpk9c\",\"data-framer-name\":\"Img Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkx1lf\",\"data-framer-name\":\"bg - circle\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-104893b\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:350,intrinsicWidth:350,svg:'<svg width=\"350\" height=\"350\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"175\" cy=\"175\" r=\"174.5\" fill=\"url(#a)\" stroke=\"url(#b)\"/><defs><linearGradient id=\"a\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\" stop-opacity=\".37\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\".56\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Marine Painting Services in Brazil Hull Deck and Cargo Holds Painting\",fit:\"fit\",intrinsicHeight:268.5,intrinsicWidth:420.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2997.6+60+0+0+146.8+2+446+12+0+0+7),pixelHeight:750,pixelWidth:750,positionX:\"center\",positionY:\"center\",sizes:\"206px\",src:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png 750w\"}},xmttBflmi:{background:{alt:\"Marine Painting Services in Brazil Hull Deck and Cargo Holds Painting\",fit:\"fit\",intrinsicHeight:268.5,intrinsicWidth:420.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3742.6+48+0+0+122.8+2+446+12+0+0+7),pixelHeight:750,pixelWidth:750,positionX:\"center\",positionY:\"center\",sizes:\"206px\",src:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Marine Painting Services in Brazil Hull Deck and Cargo Holds Painting\",fit:\"fit\",intrinsicHeight:268.5,intrinsicWidth:420.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2991.4+80+0+0+146.8+0+12+0+0+7),pixelHeight:750,pixelWidth:750,positionX:\"center\",positionY:\"center\",sizes:\"206px\",src:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sb373Otx40Iku7coV4KH6VkVB8.png 750w\"},className:\"framer-gz52no\",\"data-framer-name\":\"image\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kwep6g\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Advanced Hull & Hold Protection\"})}),className:\"framer-1i6l03h\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Premium painting solutions for hulls and cargo holds, designed to combat corrosion, improve hydrodynamics, and maximize vessel efficiency. A proven safeguard for long-term performance.\"})}),className:\"framer-ntdw6c\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2mos0p\",\"data-border\":true,\"data-framer-name\":\"Card - Style 2\",style:{transformPerspective:1200},whileHover:animation15,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-149qgkm\",\"data-framer-name\":\"Img Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3ihnl\",\"data-framer-name\":\"bg - circle\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7fdqm9\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:350,intrinsicWidth:350,svg:'<svg width=\"350\" height=\"350\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"175\" cy=\"175\" r=\"174.5\" fill=\"url(#a)\" stroke=\"url(#b)\"/><defs><linearGradient id=\"a\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\" stop-opacity=\".37\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"175\" y1=\"0\" x2=\"175\" y2=\"350\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\".56\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Quick Maritime Solutions and Laycan Reduced\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2997.6+60+0+0+146.8+2+892+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png\",srcSet:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png 750w\"}},xmttBflmi:{background:{alt:\"Quick Maritime Solutions and Laycan Reduced\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3742.6+48+0+0+122.8+2+892+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png\",srcSet:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Quick Maritime Solutions and Laycan Reduced\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2991.4+80+0+0+146.8+0+12+0+0+11),pixelHeight:750,pixelWidth:750,sizes:\"200px\",src:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png\",srcSet:\"https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QT0iqVDM31DM9hlqhEmjwm9nMQ.png 750w\"},className:\"framer-1p78fwv\",\"data-framer-name\":\"rapid-solutions-turnaround\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0gjn6\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rapid Turnaround Solutions\"})}),className:\"framer-2o9w4f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Swift and efficient maintenance services that minimize downtime and optimize laycan time. Keep your vessels operational with solutions aligned to international compliance standards.\"})}),className:\"framer-1nzo6fg\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-417n0o\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2997.6+60+0+0+1528.8+0},xmttBflmi:{y:(componentViewport?.y||0)+0+3742.6+48+0+0+1483.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+2991.4+80+0+0+628.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ouu7o7-container\",nodeId:\"q4F1Vxfrd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks7[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks7[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",CJwkcCfE5:resolvedLinks7[0],GR68CgLTN:\"Schedule Ship Repair\",height:\"100%\",id:\"q4F1Vxfrd\",layoutId:\"q4F1Vxfrd\",LG5CSJpvD:true,ot18wTv79:false,variant:\"Bdl7EED7O\",w5Hgz19ND:10,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2997.6+60+0+0+1528.8+0},xmttBflmi:{y:(componentViewport?.y||0)+0+3742.6+48+0+0+1483.8+0+52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+2991.4+80+0+0+628.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tjfrrg-container\",nodeId:\"oLuLcHqKP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks8[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks8[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",CJwkcCfE5:resolvedLinks8[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"oLuLcHqKP\",layoutId:\"oLuLcHqKP\",LG5CSJpvD:false,ot18wTv79:false,variant:\"crBu0Yadm\",w5Hgz19ND:10,width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1hww0bp\",\"data-framer-name\":\"Section - 3\",id:elementId4,ref:ref13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+4686.4+60+0},xf27aOaI0:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1200px)`},xmttBflmi:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,y:(componentViewport?.y||0)+0+5414.4+48+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+3820.2+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-urrb9s-container\",nodeId:\"XwUqknA13\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"hk5gWssrr\"},xmttBflmi:{variant:\"hk5gWssrr\"}},children:/*#__PURE__*/_jsx(FeaturesCarouselVertical,{height:\"100%\",id:\"XwUqknA13\",layoutId:\"XwUqknA13\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"uUVBHPnqM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-189f56c\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+4686.4+60+640+0},xmttBflmi:{y:(componentViewport?.y||0)+0+5414.4+48+632+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3820.2+80+640+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rm4k2w-container\",nodeId:\"in9nYZtBF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks9[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks9[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks9[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",CJwkcCfE5:resolvedLinks9[0],GR68CgLTN:\"Request a Free PDA\",height:\"100%\",id:\"in9nYZtBF\",layoutId:\"in9nYZtBF\",LG5CSJpvD:true,ot18wTv79:false,variant:\"Bdl7EED7O\",w5Hgz19ND:10,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+4686.4+60+640+0},xmttBflmi:{y:(componentViewport?.y||0)+0+5414.4+48+632+0+54}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3820.2+80+640+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-37fqa9-container\",nodeId:\"vSJgvnL4f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks10[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks10[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks10[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",CJwkcCfE5:resolvedLinks10[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"vSJgvnL4f\",layoutId:\"vSJgvnL4f\",LG5CSJpvD:false,ot18wTv79:false,variant:\"crBu0Yadm\",w5Hgz19ND:10,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wnyeqe\",\"data-framer-name\":\"Section - 4\",id:elementId5,ref:ref14,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+5486.4+60+0},xf27aOaI0:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1200px)`},xmttBflmi:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1200px)`,y:(componentViewport?.y||0)+0+6238.4+48+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1036,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+4660.2+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7gf32t-container\",nodeId:\"NGnLLHN8D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"q2odItEgo\"},xmttBflmi:{variant:\"q2odItEgo\"}},children:/*#__PURE__*/_jsx(FeaturesCarouselHorizontal,{height:\"100%\",id:\"NGnLLHN8D\",layoutId:\"NGnLLHN8D\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"xr8QZOV2D\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ryks2b\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+5486.4+60+1036+0},xmttBflmi:{y:(componentViewport?.y||0)+0+6238.4+48+1060+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+4660.2+80+1036+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m5ywv1-container\",nodeId:\"a0WXEHNkS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks11[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks11[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks11[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",CJwkcCfE5:resolvedLinks11[0],GR68CgLTN:\"Request Ship Chandler Pricelist\",height:\"100%\",id:\"a0WXEHNkS\",layoutId:\"a0WXEHNkS\",LG5CSJpvD:true,ot18wTv79:false,variant:\"Bdl7EED7O\",w5Hgz19ND:10,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined},{href:{webPageId:\"zDrcGfIPf\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+5486.4+60+1036+0},xmttBflmi:{y:(componentViewport?.y||0)+0+6238.4+48+1060+0+52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+4660.2+80+1036+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ito6w7-container\",nodeId:\"Smm7I8rYE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks12[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks12[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks12[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",CJwkcCfE5:resolvedLinks12[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"Smm7I8rYE\",layoutId:\"Smm7I8rYE\",LG5CSJpvD:false,ot18wTv79:false,variant:\"crBu0Yadm\",w5Hgz19ND:10,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q1lkmj\",\"data-framer-name\":\"Section - Testimonial\",id:elementId6,ref:ref15,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+6682.4+60},xf27aOaI0:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1140px)`},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+7486.4+36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:\"1200px\",y:(componentViewport?.y||0)+0+5896.2+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xnose-container\",nodeId:\"l21w2CiEX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"nJlHUs7xg\"},xf27aOaI0:{style:{maxWidth:\"100%\",width:\"100%\"}},xmttBflmi:{variant:\"K86WsLxJN\"}},children:/*#__PURE__*/_jsx(SectionTestimonial,{height:\"100%\",id:\"l21w2CiEX\",layoutId:\"l21w2CiEX\",style:{width:\"100%\"},variant:\"F_luJusdr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+7346.4},xmttBflmi:{y:(componentViewport?.y||0)+0+8114.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6680.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a1v6xh-container\",nodeId:\"HuFDIhcTV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"bxCCCX6Qn\"},xmttBflmi:{variant:\"b5pZoR74d\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"HuFDIhcTV\",layoutId:\"HuFDIhcTV\",style:{width:\"100%\"},variant:\"RmqJkb9gf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+7758.4},xmttBflmi:{y:(componentViewport?.y||0)+0+8526.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:573,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7092.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lej1m7-container\",nodeId:\"qJRyITRr0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"F3zm5FrZx\"},xmttBflmi:{variant:\"TfR8Rq4xe\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"qJRyITRr0\",layoutId:\"qJRyITRr0\",style:{width:\"100%\"},variant:\"Rnrfca9Uv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TPFnQ.framer-lux5qc, .framer-TPFnQ .framer-lux5qc { display: block; }\",\".framer-TPFnQ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-TPFnQ .framer-1nfyqiq-container { flex: none; height: auto; left: 290px; position: fixed; top: 22px; width: auto; z-index: 10; }\",\".framer-TPFnQ .framer-116cg1o { align-content: center; align-items: center; background: linear-gradient(180deg, #ebeef1 0%, rgba(240, 240, 240, 0) 100%, rgba(238, 240, 242, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 750px; justify-content: flex-end; overflow: hidden; padding: 0px 0px 110px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-armwt7-container { flex: none; height: 727px; left: calc(50.00000000000002% - 1920px / 2); position: absolute; top: -120px; width: 1920px; z-index: 0; }\",\".framer-TPFnQ .framer-fsbns6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-kc5ix7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 525px; }\",\".framer-TPFnQ .framer-131nqtm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-103zubr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-1hhd3uo, .framer-TPFnQ .framer-phao5z, .framer-TPFnQ .framer-1tzfkp7, .framer-TPFnQ .framer-1eiuajt, .framer-TPFnQ .framer-rrqqx6, .framer-TPFnQ .framer-rj32s6, .framer-TPFnQ .framer-1pql5wt, .framer-TPFnQ .framer-1c4mitf, .framer-TPFnQ .framer-1r9ynbh, .framer-TPFnQ .framer-tvyn56, .framer-TPFnQ .framer-1bb7sqi, .framer-TPFnQ .framer-101gl0d, .framer-TPFnQ .framer-a6597f, .framer-TPFnQ .framer-1l75y8v, .framer-TPFnQ .framer-3psu1h, .framer-TPFnQ .framer-1bjypux, .framer-TPFnQ .framer-14slsay { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TPFnQ .framer-1viqu0x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TPFnQ .framer-172bfaj { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 525px; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-q6w5wk-container { flex: none; height: auto; position: relative; width: 514px; }\",\".framer-TPFnQ .framer-r6p37f, .framer-TPFnQ .framer-18qtt4n, .framer-TPFnQ .framer-5b9g48, .framer-TPFnQ .framer-1b9b5lo, .framer-TPFnQ .framer-19pzxqf, .framer-TPFnQ .framer-1i6l03h, .framer-TPFnQ .framer-ntdw6c, .framer-TPFnQ .framer-2o9w4f, .framer-TPFnQ .framer-1nzo6fg { --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-TPFnQ .framer-1gu353a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TPFnQ .framer-g5qsyv-container, .framer-TPFnQ .framer-bp6zr2-container, .framer-TPFnQ .framer-ofgm52-container, .framer-TPFnQ .framer-4pf7zq-container, .framer-TPFnQ .framer-183kho0-container, .framer-TPFnQ .framer-ym354g-container, .framer-TPFnQ .framer-ouu7o7-container, .framer-TPFnQ .framer-1tjfrrg-container, .framer-TPFnQ .framer-1rm4k2w-container, .framer-TPFnQ .framer-37fqa9-container, .framer-TPFnQ .framer-1m5ywv1-container, .framer-TPFnQ .framer-ito6w7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TPFnQ .framer-1t3fhr0 { flex: none; gap: 0px; height: 340px; overflow: visible; position: relative; width: 589px; }\",\".framer-TPFnQ .framer-grwn62-container { flex: none; height: 326px; left: calc(50.00000000000002% - 580px / 2); position: absolute; top: calc(48.78048780487807% - 326px / 2); width: 580px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1da3v62-container, .framer-TPFnQ .framer-1a1v6xh-container, .framer-TPFnQ .framer-lej1m7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-tk0q7v { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-1grgwhp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TPFnQ .framer-ijq5dl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-vccsvb-container, .framer-TPFnQ .framer-90faad-container, .framer-TPFnQ .framer-1wndxqd-container, .framer-TPFnQ .framer-1cm2sg5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TPFnQ .framer-7anwe7 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-kfyi73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-TPFnQ .framer-1valzr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-10ajuxu { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-nsubrq-container { flex: none; height: 81px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-17ha134, .framer-TPFnQ .framer-1tuqv79, .framer-TPFnQ .framer-1p0d56b, .framer-TPFnQ .framer-1nruyda, .framer-TPFnQ .framer-jtc17q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-TPFnQ .framer-9og35a, .framer-TPFnQ .framer-1uahv59 { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-TPFnQ .framer-taa8lb, .framer-TPFnQ .framer-yl81jb, .framer-TPFnQ .framer-17rtbdz, .framer-TPFnQ .framer-u8bp5u, .framer-TPFnQ .framer-1lwx6lt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 131px; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-1991qvo, .framer-TPFnQ .framer-1p9jwjw, .framer-TPFnQ .framer-1w1ada, .framer-TPFnQ .framer-bo2tr1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-TPFnQ .framer-qm973k, .framer-TPFnQ .framer-dlx62j { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(180deg, #30ffa9 0%, rgb(0, 79, 227) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TPFnQ .framer-155khxb, .framer-TPFnQ .framer-jup8gt { flex: none; height: 24px; overflow: hidden; position: relative; width: 132px; }\",\".framer-TPFnQ .framer-4pxgqc, .framer-TPFnQ .framer-rhmz65 { flex: none; height: 22px; left: calc(50.00000000000002% - 132px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 132px; }\",\".framer-TPFnQ .framer-11b759x, .framer-TPFnQ .framer-lks9pw, .framer-TPFnQ .framer-1719jtu, .framer-TPFnQ .framer-1mj273g { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-TPFnQ .framer-a6l1ir, .framer-TPFnQ .framer-jhaipa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-TPFnQ .framer-15kwqvs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1060px; }\",\".framer-TPFnQ .framer-1y7wb0n, .framer-TPFnQ .framer-17lkjuu, .framer-TPFnQ .framer-sa4spb, .framer-TPFnQ .framer-myta3u, .framer-TPFnQ .framer-ev9cpu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-TPFnQ .framer-1rdp4mu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-TPFnQ .framer-1lgetgm { flex: none; gap: 0px; height: 520px; overflow: visible; position: relative; width: 600px; }\",\".framer-TPFnQ .framer-dacvz { aspect-ratio: 1 / 1; background: linear-gradient(180deg, rgba(228, 235, 247, 0.6) 0%, rgba(238, 241, 245, 0) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 486px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 486px; }\",\".framer-TPFnQ .framer-1e4fxlv { bottom: 0px; flex: none; gap: 0px; left: calc(50.41152263374487% - 418px / 2); opacity: 0.81; overflow: visible; position: absolute; top: 0px; width: 418px; }\",\".framer-TPFnQ .framer-hwno2o { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TPFnQ .framer-1hyu3gm, .framer-TPFnQ .framer-1lub3vj { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1h1u1yn { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-TPFnQ .framer-qc9tj4, .framer-TPFnQ .framer-v32c1b, .framer-TPFnQ .framer-3998ji, .framer-TPFnQ .framer-95lcym { --border-bottom-width: 0.5px; --border-color: rgba(226, 228, 233, 0.34); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 78px; }\",\".framer-TPFnQ .framer-b25bni, .framer-TPFnQ .framer-19zpim8, .framer-TPFnQ .framer-h1yrih, .framer-TPFnQ .framer-5m2l6s { --border-bottom-width: 0.5px; --border-color: rgba(226, 228, 233, 0.6); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 58px; }\",\".framer-TPFnQ .framer-p2hwwp { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-TPFnQ .framer-sec25p, .framer-TPFnQ .framer-1e0wrhs, .framer-TPFnQ .framer-1sidtj, .framer-TPFnQ .framer-iyknfw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-TPFnQ .framer-1ayyl0d, .framer-TPFnQ .framer-1129337, .framer-TPFnQ .framer-1qsd7yl, .framer-TPFnQ .framer-1yre1r9 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-1sh0eu9, .framer-TPFnQ .framer-37g5tr, .framer-TPFnQ .framer-no2i87, .framer-TPFnQ .framer-18kd04d { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-pmrygt { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(0, 53, 82, 0.07) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.37); display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 561px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-qy62pq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px; position: relative; width: 518px; }\",\".framer-TPFnQ .framer-merxg4, .framer-TPFnQ .framer-8oszu6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 239px; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-zua99v, .framer-TPFnQ .framer-jwsoy2, .framer-TPFnQ .framer-16zi19t, .framer-TPFnQ .framer-1mxylm3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 493px; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-10otuig, .framer-TPFnQ .framer-slx1al, .framer-TPFnQ .framer-13t42vm { background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; gap: 0px; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-TPFnQ .framer-1q0cvuy { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-TPFnQ .framer-1t3nz42, .framer-TPFnQ .framer-cnzlkd { flex: none; height: 32px; left: 0px; position: absolute; top: 0px; width: 32px; }\",\".framer-TPFnQ .framer-1yf7d4l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); width: 32px; z-index: 1; }\",\".framer-TPFnQ .framer-1h5siqn { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(0, 53, 82, 0.07) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.37); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 555px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-9ccw93, .framer-TPFnQ .framer-qksolb, .framer-TPFnQ .framer-3n2i1q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px; position: relative; width: 516px; }\",\".framer-TPFnQ .framer-hmrb54, .framer-TPFnQ .framer-1cqxua0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1f0t76z { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); overflow: hidden; position: absolute; top: calc(48.275862068965544% - 32px / 2); width: 32px; }\",\".framer-TPFnQ .framer-fxfui4 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(0, 53, 82, 0.07) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.37); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 566px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1or5gz9, .framer-TPFnQ .framer-1j06dot { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 309px; word-break: break-word; word-wrap: break-word; }\",\".framer-TPFnQ .framer-1p9dsuq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 24px; position: absolute; top: 50%; transform: translateY(-50%); width: 32px; z-index: 1; }\",\".framer-TPFnQ .framer-1pg4ebw { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(0, 53, 82, 0.07) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.37); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 558px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1buoq70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TPFnQ .framer-w4g0gw { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-11mf6fd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-a6jfdp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-TPFnQ .framer-2zjizc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-1i1n9cv { --border-bottom-width: 0.5px; --border-color: var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, #dfe3e7); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 2px 4px 0px rgba(27, 28, 29, 0.04); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-1uzwycl, .framer-TPFnQ .framer-1rdpk9c, .framer-TPFnQ .framer-149qgkm { background-color: #dae8f6; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; gap: 0px; height: 222px; overflow: hidden; position: relative; width: 299px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TPFnQ .framer-1huzhgv, .framer-TPFnQ .framer-1tkx1lf, .framer-TPFnQ .framer-t3ihnl { bottom: -208px; flex: none; left: -25px; overflow: hidden; position: absolute; right: -26px; top: 0px; }\",\".framer-TPFnQ .framer-16orfho, .framer-TPFnQ .framer-104893b, .framer-TPFnQ .framer-7fdqm9 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 350px); left: 0px; position: absolute; right: 0px; }\",\".framer-TPFnQ .framer-1pjpky5 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: visible; position: absolute; top: 11px; transform: translateX(-50%); width: 200px; }\",\".framer-TPFnQ .framer-w64xy7, .framer-TPFnQ .framer-1kwep6g, .framer-TPFnQ .framer-x0gjn6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-1wpbein, .framer-TPFnQ .framer-2mos0p { --border-bottom-width: 0.5px; --border-color: var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, #dfe3e7); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 2px 4px 0px rgba(27, 28, 29, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-TPFnQ .framer-gz52no { flex: none; height: 207px; left: calc(49.71428571428574% - 206px / 2); overflow: visible; position: absolute; top: 7px; width: 206px; }\",\".framer-TPFnQ .framer-1p78fwv { flex: none; gap: 0px; height: 200px; left: calc(50.00000000000002% - 200px / 2); overflow: visible; position: absolute; top: 11px; width: 200px; }\",\".framer-TPFnQ .framer-417n0o, .framer-TPFnQ .framer-189f56c, .framer-TPFnQ .framer-1ryks2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TPFnQ .framer-1hww0bp { 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: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-urrb9s-container, .framer-TPFnQ .framer-7gf32t-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-1wnyeqe { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-TPFnQ .framer-q1lkmj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1920px; }\",\".framer-TPFnQ .framer-6xnose-container { flex: none; height: auto; position: relative; width: 1200px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-TPFnQ[data-border=\"true\"]::after, .framer-TPFnQ [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: 1280px) and (max-width: 1919px) { .framer-TPFnQ.framer-72rtr7 { width: 1280px; } .framer-TPFnQ .framer-1nfyqiq-container { height: 88px; left: calc(50.00000000000002% - 1200px / 2); order: 2; width: 1200px; } .framer-TPFnQ .framer-116cg1o, .framer-TPFnQ .framer-kc5ix7 { order: 0; } .framer-TPFnQ .framer-armwt7-container { left: calc(50.00000000000002% - 1600px / 2); width: 1600px; } .framer-TPFnQ .framer-fsbns6 { gap: 27px; justify-content: flex-start; } .framer-TPFnQ .framer-1t3fhr0 { order: 1; } .framer-TPFnQ .framer-1da3v62-container { order: 3; } .framer-TPFnQ .framer-tk0q7v { order: 4; } .framer-TPFnQ .framer-7anwe7 { order: 5; } .framer-TPFnQ .framer-w4g0gw { order: 6; } .framer-TPFnQ .framer-1hww0bp { order: 7; padding: 80px; } .framer-TPFnQ .framer-1wnyeqe { order: 8; padding: 80px; } .framer-TPFnQ .framer-q1lkmj { order: 9; width: 100%; } .framer-TPFnQ .framer-6xnose-container { flex: 1 0 0px; max-width: 1140px; width: 1px; } .framer-TPFnQ .framer-1a1v6xh-container { order: 10; } .framer-TPFnQ .framer-lej1m7-container { order: 11; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-TPFnQ.framer-72rtr7 { width: 810px; } .framer-TPFnQ .framer-1nfyqiq-container { left: 0px; order: 0; top: 0px; width: 100%; } .framer-TPFnQ .framer-116cg1o { height: min-content; order: 2; padding: 140px 40px 0px 40px; } .framer-TPFnQ .framer-armwt7-container { left: calc(50.00000000000002% - 810px / 2); top: calc(48.40000000000002% - 727px / 2); width: 810px; } .framer-TPFnQ .framer-fsbns6 { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-TPFnQ .framer-kc5ix7 { align-content: center; align-items: center; width: 100%; } .framer-TPFnQ .framer-131nqtm { align-content: center; align-items: center; gap: 12px; } .framer-TPFnQ .framer-103zubr, .framer-TPFnQ .framer-1viqu0x { align-content: center; align-items: center; } .framer-TPFnQ .framer-q6w5wk-container { width: 209px; } .framer-TPFnQ .framer-r6p37f { width: 70%; } .framer-TPFnQ .framer-1da3v62-container { order: 3; } .framer-TPFnQ .framer-tk0q7v { gap: 32px; order: 4; padding: 60px 40px 60px 40px; } .framer-TPFnQ .framer-ijq5dl { gap: 20px; } .framer-TPFnQ .framer-7anwe7 { gap: 40px; order: 5; padding: 60px 40px 60px 40px; } .framer-TPFnQ .framer-kfyi73 { max-width: 600px; width: 100%; } .framer-TPFnQ .framer-10ajuxu { max-width: unset; } .framer-TPFnQ .framer-15kwqvs, .framer-TPFnQ .framer-a6jfdp { width: 100%; } .framer-TPFnQ .framer-1y7wb0n, .framer-TPFnQ .framer-17lkjuu, .framer-TPFnQ .framer-sa4spb, .framer-TPFnQ .framer-myta3u, .framer-TPFnQ .framer-ev9cpu, .framer-TPFnQ .framer-6xnose-container { flex: 1 0 0px; width: 1px; } .framer-TPFnQ .framer-1r9ynbh, .framer-TPFnQ .framer-1bb7sqi, .framer-TPFnQ .framer-a6597f, .framer-TPFnQ .framer-3psu1h, .framer-TPFnQ .framer-14slsay { white-space: pre-wrap; width: 131px; word-break: break-word; word-wrap: break-word; } .framer-TPFnQ .framer-1rdp4mu { gap: 0px; width: 100%; } .framer-TPFnQ .framer-1lgetgm { flex: 1 0 0px; height: 410px; width: 1px; } .framer-TPFnQ .framer-dacvz { height: var(--framer-aspect-ratio-supported, 322px); left: 50%; top: 50%; width: 322px; } .framer-TPFnQ .framer-1e4fxlv { aspect-ratio: 0.79375 / 1; height: var(--framer-aspect-ratio-supported, 320px); left: 55%; top: unset; transform: translateX(-50%); width: 254px; } .framer-TPFnQ .framer-hwno2o { gap: 16px; } .framer-TPFnQ .framer-1q0cvuy { top: calc(48.275862068965544% - 32px / 2); } .framer-TPFnQ .framer-1129337 { order: 0; } .framer-TPFnQ .framer-37g5tr { order: 1; } .framer-TPFnQ .framer-w4g0gw { order: 6; padding: 60px 40px 60px 40px; } .framer-TPFnQ .framer-2zjizc { flex-direction: column; gap: 12px; justify-content: flex-start; overflow: auto; padding: 2px 6px 6px 6px; } .framer-TPFnQ .framer-1hww0bp { order: 7; padding: 60px 40px 60px 40px; } .framer-TPFnQ .framer-1wnyeqe { order: 8; padding: 60px 40px 60px 40px; } .framer-TPFnQ .framer-q1lkmj { order: 9; padding: 60px 40px 60px 40px; width: 100%; } .framer-TPFnQ .framer-1a1v6xh-container { order: 10; } .framer-TPFnQ .framer-lej1m7-container { order: 11; }}\",\"@media (max-width: 809px) { .framer-TPFnQ.framer-72rtr7 { justify-content: flex-start; width: 390px; } .framer-TPFnQ .framer-1nfyqiq-container { height: 72px; left: 0px; position: absolute; right: 0px; top: 0px; width: unset; } .framer-TPFnQ .framer-116cg1o { height: min-content; padding: 0px; } .framer-TPFnQ .framer-armwt7-container { height: 723px; left: -482px; order: 0; right: -482px; top: -113px; width: unset; } .framer-TPFnQ .framer-fsbns6 { flex-direction: column; order: 1; padding: 100px 20px 0px 20px; } .framer-TPFnQ .framer-kc5ix7 { align-content: center; align-items: center; gap: 24px; width: 100%; } .framer-TPFnQ .framer-131nqtm, .framer-TPFnQ .framer-1valzr4 { gap: 12px; } .framer-TPFnQ .framer-103zubr { gap: 0px; } .framer-TPFnQ .framer-1viqu0x, .framer-TPFnQ .framer-172bfaj, .framer-TPFnQ .framer-1grgwhp { width: 100%; } .framer-TPFnQ .framer-q6w5wk-container { height: 43px; width: 255px; } .framer-TPFnQ .framer-1gu353a { flex-direction: column; flex-wrap: wrap; gap: 12px; max-width: 430px; } .framer-TPFnQ .framer-1t3fhr0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 265px; justify-content: center; padding: 0px; width: 350px; } .framer-TPFnQ .framer-grwn62-container { height: 180px; left: unset; position: relative; top: unset; width: 350px; } .framer-TPFnQ .framer-tk0q7v, .framer-TPFnQ .framer-7anwe7 { gap: 24px; padding: 40px 16px 40px 16px; } .framer-TPFnQ .framer-phao5z { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-TPFnQ .framer-ijq5dl { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(120px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: center; } .framer-TPFnQ .framer-vccsvb-container, .framer-TPFnQ .framer-90faad-container, .framer-TPFnQ .framer-1wndxqd-container, .framer-TPFnQ .framer-1cm2sg5-container { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-TPFnQ .framer-kfyi73 { max-width: unset; width: 100%; } .framer-TPFnQ .framer-1rdp4mu { flex-direction: column; gap: 0px; width: 100%; } .framer-TPFnQ .framer-1lgetgm { height: 350px; width: 100%; } .framer-TPFnQ .framer-dacvz { height: var(--framer-aspect-ratio-supported, 296px); top: 49%; width: 296px; } .framer-TPFnQ .framer-1e4fxlv { aspect-ratio: 0.8006756756756757 / 1; bottom: -24px; left: unset; right: -16px; top: -34px; width: var(--framer-aspect-ratio-supported, 284px); } .framer-TPFnQ .framer-hwno2o { flex: none; gap: 20px; width: 100%; } .framer-TPFnQ .framer-sec25p, .framer-TPFnQ .framer-1e0wrhs, .framer-TPFnQ .framer-1sidtj, .framer-TPFnQ .framer-iyknfw { padding: 0px; } .framer-TPFnQ .framer-1p9dsuq { top: 51%; } .framer-TPFnQ .framer-1buoq70 { flex-direction: column; gap: 12px; max-width: 430px; width: 250px; } .framer-TPFnQ .framer-w4g0gw { padding: 48px 16px 48px 16px; } .framer-TPFnQ .framer-11mf6fd { gap: 24px; } .framer-TPFnQ .framer-a6jfdp { order: 0; width: 100%; } .framer-TPFnQ .framer-2zjizc { flex-direction: column; gap: 12px; justify-content: flex-start; order: 1; overflow: hidden; overflow-x: auto; padding: 2px 6px 9px 6px; } .framer-TPFnQ .framer-417n0o { flex-direction: column; gap: 12px; max-width: 430px; order: 2; width: 260px; } .framer-TPFnQ .framer-1hww0bp { gap: 32px; padding: 48px 16px 48px 16px; } .framer-TPFnQ .framer-189f56c { flex-direction: column; gap: 12px; height: 96px; max-width: 430px; width: 250px; } .framer-TPFnQ .framer-1wnyeqe { gap: 24px; padding: 48px 16px 48px 16px; } .framer-TPFnQ .framer-1ryks2b { flex-direction: column; gap: 12px; width: 325px; } .framer-TPFnQ .framer-q1lkmj { padding: 36px 16px 48px 16px; width: 100%; } .framer-TPFnQ .framer-6xnose-container { flex: 1 0 0px; width: 1px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7573\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xf27aOaI0\":{\"layout\":[\"fixed\",\"auto\"]},\"ilCPgpUK1\":{\"layout\":[\"fixed\",\"auto\"]},\"xmttBflmi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wmq2fun3b\":{\"pattern\":\":wmq2fun3b\",\"name\":\"brands\"},\"YA5xGzqWh\":{\"pattern\":\":YA5xGzqWh\",\"name\":\"complete-rang-of-maritime-services\"},\"ddrOPV305\":{\"pattern\":\":ddrOPV305\",\"name\":\"vessel-cleaning\"},\"xnmcGFzws\":{\"pattern\":\":xnmcGFzws\",\"name\":\"ship-maintenance\"},\"en9DPYMYC\":{\"pattern\":\":en9DPYMYC\",\"name\":\"shipping-agency-and-port-services\"},\"WArOxuJ1l\":{\"pattern\":\":WArOxuJ1l\",\"name\":\"ship-chandler-and-supply\"},\"rZeGCyi7T\":{\"pattern\":\":rZeGCyi7T\",\"name\":\"testimonial\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-TPFnQ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7573,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",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:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]},...TopNavigationBarFonts,...BackgroundGridFonts,...AnimationCycleTextFonts,...ButtonFonts,...VideoFonts,...SectionBrandsFonts,...CardImage1Fonts,...BadgeNormalFonts,...TickerFonts,...FeaturesCarouselVerticalFonts,...FeaturesCarouselHorizontalFonts,...SectionTestimonialFonts,...SectionCTAFonts,...SectionFooterFonts,...CursorScrollToDownFonts,...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),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xf27aOaI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ilCPgpUK1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xmttBflmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"7573\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerScrollSections\":\"{\\\"wmq2fun3b\\\":{\\\"pattern\\\":\\\":wmq2fun3b\\\",\\\"name\\\":\\\"brands\\\"},\\\"YA5xGzqWh\\\":{\\\"pattern\\\":\\\":YA5xGzqWh\\\",\\\"name\\\":\\\"complete-rang-of-maritime-services\\\"},\\\"ddrOPV305\\\":{\\\"pattern\\\":\\\":ddrOPV305\\\",\\\"name\\\":\\\"vessel-cleaning\\\"},\\\"xnmcGFzws\\\":{\\\"pattern\\\":\\\":xnmcGFzws\\\",\\\"name\\\":\\\"ship-maintenance\\\"},\\\"en9DPYMYC\\\":{\\\"pattern\\\":\\\":en9DPYMYC\\\",\\\"name\\\":\\\"shipping-agency-and-port-services\\\"},\\\"WArOxuJ1l\\\":{\\\"pattern\\\":\\\":WArOxuJ1l\\\",\\\"name\\\":\\\"ship-chandler-and-supply\\\"},\\\"rZeGCyi7T\\\":{\\\"pattern\\\":\\\":rZeGCyi7T\\\",\\\"name\\\":\\\"testimonial\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "describtion", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "riuoDLJSu", "GG6HritSH", "ngMqA34Su", "Zon1CJn4h", "d8uswh2HO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCHg1R9dsq", "withCSS", "CHg1R9dsq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerhCKRWq0Et", "withCSS", "hCKRWq0Et_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1jseq9b", "args", "onAppear1ml3yxx", "onAppearounlyb", "onAppeardwtw8p", "onAppearmxia0k", "onAppear1h5pbmk", "onAppear1tjgu7v", "onAppear15r491i", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramermNi1MeQBI", "withCSS", "mNi1MeQBI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "AvatarFonts", "tRpAAibDz_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "transition4", "animation2", "transition5", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1xqavdj", "args", "onAppearrinteh", "onAppearf5gs97", "onClick1u18bvz", "onClickhuxo0m", "onClick17n9a7x", "onClick1iip14p", "onClickjzam6m", "onClickcn6fv9", "onClick69mlle", "onClicky3zs0h", "onClick5uvaqw", "onClicke76p88", "onMouseEnter1m79w1m", "onMouseLeavey3zs0h", "onClickwck2d2", "onMouseEnter1slegcl", "onMouseLeave5uvaqw", "onClickimwhoh", "onMouseEnter106nxue", "onMouseLeave69mlle", "onTapwck2d2", "onTap5uvaqw", "onTape76p88", "onTapimwhoh", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerP3E5FTafd", "withCSS", "P3E5FTafd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "border", "content", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JDEMNPLZW", "uCazwUNgB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramersqcnnD9OB", "withCSS", "sqcnnD9OB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear9b786s", "args", "onAppear13j5ulk", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FrameriffgM2Fdq", "withCSS", "iffgM2Fdq_default", "addPropertyControls", "ControlType", "addFonts", "ProgressBarFonts", "getFonts", "iffgM2Fdq_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "activeBg", "describtion", "height", "icon", "id", "inactiveBg", "showDescribtion", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "U8MtZan4d", "c0aevj6e1", "xNPJv87bA", "UcxooM043", "RDmGAwKxP", "kGPf904Pj", "Y7dkQGON1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapiwcjv6", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerNfS3Exusk", "withCSS", "NfS3Exusk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeNormalFonts", "getFonts", "sqcnnD9OB_default", "MotionDivWithFX", "withFX", "motion", "TabItemFonts", "NfS3Exusk_default", "ImageWithFX", "Image2", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "transition4", "animation2", "transition5", "animation3", "animation4", "transformTemplate1", "_", "t", "transition6", "animation5", "animation6", "transition7", "animation7", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearsnwgef", "args", "onAppearck6ao0", "onAppeargqjsrd", "onAppear513bwc", "onAppear1haqt78", "onAppearlz32qc", "RDmGAwKxP1yjxkpi", "RDmGAwKxP9lwmv", "RDmGAwKxPowsg6n", "RDmGAwKxP1kubgyb", "RDmGAwKxP1adzccd", "RDmGAwKxP1uui0qd", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLoadingLazyAtYPosition", "css", "FramervsSgmYyEd", "withCSS", "vsSgmYyEd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeNormalFonts", "getFonts", "sqcnnD9OB_default", "MotionDivWithFX", "withFX", "motion", "TabItemFonts", "NfS3Exusk_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transformTemplate1", "_", "t", "transition6", "animation6", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "animation11", "transition10", "animation12", "transition11", "animation13", "transition12", "animation14", "transition13", "animation15", "transition14", "animation16", "animation17", "transition15", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1is6hy0", "args", "onAppearput0ps", "onAppearh71bxi", "onAppear3uf57a", "RDmGAwKxPguu4z9", "RDmGAwKxP1t7amab", "RDmGAwKxP1oibhe", "RDmGAwKxP1815mde", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "SVG", "getLoadingLazyAtYPosition", "css", "FramerZKgSHIfat", "withCSS", "ZKgSHIfat_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TopNavigationBarFonts", "getFonts", "sltkc74h7_default", "BackgroundGridFonts", "pwVXWPq1Q_default", "RichTextWithFX", "withFX", "RichText2", "AnimationCycleTextFonts", "mNi1MeQBI_default", "ContainerWithFX", "Container", "ButtonFonts", "KF7UbbSfc_default", "MotionDivWithFX", "motion", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "SectionBrandsFonts", "G1quos_R8_default", "CardImage1Fonts", "CHg1R9dsq_default", "BadgeNormalFonts", "sqcnnD9OB_default", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "MotionAWithFX", "FeaturesCarouselVerticalFonts", "ZKgSHIfat_default", "FeaturesCarouselHorizontalFonts", "vsSgmYyEd_default", "SectionTestimonialFonts", "P3E5FTafd_default", "MotionSectionWithFX", "SectionCTAFonts", "LpjyIZj0_default", "SectionFooterFonts", "lS9TvqxVt_default", "CursorScrollToDownFonts", "hCKRWq0Et_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "animation10", "animation11", "animation12", "transition7", "animation13", "transition8", "animation14", "transformTemplate1", "_", "t", "transition9", "transformTemplate2", "transition10", "transition11", "animation15", "transition12", "animation16", "animation17", "animation18", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "isDisplayed1", "ref4", "isDisplayed2", "ref5", "ref6", "isDisplayed3", "ref7", "ref8", "ref9", "ref10", "ref11", "elementId3", "ref12", "elementId4", "ref13", "elementId5", "ref14", "elementId6", "ref15", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "SVG", "getLoadingLazyAtYPosition", "l", "Link", "AnimatePresence", "Floating", "overlay1", "overlay2", "overlay3", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
